summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkFlashPreview.stories.impl.ts
blob: 4a751062c9461c9cb9c0bc06db8f5b913e54d6c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import type { StoryObj } from '@storybook/vue3';
import MkFlashPreview from './MkFlashPreview.vue';
import { flash } from './../../.storybook/fakes.js';
export const Public = {
	render(args) {
		return {
			components: {
				MkFlashPreview,
			},
			setup() {
				return {
					args,
				};
			},
			computed: {
				props() {
					return {
						...this.args,
					};
				},
			},
			template: '<MkFlashPreview v-bind="props" />',
		};
	},
	args: {
		flash: {
			...flash(),
			visibility: 'public',
		},
	},
	parameters: {
		layout: 'fullscreen',
	},
	decorators: [
		() => ({
			template: '<div style="display: flex; align-items: center; justify-content: center; height: 100vh"><div style="max-width: 700px; width: 100%; margin: 3rem"><story/></div></div>',
		}),
	],
} satisfies StoryObj<typeof MkFlashPreview>;
export const Private = {
	...Public,
	args: {
		flash: {
			...flash(),
			visibility: 'private',
		},
	},
} satisfies StoryObj<typeof MkFlashPreview>;