2021-11-07 19:38:48 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkTooltip
|
|
|
|
ref="tooltip"
|
|
|
|
:target-element="targetElement"
|
|
|
|
:max-width="340"
|
|
|
|
@closed="emit('closed')"
|
|
|
|
>
|
|
|
|
<div class="beeadbfb">
|
|
|
|
<XReactionIcon
|
|
|
|
:reaction="reaction"
|
|
|
|
:custom-emojis="emojis"
|
|
|
|
class="icon"
|
|
|
|
:no-style="true"
|
|
|
|
/>
|
|
|
|
<div class="name">{{ reaction.replace("@.", "") }}</div>
|
|
|
|
</div>
|
|
|
|
</MkTooltip>
|
2021-11-07 19:38:48 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 02:35:32 +01:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {} from "vue";
|
|
|
|
import MkTooltip from "./MkTooltip.vue";
|
|
|
|
import XReactionIcon from "@/components/MkReactionIcon.vue";
|
2021-11-07 19:38:48 +01:00
|
|
|
|
2022-01-14 02:35:32 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
reaction: string;
|
|
|
|
emojis: any[]; // TODO
|
2022-01-31 13:07:33 +01:00
|
|
|
targetElement: HTMLElement;
|
2022-01-14 02:35:32 +01:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2023-04-08 02:01:42 +02:00
|
|
|
(ev: "closed"): void;
|
2022-01-14 02:35:32 +01:00
|
|
|
}>();
|
2021-11-07 19:38:48 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.beeadbfb {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
display: block;
|
|
|
|
width: 60px;
|
2021-12-02 12:09:12 +01:00
|
|
|
font-size: 60px; // unicodeな絵文字についてはwidthが効かないため
|
2021-11-07 19:38:48 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|