2021-11-12 08:15:14 -06:00
|
|
|
<template>
|
2022-01-13 19:35:32 -06:00
|
|
|
<MkTooltip ref="tooltip" :source="source" :max-width="250" @closed="emit('closed')">
|
2021-11-13 22:13:22 -06:00
|
|
|
<div class="beaffaef">
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-for="u in users" :key="u.id" class="user">
|
2021-11-13 22:13:22 -06:00
|
|
|
<MkAvatar class="avatar" :user="u"/>
|
|
|
|
<MkUserName class="name" :user="u" :nowrap="true"/>
|
|
|
|
</div>
|
|
|
|
<div v-if="users.length < count" class="omitted">+{{ count - users.length }}</div>
|
2021-11-12 08:15:14 -06:00
|
|
|
</div>
|
|
|
|
</MkTooltip>
|
|
|
|
</template>
|
|
|
|
|
2022-01-13 19:35:32 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2021-11-12 08:15:14 -06:00
|
|
|
import MkTooltip from './ui/tooltip.vue';
|
|
|
|
|
2022-01-13 19:35:32 -06:00
|
|
|
const props = defineProps<{
|
|
|
|
users: any[]; // TODO
|
|
|
|
count: number;
|
|
|
|
source: any; // TODO
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(e: 'closed'): void;
|
|
|
|
}>();
|
2021-11-12 08:15:14 -06:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-11-13 22:13:22 -06:00
|
|
|
.beaffaef {
|
2021-11-12 08:15:14 -06:00
|
|
|
font-size: 0.9em;
|
2021-11-13 22:13:22 -06:00
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
> .user {
|
|
|
|
line-height: 24px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
}
|
2021-11-12 08:15:14 -06:00
|
|
|
}
|
|
|
|
</style>
|