2022-03-18 22:35:45 +00:00
|
|
|
import { createElement } 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-12 16:05:55 +00:00
|
|
|
export default (element) => (Component, props, children, { client }) =>
|
|
|
|
{
|
|
|
|
const componentEl = createElement(
|
2022-03-18 22:35:45 +00:00
|
|
|
Component,
|
2022-05-12 16:05:55 +00:00
|
|
|
props,
|
2022-03-18 22:35:45 +00:00
|
|
|
children != null
|
2022-05-12 16:05:55 +00:00
|
|
|
? createElement(StaticHtml, { value: children })
|
2022-03-18 22:35:45 +00:00
|
|
|
: children
|
2022-05-12 16:05:55 +00:00
|
|
|
);
|
|
|
|
if (client === 'only') {
|
|
|
|
return createRoot(element).render(componentEl);
|
|
|
|
}
|
|
|
|
return hydrateRoot(element, componentEl);
|
|
|
|
};
|