egirlskey/packages/frontend/src/components/MkUsersTooltip.vue

57 lines
1.1 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-05-19 04:58:09 +00:00
<MkTooltip ref="tooltip" :showing="showing" :targetElement="targetElement" :maxWidth="250" @closed="emit('closed')">
2023-01-14 02:46:22 +00:00
<div :class="$style.root">
<div v-for="u in users" :key="u.id" :class="$style.user">
<MkAvatar :class="$style.avatar" :user="u"/>
<MkUserName :user="u" :nowrap="true"/>
2021-11-14 04:13:22 +00:00
</div>
<div v-if="users.length < count">+{{ count - users.length }}</div>
</div>
</MkTooltip>
</template>
<script lang="ts" setup>
import { } from 'vue';
import MkTooltip from './MkTooltip.vue';
defineProps<{
showing: boolean;
users: any[]; // TODO
count: number;
targetElement: HTMLElement;
}>();
const emit = defineEmits<{
(ev: 'closed'): void;
}>();
</script>
2023-01-14 02:46:22 +00:00
<style lang="scss" module>
.root {
font-size: 0.9em;
2021-11-14 04:13:22 +00:00
text-align: left;
2023-01-14 02:46:22 +00:00
}
.user {
line-height: 24px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2021-11-14 04:13:22 +00:00
2023-01-14 02:46:22 +00:00
&:not(:last-child) {
margin-bottom: 3px;
2021-11-14 04:13:22 +00:00
}
}
2023-01-14 02:46:22 +00:00
.avatar {
width: 24px;
height: 24px;
margin-right: 3px;
}
</style>