2022-08-25 18:50:45 +00:00
|
|
|
import { createElement, startTransition } from 'react';
|
2022-05-12 16:05:55 +00:00
|
|
|
import { createRoot, hydrateRoot } from 'react-dom/client';
|
2022-03-18 22:35:45 +00:00
|
|
|
import StaticHtml from './static-html.js';
|
|
|
|
|
2022-05-31 16:29:36 +00:00
|
|
|
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) =>
|
2022-06-23 15:10:54 +00:00
|
|
|
(Component, props, { default: children, ...slotted }, { client }) => {
|
2022-05-31 16:29:36 +00:00
|
|
|
if (!element.hasAttribute('ssr')) return;
|
2022-06-23 15:10:54 +00:00
|
|
|
for (const [key, value] of Object.entries(slotted)) {
|
|
|
|
props[key] = createElement(StaticHtml, { value, name: key });
|
|
|
|
}
|
2022-05-12 16:05:55 +00:00
|
|
|
const componentEl = createElement(
|
2022-03-18 22:35:45 +00:00
|
|
|
Component,
|
2022-05-12 16:05:55 +00:00
|
|
|
props,
|
2022-05-12 16:06:40 +00:00
|
|
|
children != null ? createElement(StaticHtml, { value: children }) : children
|
2022-05-12 16:05:55 +00:00
|
|
|
);
|
2022-05-31 16:29:36 +00:00
|
|
|
const rootKey = isAlreadyHydrated(element);
|
|
|
|
// HACK: delete internal react marker for nested components to suppress agressive warnings
|
|
|
|
if (rootKey) {
|
|
|
|
delete element[rootKey];
|
|
|
|
}
|
2022-05-12 16:05:55 +00:00
|
|
|
if (client === 'only') {
|
2022-08-25 18:50:45 +00:00
|
|
|
return startTransition(() => {
|
|
|
|
createRoot(element).render(componentEl);
|
2022-08-25 18:53:12 +00:00
|
|
|
});
|
2022-05-12 16:05:55 +00:00
|
|
|
}
|
2022-08-25 18:50:45 +00:00
|
|
|
return startTransition(() => {
|
|
|
|
hydrateRoot(element, componentEl);
|
2022-08-25 18:53:12 +00:00
|
|
|
});
|
2022-05-12 16:05:55 +00:00
|
|
|
};
|