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"
|
|
|
|
@click="chosen(emoji, $event)"
|
|
|
|
>
|
|
|
|
<MkEmoji :emoji="emoji" :normal="true"/>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, markRaw } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
2021-02-27 11:53:20 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
props: {
|
|
|
|
emojis: {
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
initialShown: {
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['chosen'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
getStaticImageUrl,
|
|
|
|
shown: this.initialShown,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
chosen(emoji: any, ev) {
|
|
|
|
this.$parent.chosen(emoji, ev);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|