astro/packages/integrations/preact/client.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
445 B
JavaScript
Raw Normal View History

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
);
};