2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-11-07 18:38:48 +00:00
|
|
|
<template>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkTooltip ref="tooltip" :showing="showing" :targetElement="targetElement" :maxWidth="340" @closed="emit('closed')">
|
2023-01-14 08:23:49 +00:00
|
|
|
<div :class="$style.root">
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkReactionIcon :reaction="reaction" :class="$style.icon" :noStyle="true"/>
|
2023-01-14 08:23:49 +00:00
|
|
|
<div :class="$style.name">{{ reaction.replace('@.', '') }}</div>
|
2021-11-07 18:38:48 +00:00
|
|
|
</div>
|
|
|
|
</MkTooltip>
|
|
|
|
</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';
|
2023-01-08 05:22:04 +00:00
|
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
2021-11-07 18:38:48 +00:00
|
|
|
|
2022-12-22 07:59:11 +00:00
|
|
|
defineProps<{
|
|
|
|
showing: boolean;
|
2022-01-14 01:35:32 +00:00
|
|
|
reaction: string;
|
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
|
|
|
}>();
|
2021-11-07 18:38:48 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-14 08:23:49 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-11-07 18:38:48 +00:00
|
|
|
text-align: center;
|
2023-01-14 08:23:49 +00:00
|
|
|
}
|
2021-11-07 18:38:48 +00:00
|
|
|
|
2023-01-14 08:23:49 +00:00
|
|
|
.icon {
|
|
|
|
display: block;
|
|
|
|
width: 60px;
|
|
|
|
font-size: 60px; // unicodeな絵文字についてはwidthが効かないため
|
|
|
|
margin: 0 auto;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2021-11-07 18:38:48 +00:00
|
|
|
|
2023-01-14 08:23:49 +00:00
|
|
|
.name {
|
|
|
|
font-size: 0.9em;
|
2021-11-07 18:38:48 +00:00
|
|
|
}
|
|
|
|
</style>
|