vue3: refactory and code improvement fix jest

This commit is contained in:
chakir qatab 2023-01-10 20:56:27 +04:00
parent 3730f4b1f7
commit d12d71ca79
2 changed files with 13 additions and 13 deletions

View File

@ -46,31 +46,31 @@ describe('generateSource Vue3', () => {
});
test('1 slot property', () => {
expect(generateForArgs({ content: 'xyz', myProp: 'abc' }, ['content'])).toMatchInlineSnapshot(`
<Component :content='content' :myProp='myProp'>
{{ content }}
<Component :myProp='myProp'>
{{ content }}
</Component>
`);
});
test('multiple slot property with second slot value not set', () => {
expect(generateForArgs({ content: 'xyz', myProp: 'abc' }, ['content', 'footer']))
.toMatchInlineSnapshot(`
<Component :content='content' :myProp='myProp'>
<Component :myProp='myProp'>
<template #content>
{{ content }}
</template>
{{ content }}
</template>
</Component>
`);
});
test('multiple slot property with second slot value is set', () => {
expect(generateForArgs({ content: 'xyz', footer: 'foo', myProp: 'abc' }, ['content', 'footer']))
.toMatchInlineSnapshot(`
<Component :content='content' :footer='footer' :myProp='myProp'>
<Component :myProp='myProp'>
<template #content>
{{ content }}
</template>
{{ content }}
</template>
<template #footer>
{{ footer }}
</template>
{{ footer }}
</template>
</Component>
`);
});

View File

@ -218,13 +218,13 @@ function createNamedSlots(
byRef?: boolean | undefined
) {
if (!slotProps) return '';
if (slotProps.length === 1) return !byRef ? slotArgs[slotProps[0]] : `{{ ${slotProps[0]} }}`;
if (slotProps.length === 1) return !byRef ? slotArgs[slotProps[0]] : ` {{ ${slotProps[0]} }}`;
return Object.entries(slotArgs)
.map(([key, value]) => {
return ` <template #${key}>
${!byRef ? JSON.stringify(value) : `{{ ${key} }}`}
</template>`;
${!byRef ? JSON.stringify(value) : `{{ ${key} }}`}
</template>`;
})
.join('\n');
}