1f58a7a1be
* fix(view-transitions): update persistence logic for improved unmount behavior * feat(astro): add `astro:unmount` event * feat(vue): automatically unmount islands * feat(react): automatically unmount islands * feat(react): automatically unmount islands * feat(solid): automatically dispose of islands * feat(svelte): automatically destroy of islands * feat(svelte): automatically destroy of islands * feat(solid): automatically dispose of islands * feat(preact): automatically unmount islands * chore: update changeset * fix: rebase issue * chore: add clarifying comment * chore: remove duplicate changeset * chore: add changeset
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
import { h, createSSRApp, createApp, Suspense } from 'vue';
|
|
import { setup } from 'virtual:@astrojs/vue/app';
|
|
import StaticHtml from './static-html.js';
|
|
|
|
export default (element) =>
|
|
async (Component, props, slotted, { client }) => {
|
|
delete props['class'];
|
|
if (!element.hasAttribute('ssr')) return;
|
|
|
|
// Expose name on host component for Vue devtools
|
|
const name = Component.name ? `${Component.name} Host` : undefined;
|
|
const slots = {};
|
|
for (const [key, value] of Object.entries(slotted)) {
|
|
slots[key] = () => h(StaticHtml, { value, name: key === 'default' ? undefined : key });
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
const isHydrate = client !== 'only';
|
|
const boostrap = isHydrate ? createSSRApp : createApp;
|
|
const app = boostrap({ name, render: () => content });
|
|
await setup(app);
|
|
app.mount(element, isHydrate);
|
|
|
|
element.addEventListener('astro:unmount', () => app.unmount(), { once: true });
|
|
};
|
|
|
|
function isAsync(fn) {
|
|
const constructor = fn?.constructor;
|
|
return constructor && constructor.name === 'AsyncFunction';
|
|
}
|