iceshrimp-legacy/packages/client/src/components/MkUsersTooltip.vue

58 lines
1 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<MkTooltip
ref="tooltip"
:target-element="targetElement"
:max-width="250"
@closed="emit('closed')"
>
<div class="beaffaef">
<div v-for="u in users" :key="u.id" class="user">
2023-04-29 03:39:48 +02:00
<MkAvatar class="avatar" :user="u" disableLink />
2023-04-08 02:01:42 +02:00
<MkUserName class="name" :user="u" :nowrap="true" />
</div>
<div v-if="users.length < count" class="omitted">
+{{ count - users.length }}
</div>
2021-11-14 05:13:22 +01:00
</div>
2023-04-08 02:01:42 +02:00
</MkTooltip>
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import {} from "vue";
import MkTooltip from "./MkTooltip.vue";
const props = defineProps<{
users: any[]; // TODO
count: number;
targetElement: HTMLElement;
}>();
const emit = defineEmits<{
2023-04-08 02:01:42 +02:00
(ev: "closed"): void;
}>();
</script>
<style lang="scss" scoped>
2021-11-14 05:13:22 +01:00
.beaffaef {
font-size: 0.9em;
2021-11-14 05:13:22 +01: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;
}
}
}
</style>