Make JS files generated from code components import Preact modules with the correct paths

Created on 18 February 2025, about 1 month ago

Overview

Currently, the js.compiled property of code components and asset libraries imports React/Preact code from bare module specifiers: e.g., react/jsx-runtime, preact/hooks, etc.

When the browser loads the JS file (aka the astro island's component-url) of the code component, it needs to know where to get that Preact code from.

Proposed resolution

The following options are ordered from least scope to most scope. Any option is acceptable for resolving this issue. If we only do option 1 or option 2 for now, we can do whatever remains to get us to option 3 in a less urgent follow-up.

Option 1

Within XbAssetLibraryTrait::getJs(), do string/regex replacements to change js.compiled before it's written to disk. Change the bare module specifiers to the corresponding paths to the files in ui/lib/astro-hydration/dist. See https://git.drupalcode.org/project/experience_builder/-/merge_requests/3... for prior art in the PoC.

Option 2

Do the same as option 1, but instead of changing the contents of the JS that gets written to disk, add those replacements to an import map. Use https://www.drupal.org/project/importmaps โ†’ or https://www.drupal.org/project/importmap โ†’ if that's helpful, but we can also for now assume that only our import map is needed and not worry about merging with import maps from other Drupal modules. Browser support for multiple import maps is coming soon, which might obsolete the importmap(s) Drupal modules.

Option 3

Do the same as option 2, but make the import map map the React packages to preact/compat<code> from https://esm.sh. Along with this, change <code>ui/lib/astro-hydration/astro.config.mjs to use React instead of Preact and to externalize React.

Note that the scope of this issue only needs to cover React/Preact itself, not other 3rd party packages. โœจ Allow code components to import from npm packages Active is a separate issue for the latter.

User interface changes

๐Ÿ“Œ Task
Status

Active

Version

0.0

Component

Theme builder

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States effulgentsia

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024