e9a77d8619
* wip: fix nested islands
* fix: improve hydration for dynamic content
* chore: fix bundle-size script for new files
* chore: allow-list client:* directive files
* fix(#3362): fix client:only behavior for React, Vue, Solid
* test: add client-only e2e test
* chore: update lockfile
* test: fix e2e tests
* test: add framework nesting e2e tests
* Update packages/astro/src/runtime/client/events.ts
Co-authored-by: Matthew Phillips <matthew@skypack.dev>
* chore: add changeset
* fix(preact): ignore hydrate roots
* chore: remove `ssr` check in integrations
* Revert "chore: remove `ssr` check in integrations"
This reverts commit ba27eaae55
.
* chore: add changeset
Co-authored-by: Matthew Phillips <matthew@skypack.dev>
30 lines
863 B
JavaScript
30 lines
863 B
JavaScript
import { createElement } from 'react';
|
|
import { createRoot, hydrateRoot } from 'react-dom/client';
|
|
import StaticHtml from './static-html.js';
|
|
|
|
function isAlreadyHydrated(element) {
|
|
for (const key in element) {
|
|
if (key.startsWith('__reactContainer')) {
|
|
return key;
|
|
}
|
|
}
|
|
}
|
|
|
|
export default (element) =>
|
|
(Component, props, children, { client }) => {
|
|
if (!element.hasAttribute('ssr')) return;
|
|
const componentEl = createElement(
|
|
Component,
|
|
props,
|
|
children != null ? createElement(StaticHtml, { value: children }) : children
|
|
);
|
|
const rootKey = isAlreadyHydrated(element);
|
|
// HACK: delete internal react marker for nested components to suppress agressive warnings
|
|
if (rootKey) {
|
|
delete element[rootKey];
|
|
}
|
|
if (client === 'only') {
|
|
return createRoot(element).render(componentEl);
|
|
}
|
|
return hydrateRoot(element, componentEl);
|
|
};
|