2022-03-18 22:35:45 +00:00
|
|
|
import { h, render } from 'preact';
|
|
|
|
import StaticHtml from './static-html.js';
|
|
|
|
|
2022-06-23 15:12:46 +00:00
|
|
|
export default (element) =>
|
|
|
|
(Component, props, { default: children, ...slotted }) => {
|
|
|
|
if (!element.hasAttribute('ssr')) return;
|
|
|
|
for (const [key, value] of Object.entries(slotted)) {
|
|
|
|
props[key] = h(StaticHtml, { value, name: key });
|
|
|
|
}
|
|
|
|
render(
|
|
|
|
h(Component, props, children != null ? h(StaticHtml, { value: children }) : children),
|
|
|
|
element
|
|
|
|
);
|
|
|
|
};
|