67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|||
|
import { StoryObj } from '@storybook/vue3';
|
|||
|
import { userDetailed } from '../../../.storybook/fakes';
|
|||
|
import MkAvatar from './MkAvatar.vue';
|
|||
|
const common = {
|
|||
|
render(args) {
|
|||
|
return {
|
|||
|
components: {
|
|||
|
MkAvatar,
|
|||
|
},
|
|||
|
setup() {
|
|||
|
return {
|
|||
|
args,
|
|||
|
};
|
|||
|
},
|
|||
|
computed: {
|
|||
|
props() {
|
|||
|
return {
|
|||
|
...this.args,
|
|||
|
};
|
|||
|
},
|
|||
|
},
|
|||
|
template: '<MkAvatar v-bind="props" />',
|
|||
|
};
|
|||
|
},
|
|||
|
args: {
|
|||
|
user: userDetailed,
|
|||
|
},
|
|||
|
decorators: [
|
|||
|
(Story, context) => ({
|
|||
|
// eslint-disable-next-line quotes
|
|||
|
template: `<div :style="{ display: 'grid', width: '${context.args.size}px', height: '${context.args.size}px' }"><story/></div>`,
|
|||
|
}),
|
|||
|
],
|
|||
|
parameters: {
|
|||
|
layout: 'centered',
|
|||
|
},
|
|||
|
} satisfies StoryObj<typeof MkAvatar>;
|
|||
|
export const ProfilePage = {
|
|||
|
...common,
|
|||
|
args: {
|
|||
|
...common.args,
|
|||
|
size: 120,
|
|||
|
indicator: true,
|
|||
|
},
|
|||
|
} satisfies StoryObj<typeof MkAvatar>;
|
|||
|
export const ProfilePageCat = {
|
|||
|
...ProfilePage,
|
|||
|
args: {
|
|||
|
...ProfilePage.args,
|
|||
|
user: {
|
|||
|
...userDetailed,
|
|||
|
isCat: true,
|
|||
|
},
|
|||
|
},
|
|||
|
parameters: {
|
|||
|
...ProfilePage.parameters,
|
|||
|
chromatic: {
|
|||
|
/* Your story couldn’t be captured because it exceeds our 25,000,000px limit. Its dimensions are 5,504,893x5,504,892px. Possible ways to resolve:
|
|||
|
* * Separate pages into components
|
|||
|
* * Minimize the number of very large elements in a story
|
|||
|
*/
|
|||
|
disableSnapshot: true,
|
|||
|
},
|
|||
|
},
|
|||
|
} satisfies StoryObj<typeof MkAvatar>;
|