Refactor Impossible (Part 2)

Blog

May 8, 2015

TABLE OF CONTENTS

Introduction

In a previous blog post, Refactor Impossible (Part 1), I wrote about some of the organizational challenges developers face when a code base needs to be refactored. The key idea was that feature deadlines and lack of immediate priority from business partners shouldn’t stop developers from working towards a quality code base. As developers, quality code is our responsibility, and if we don’t find a way to accomplish it, no one else will. At the end of the article, I mentioned a recent project we worked on that really put some of these ideals to the test.

Starting Out

We were recently brought in to work on a project that was nearing completion. The client had already spent over a year working on it. It had an imminent launch date, and heavy pressure to deliver the remaining list of critical features. Unfortunately, the application’s architecture was a big issue. Because the app had already changed hands a few times between development teams, it was left without a consistent, logical architecture. The emergent design was dozens of static web pages, hundreds of thousands of lines of global Javascript, no rendering framework, and no centralized data model. Instead of just piling on, we decided to see if we could put this application back on the path to health.

Just like most business teams, the client wasn’t interested in a big refactor for the sake of code quality, especially at that stage of development. They were, however, really interested in performance improvements because that was one of the biggest pain points for their early pilot users. If we could tie a refactor to major value for the business (e.g. massively improved performance) we’d probably find the wiggle room we needed to put the code base back on the right path.

What We Uncovered

We then spent a couple hours profiling the app and quickly figured out the bottleneck was WebSQL. The app worked by syncing large amounts of data from the company’s servers to a WebSQL database in the browser and then every page would pepper the WebSQL database with queries to load and save the data it needed. Each query was pretty slow by browser standards (~300-500ms) and there was no way to cache the queries because every new page load would wipe out any variables kept in memory. The browser’s sessionStorage and localStorage weren’t options because the size of the query results easily exceeded their 5mb quotas.

Architecture

It was evident that the app would be better off as a Single Page App (SPA). If it were a SPA, we’d be able to load data into memory at app startup and increase performance by offloading database calls from WebSQL to memory. A SPA would also give us maintainable view rendering (instead of jQuery), and a module system for better code organization. Unfortunately, it was not a SPA, and converting it to one would have required re-writing the entire code base.

The Solution

Still the promise of single page-ifying it was too big to give up, so we put our heads together and came up with a plan. What if instead of converting the UI into a SPA, we wrapped it in one? We quickly threw together a concept app using React and React Router that would examine the browser url, and render the appropriate page inside a full sized iframe. The app would then monitor the load event of the iframe and update the browser url via pushstate every time the user navigated to a new page. The browsing experience for the user stayed exactly the same as before, with unique urls, forward, back and refresh support, while developers instantly got a SPA architecture to work within. The benefits were huge.

  1. Persistent Memory – Data could be loaded into memory and kept there across multiple page loads. Data and functionality from the parent app could easily flow down into the iframe code via variables exposed by the app in window.top. This immediately provides an outlet for huge performance improvements.
  2. Client side rendering – This architecture allowed us to mix and match pages rendered using the iframe setup with fully client side rendered pages and have them work together seamlessly. This is huge because it allowed the application’s view layer to be incrementally refactored into a fully client side rendered app one page or component at a time.
  3. Build System – One of the biggest pain points for developers was a lack of code organization. As part of the React application, we created a build system using Gulp and Browserify that gave developers a modular code environment, along with ES6 transpiliation, and SASS pre-processing. Global functionality from the old app could then be refactored incrementally into well encapsulated modules and shared across both server and client side views.
  4. Development time – Perhaps most importantly, this change required almost no code changes to the existing code base. Instead, all the work was done alongside it. This meant that the architecture could be deployed without slowing down or interfering with other teams’ ongoing development efforts.

With the new SPA architecture wrapping the original app, we were able to move application data management into an in-memory database using LokiJS. The results were phenomenal, with a 100x to 200x performance improvement across the board.

Conclusion

Even though we felt the approach was a bit of a long shot, the architecture proved to be solid. It even handled querystrings and url hashes without much effort. It’s a pretty cool pattern. If you need to refactor a traditional web app into a SPA or are just curious how the code works, the proof of concept is shared below.

https://github.com/GetLevvel/giftwrap

Check it out, let us know what you think, or fork it and show us how it can be better.

Authored By

Assaf Weinberg

Assaf Weinberg

Meet our Experts

Assaf Weinberg

Assaf Weinberg

Let's chat.

You're doing big things, and big things come with big challenges. We're here to help.

Read the Blog

By clicking the button below you agree to our Terms of Service and Privacy Policy.

levvel mark white

Let's improve the world together.

© Levvel & Endava 2024