forked from mirror/misskey

* wip * wip * wip * wip * revert unnecessary changes * wip * refactor(frontend): enforce verbatimModuleSyntax * fix * refactor(frontend-shared): enforce verbatimModuleSyntax * wip * refactor(frontend-embed): enforce verbatimModuleSyntax * enforce consistent-type-imports * fix lint config * attemt to fix ci * fix lint * fix * fix * fix
107 lines
2.6 KiB
TypeScript
107 lines
2.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 type { StoryObj } from '@storybook/vue3';
|
|
import { http, HttpResponse } from 'msw';
|
|
import { role } from '../../.storybook/fakes.js';
|
|
import { commonHandlers } from '../../.storybook/mocks.js';
|
|
import MkRoleSelectDialog from '@/components/MkRoleSelectDialog.vue';
|
|
|
|
const roles = [
|
|
role({ displayOrder: 1 }, '1'), role({ displayOrder: 1 }, '1'), role({ displayOrder: 1 }, '1'), role({ displayOrder: 1 }, '1'),
|
|
role({ displayOrder: 2 }, '2'), role({ displayOrder: 2 }, '2'), role({ displayOrder: 3 }, '3'), role({ displayOrder: 3 }, '3'),
|
|
role({ displayOrder: 4 }, '4'), role({ displayOrder: 5 }, '5'), role({ displayOrder: 6 }, '6'), role({ displayOrder: 7 }, '7'),
|
|
role({ displayOrder: 999, name: 'privateRole', isPublic: false }, '999'),
|
|
];
|
|
|
|
export const Default = {
|
|
render(args) {
|
|
return {
|
|
components: {
|
|
MkRoleSelectDialog,
|
|
},
|
|
setup() {
|
|
return {
|
|
args,
|
|
};
|
|
},
|
|
computed: {
|
|
props() {
|
|
return {
|
|
...this.args,
|
|
};
|
|
},
|
|
},
|
|
template: '<MkRoleSelectDialog v-bind="props" />',
|
|
};
|
|
},
|
|
args: {
|
|
initialRoleIds: undefined,
|
|
infoMessage: undefined,
|
|
title: undefined,
|
|
publicOnly: true,
|
|
},
|
|
parameters: {
|
|
layout: 'centered',
|
|
msw: {
|
|
handlers: [
|
|
...commonHandlers,
|
|
http.post('/api/admin/roles/list', ({ params }) => {
|
|
return HttpResponse.json(roles);
|
|
}),
|
|
],
|
|
},
|
|
},
|
|
decorators: [() => ({
|
|
template: '<div style="width:100cqmin"><story/></div>',
|
|
})],
|
|
} satisfies StoryObj<typeof MkRoleSelectDialog>;
|
|
|
|
export const InitialIds = {
|
|
...Default,
|
|
args: {
|
|
...Default.args,
|
|
initialRoleIds: [roles[0].id, roles[1].id, roles[4].id, roles[6].id, roles[8].id, roles[10].id],
|
|
},
|
|
} satisfies StoryObj<typeof MkRoleSelectDialog>;
|
|
|
|
export const InfoMessage = {
|
|
...Default,
|
|
args: {
|
|
...Default.args,
|
|
infoMessage: 'This is a message.',
|
|
},
|
|
} satisfies StoryObj<typeof MkRoleSelectDialog>;
|
|
|
|
export const Title = {
|
|
...Default,
|
|
args: {
|
|
...Default.args,
|
|
title: 'Select roles',
|
|
},
|
|
} satisfies StoryObj<typeof MkRoleSelectDialog>;
|
|
|
|
export const Full = {
|
|
...Default,
|
|
args: {
|
|
...Default.args,
|
|
initialRoleIds: roles.map(it => it.id),
|
|
infoMessage: InfoMessage.args.infoMessage,
|
|
title: Title.args.title,
|
|
},
|
|
} satisfies StoryObj<typeof MkRoleSelectDialog>;
|
|
|
|
export const FullWithPrivate = {
|
|
...Default,
|
|
args: {
|
|
...Default.args,
|
|
initialRoleIds: roles.map(it => it.id),
|
|
infoMessage: InfoMessage.args.infoMessage,
|
|
title: Title.args.title,
|
|
publicOnly: false,
|
|
},
|
|
} satisfies StoryObj<typeof MkRoleSelectDialog>;
|