- Issue created by @larowlan
- 🇳🇱Netherlands balintbrews Amsterdam, NL
I haven't been able to reproduce this, and haven't heard from anyone else — many of us have tested code components a lot in the past days. But your other issue, 📌 Adding to components doesn't appear to update component list - show loading indicator Active , gave me a hunch. Maybe we should try to reproduce with network throttling on, because somehow your environment is not responding as fast. I quickly looked at
ui/src/features/code-editor/dialogs/AddCodeComponentDialog.tsx
for the signs of race conditions, but couldn't pinpoint anything yet. - 🇺🇸United States effulgentsia
In Slack, @larowlan confirmed that just like in #3509528-2: Adding to components doesn't appear to update component list - show loading indicator → , this only happens when the Redux dev tools browser extension is in use (though for both Chrome and Firefox). Re-titling accordingly and downgrading to Normal. We could potentially decide to "won't fix" this, except not being able to use Redux dev tools would be an annoyance for any React developers wanting to contribute to XB.
- 🇺🇸United States mglaman WI, USA
I think this is a real bug and not just due to Redux dev tools. There is a condition in useCodeComponentData that would allow writing bogus data, I think.
Essentially the effect which writes to the autosave checks if any of its dependencies (the components data) has changed. One the first run it assumes the editor isn't ready and then flags the editor as ready. After the timeout it now thinks the editor is ready and writes data. But nothing makes sure that the following items have valid data in them:
[ blockOverride, compiledCss, compiledJs, componentId, name, props, required, slots, sourceCodeCss, sourceCodeJs, status, ],
- 🇺🇸United States mglaman WI, USA
Attaching a hacky suggestion made by Copilot. I don't think it is the right approach but it is close to what I was thinking. Before considering the editor ready we need to make sure loading is done and not just trust changes to the main data dependencies to mean loading is complete.
- @balintbrews opened merge request.
- 🇳🇱Netherlands balintbrews Amsterdam, NL
- 🇺🇸United States mglaman WI, USA
@balintbrews thanks for verifying and quick turnaround for a fix 🔥
- 🇳🇱Netherlands balintbrews Amsterdam, NL
Turns out this needed more work. I would appreciate help with thorough testing of auto-save, typing into the editor, switching between components etc.