Migrating MFEs to Paragon design tokens and CSS variables

DRAFT

Overview

Paragon, the design system and React UI component library for the Open edX platform, now supports design tokens and CSS variables.

The design tokens are currently published under an alpha distribution channel on NPM, i.e. @edx/paragon@alpha.

Getting Started

TODO: docs/resources/context

Some potential ideas:

  • Brief description of design tokens (few sentences)

    • Link to style-dictionary (docs)

  • Link to ADR (still needs to be finalized & merged)

  • Create & link to Paragon docs site page with list of design token (TBD)

  • Create & link to Paragon docs site page with list of CSS variables (TBD)

Migration guide

Requirements:

  1. Install a compatible version of Paragon. Must support design tokens (currently, only @edx/paragon@alpha).

    1. https://github.com/openedx/paragon/tree/alpha.

      Example (package.json):
      "@edx/paragon": "21.0.0-alpha.40"

  2. Install a compatible version of @edx/frontend-build

    1. Requires https://github.com/openedx/frontend-build/pull/365

      Example (package.json):
      "@edx/frontend-build": "github:openedx/frontend-build#ags/2321"

  3. Install a compatible version of @edx/frontend-platform.

    1. Requires https://github.com/openedx/frontend-platform/pull/440

      Example (module.config.js):

module.exports = { localModules: [ { moduleName: '@edx/frontend-platform', dir: '../frontend-platform', dist: 'src' } ], };
  1. Install a compatible version of @edx/frontend-component-header (version/PR TBD).

    1. OpenEdx Frontend-component-header -
      OR

    2. Edx Frontend-component-header -

      Example (module.config.js):

module.exports = { localModules: [ { moduleName: '@edx/frontend-platform', dir: '../frontend-platform', dist: 'src' }, { moduleName: '@edx/frontend-component-header/dist', dir: '../frontend-component-header-edx', dist: 'dist' } ], };
  1. Install a compatible version of @edx/frontend-component-footer (version/PR TBD).

    1. OpenEdx Frontend-component-footer -
      OR

    2. Edx Frontend-component-footer - .

      Example (module.config.js):

module.exports = { localModules: [ { moduleName: '@edx/frontend-platform', dir: '../frontend-platform', dist: 'src' }, { moduleName: '@edx/frontend-component-header/dist', dir: '../frontend-component-header-edx', dist: 'dist' }, { moduleName: '@edx/frontend-component-footer/dist', dir: '../frontend-component-footer-edx', dist: 'dist' } ], };
  1. [Optional] Install a compatible version of Brand. Must support design tokens (currently, only @edx/brand-edx.org@alpha).

    1. Example (package.json):
      "@edx/brand": "npm:@edx/brand-edx.org@2.2.0-alpha.16"

OR

Using locally installed Paragon CSS

  1. Import the compiled Paragon CSS into the SCSS entry point of your MFE.

Using externally hosted Paragon CSS

  1. Configure external Paragon CSS URLs (e.g., from a hosted CDN).

    1. Quickest way to get started is to use jsDelivr, a global production-ready CDN and has deep integrations with NPM, and a $paragonVersion wildcard to rely on the same version of @edx/paragon installed in the your MFE. Example:

      1.  

    2. Configuration approaches:

      1. JavaScript-based configuration

      2. MFE runtime configuration API

  2. Import custom media breakpoints from Paragon into the SCSS entry point of your MFE.

    1. Note: you must utilize @use instead of @import with this file. The Sass team also discourages the continued use of @import, and plans to eventually remove it from the language entirely. See more information here.

Accounting for breaking changes

The design tokens release of Paragon is a complete re-architecting of Paragon’s styles system to go from sole reliance on SCSS variables to adopting an industry standard of design tokens and CSS variables. Such a large change means there are breaking changes along the way, though we’ve tried to minimize impact during the migration.

Remove all (almost) Paragon import from the SCSS entry point in your MFE

Previously, to use Paragon’s styles in your MFE, you’d import various SCSS files from @edx/paragon in a particular order and your MFE’s build process would compile and bundle Paragon’s SCSS in with your application’s CSS:

This approach had a few negative effects:

  1. Each MFE had to re-compile Paragon’s SCSS whenever a theme change was made.

  2. Users would need to re-download duplicate CSS from Paragon as they navigate across MFEs.

By externalizing the build process for Paragon’s SCSS, consuming MFEs can simply rely on CSS that’s already been compiled and hosted elsewhere, reducing build times and improving page performance for users by requiring less data to download over the network.

The only import from Paragon needed now is for its custom-media-breakpoints. This must be imported within your MFE in order to use the CSS media queries using Paragon’s defined breakpoints. For example:

Replace all SCSS variables/mixins from Paragon with their CSS variables replacement

There should be a drop-in replacement design token and CSS variable for every previous SCSS variable available via Paragon. For example:

Some SCSS mixins are no longer available, so your styles may need to be refactored such that they utilize Paragon’s new CSS variables instead of the previous SCSS mixin.

Removal previous deprecated components

There is mapping of Deprecated -> Relevant component:

FontAwesome removal from Paragon

Removed from components:

  • IconButton

  • Icon

  • SearchField


Paragon CLI Documentation

Paragon CLI is a powerful tool that provides various commands for working with design tokens, themes, and SCSS files. Below is a comprehensive guide on how to use the available commands.

Available Commands:

  1. install-theme

This command is used to install a specific @edx/brand package. You can specify the theme to install using the theme parameter. By default, the latest version of @edx/brand-openedx will be installed.

Example:

  1. build-tokens

This command is used to build Paragon design tokens. You can customize the token build process using various options:

  • -s, --source: Specify the source directory for design tokens.

  • -b, --build-dir: Specify the build directory for the generated tokens.

  • --source-tokens-only: Include only source design tokens in the build.

  • -t, --themes: Specify themes to include in the token build.

Example:

  1. replace-variables

This command allows you to replace the SCSS variable's usages or definitions with CSS variables and vice versa in .scss files. You can specify the file or directory where the replacements should be made using the filePath parameter. Additional options include:

  • -s, --source: Type of replacement: usage or definition.

  • -t, --replacementType: Type of replacement: usage or definition.

  • -d, --direction: Map direction: css-to-scss or scss-to-css.

Example:

  1. build-scss

This command compiles Paragon's core and themes SCSS into CSS. You can customize the compilation process using various options:

  • --corePath: Path to the theme's core SCSS file.

  • --themesPath: Path to the directory that contains themes' files.

  • --outDir: Directory where the resulting CSS files will be output.

  • --defaultThemeVariants: Default theme variants.

Example:

  1. help

You can display help for any specific command by using the help command followed by the command name.

Example:


Start your MFE application

  1. Load up your MFE on your machine with npm start and open it in a browser. Your MFE should start, with identical styles as before prior to the upgrade.

  2. Verify the styles (e.g., for a Button) in the devtools are now showing as using CSS variables instead of hardcoded values.

  3. If you notice any style issues or discrepancies between the previous look and feel, please file a Github issue and/or reach out in the Paragon Working Group Slack channel.

    1. Work with your squad’s designer(s) to ensure no style regressions.