mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
2dd00a0024
* chore: import sort source code, exception for the `astro` package * fix import sorting bug * Update packages/integrations/lit/server.js Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
29 lines
995 B
JavaScript
29 lines
995 B
JavaScript
import { Fragment, createElement } from 'react';
|
|
import { DOCUMENT_NODE, ELEMENT_NODE, TEXT_NODE, parse } from 'ultrahtml';
|
|
|
|
let ids = 0;
|
|
export default function convert(children) {
|
|
let doc = parse(children.toString().trim());
|
|
let id = ids++;
|
|
let key = 0;
|
|
|
|
function createReactElementFromNode(node) {
|
|
const childVnodes =
|
|
Array.isArray(node.children) && node.children.length
|
|
? node.children.map((child) => createReactElementFromNode(child)).filter(Boolean)
|
|
: undefined;
|
|
|
|
if (node.type === DOCUMENT_NODE) {
|
|
return createElement(Fragment, {}, childVnodes);
|
|
} else if (node.type === ELEMENT_NODE) {
|
|
const { class: className, ...props } = node.attributes;
|
|
return createElement(node.name, { ...props, className, key: `${id}-${key++}` }, childVnodes);
|
|
} else if (node.type === TEXT_NODE) {
|
|
// 0-length text gets omitted in JSX
|
|
return node.value.trim() ? node.value : undefined;
|
|
}
|
|
}
|
|
|
|
const root = createReactElementFromNode(doc);
|
|
return root.props.children;
|
|
}
|