Uploaded image for project: 'Planet4'
  1. Planet4
  2. PLANET-5734

Gutenberg: use editor-styles feature to align editor and frontend

XMLWordPrintable

    • Icon: Task Task
    • Resolution: Unresolved
    • Icon: Would like Would like
    • None
    • Gutenberg

      Wordpress has a native feature to integrate frontend style to the Gutenberg editor without modification and without risk to impact other parts of the editor.

      https://github.com/WordPress/gutenberg/blob/master/docs/designers-developers/developers/themes/theme-support.md#editor-styles

      This inserts any given css file by prepending its rules with a namespace '.editor-styles-wrapper'.
      Basic usage is to declare the theme support add_theme_support('editor-styles') and add stylesheets with add_editor_style( $this->theme_dir . '/assets/build/style.min.css' ) for example.

      I've seen multiple related tickets linked to this problem, that don't seem to use this system:

      Switzerland is using it already, although generating a different file not including all layout and block styles https://github.com/greenpeace/planet4-child-theme-switzerland/blob/62cba7797e6ebb17cac6617030db8edf65d513b6/functions.php#L96 .

      Pros & cons

      Pros

      • Native solution
      • No risk of applying our styles to other parts of the editor
      • Adapted (and already applicable) to child-themes

      Cons

      • Some work required to readapt our css rules, with a review of all our blocks
      • Default styles can't be removed, and have to be overriden (see current issues)

      How it works

      Rules are modified on the fly during editor loading and inserted in the editor:

      Root tags (body|html|:root) are replaced by the namespace .editor-styles-wrapper  https://github.com/WordPress/gutenberg/blob/02bc517e6ff1dd0af3923fc3ca01005a2badd6ab/packages/block-editor/src/utils/transform-styles/transforms/wrap.js#L4, the rest is encapsulated.

      Exploratory tasks

      Current issues

      Examples

            Unassigned Unassigned
            fhernand Florent Hernandez (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated: