1f7a81aae7
* update deps
* node16
* wip
* wip
* wip
* Update test-utils.ts
* wip
* Update tsconfig.json
* wip
* Update package.json
* wip
* Update following.vue
* Update followers.vue
* Update index.vue
* Update share.vue
* Update MkUserPopup.vue
* Update MkPostForm.vue
* wip
* Update MkTokenGenerateWindow.vue
* Update MkPagination.vue
* refactor
* update deps
* update deps
* Update sw.ts
* wip
* wip
* wip
* Update FetchInstanceMetadataService.ts
* Update FetchInstanceMetadataService.ts
* update node
* update deps
* 🎨
34 lines
892 B
Vue
34 lines
892 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<div v-for="user in users.slice(0, limit)" :key="user.id" style="display:inline-block;width:32px;height:32px;margin-right:8px;">
|
|
<MkAvatar :user="user" style="width:32px; height:32px;" indicator link preview/>
|
|
</div>
|
|
<div v-if="users.length > limit" style="display: inline-block;">...</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import * as os from '@/os';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
userIds: string[];
|
|
limit?: number;
|
|
}>(), {
|
|
limit: Infinity,
|
|
});
|
|
|
|
const users = ref<Misskey.entities.UserLite[]>([]);
|
|
|
|
onMounted(async () => {
|
|
users.value = await os.api('users/show', {
|
|
userIds: props.userIds,
|
|
}) as unknown as Misskey.entities.UserLite[];
|
|
});
|
|
</script>
|