mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 20:06:54 +01:00
04f9147db6
* refactor(frontend): router.ts解きほぐし * add debug hmr option * fix comment * fix not working * add comment * fix name * Update definition.ts --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
108 lines
2.9 KiB
Vue
108 lines
2.9 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps">
|
|
<div class="_gaps">
|
|
<MkInput v-model="searchQuery" :large="true" :autofocus="true" type="search" @enter="search">
|
|
<template #prefix><i class="ti ti-search"></i></template>
|
|
</MkInput>
|
|
<MkFolder>
|
|
<template #label>{{ i18n.ts.options }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<MkSwitch v-model="isLocalOnly">{{ i18n.ts.localOnly }}</MkSwitch>
|
|
|
|
<MkFolder>
|
|
<template #label>{{ i18n.ts.specifyUser }}</template>
|
|
<template v-if="user" #suffix>@{{ user.username }}</template>
|
|
|
|
<div style="text-align: center;" class="_gaps">
|
|
<div v-if="user">@{{ user.username }}</div>
|
|
<div>
|
|
<MkButton v-if="user == null" primary rounded inline @click="selectUser">{{ i18n.ts.selectUser }}</MkButton>
|
|
<MkButton v-else danger rounded inline @click="user = null">{{ i18n.ts.remove }}</MkButton>
|
|
</div>
|
|
</div>
|
|
</MkFolder>
|
|
</div>
|
|
</MkFolder>
|
|
<div>
|
|
<MkButton large primary gradate rounded style="margin: 0 auto;" @click="search">{{ i18n.ts.search }}</MkButton>
|
|
</div>
|
|
</div>
|
|
|
|
<MkFoldableSection v-if="notePagination">
|
|
<template #header>{{ i18n.ts.searchResult }}</template>
|
|
<MkNotes :key="key" :pagination="notePagination"/>
|
|
</MkFoldableSection>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import MkNotes from '@/components/MkNotes.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import * as os from '@/os.js';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import { useRouter } from '@/global/router/supplier.js';
|
|
|
|
const router = useRouter();
|
|
|
|
const key = ref(0);
|
|
const searchQuery = ref('');
|
|
const searchOrigin = ref('combined');
|
|
const notePagination = ref();
|
|
const user = ref<any>(null);
|
|
const isLocalOnly = ref(false);
|
|
|
|
function selectUser() {
|
|
os.selectUser().then(_user => {
|
|
user.value = _user;
|
|
});
|
|
}
|
|
|
|
async function search() {
|
|
const query = searchQuery.value.toString().trim();
|
|
|
|
if (query == null || query === '') return;
|
|
|
|
if (query.startsWith('https://')) {
|
|
const promise = misskeyApi('ap/show', {
|
|
uri: query,
|
|
});
|
|
|
|
os.promiseDialog(promise, null, null, i18n.ts.fetchingAsApObject);
|
|
|
|
const res = await promise;
|
|
|
|
if (res.type === 'User') {
|
|
router.push(`/@${res.object.username}@${res.object.host}`);
|
|
} else if (res.type === 'Note') {
|
|
router.push(`/notes/${res.object.id}`);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
notePagination.value = {
|
|
endpoint: 'notes/search',
|
|
limit: 10,
|
|
params: {
|
|
query: searchQuery.value,
|
|
userId: user.value ? user.value.id : null,
|
|
},
|
|
};
|
|
|
|
if (isLocalOnly.value) notePagination.value.params.host = '.';
|
|
|
|
key.value++;
|
|
}
|
|
</script>
|