astro/packages/integrations/react/client-v17.js

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

23 lines
758 B
JavaScript
Raw Permalink Normal View History

import { createElement } from 'react';
import { render, hydrate, unmountComponentAtNode } from 'react-dom';
import StaticHtml from './static-html.js';
2022-05-12 16:06:40 +00:00
export default (element) =>
(Component, props, { default: children, ...slotted }, { client }) => {
for (const [key, value] of Object.entries(slotted)) {
props[key] = createElement(StaticHtml, { value, name: key });
}
const componentEl = createElement(
Component,
props,
2022-05-12 16:06:40 +00:00
children != null ? createElement(StaticHtml, { value: children }) : children
);
const isHydrate = client !== 'only';
const bootstrap = isHydrate ? hydrate : render;
bootstrap(componentEl, element);
2023-08-29 14:32:02 +00:00
element.addEventListener('astro:unmount', () => unmountComponentAtNode(element), {
once: true,
});
};