mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-12-12 05:38:55 +09:00
bff813042e
* refactor(frontend): noteSearchAvailableをaccountsに移動 * feat: searchページでのクエリの受取りとtypeによる表示タブの変更 * user検索でsearchの親から受け取った値を基に入力値を初期化 * feat(frontend): ノート検索で親(search)からの情報を基にユーザー情報を取得 * feat(frontend): ユーザーのノートを検索するページに遷移するボタン * feat(frontend): ノート検索にホスト名指定のオプション追加 also 🎨 * style: ただ照会部分を囲っただけ(可読性確保のために) * refactor: remove unneed import defineProps and withDefaults are compiler micro when using `<script setup>` FYI: https://vuejs.org/api/sfc-script-setup.html#defineprops-defineemits:~:text=defineProps%20and%20defineEmits%20are%20compiler%20macros%20only%20usable%20inside%20%3Cscript%20setup%3E.%20They%20do%20not%20need%20to%20be%20imported%2C%20and%20are%20compiled%20away%20when%20%3Cscript%20setup%3E%20is%20processed. * Update CHANGELOG * Fix: ノート検索の初期値が常にホスト指定になってしまう * notesSearchAvailableをaccountに持たせるのをやめる * SDPX-Licence-Identifier * Fix: Vitest fails due to instance.policies being undefined * Add Storybook for search * Fix(storybook): ノート検索が利用できないと出てしまう問題 * storybookでユーザー選択ができないのを修正 * feat: ノート検索で自分を選択可能に & 🎨 * feat(background): api/metaで検索可能なノートのスコープを参照できるように * globalのノートが検索不可能な場合、検索オプションを表示しないように * Update CHANGELOG.md * config.meilisearch.scopeがstring[]を取ることがあるので修正 * meilisearchを利用かつscopeがlocalの場合、リモートユーザーのメニューで「このユーザーのノートを検索」を出さないように * hostが空文字の時の挙動を修正 * ローカルのみしかノートがインデックスされていない場合、リモートユーザーも選択できなくした
89 lines
1.7 KiB
TypeScript
89 lines
1.7 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { StoryObj } from '@storybook/vue3';
|
|
import { HttpResponse, http } from 'msw';
|
|
import search_ from './search.vue';
|
|
import { userDetailed } from '@/../.storybook/fakes.js';
|
|
import { commonHandlers } from '@/../.storybook/mocks.js';
|
|
|
|
const localUser = userDetailed('someuserid', 'miskist', null, 'Local Misskey User');
|
|
|
|
export const Default = {
|
|
render(args) {
|
|
return {
|
|
components: {
|
|
search_,
|
|
},
|
|
setup() {
|
|
return {
|
|
args,
|
|
};
|
|
},
|
|
computed: {
|
|
props() {
|
|
return {
|
|
...this.args,
|
|
};
|
|
},
|
|
},
|
|
template: '<search_ v-bind="props" />',
|
|
};
|
|
},
|
|
args: {
|
|
ignoreNotesSearchAvailable: true,
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
msw: {
|
|
handlers: [
|
|
...commonHandlers,
|
|
http.post('/api/users/show', () => {
|
|
return HttpResponse.json(userDetailed());
|
|
}),
|
|
http.post('/api/users/search', () => {
|
|
return HttpResponse.json([userDetailed(), localUser]);
|
|
}),
|
|
],
|
|
},
|
|
},
|
|
} satisfies StoryObj<typeof search_>;
|
|
|
|
export const NoteSearchDisabled = {
|
|
...Default,
|
|
args: {},
|
|
} satisfies StoryObj<typeof search_>;
|
|
|
|
export const WithUsernameLocal = {
|
|
...Default,
|
|
|
|
args: {
|
|
...Default.args,
|
|
username: localUser.username,
|
|
host: localUser.host,
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
msw: {
|
|
handlers: [
|
|
...commonHandlers,
|
|
http.post('/api/users/show', () => {
|
|
return HttpResponse.json(localUser);
|
|
}),
|
|
http.post('/api/users/search', () => {
|
|
return HttpResponse.json([userDetailed(), localUser]);
|
|
}),
|
|
],
|
|
},
|
|
},
|
|
} satisfies StoryObj<typeof search_>;
|
|
|
|
export const WithUserType = {
|
|
...Default,
|
|
args: {
|
|
type: 'user',
|
|
},
|
|
} satisfies StoryObj<typeof search_>;
|