astro/packages/integrations/vue/client.js

25 lines
748 B
JavaScript
Raw Permalink Normal View History

2022-08-31 13:44:52 +00:00
import { h, Teleport, defineComponent } from 'vue';
import StaticHtml from './static-html.js';
2022-05-31 16:47:13 +00:00
export default (element) =>
2022-08-31 13:44:52 +00:00
(Component, props, slotted) => {
2022-05-31 16:47:13 +00:00
delete props['class'];
if (!element.hasAttribute('ssr')) return;
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-08-31 13:44:52 +00:00
const { addChild } = globalThis['@astrojs/vue']
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
}
2022-08-31 13:44:52 +00:00
// h(Teleport, { to: element }, ["AHHHHHH"])
let host = defineComponent({
name,
setup() {
return () => h(Component, props, slots)
}
});
addChild(host)
2022-05-31 16:47:13 +00:00
};