Dorothy
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    --- title: Carousel Optimisations description: View the slide with "Slide Mode". slideOptions: theme: solarized transition: 'slide' type: slide --- <style> .reveal { font-size: 24px; } </style> # Carousel optimisations :carousel_horse: :carousel_horse: :carousel_horse: --- ## Issues :thinking_face: ---- The performance of the new navigation pages using the slider component was poor with long load times ![](https://i.imgur.com/2ozYi1E.png =550x) ---- ### The way content data was fetched from Contentful was suboptimal - 4 levels of nesting were fetched. That's an enormous payload containing all the fields for articles, events, Q&A, etc - Most of the content data downloaded were not used at all to populate the UI **Before:** 620 Kb were downloaded for 2 sliders and 13 cards **After:** Only 5 Kb are downloaded ---- ### The data parsing was blocking the rendering of the whole Slider component - After fetching the content data from Contentful, a 1st loop was done to modify multiple content entries - After that, a 2nd loop was required to fetch user-related data from the People API for each card if needed - Finally, an additional layer of data parsing was executed at the Slider Card itself **Before:** Users didn't see anything on the screen until data parsing was completed **After:** Each card loads independently and only one loop to render the cards ---- ### Unnecessary use of expensive dependencies and CPU-intensive functions - The Slider was using `md5` and `react-uuid` dependencies to generate internal React keys - At the Slider Card's data parsing, the "reading time" was computed on page load based on the body of the article **Before:** The cost associated with running CPU-intensive functions was dragging down the performance **After:** Fewer CPU-intensive functions when loading card --- ## Optimisations :hammer_and_wrench: ---- ### Contentful **New `Carousel` content model** - Similar to existing `Slider` content model - New `Cards Types` field to store the content types of the cards - Will currently need to be manually filled in but will be automated in the future (currently being worked on) ![](https://i.imgur.com/lMHUcTl.png =550x) ---- ### Contentful **Update to `Solution Article` content model** - New `Reading Time` field to store the reading time of an article - Removes the need to fetch the body of the article to calculate the reading time for each card - Will currently need to be manually filled in but will be automated in the future ---- ### SDK - `contentful.editorialPage.read` - Reads editorial page entry from Contentful - Reads only one level of nesting (compared to 4 before); it only reads the link to each card rather than the whole entry - `contentful.carouselCards.read` - Reads carousel card entry from Contentful - Selects only the fields required to render card - `buildCarouselCard` - Modifies carousel card data into format as required by the card to remove the need to parse data in the card component - Fetches user data from People API only for question and article cards ---- ### Styleguide - New `Carousels`, `Carousel` and `CarouselCard` components - `ContentCardsSliders` and `ContentCard` components have not been changed so it is backwards compatible with existing sliders and content cards for learning hubs and partnerships pages ---- ### Styleguide - `Carousels` - Handles loading multiple carousels with grey dividers in between and loading placeholder when fetching carousels from Contentful - `Carousel` - Similar to existing `ContentCardsSlider` component without expensive dependencies and simplified window resize logic - Only the visible cards will be rendered on first load. Cards on other slides are only loaded when the user goes to the slide - `CarouselCard` - Similar to existing `ContentCard` component - Fetches the data for each card based on the Contentful link so each card can load independently, fetching only the required fields - Shows a loading placeholder when fetching card data to prevent Cumulative Layout Shift ---- ### Example Fetch editorial page from Contentful ```javascript= import { editorialPages } from '@apolitical/sdk'; useEffect(() => { editorialPages .read('home') // slug of the editorial page entry .then((page) => setPageStates({...pageStates, carousels: (page && page.carousels) || [], isLoading: false })), .catch(() => setPageStates({ ...pageStates, isLoading: false, error: true })); }, []); ``` ---- ### Example Pass carousels data, loading state and build card function to `Carousels` component ```javascript= import { buildCarouselCard } from '@apolitical/sdk'; import { Carousels } from '@apolitical/styleguide2'; <Carousels isLoading={isLoading} carousels={carousels} buildCardData={buildCarouselCard} gtmContext="Home" /> ``` ---- ### Example ![](https://i.imgur.com/MEUkrPa.png =700x) ---- ### Example Merge requests - [Apolitical SDK](https://gitlab.com/apolitical/node-modules/apolitical-sdk/-/merge_requests/39) - [Apolitical Styleguide](https://gitlab.com/apolitical/node-modules/apolitical-styleguide/-/merge_requests/124) - [Core Pages](https://gitlab.com/apolitical/frontends/core-pages/-/merge_requests/181) ---- After optimisations, the performance of the page has improved :tada: - Total Blocking Time: 5,090ms to 908ms (**~80%** improvement) - Time to Interactive: 8.2s to 4.1s (**50%** improvement) - Speed Index: 3.2s to 2.3s (**~30%** improvement) ![](https://i.imgur.com/sQLWV8Z.png =800x) ---- ![](https://i.imgur.com/Q16OlWf.png =550x) - Note: the Lighthouse reports generated in the pipeline can be different to ones run in the browser so the overall score may seem low --- ## Further work :nerd_face: ---- ### Carousels component - Update pages already built for new navigation to use the new `Carousels` components - Update learning hub and partnerships pages to use new `Carousels` components and remove slider code - Revisit window resizing logic in Carousel component. It has been simplified and does not adapt to window resizing but can be restored to previous logic if necessary. ---- ### Styleguide - Deprecate styleguide slider component and Slider content model on Contentful when learning hubs and partnerships pages have been updated - Add functionality from `CarouselCard` component to `ContentCard` so that only one component will be used for carousels and individual cards ---- ### Contentful apps - Calculate and populate `Reading Time` field in `Solution Article` content model - Automatically populate `Cards Types` field in `Carousel` content model ---- The performance of the carousels can still be improved so it would be good to investigate further :slightly_smiling_face:

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully