2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2019-05-20 23:44:36 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2023-07-10 06:55:10 +00:00
|
|
|
<div v-for="user in users.slice(0, limit)" :key="user.id" style="display:inline-block;width:32px;height:32px;margin-right:8px;">
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkAvatar :user="user" style="width:32px; height:32px;" indicator link preview/>
|
2020-02-08 07:51:27 +00:00
|
|
|
</div>
|
2023-07-10 06:55:10 +00:00
|
|
|
<div v-if="users.length > limit" style="display: inline-block;">...</div>
|
2019-05-20 23:44:36 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-06 14:07:32 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, ref } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
2019-05-20 23:44:36 +00:00
|
|
|
|
2023-07-10 06:55:10 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
2022-01-06 14:07:32 +00:00
|
|
|
userIds: string[];
|
2023-07-10 06:55:10 +00:00
|
|
|
limit?: number;
|
|
|
|
}>(), {
|
|
|
|
limit: Infinity,
|
|
|
|
});
|
2022-01-06 14:07:32 +00:00
|
|
|
|
2023-09-04 04:33:38 +00:00
|
|
|
const users = ref<Misskey.entities.UserLite[]>([]);
|
2022-01-06 14:07:32 +00:00
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
users.value = await os.api('users/show', {
|
2022-12-22 07:01:59 +00:00
|
|
|
userIds: props.userIds,
|
2023-09-04 04:33:38 +00:00
|
|
|
}) as unknown as Misskey.entities.UserLite[];
|
2019-05-20 23:44:36 +00:00
|
|
|
});
|
|
|
|
</script>
|