2019-05-21 01:44:36 +02:00
|
|
|
<template>
|
2023-01-16 20:40:06 +01:00
|
|
|
<div class="defgtij">
|
2023-01-16 20:46:09 +01:00
|
|
|
<div v-for="user in users" :key="user.id" class="avatar">
|
|
|
|
<MkAvatar :user="user" :show-indicator="true"/>
|
2020-02-08 08:51:27 +01:00
|
|
|
</div>
|
2019-05-21 01:44:36 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-06 15:07:32 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, ref } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2019-05-21 01:44:36 +02:00
|
|
|
|
2022-01-06 15:07:32 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
userIds: string[];
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const users = ref([]);
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
users.value = await os.api('users/show', {
|
|
|
|
userIds: props.userIds
|
|
|
|
});
|
2019-05-21 01:44:36 +02:00
|
|
|
});
|
|
|
|
</script>
|
2023-01-16 20:40:06 +01:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.defgtij {
|
|
|
|
padding: 12px;
|
2023-01-16 20:46:09 +01:00
|
|
|
grid-gap: 12px;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(30px, 40px));
|
|
|
|
place-content: center;
|
2023-01-16 20:40:06 +01:00
|
|
|
|
2023-01-16 20:46:09 +01:00
|
|
|
> .avatar {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
aspect-ratio: 1;
|
2023-01-16 20:40:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|