Skip to content

Commit b741ef3

Browse files
committedDec 5, 2024
feat(Avatar): add default slot for fallback
1 parent bc80a01 commit b741ef3

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed
 

‎src/runtime/components/Avatar.vue

+8-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ export interface AvatarProps extends Pick<AvatarFallbackProps, 'delayMs'> {
2727
ui?: Partial<typeof avatar.slots>
2828
}
2929
30+
export interface AvatarSlots {
31+
default(props?: {}): any
32+
}
33+
3034
extendDevtoolsMeta<AvatarProps>({ defaultProps: { src: 'https://avatars.githubusercontent.com/u/739984?v=4', alt: 'Benjamin Canac' } })
3135
</script>
3236

@@ -80,8 +84,10 @@ const sizePx = computed(() => ({
8084
/>
8185

8286
<AvatarFallback as-child v-bind="fallbackProps">
83-
<UIcon v-if="icon" :name="icon" :class="ui.icon({ class: props.ui?.icon })" />
84-
<span v-else :class="ui.fallback({ class: props.ui?.fallback })">{{ fallback }}</span>
87+
<slot>
88+
<UIcon v-if="icon" :name="icon" :class="ui.icon({ class: props.ui?.icon })" />
89+
<span v-else :class="ui.fallback({ class: props.ui?.fallback })">{{ fallback }}</span>
90+
</slot>
8591
</AvatarFallback>
8692
</AvatarRoot>
8793
</template>

‎test/components/Avatar.spec.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, it, expect } from 'vitest'
2-
import Avatar, { type AvatarProps } from '../../src/runtime/components/Avatar.vue'
2+
import Avatar, { type AvatarProps, type AvatarSlots } from '../../src/runtime/components/Avatar.vue'
33
import ComponentRender from '../component-render'
44
import theme from '#build/ui/avatar'
55

@@ -15,8 +15,10 @@ describe('Avatar', () => {
1515
...sizes.map((size: string) => [`with size ${size}`, { props: { src: 'https://github.com/benjamincanac.png', size } }]),
1616
['with as', { props: { as: 'section' } }],
1717
['with class', { props: { class: 'bg-[var(--ui-bg)]' } }],
18-
['with ui', { props: { ui: { fallback: 'font-bold' } } }]
19-
])('renders %s correctly', async (nameOrHtml: string, options: { props?: AvatarProps }) => {
18+
['with ui', { props: { ui: { fallback: 'font-bold' } } }],
19+
// Slots
20+
['with default slot', { slots: { default: '🇫🇷' } }]
21+
])('renders %s correctly', async (nameOrHtml: string, options: { props?: AvatarProps, slots?: AvatarSlots }) => {
2022
const html = await ComponentRender(nameOrHtml, options, Avatar)
2123
expect(html).toMatchSnapshot()
2224
})

‎test/components/__snapshots__/Avatar-vue.spec.ts.snap

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ exports[`Avatar > renders with as correctly 1`] = `
1010

1111
exports[`Avatar > renders with class correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle size-8 text-base bg-[var(--ui-bg)]"><!--v-if--><span class="font-medium leading-none text-[var(--ui-text-muted)] truncate"></span></span>"`;
1212

13+
exports[`Avatar > renders with default slot correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle bg-[var(--ui-bg-elevated)] size-8 text-base"><!--v-if-->🇫🇷</span>"`;
14+
1315
exports[`Avatar > renders with icon correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle bg-[var(--ui-bg-elevated)] size-8 text-base"><!--v-if--><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="text-[var(--ui-text-muted)] shrink-0" width="1em" height="1em" viewBox="0 0 16 16"></svg></span>"`;
1416

1517
exports[`Avatar > renders with size 2xl correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle bg-[var(--ui-bg-elevated)] size-11 text-[22px]"><img role="img" src="https://github.com/benjamincanac.png" width="44" height="44" class="h-full w-full rounded-[inherit] object-cover" style="display: none;"><span class="font-medium leading-none text-[var(--ui-text-muted)] truncate"></span></span>"`;

‎test/components/__snapshots__/Avatar.spec.ts.snap

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ exports[`Avatar > renders with as correctly 1`] = `
1010

1111
exports[`Avatar > renders with class correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle size-8 text-base bg-[var(--ui-bg)]"><!--v-if--><span class="font-medium leading-none text-[var(--ui-text-muted)] truncate"></span></span>"`;
1212

13+
exports[`Avatar > renders with default slot correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle bg-[var(--ui-bg-elevated)] size-8 text-base"><!--v-if-->🇫🇷</span>"`;
14+
1315
exports[`Avatar > renders with icon correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle bg-[var(--ui-bg-elevated)] size-8 text-base"><!--v-if--><span class="iconify i-lucide:image text-[var(--ui-text-muted)] shrink-0" aria-hidden="true"></span></span>"`;
1416

1517
exports[`Avatar > renders with size 2xl correctly 1`] = `"<span class="inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle bg-[var(--ui-bg-elevated)] size-11 text-[22px]"><img role="img" src="https://github.com/benjamincanac.png" width="44" height="44" class="h-full w-full rounded-[inherit] object-cover" style="display: none;"><span class="font-medium leading-none text-[var(--ui-text-muted)] truncate"></span></span>"`;

0 commit comments

Comments
 (0)