2021-11-12 02:02:25 +09:00
|
|
|
import * as Acct from 'misskey-js/built/acct';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import * as os from '@/os';
|
2021-04-22 22:29:33 +09:00
|
|
|
|
|
|
|
export async function lookupUser() {
|
2021-11-18 18:45:58 +09:00
|
|
|
const { canceled, result } = await os.inputText({
|
2021-04-22 22:29:33 +09:00
|
|
|
title: i18n.locale.usernameOrUserId,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
const show = (user) => {
|
2021-04-23 12:00:07 +09:00
|
|
|
os.pageWindow(`/user-info/${user.id}`);
|
2021-04-22 22:29:33 +09:00
|
|
|
};
|
|
|
|
|
2021-11-12 02:02:25 +09:00
|
|
|
const usernamePromise = os.api('users/show', Acct.parse(result));
|
2021-04-22 22:29:33 +09:00
|
|
|
const idPromise = os.api('users/show', { userId: result });
|
|
|
|
let _notFound = false;
|
|
|
|
const notFound = () => {
|
|
|
|
if (_notFound) {
|
2021-11-18 18:45:58 +09:00
|
|
|
os.alert({
|
2021-04-22 22:29:33 +09:00
|
|
|
type: 'error',
|
|
|
|
text: i18n.locale.noSuchUser
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_notFound = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
usernamePromise.then(show).catch(e => {
|
|
|
|
if (e.code === 'NO_SUCH_USER') {
|
|
|
|
notFound();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
idPromise.then(show).catch(e => {
|
|
|
|
notFound();
|
|
|
|
});
|
|
|
|
}
|