mirror of
https://codeberg.org/yeentown/barkey
synced 2024-12-01 17:37:27 +00: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が空文字の時の挙動を修正 * ローカルのみしかノートがインデックスされていない場合、リモートユーザーも選択できなくした
75 lines
2 KiB
Vue
75 lines
2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkHorizontalSwipe v-model:tab="tab" :tabs="headerTabs">
|
|
<MkSpacer v-if="tab === 'note'" key="note" :contentMax="800">
|
|
<div v-if="notesSearchAvailable || ignoreNotesSearchAvailable">
|
|
<XNote v-bind="props"/>
|
|
</div>
|
|
<div v-else>
|
|
<MkInfo warn>{{ i18n.ts.notesSearchNotAvailable }}</MkInfo>
|
|
</div>
|
|
</MkSpacer>
|
|
|
|
<MkSpacer v-else-if="tab === 'user'" key="user" :contentMax="800">
|
|
<XUser v-bind="props"/>
|
|
</MkSpacer>
|
|
</MkHorizontalSwipe>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, defineAsyncComponent, ref, toRef } from 'vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { notesSearchAvailable } from '@/scripts/check-permissions.js';
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
query?: string,
|
|
userId?: string,
|
|
username?: string,
|
|
host?: string | null,
|
|
type?: 'note' | 'user',
|
|
origin?: 'combined' | 'local' | 'remote',
|
|
// For storybook only
|
|
ignoreNotesSearchAvailable?: boolean,
|
|
}>(), {
|
|
query: '',
|
|
userId: undefined,
|
|
username: undefined,
|
|
host: undefined,
|
|
type: 'note',
|
|
origin: 'combined',
|
|
ignoreNotesSearchAvailable: false,
|
|
});
|
|
|
|
const XNote = defineAsyncComponent(() => import('./search.note.vue'));
|
|
const XUser = defineAsyncComponent(() => import('./search.user.vue'));
|
|
|
|
const tab = ref(toRef(props, 'type').value);
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => [{
|
|
key: 'note',
|
|
title: i18n.ts.notes,
|
|
icon: 'ti ti-pencil',
|
|
}, {
|
|
key: 'user',
|
|
title: i18n.ts.users,
|
|
icon: 'ti ti-users',
|
|
}]);
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.search,
|
|
icon: 'ti ti-search',
|
|
}));
|
|
</script>
|