astro/packages/integrations/react/client.js

41 lines
1.2 KiB
JavaScript
Raw Normal View History

import { createElement, startTransition } 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;
}
}
}
2022-05-12 16:06:40 +00:00
export default (element) =>
(Component, props, { default: children, ...slotted }, { client }) => {
if (!element.hasAttribute('ssr')) return;
const renderOptions = {
2023-05-04 14:25:03 +00:00
identifierPrefix: element.getAttribute('prefix'),
};
for (const [key, value] of Object.entries(slotted)) {
props[key] = createElement(StaticHtml, { value, name: key });
}
const componentEl = createElement(
Component,
props,
2022-05-12 16:06:40 +00:00
children != null ? createElement(StaticHtml, { value: children }) : children
);
const rootKey = isAlreadyHydrated(element);
// HACK: delete internal react marker for nested components to suppress aggressive warnings
if (rootKey) {
delete element[rootKey];
}
if (client === 'only') {
return startTransition(() => {
createRoot(element).render(componentEl);
2022-08-25 18:53:12 +00:00
});
}
return startTransition(() => {
hydrateRoot(element, componentEl, renderOptions);
2022-08-25 18:53:12 +00:00
});
};