egirlskey/packages/client/src/components/emoji-picker.section.vue

51 lines
923 B
Vue
Raw Normal View History

2021-02-27 10:53:20 +00:00
<template>
<section>
<header class="_acrylic" @click="shown = !shown">
<i class="toggle fa-fw" :class="shown ? 'fas fa-chevron-down' : 'fas fa-chevron-up'"></i> <slot></slot> ({{ emojis.length }})
2021-02-27 10:53:20 +00:00
</header>
<div v-if="shown">
<button v-for="emoji in emojis"
2021-11-19 10:36:12 +00:00
:key="emoji"
2021-02-27 10:53:20 +00: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 17:02:25 +00:00
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
2021-02-27 10:53:20 +00: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>