01a815f8a7
* fix(backend): missing `visibility` param in packing flash * fix(frontend): use `visibility` value got from API * enhance(frontend): change preview appearance of private Play * Update CHANGELOG.md
53 lines
1 KiB
TypeScript
53 lines
1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { 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>;
|