2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-06 00:41:14 +00:00
|
|
|
<MkModalWindow
|
2022-07-20 13:24:26 +00:00
|
|
|
ref="dialogEl"
|
2023-05-19 04:58:09 +00:00
|
|
|
:withOkButton="true"
|
|
|
|
:okButtonDisabled="selected == null"
|
2020-10-17 11:12:00 +00:00
|
|
|
@click="cancel()"
|
|
|
|
@close="cancel()"
|
|
|
|
@ok="ok()"
|
|
|
|
@closed="$emit('closed')"
|
|
|
|
>
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #header>{{ i18n.ts.selectUser }}</template>
|
2023-06-01 08:19:46 +00:00
|
|
|
<div>
|
2023-01-15 20:26:29 +00:00
|
|
|
<div :class="$style.form">
|
2023-05-19 04:58:09 +00:00
|
|
|
<FormSplit :minWidth="170">
|
|
|
|
<MkInput v-model="username" :autofocus="true" @update:modelValue="search">
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #label>{{ i18n.ts.username }}</template>
|
2021-08-06 13:29:19 +00:00
|
|
|
<template #prefix>@</template>
|
|
|
|
</MkInput>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkInput v-model="host" :datalist="[hostname]" @update:modelValue="search">
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #label>{{ i18n.ts.host }}</template>
|
2021-08-06 13:29:19 +00:00
|
|
|
<template #prefix>@</template>
|
|
|
|
</MkInput>
|
2021-12-30 12:47:48 +00:00
|
|
|
</FormSplit>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-01-15 20:26:29 +00:00
|
|
|
<div v-if="username != '' || host != ''" :class="[$style.result, { [$style.hit]: users.length > 0 }]">
|
|
|
|
<div v-if="users.length > 0" :class="$style.users">
|
|
|
|
<div v-for="user in users" :key="user.id" class="_button" :class="[$style.user, { [$style.selected]: selected && selected.id === user.id }]" @click="selected = user" @dblclick="ok()">
|
2023-01-16 05:18:11 +00:00
|
|
|
<MkAvatar :user="user" :class="$style.avatar" indicator/>
|
2023-01-15 20:26:29 +00:00
|
|
|
<div :class="$style.userBody">
|
2023-02-08 11:07:19 +00:00
|
|
|
<MkUserName :user="user" :class="$style.userName"/>
|
2023-01-15 20:26:29 +00:00
|
|
|
<MkAcct :user="user" :class="$style.userAcct"/>
|
2021-04-28 09:36:07 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-15 20:26:29 +00:00
|
|
|
<div v-else :class="$style.empty">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span>{{ i18n.ts.noUsers }}</span>
|
2021-04-28 09:36:07 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-01-15 20:26:29 +00:00
|
|
|
<div v-if="username == '' && host == ''" :class="$style.recent">
|
|
|
|
<div :class="$style.users">
|
|
|
|
<div v-for="user in recentUsers" :key="user.id" class="_button" :class="[$style.user, { [$style.selected]: selected && selected.id === user.id }]" @click="selected = user" @dblclick="ok()">
|
2023-01-16 05:18:11 +00:00
|
|
|
<MkAvatar :user="user" :class="$style.avatar" indicator/>
|
2023-01-15 20:26:29 +00:00
|
|
|
<div :class="$style.userBody">
|
2023-02-08 11:07:19 +00:00
|
|
|
<MkUserName :user="user" :class="$style.userName"/>
|
2023-01-15 20:26:29 +00:00
|
|
|
<MkAcct :user="user" :class="$style.userAcct"/>
|
2021-04-28 09:36:07 +00:00
|
|
|
</div>
|
2020-11-08 03:40:56 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-06 00:41:14 +00:00
|
|
|
</MkModalWindow>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2021-12-30 12:47:48 +00:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { onMounted, ref } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-01-07 06:09:46 +00:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2021-12-30 12:47:48 +00:00
|
|
|
import FormSplit from '@/components/form/split.vue';
|
2023-01-06 00:41:14 +00:00
|
|
|
import MkModalWindow from '@/components/MkModalWindow.vue';
|
2024-01-04 09:32:46 +00:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { hostname } from '@/config.js';
|
2021-12-30 12:47:48 +00:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2023-09-04 04:33:38 +00:00
|
|
|
(ev: 'ok', selected: Misskey.entities.UserDetailed): void;
|
2022-05-26 13:53:09 +00:00
|
|
|
(ev: 'cancel'): void;
|
|
|
|
(ev: 'closed'): void;
|
2021-12-30 12:47:48 +00:00
|
|
|
}>();
|
|
|
|
|
2023-01-15 20:29:44 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
includeSelf?: boolean;
|
|
|
|
}>();
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const username = ref('');
|
|
|
|
const host = ref('');
|
|
|
|
const users = ref<Misskey.entities.UserDetailed[]>([]);
|
|
|
|
const recentUsers = ref<Misskey.entities.UserDetailed[]>([]);
|
|
|
|
const selected = ref<Misskey.entities.UserDetailed | null>(null);
|
|
|
|
const dialogEl = ref();
|
2021-12-30 12:47:48 +00:00
|
|
|
|
2024-01-19 11:51:49 +00:00
|
|
|
function search() {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (username.value === '' && host.value === '') {
|
|
|
|
users.value = [];
|
2021-12-30 12:47:48 +00:00
|
|
|
return;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2024-01-04 09:32:46 +00:00
|
|
|
misskeyApi('users/search-by-username-and-host', {
|
2023-12-07 05:42:09 +00:00
|
|
|
username: username.value,
|
|
|
|
host: host.value,
|
2021-12-30 12:47:48 +00:00
|
|
|
limit: 10,
|
2022-07-20 13:24:26 +00:00
|
|
|
detail: false,
|
2021-12-30 12:47:48 +00:00
|
|
|
}).then(_users => {
|
2023-12-07 05:42:09 +00:00
|
|
|
users.value = _users;
|
2021-12-30 12:47:48 +00:00
|
|
|
});
|
2024-01-19 11:51:49 +00:00
|
|
|
}
|
2021-12-30 12:47:48 +00:00
|
|
|
|
2024-01-19 11:51:49 +00:00
|
|
|
function ok() {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (selected.value == null) return;
|
|
|
|
emit('ok', selected.value);
|
|
|
|
dialogEl.value.close();
|
2021-12-30 12:47:48 +00:00
|
|
|
|
|
|
|
// 最近使ったユーザー更新
|
|
|
|
let recents = defaultStore.state.recentlyUsedUsers;
|
2023-12-07 05:42:09 +00:00
|
|
|
recents = recents.filter(x => x !== selected.value.id);
|
|
|
|
recents.unshift(selected.value.id);
|
2021-12-30 12:47:48 +00:00
|
|
|
defaultStore.set('recentlyUsedUsers', recents.splice(0, 16));
|
2024-01-19 11:51:49 +00:00
|
|
|
}
|
2021-12-30 12:47:48 +00:00
|
|
|
|
2024-01-19 11:51:49 +00:00
|
|
|
function cancel() {
|
2021-12-30 12:47:48 +00:00
|
|
|
emit('cancel');
|
2023-12-07 05:42:09 +00:00
|
|
|
dialogEl.value.close();
|
2024-01-19 11:51:49 +00:00
|
|
|
}
|
2021-12-30 12:47:48 +00:00
|
|
|
|
|
|
|
onMounted(() => {
|
2024-01-04 09:32:46 +00:00
|
|
|
misskeyApi('users/show', {
|
2021-12-30 12:47:48 +00:00
|
|
|
userIds: defaultStore.state.recentlyUsedUsers,
|
|
|
|
}).then(users => {
|
2023-02-22 05:47:51 +00:00
|
|
|
if (props.includeSelf && users.find(x => $i ? x.id === $i.id : true) == null) {
|
2023-12-07 05:42:09 +00:00
|
|
|
recentUsers.value = [$i, ...users];
|
2023-01-15 20:29:44 +00:00
|
|
|
} else {
|
2023-12-07 05:42:09 +00:00
|
|
|
recentUsers.value = users;
|
2023-01-15 20:29:44 +00:00
|
|
|
}
|
2021-12-30 12:47:48 +00:00
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-15 20:26:29 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
|
|
|
|
.form {
|
|
|
|
padding: 0 var(--root-margin);
|
|
|
|
}
|
|
|
|
|
|
|
|
.result,
|
|
|
|
.recent {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: auto;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&.result.hit {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.recent {
|
|
|
|
padding: 0;
|
2021-12-30 12:47:48 +00:00
|
|
|
}
|
2023-01-15 20:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.users {
|
|
|
|
flex: 1;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px var(--root-margin);
|
|
|
|
font-size: 14px;
|
2021-12-30 12:47:48 +00:00
|
|
|
|
2023-01-15 20:26:29 +00:00
|
|
|
&:hover {
|
|
|
|
background: var(--X7);
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2023-01-15 20:26:29 +00:00
|
|
|
|
|
|
|
&.selected {
|
|
|
|
background: var(--accent);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.userBody {
|
|
|
|
padding: 0 8px;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: 45px;
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userName {
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userAcct {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.empty {
|
|
|
|
opacity: 0.7;
|
|
|
|
text-align: center;
|
|
|
|
padding: 16px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|