2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
2023-03-16 03:56:20 +01:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
|
2023-05-19 09:20:53 +02:00
|
|
|
<MkSpacer v-if="tab === 'note'" :contentMax="800">
|
2023-05-11 11:10:34 +02:00
|
|
|
<div v-if="notesSearchAvailable">
|
|
|
|
<XNote/>
|
2023-02-25 01:01:21 +01:00
|
|
|
</div>
|
|
|
|
<div v-else>
|
2023-03-16 03:56:20 +01:00
|
|
|
<MkInfo warn>{{ i18n.ts.notesSearchNotAvailable }}</MkInfo>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
|
2023-05-19 09:20:53 +02:00
|
|
|
<MkSpacer v-else-if="tab === 'user'" :contentMax="800">
|
2023-05-11 11:10:34 +02:00
|
|
|
<XUser/>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:21:43 +01:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 06:42:09 +01:00
|
|
|
import { computed, defineAsyncComponent, onMounted, ref } from 'vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { instance } from '@/instance.js';
|
2023-03-16 03:56:20 +01:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-05-11 11:10:34 +02:00
|
|
|
const XNote = defineAsyncComponent(() => import('./search.note.vue'));
|
|
|
|
const XUser = defineAsyncComponent(() => import('./search.user.vue'));
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-12-07 06:42:09 +01:00
|
|
|
const tab = ref('note');
|
2023-03-16 03:56:20 +01:00
|
|
|
|
|
|
|
const notesSearchAvailable = (($i == null && instance.policies.canSearchNotes) || ($i != null && $i.policies.canSearchNotes));
|
2023-02-25 01:01:21 +01:00
|
|
|
|
2023-12-07 06:42:09 +01:00
|
|
|
const headerActions = computed(() => []);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-12-07 06:42:09 +01:00
|
|
|
const headerTabs = computed(() => [{
|
2023-03-16 03:56:20 +01:00
|
|
|
key: 'note',
|
|
|
|
title: i18n.ts.notes,
|
|
|
|
icon: 'ti ti-pencil',
|
|
|
|
}, {
|
|
|
|
key: 'user',
|
|
|
|
title: i18n.ts.users,
|
|
|
|
icon: 'ti ti-users',
|
|
|
|
}]);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
2023-05-11 11:10:34 +02:00
|
|
|
title: i18n.ts.search,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-search',
|
2022-06-20 10:38:49 +02:00
|
|
|
})));
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|