2021-02-27 11:53:20 +01:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<header class="_acrylic" @click="shown = !shown">
|
2021-04-20 16:22:59 +02:00
|
|
|
<i class="toggle fa-fw" :class="shown ? 'fas fa-chevron-down' : 'fas fa-chevron-up'"></i> <slot></slot> ({{ emojis.length }})
|
2021-02-27 11:53:20 +01:00
|
|
|
</header>
|
|
|
|
<div v-if="shown">
|
|
|
|
<button v-for="emoji in emojis"
|
2021-11-19 11:36:12 +01:00
|
|
|
:key="emoji"
|
2021-02-27 11:53:20 +01:00
|
|
|
class="_button"
|
2022-01-18 15:06:16 +01:00
|
|
|
@click="emit('chosen', emoji, $event)"
|
2021-02-27 11:53:20 +01:00
|
|
|
>
|
|
|
|
<MkEmoji :emoji="emoji" :normal="true"/>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
2021-02-27 11:53:20 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
emojis: string[];
|
|
|
|
initialShown?: boolean;
|
|
|
|
}>();
|
2021-02-27 11:53:20 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(e: 'chosen', v: string, ev: MouseEvent): void;
|
|
|
|
}>();
|
2021-02-27 11:53:20 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const shown = ref(!!props.initialShown);
|
2021-02-27 11:53:20 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|