2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-05-08 08:29:19 +00:00
|
|
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
|
|
import { StoryObj } from '@storybook/vue3';
|
|
|
|
import { rest } from 'msw';
|
2023-12-24 07:16:58 +00:00
|
|
|
import { commonHandlers } from '../../.storybook/mocks.js';
|
|
|
|
import { userDetailed } from '../../.storybook/fakes.js';
|
2023-05-08 08:29:19 +00:00
|
|
|
import MkUserSetupDialog_Follow from './MkUserSetupDialog.Follow.vue';
|
|
|
|
export const Default = {
|
|
|
|
render(args) {
|
|
|
|
return {
|
|
|
|
components: {
|
|
|
|
MkUserSetupDialog_Follow,
|
|
|
|
},
|
|
|
|
setup() {
|
|
|
|
return {
|
|
|
|
args,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
props() {
|
|
|
|
return {
|
|
|
|
...this.args,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
template: '<MkUserSetupDialog_Follow v-bind="props" />',
|
|
|
|
};
|
|
|
|
},
|
|
|
|
args: {
|
2023-07-07 22:08:16 +00:00
|
|
|
|
2023-05-08 08:29:19 +00:00
|
|
|
},
|
|
|
|
parameters: {
|
|
|
|
layout: 'centered',
|
|
|
|
msw: {
|
|
|
|
handlers: [
|
|
|
|
...commonHandlers,
|
|
|
|
rest.post('/api/users', (req, res, ctx) => {
|
|
|
|
return res(ctx.json([
|
|
|
|
userDetailed('44'),
|
|
|
|
userDetailed('49'),
|
|
|
|
]));
|
|
|
|
}),
|
|
|
|
rest.post('/api/pinned-users', (req, res, ctx) => {
|
|
|
|
return res(ctx.json([
|
|
|
|
userDetailed('44'),
|
|
|
|
userDetailed('49'),
|
|
|
|
]));
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} satisfies StoryObj<typeof MkUserSetupDialog_Follow>;
|