mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-23 02:51:12 +09:00
8d06a6475e
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import * as os from '@/os';
|
|
import { i18n } from '@/i18n';
|
|
import { mainRouter } from '@/router';
|
|
import { Router } from '@/nirax';
|
|
|
|
export async function lookup(router?: Router) {
|
|
const _router = router ?? mainRouter;
|
|
|
|
const { canceled, result: temp } = await os.inputText({
|
|
title: i18n.ts.lookup,
|
|
});
|
|
const query = temp ? temp.trim() : '';
|
|
if (canceled) return;
|
|
|
|
if (query.startsWith('@') && !query.includes(' ')) {
|
|
_router.push(`/${query}`);
|
|
return;
|
|
}
|
|
|
|
if (query.startsWith('#')) {
|
|
_router.push(`/tags/${encodeURIComponent(query.substring(1))}`);
|
|
return;
|
|
}
|
|
|
|
if (query.startsWith('https://')) {
|
|
const promise = os.api('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;
|
|
}
|
|
}
|