2020-01-14 19:06:14 +11:00
|
|
|
<template>
|
|
|
|
<div class="emoji-reactions">
|
|
|
|
<button
|
2020-01-27 00:45:12 +11:00
|
|
|
v-for="(reaction) in emojiReactions"
|
|
|
|
:key="reaction.emoji"
|
2020-01-14 19:06:14 +11:00
|
|
|
class="emoji-reaction btn btn-default"
|
2020-01-27 00:45:12 +11:00
|
|
|
:class="{ 'picked-reaction': reactedWith(reaction.emoji) }"
|
|
|
|
@click="emojiOnClick(reaction.emoji, $event)"
|
2020-01-14 19:06:14 +11:00
|
|
|
>
|
2020-01-27 00:45:12 +11:00
|
|
|
<span>{{ reaction.count }}</span>
|
|
|
|
<span>{{ reaction.emoji }}</span>
|
2020-01-14 19:06:14 +11:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./emoji_reactions.js" ></script>
|
|
|
|
<style lang="scss">
|
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
|
|
|
.emoji-reactions {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 0.25em;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-reaction {
|
|
|
|
padding: 0 0.5em;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
:first-child {
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
|
|
|
:last-child {
|
|
|
|
width: 1.5em;
|
|
|
|
}
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.picked-reaction {
|
|
|
|
border: 1px solid var(--link, $fallback--link);
|
|
|
|
margin-left: -1px; // offset the border, can't use inset shadows either
|
|
|
|
margin-right: calc(0.5em - 1px);
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|