mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-17 11:08:58 +01:00
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
||
|
import { action } from '@storybook/addon-actions';
|
||
|
import { StoryObj } from '@storybook/vue3';
|
||
|
import { HttpResponse, http } from 'msw';
|
||
|
import { commonHandlers } from '../../.storybook/mocks.js';
|
||
|
import MkAntennaEditorDialog from './MkAntennaEditorDialog.vue';
|
||
|
export const Default = {
|
||
|
render(args) {
|
||
|
return {
|
||
|
components: {
|
||
|
MkAntennaEditorDialog,
|
||
|
},
|
||
|
setup() {
|
||
|
return {
|
||
|
args,
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
props() {
|
||
|
return {
|
||
|
...this.args,
|
||
|
};
|
||
|
},
|
||
|
events() {
|
||
|
return {
|
||
|
created: action('created'),
|
||
|
updated: action('updated'),
|
||
|
deleted: action('deleted'),
|
||
|
closed: action('closed'),
|
||
|
};
|
||
|
},
|
||
|
},
|
||
|
template: '<MkAntennaEditorDialog v-bind="props" v-on="events" />',
|
||
|
};
|
||
|
},
|
||
|
args: {
|
||
|
},
|
||
|
parameters: {
|
||
|
layout: 'centered',
|
||
|
msw: {
|
||
|
handlers: [
|
||
|
...commonHandlers,
|
||
|
http.post('/api/antennas/create', async ({ request }) => {
|
||
|
action('POST /api/antennas/create')(await request.json());
|
||
|
return HttpResponse.json({});
|
||
|
}),
|
||
|
http.post('/api/antennas/update', async ({ request }) => {
|
||
|
action('POST /api/antennas/update')(await request.json());
|
||
|
return HttpResponse.json({});
|
||
|
}),
|
||
|
http.post('/api/antennas/delete', async ({ request }) => {
|
||
|
action('POST /api/antennas/delete')(await request.json());
|
||
|
return HttpResponse.json();
|
||
|
}),
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
} satisfies StoryObj<typeof MkAntennaEditorDialog>;
|