summaryrefslogtreecommitdiff
path: root/packages/renderers/renderer-solid/server.js
blob: 1d99ac37816b166783916deced6160b40ce2c7b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { renderToString, ssr, createComponent } from 'solid-js/web/dist/server.js';

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, children) {
  const html = renderToString(
    () =>
      createComponent(Component, {
        ...props,
        // In Solid SSR mode, `ssr` creates the expected structure for `children`.
        // In Solid client mode, `ssr` is just a stub.
        children: ssr(`<astro-fragment>${children}</astro-fragment>`),
      })
  );
  return { html: html + `<script>window._$HYDRATION||(window._$HYDRATION={events:[],completed:new WeakSet})</script>` };
}

export default {
  check,
  renderToStaticMarkup,
};