2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-12-22 07:59:11 +00:00
|
|
|
<MkTooltip ref="tooltip" :showing="showing" :target-element="targetElement" :max-width="340" @closed="emit('closed')">
|
2020-10-17 11:12:00 +00:00
|
|
|
<div class="bqxuuuey">
|
2021-10-24 04:54:31 +00:00
|
|
|
<div class="reaction">
|
2020-10-27 09:28:37 +00:00
|
|
|
<XReactionIcon :reaction="reaction" :custom-emojis="emojis" class="icon" :no-style="true"/>
|
2022-12-25 06:52:52 +00:00
|
|
|
<div class="name">{{ getReactionName(reaction) }}</div>
|
2021-10-24 04:54:31 +00:00
|
|
|
</div>
|
|
|
|
<div class="users">
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-for="u in users" :key="u.id" class="user">
|
2021-11-14 04:13:22 +00:00
|
|
|
<MkAvatar class="avatar" :user="u"/>
|
|
|
|
<MkUserName class="name" :user="u" :nowrap="true"/>
|
|
|
|
</div>
|
|
|
|
<div v-if="users.length > 10" class="omitted">+{{ count - 10 }}</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkTooltip>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:35:32 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkTooltip from './MkTooltip.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XReactionIcon from '@/components/MkReactionIcon.vue';
|
2022-12-25 06:52:52 +00:00
|
|
|
import { getEmojiName } from '@/scripts/emojilist';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-12-22 07:59:11 +00:00
|
|
|
defineProps<{
|
|
|
|
showing: boolean;
|
2022-01-14 01:35:32 +00:00
|
|
|
reaction: string;
|
|
|
|
users: any[]; // TODO
|
|
|
|
count: number;
|
|
|
|
emojis: any[]; // TODO
|
2022-01-31 12:07:33 +00:00
|
|
|
targetElement: HTMLElement;
|
2022-01-14 01:35:32 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2022-01-31 12:07:33 +00:00
|
|
|
(ev: 'closed'): void;
|
2022-01-14 01:35:32 +00:00
|
|
|
}>();
|
2022-12-25 06:52:52 +00:00
|
|
|
|
|
|
|
function getReactionName(reaction: string): string {
|
|
|
|
const trimLocal = reaction.replace('@.', '');
|
|
|
|
if (trimLocal.startsWith(':')) {
|
|
|
|
return trimLocal;
|
|
|
|
}
|
|
|
|
return getEmojiName(reaction) ?? reaction;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:01:06 +00:00
|
|
|
<style lang="scss">
|
2020-10-17 11:12:00 +00:00
|
|
|
.bqxuuuey {
|
2021-10-24 04:54:31 +00:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
> .reaction {
|
|
|
|
max-width: 100px;
|
2020-10-17 11:12:00 +00:00
|
|
|
text-align: center;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
> .icon {
|
|
|
|
display: block;
|
|
|
|
width: 60px;
|
2021-12-02 11:09:12 +00:00
|
|
|
font-size: 60px; // unicodeな絵文字についてはwidthが効かないため
|
2022-12-26 07:04:56 +00:00
|
|
|
object-fit: contain;
|
2020-10-17 11:12:00 +00:00
|
|
|
margin: 0 auto;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2021-10-24 04:54:31 +00:00
|
|
|
|
|
|
|
> .name {
|
2022-07-17 16:29:29 +00:00
|
|
|
font-size: 1em;
|
2021-10-24 04:54:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .users {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
2022-07-17 16:29:29 +00:00
|
|
|
font-size: 0.95em;
|
2021-10-24 04:54:31 +00:00
|
|
|
border-left: solid 0.5px var(--divider);
|
|
|
|
padding-left: 10px;
|
2021-11-13 02:38:26 +00:00
|
|
|
margin-left: 10px;
|
2021-11-14 04:13:22 +00:00
|
|
|
margin-right: 14px;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
</style>
|