2022-03-31 16:51:29 +00:00
|
|
|
import { createElement } from 'react';
|
2022-05-12 16:05:55 +00:00
|
|
|
import { render, hydrate } from 'react-dom';
|
2022-03-31 16:51:29 +00:00
|
|
|
import StaticHtml from './static-html.js';
|
|
|
|
|
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 }) => {
|
|
|
|
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-31 16:51:29 +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
|
|
|
);
|
|
|
|
if (client === 'only') {
|
|
|
|
return render(componentEl, element);
|
|
|
|
}
|
|
|
|
return hydrate(componentEl, element);
|
|
|
|
};
|