mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 20:06:54 +01:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
71 lines
1.6 KiB
TypeScript
71 lines
1.6 KiB
TypeScript
/*
|
||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||
* SPDX-License-Identifier: AGPL-3.0-only
|
||
*/
|
||
|
||
/* 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>;
|