Warning
You are browsing a legacy documentation for FTW (daily, hourly and product) which is no longer maintained.

Last updated

How to improve performance

This guide describes ways to improve the loading and rendering performance of your marketplace.

Table of Contents

When we think about page speed there are actually two different scenarios that we need to address:

  • The speed of initial page load and possible reloads after that
  • The speed of changing the page within Single page application (SPA)

The first one is usually a slower process. A browser needs to load all the HTML, CSS, JavaScript, and images - and then it needs to understand and execute those files, calculate layout, paint components and finally composite the whole view. The initial page load is the slowest since the consequent page reloads can take benefit from browser caches.

SPAs can improve from that since they don't necessarily need to download anymore JavaScript, HTML, or CSS - already downloaded JavaScript might be enough for rendering consequent pages when a user wants to navigate to another page. Most of the time SPAs just fetch data for that page.

These two UX scenarios might also conflict with each other. If all the JavaScript is in one big bundle, page changes within a SPA are fast. However, downloading and evaluating a big JavaScript file is slowing initial page rendering down. Even though users rarely experience the full initial page load speed when they use an SPA like Flex Template for Web, it is good to keep track of that speed. Especially since that is what search engine bots are experiencing and therefore it might affect your page rank.

Read more about website performance.

Check page performance

The first step is, of course, to start measuring performance. Lighthouse is a good tool to check rendering performance. At least check those pages that are visible to unauthenticated users (e.g. landing page, search page, listing page, about page and other content pages).

Lighthouse will give you some tips about how to improve performance and other aspects that website developers should think about.

Optimize image sizes

If your page is showing images, you should check that the image size is not bigger than what is needed. So, adjusting image dimensions is the first step, but you should also think about image quality, advanced rendering options and possibly serving those images from CDN instead of from within your web app.

Quick checklist:

  • Check that the actual dimensions of an image match with DOM element's dimensions.
  • Lighthouse suggests that image compression level should be 85% or lower. Read more
  • Good rule-of-thumb is that use JPEG for images and photos, where PNG is better for graphics, such as logos, graphs and illustrations.
  • If you are using JPEG images, think about saving them as progressive JPEGs. Read more + Photoshop guide
  • If you are using PNG images, consider running them through PNG optimizers to reduce file size. Plenty of options available, one example is TinyPNG.com
  • Think about serving images and other static assets from some CDN. Read more.

Lazy load off-screen images and other components

Another way of dealing with images is to lazy load those images that are not visible inside an initially rendered part of the screen. Lazy loading these off-screen images can be done with helper function: lazyLoadWithDimensions (from util/contextHelpers/). Check SectionLocations component for details.

Use sparse attributes

Another way to reduce the amount of data that is fetched from API is sparse attributes. This is a feature FTW has not yet leveraged fully, but it is created to reduce unnecessary data and speed up rendering. You can read more from Marketplace API reference for sparse attributes.

Use code splitting

Code splitting is enabled with Loadable Components and by default route-based splits are made through src/routeConfiguration.js. (In FTW-product the file is moved to src/routing/routeConfiguration.js.) If you want to improve performance, you should prefer subcomponents inside page-directories instead of adding more code to shared components directory. Those components end up to main chunk file that is downloaded on each page (when full page-load is requested).

You can read more in the code splitting article.