diff options
Diffstat (limited to 'packages/integrations/solid/server.js')
-rw-r--r-- | packages/integrations/solid/server.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/packages/integrations/solid/server.js b/packages/integrations/solid/server.js deleted file mode 100644 index 2398ec317..000000000 --- a/packages/integrations/solid/server.js +++ /dev/null @@ -1,31 +0,0 @@ -import { renderToString, ssr, createComponent } from 'solid-js/web'; - -const slotName = (str) => str.trim().replace(/[-_]([a-z])/g, (_, w) => w.toUpperCase()); - -function check(Component, props, children) { - if (typeof Component !== 'function') return false; - const { html } = renderToStaticMarkup(Component, props, children); - return typeof html === 'string'; -} - -function renderToStaticMarkup(Component, props, { default: children, ...slotted }) { - const slots = {}; - for (const [key, value] of Object.entries(slotted)) { - const name = slotName(key); - slots[name] = ssr(`<astro-slot name="${name}">${value}</astro-slot>`); - } - // Note: create newProps to avoid mutating `props` before they are serialized - const newProps = { - ...props, - ...slots, - // In Solid SSR mode, `ssr` creates the expected structure for `children`. - children: children != null ? ssr(`<astro-slot>${children}</astro-slot>`) : children, - }; - const html = renderToString(() => createComponent(Component, newProps)); - return { html }; -} - -export default { - check, - renderToStaticMarkup, -}; |