akkoma-fe/src/components/emoji_reactions/emoji_reactions.vue

52 lines
1.1 KiB
Vue
Raw Normal View History

2020-01-14 08:06:14 +00:00
<template>
<div class="emoji-reactions">
<button
v-for="(reaction) in emojiReactions"
:key="reaction.emoji"
2020-01-14 08:06:14 +00:00
class="emoji-reaction btn btn-default"
:class="{ 'picked-reaction': reactedWith(reaction.emoji) }"
@click="emojiOnClick(reaction.emoji, $event)"
2020-01-14 08:06:14 +00:00
>
<span>{{ reaction.emoji }}</span>
2020-01-28 15:09:25 +00:00
<span>{{ reaction.count }}</span>
2020-01-14 08:06:14 +00: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;
2020-01-28 15:09:25 +00:00
&:first-child {
2020-01-14 08:06:14 +00:00
margin-right: 0.25em;
}
2020-01-28 15:09:25 +00:00
&:last-child {
2020-01-14 08:06:14 +00:00
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>