mirror of
https://codeberg.org/yeentown/barkey
synced 2024-12-05 03:17:26 +00:00
83 lines
2.4 KiB
TypeScript
83 lines
2.4 KiB
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
import { action } from '@storybook/addon-actions';
|
||
|
import { StoryObj } from '@storybook/vue3';
|
||
|
import { http, HttpResponse } from 'msw';
|
||
|
import * as Misskey from 'misskey-js';
|
||
|
import MkDrive from './MkDrive.vue';
|
||
|
import { file, folder } from '../../.storybook/fakes.js';
|
||
|
import { commonHandlers } from '../../.storybook/mocks.js';
|
||
|
export const Default = {
|
||
|
render(args) {
|
||
|
return {
|
||
|
components: {
|
||
|
MkDrive,
|
||
|
},
|
||
|
setup() {
|
||
|
return {
|
||
|
args,
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
props() {
|
||
|
return {
|
||
|
...this.args,
|
||
|
};
|
||
|
},
|
||
|
events() {
|
||
|
return {
|
||
|
selected: action('selected'),
|
||
|
'change-selection': action('change-selection'),
|
||
|
'move-root': action('move-root'),
|
||
|
cd: action('cd'),
|
||
|
'open-folder': action('open-folder'),
|
||
|
};
|
||
|
},
|
||
|
},
|
||
|
template: '<MkDrive v-bind="props" v-on="events" />',
|
||
|
};
|
||
|
},
|
||
|
parameters: {
|
||
|
chromatic: {
|
||
|
// NOTE: ロードが終わるまで待つ
|
||
|
delay: 3000,
|
||
|
},
|
||
|
layout: 'centered',
|
||
|
msw: {
|
||
|
handlers: [
|
||
|
...commonHandlers,
|
||
|
http.post('/api/drive/files', async ({ request }) => {
|
||
|
action('POST /api/drive/files')(await request.json());
|
||
|
return HttpResponse.json([file()]);
|
||
|
}),
|
||
|
http.post('/api/drive/folders', async ({ request }) => {
|
||
|
action('POST /api/drive/folders')(await request.json());
|
||
|
return HttpResponse.json([folder(crypto.randomUUID())]);
|
||
|
}),
|
||
|
http.post('/api/drive/folders/create', async ({ request }) => {
|
||
|
const req = await request.json() as Misskey.entities.DriveFoldersCreateRequest;
|
||
|
action('POST /api/drive/folders/create')(req);
|
||
|
return HttpResponse.json(folder(crypto.randomUUID(), req.name, req.parentId));
|
||
|
}),
|
||
|
http.post('/api/drive/folders/delete', async ({ request }) => {
|
||
|
action('POST /api/drive/folders/delete')(await request.json());
|
||
|
return HttpResponse.json(undefined, { status: 204 });
|
||
|
}),
|
||
|
http.post('/api/drive/folders/update', async ({ request }) => {
|
||
|
const req = await request.json() as Misskey.entities.DriveFoldersUpdateRequest;
|
||
|
action('POST /api/drive/folders/update')(req);
|
||
|
return HttpResponse.json({
|
||
|
...folder(),
|
||
|
id: req.folderId,
|
||
|
name: req.name ?? folder().name,
|
||
|
parentId: req.parentId ?? folder().parentId,
|
||
|
});
|
||
|
}),
|
||
|
]
|
||
|
},
|
||
|
},
|
||
|
} satisfies StoryObj<typeof MkDrive>;
|