0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/packages/integrations/vue/client.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.8 KiB
JavaScript
Raw Normal View History

2024-04-17 03:38:53 -05:00
import { setup } from 'virtual:@astrojs/vue/app';
import { Suspense, createApp, createSSRApp, h } from 'vue';
import StaticHtml from './static-html.js';
// keep track of already initialized apps, so we don't hydrate again for view transitions
let appMap = new WeakMap();
2022-05-31 11:47:13 -05:00
export default (element) =>
async (Component, props, slotted, { client }) => {
2022-05-31 11:47:13 -05:00
if (!element.hasAttribute('ssr')) return;
2022-05-31 11:47:13 -05:00
// 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 });
2022-05-31 11:47:13 -05:00
}
const isHydrate = client !== 'only';
2023-10-18 08:23:19 -05:00
const bootstrap = isHydrate ? createSSRApp : createApp;
// keep a reference to the app, props and slots so we can update a running instance later
let appInstance = appMap.get(element);
if (!appInstance) {
appInstance = {
props,
slots,
};
const app = bootstrap({
name,
render() {
let content = h(Component, appInstance.props, appInstance.slots);
appInstance.component = this;
// 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);
}
return content;
},
});
2024-10-03 13:52:11 -05:00
app.config.idPrefix = element.getAttribute('prefix');
await setup(app);
app.mount(element, isHydrate);
appMap.set(element, appInstance);
element.addEventListener('astro:unmount', () => app.unmount(), { once: true });
} else {
appInstance.props = props;
appInstance.slots = slots;
appInstance.component.$forceUpdate();
}
2022-05-31 11:47:13 -05:00
};
2023-03-31 12:44:00 -05:00
function isAsync(fn) {
const constructor = fn?.constructor;
return constructor && constructor.name === 'AsyncFunction';
}