2022-03-18 22:35:45 +00:00
|
|
|
import './server-shim.js';
|
|
|
|
import { LitElementRenderer } from '@lit-labs/ssr/lib/lit-element-renderer.js';
|
2023-01-07 13:29:16 +00:00
|
|
|
import * as parse5 from 'parse5';
|
2022-03-18 22:35:45 +00:00
|
|
|
|
|
|
|
function isCustomElementTag(name) {
|
|
|
|
return typeof name === 'string' && /-/.test(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCustomElementConstructor(name) {
|
|
|
|
if (typeof customElements !== 'undefined' && isCustomElementTag(name)) {
|
|
|
|
return customElements.get(name) || null;
|
2022-06-21 12:33:55 +00:00
|
|
|
} else if (typeof name === 'function') {
|
2022-06-21 12:32:05 +00:00
|
|
|
return name;
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function isLitElement(Component) {
|
|
|
|
const Ctr = getCustomElementConstructor(Component);
|
2023-07-03 12:59:43 +00:00
|
|
|
return !!Ctr?._$litElement$;
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
|
2023-07-03 12:59:43 +00:00
|
|
|
async function check(Component) {
|
2022-03-18 22:35:45 +00:00
|
|
|
// Lit doesn't support getting a tagName from a Constructor at this time.
|
|
|
|
// So this must be a string at the moment.
|
|
|
|
return !!(await isLitElement(Component));
|
|
|
|
}
|
|
|
|
|
2022-06-23 15:10:54 +00:00
|
|
|
function* render(Component, attrs, slots) {
|
2022-06-21 12:32:05 +00:00
|
|
|
let tagName = Component;
|
2022-06-21 12:33:55 +00:00
|
|
|
if (typeof tagName !== 'string') {
|
2022-06-21 12:32:05 +00:00
|
|
|
tagName = Component[Symbol.for('tagName')];
|
|
|
|
}
|
2022-03-18 22:35:45 +00:00
|
|
|
const instance = new LitElementRenderer(tagName);
|
|
|
|
|
|
|
|
// LitElementRenderer creates a new element instance, so copy over.
|
|
|
|
const Ctr = getCustomElementConstructor(tagName);
|
2023-02-01 13:18:37 +00:00
|
|
|
let shouldDeferHydration = false;
|
|
|
|
|
2022-05-16 16:16:30 +00:00
|
|
|
if (attrs) {
|
|
|
|
for (let [name, value] of Object.entries(attrs)) {
|
2023-02-01 13:18:37 +00:00
|
|
|
const isReactiveProperty = name in Ctr.prototype;
|
|
|
|
const isReflectedReactiveProperty = Ctr.elementProperties.get(name)?.reflect;
|
|
|
|
|
|
|
|
// Only defer hydration if we are setting a reactive property that cannot
|
|
|
|
// be reflected / serialized as a property.
|
|
|
|
shouldDeferHydration ||= isReactiveProperty && !isReflectedReactiveProperty;
|
|
|
|
|
|
|
|
if (isReactiveProperty) {
|
2022-05-16 16:16:30 +00:00
|
|
|
instance.setProperty(name, value);
|
|
|
|
} else {
|
|
|
|
instance.setAttribute(name, value);
|
|
|
|
}
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
instance.connectedCallback();
|
|
|
|
|
2023-02-01 13:18:37 +00:00
|
|
|
yield `<${tagName}${shouldDeferHydration ? ' defer-hydration' : ''}`;
|
2022-03-18 22:35:45 +00:00
|
|
|
yield* instance.renderAttributes();
|
|
|
|
yield `>`;
|
2023-04-05 13:05:45 +00:00
|
|
|
const shadowContents = instance.renderShadow({
|
|
|
|
elementRenderers: [LitElementRenderer],
|
|
|
|
customElementInstanceStack: [instance],
|
|
|
|
customElementHostStack: [],
|
|
|
|
deferHydration: false,
|
|
|
|
});
|
2022-03-18 22:35:45 +00:00
|
|
|
if (shadowContents !== undefined) {
|
2023-02-24 18:10:56 +00:00
|
|
|
const { mode = 'open', delegatesFocus } = instance.shadowRootOptions ?? {};
|
2023-02-24 18:13:07 +00:00
|
|
|
// `delegatesFocus` is intentionally allowed to coerce to boolean to
|
|
|
|
// match web platform behavior.
|
|
|
|
const delegatesfocusAttr = delegatesFocus ? ' shadowrootdelegatesfocus' : '';
|
2023-02-24 18:10:56 +00:00
|
|
|
yield `<template shadowroot="${mode}" shadowrootmode="${mode}"${delegatesfocusAttr}>`;
|
2022-03-18 22:35:45 +00:00
|
|
|
yield* shadowContents;
|
|
|
|
yield '</template>';
|
|
|
|
}
|
2022-06-23 15:10:54 +00:00
|
|
|
if (slots) {
|
2023-01-07 13:29:16 +00:00
|
|
|
for (let [slot, value = ''] of Object.entries(slots)) {
|
|
|
|
if (slot !== 'default' && value) {
|
|
|
|
// Parse the value as a concatenated string
|
|
|
|
const fragment = parse5.parseFragment(`${value}`);
|
|
|
|
|
|
|
|
// Add the missing slot attribute to child Element nodes
|
|
|
|
for (const node of fragment.childNodes) {
|
|
|
|
if (node.tagName && !node.attrs.some(({ name }) => name === 'slot')) {
|
2023-01-07 13:32:04 +00:00
|
|
|
node.attrs.push({ name: 'slot', value: slot });
|
2023-01-07 13:29:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
value = parse5.serialize(fragment);
|
2022-06-23 15:10:54 +00:00
|
|
|
}
|
2023-01-07 13:29:16 +00:00
|
|
|
|
|
|
|
yield value;
|
2022-06-23 15:10:54 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-18 22:35:45 +00:00
|
|
|
yield `</${tagName}>`;
|
|
|
|
}
|
|
|
|
|
2022-06-23 15:10:54 +00:00
|
|
|
async function renderToStaticMarkup(Component, props, slots) {
|
2022-03-18 22:35:45 +00:00
|
|
|
let tagName = Component;
|
|
|
|
|
|
|
|
let out = '';
|
2022-06-23 15:10:54 +00:00
|
|
|
for (let chunk of render(tagName, props, slots)) {
|
2022-03-18 22:35:45 +00:00
|
|
|
out += chunk;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
html: out,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
check,
|
|
|
|
renderToStaticMarkup,
|
|
|
|
};
|