Real-time preview for props changes of JS components

Created on 23 March 2025, 14 days ago

Overview

As a content editor building a page using (JavaScript) Code Components, when I update prop values in the right sidebar, I want to see the preview update immediately, without waiting to get a response from the server.

It would be great to have this when using SDCs as well, but that's harder, so isn't part of this issue's scope. That would need its own child issue of πŸ“Œ Implement endpoint for realtime preview Active .

Proposed resolution

  • We need a way to get a prop value from the widgets (form input elements) in the right sidebar. πŸ“Œ Move clientside assumptions about prop form data shape into a series of prop specific transforms Active made that possible for at least some widgets. This issue's scope is only for the cases where we have that. For widgets that require a round trip to the server in order to map to field value and prop value, we don't get the real-time preview update.
  • Assuming we can get the updated prop value client-side, we can update the preview by simply targeting the <astro-island> element for this component instance, and updating its props attribute. The Astro island will then automatically re-render itself client-side based on the new props.
  • We should still send the request to the server, in order to auto-save our changes. However, we could potentially experiment with different debounce thresholds. For example, update the preview with a <1 second (maybe <0.1s?) debounce and auto-save to the server with a >1 second (maybe >5s?) debounce.

User interface changes

✨ Feature request
Status

Active

Version

0.0

Component

Page builder

Created by

πŸ‡ΊπŸ‡ΈUnited States effulgentsia

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

Comments & Activities

  • Issue created by @effulgentsia
  • πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί
    • Assuming we can get the updated prop value client-side, we can update the preview by simply targeting the <astro-island> element for this component instance, and updating its props attribute. The Astro island will then automatically re-render itself client-side based on the new props.

    I forget the details of how our undo/redo functionality is implemented exactly (and I see we're missing docs for it other than a one-liner 🫣), but … AFAICT this would then have to add Component Source-specific logic to perform undo+redo. It'd need to check every affected component instance when undoing/redoing, check if it's provided by the js ComponentSource plugin, and then perform this alternative.
    And if and only if there's zero other component instances affected, then that's all that's needed. But if there's >=1 component instance from another component source that needs undoing/redoing, we still need to talk to the server, because the server can only update the entire preview, not a subset.

    (And I bet there's more complications.)

  • πŸ‡ΊπŸ‡ΈUnited States effulgentsia

    Is there a reason we don't include the preview HTML in the undo stack? Thereby allowing all undo operations (regardless of what kinds of components are on the page) to optimistically render before the server response?

  • πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί

    Fair question. I suspect because "memory usage will go through the roof".

Production build 0.71.5 2024