2023-03-31 17:42:03 +00:00
|
|
|
import { h, createSSRApp, createApp, Suspense } from 'vue';
|
2022-10-13 19:17:42 +00:00
|
|
|
import { setup } from 'virtual:@astrojs/vue/app';
|
2022-03-18 22:35:45 +00:00
|
|
|
import StaticHtml from './static-html.js';
|
|
|
|
|
2022-05-31 16:47:13 +00:00
|
|
|
export default (element) =>
|
2022-10-13 19:15:57 +00:00
|
|
|
async (Component, props, slotted, { client }) => {
|
2022-05-31 16:47:13 +00:00
|
|
|
delete props['class'];
|
|
|
|
if (!element.hasAttribute('ssr')) return;
|
2022-05-31 16:29:36 +00:00
|
|
|
|
2022-05-31 16:47:13 +00:00
|
|
|
// Expose name on host component for Vue devtools
|
|
|
|
const name = Component.name ? `${Component.name} Host` : undefined;
|
|
|
|
const slots = {};
|
2022-06-23 15:10:54 +00:00
|
|
|
for (const [key, value] of Object.entries(slotted)) {
|
|
|
|
slots[key] = () => h(StaticHtml, { value, name: key === 'default' ? undefined : key });
|
2022-05-31 16:47:13 +00:00
|
|
|
}
|
2023-03-31 17:42:03 +00:00
|
|
|
|
|
|
|
let content = h(Component, props, slots);
|
|
|
|
// related to https://github.com/withastro/astro/issues/6549
|
|
|
|
// if the component is async, wrap it in a Suspense component
|
|
|
|
if (isAsync(Component.setup)) {
|
|
|
|
content = h(Suspense, null, content)
|
|
|
|
}
|
|
|
|
|
2022-05-31 16:47:13 +00:00
|
|
|
if (client === 'only') {
|
2023-03-31 17:42:03 +00:00
|
|
|
const app = createApp({ name, render: () => content });
|
2022-10-13 19:15:57 +00:00
|
|
|
await setup(app);
|
2022-05-31 16:47:13 +00:00
|
|
|
app.mount(element, false);
|
|
|
|
} else {
|
2023-03-31 17:42:03 +00:00
|
|
|
const app = createSSRApp({ name, render: () => content });
|
2022-10-13 19:15:57 +00:00
|
|
|
await setup(app);
|
2022-05-31 16:47:13 +00:00
|
|
|
app.mount(element, true);
|
|
|
|
}
|
|
|
|
};
|
2023-03-31 17:42:03 +00:00
|
|
|
|
|
|
|
function isAsync (fn) {
|
|
|
|
const constructor = fn?.constructor
|
|
|
|
return constructor && constructor.name === 'AsyncFunction';
|
|
|
|
}
|