2023-07-26 22:31:52 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-11-11 09:02:25 -08:00
|
|
|
import * as Acct from 'misskey-js/built/acct';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import * as os from '@/os';
|
2021-04-22 06:29:33 -07:00
|
|
|
|
|
|
|
export async function lookupUser() {
|
2021-11-18 01:45:58 -08:00
|
|
|
const { canceled, result } = await os.inputText({
|
2022-01-27 18:39:49 -08:00
|
|
|
title: i18n.ts.usernameOrUserId,
|
2021-04-22 06:29:33 -07:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
const show = (user) => {
|
2021-04-22 20:00:07 -07:00
|
|
|
os.pageWindow(`/user-info/${user.id}`);
|
2021-04-22 06:29:33 -07:00
|
|
|
};
|
|
|
|
|
2021-11-11 09:02:25 -08:00
|
|
|
const usernamePromise = os.api('users/show', Acct.parse(result));
|
2021-04-22 06:29:33 -07:00
|
|
|
const idPromise = os.api('users/show', { userId: result });
|
|
|
|
let _notFound = false;
|
|
|
|
const notFound = () => {
|
|
|
|
if (_notFound) {
|
2021-11-18 01:45:58 -08:00
|
|
|
os.alert({
|
2021-04-22 06:29:33 -07:00
|
|
|
type: 'error',
|
2022-12-21 23:01:59 -08:00
|
|
|
text: i18n.ts.noSuchUser,
|
2021-04-22 06:29:33 -07:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_notFound = true;
|
|
|
|
}
|
|
|
|
};
|
2022-05-06 22:19:15 -07:00
|
|
|
usernamePromise.then(show).catch(err => {
|
|
|
|
if (err.code === 'NO_SUCH_USER') {
|
2021-04-22 06:29:33 -07:00
|
|
|
notFound();
|
|
|
|
}
|
|
|
|
});
|
2022-05-06 22:19:15 -07:00
|
|
|
idPromise.then(show).catch(err => {
|
2021-04-22 06:29:33 -07:00
|
|
|
notFound();
|
|
|
|
});
|
|
|
|
}
|