2022-05-31 16:29:36 +00:00
|
|
|
import { h, createSSRApp, createApp } from 'vue';
|
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-06-23 15:10:54 +00:00
|
|
|
(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
|
|
|
}
|
|
|
|
if (client === 'only') {
|
|
|
|
const app = createApp({ name, render: () => h(Component, props, slots) });
|
|
|
|
app.mount(element, false);
|
|
|
|
} else {
|
|
|
|
const app = createSSRApp({ name, render: () => h(Component, props, slots) });
|
|
|
|
app.mount(element, true);
|
|
|
|
}
|
|
|
|
};
|