astro/packages/integrations/svelte/client.js

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

47 lines
860 B
JavaScript
Raw Normal View History

const noop = () => {};
export default (target) => {
return (Component, props, slotted, { client }) => {
if (!target.hasAttribute('ssr')) return;
delete props['class'];
const slots = {};
for (const [key, value] of Object.entries(slotted)) {
slots[key] = createSlotDefinition(key, value);
}
try {
new Component({
target,
2022-06-23 15:12:46 +00:00
props: {
...props,
$$slots: slots,
2022-06-23 15:12:46 +00:00
$$scope: { ctx: [] },
},
hydrate: client !== 'only',
$$inline: true,
});
} catch (e) {}
};
};
function createSlotDefinition(key, children) {
2022-06-23 15:12:46 +00:00
return [
() => ({
// mount
m(target) {
2022-06-23 15:12:46 +00:00
target.insertAdjacentHTML(
'beforeend',
`<astro-slot${key === 'default' ? '' : ` name="${key}"`}>${children}</astro-slot>`
);
},
// create
c: noop,
// hydrate
l: noop,
// destroy
d: noop,
}),
2022-06-23 15:12:46 +00:00
noop,
noop,
];
}