2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="800">
|
2023-02-22 02:00:34 +00:00
|
|
|
<MkNotes ref="notes" :pagination="pagination"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 17:21:43 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkNotes from '@/components/MkNotes.vue';
|
2022-01-12 17:21:43 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-01-08 02:15:54 +00:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { useRouter } from '@/router';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
|
|
|
|
const router = useRouter();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-12 17:21:43 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
query: string;
|
|
|
|
channel?: string;
|
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-08 02:15:54 +00:00
|
|
|
const query = props.query;
|
|
|
|
|
|
|
|
if ($i != null) {
|
|
|
|
if (query.startsWith('https://') || (query.startsWith('@') && !query.includes(' '))) {
|
|
|
|
const promise = os.api('ap/show', {
|
|
|
|
uri: props.query,
|
|
|
|
});
|
|
|
|
|
|
|
|
os.promiseDialog(promise, null, null, i18n.ts.fetchingAsApObject);
|
|
|
|
|
|
|
|
const res = await promise;
|
|
|
|
|
|
|
|
if (res.type === 'User') {
|
|
|
|
router.replace(`/@${res.object.username}@${res.object.host}`);
|
|
|
|
} else if (res.type === 'Note') {
|
|
|
|
router.replace(`/notes/${res.object.id}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-12 17:21:43 +00:00
|
|
|
const pagination = {
|
2022-01-12 17:26:10 +00:00
|
|
|
endpoint: 'notes/search' as const,
|
2022-01-12 17:21:43 +00:00
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
query: props.query,
|
|
|
|
channelId: props.channel,
|
2022-06-20 08:38:49 +00:00
|
|
|
})),
|
2022-01-12 17:21:43 +00:00
|
|
|
};
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.t('searchWith', { q: props.query }),
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-search',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|