iceshrimp-legacy/src/web/app/common/tags/reactions-viewer.vue

56 lines
1.6 KiB
Vue
Raw Normal View History

2018-02-07 10:34:43 +01:00
<template>
<div>
<template v-if="reactions">
<span v-if="reactions.like"><mk-reaction-icon reaction='like'/><span>{ reactions.like }</span></span>
<span v-if="reactions.love"><mk-reaction-icon reaction='love'/><span>{ reactions.love }</span></span>
<span v-if="reactions.laugh"><mk-reaction-icon reaction='laugh'/><span>{ reactions.laugh }</span></span>
<span v-if="reactions.hmm"><mk-reaction-icon reaction='hmm'/><span>{ reactions.hmm }</span></span>
<span v-if="reactions.surprise"><mk-reaction-icon reaction='surprise'/><span>{ reactions.surprise }</span></span>
<span v-if="reactions.congrats"><mk-reaction-icon reaction='congrats'/><span>{ reactions.congrats }</span></span>
<span v-if="reactions.angry"><mk-reaction-icon reaction='angry'/><span>{ reactions.angry }</span></span>
<span v-if="reactions.confused"><mk-reaction-icon reaction='confused'/><span>{ reactions.confused }</span></span>
<span v-if="reactions.pudding"><mk-reaction-icon reaction='pudding'/><span>{ reactions.pudding }</span></span>
</template>
</div>
</template>
2017-03-19 20:24:19 +01:00
<mk-reactions-viewer>
2018-02-07 10:34:43 +01:00
<virtual v-if="reactions">
2017-03-19 20:24:19 +01:00
</virtual>
2018-02-07 10:30:17 +01:00
<style lang="stylus" scoped>
2017-03-19 20:24:19 +01:00
:scope
display block
2017-03-20 11:13:37 +01:00
border-top dashed 1px #eee
border-bottom dashed 1px #eee
margin 4px 0
&:empty
display none
2017-03-19 20:24:19 +01:00
> span
margin-right 8px
> mk-reaction-icon
2017-03-20 11:13:37 +01:00
font-size 1.4em
2017-03-19 20:24:19 +01:00
> span
margin-left 4px
2017-03-20 11:13:37 +01:00
font-size 1.2em
2017-03-19 20:24:19 +01:00
color #444
</style>
<script>
2017-03-19 21:43:27 +01:00
this.post = this.opts.post;
2017-03-19 21:54:41 +01:00
this.on('mount', () => {
this.update();
});
2017-03-19 21:43:27 +01:00
this.on('update', () => {
this.reactions = this.post.reaction_counts;
});
2017-03-19 20:24:19 +01:00
</script>
</mk-reactions-viewer>