2018-02-07 10:34:43 +01:00
|
|
|
<template>
|
2018-02-16 07:38:12 +01:00
|
|
|
<div class="mk-reactions-viewer">
|
2018-02-07 10:34:43 +01:00
|
|
|
<template v-if="reactions">
|
2018-02-07 10:41:48 +01:00
|
|
|
<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>
|
2018-02-07 10:34:43 +01:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['post'],
|
|
|
|
computed: {
|
|
|
|
reactions(): number {
|
|
|
|
return this.post.reaction_counts;
|
2018-02-07 10:41:48 +01:00
|
|
|
}
|
2018-02-16 07:38:12 +01:00
|
|
|
}
|
|
|
|
});
|
2018-02-07 10:41:48 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-02-16 07:38:12 +01:00
|
|
|
.mk-reactions-viewer
|
|
|
|
border-top dashed 1px #eee
|
|
|
|
border-bottom dashed 1px #eee
|
|
|
|
margin 4px 0
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
&:empty
|
|
|
|
display none
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
> span
|
|
|
|
margin-right 8px
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
> mk-reaction-icon
|
|
|
|
font-size 1.4em
|
2017-03-19 20:24:19 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
> span
|
|
|
|
margin-left 4px
|
|
|
|
font-size 1.2em
|
|
|
|
color #444
|
2017-03-19 21:54:41 +01:00
|
|
|
|
2018-02-07 10:41:48 +01:00
|
|
|
</style>
|