2022-08-31 13:44:52 +00:00
|
|
|
import { h, Teleport, defineComponent } 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-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: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-08-31 13:44:52 +00:00
|
|
|
const { addChild } = globalThis['@astrojs/vue']
|
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
|
|
|
}
|
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
|
|
|
};
|