Fix code component prop serialization in Astro islands

Created on 23 February 2025, about 1 month ago

Overview

The following has been identified and fixed by @effulgentsia in ✨ Code Components as Block Overrides, step 1 Active , I'm just moving the fix to its own issue, so we can land it sooner.

When Astro islands are rendered for code components, props are not serialized properly for Astro's hydration logic. Astro uses tuples, and we're currently not following that format.

As an example, we currently output:

{"title": "Experience Builder"}

Whereas Astro expects it as:

{"title": [0, "Experience Builder"]}

0 is an Astro prop type identifier.

XB already renders prop values, so we need a way to tell Astro that we're passing raw values.

Proposed resolution

@effulgentsia came up with a way to patch Astro's code in our bundled hydration library (done in #3500058), and introduce our own type identifier, raw, that allows us to pass values where Astro will work with the value as is. Alex also opened this PR for Astro: https://github.com/withastro/astro/pull/13046.

πŸ› Bug report
Status

Needs work

Version

0.0

Component

Page builder

Created by

πŸ‡³πŸ‡±Netherlands balintbrews Amsterdam, NL

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