2018-02-07 10:34:43 +01:00
|
|
|
<template>
|
2018-12-27 14:54:50 +01:00
|
|
|
<div class="mk-reactions-viewer" :class="{ isMe }">
|
2018-02-07 10:34:43 +01:00
|
|
|
<template v-if="reactions">
|
2018-12-27 14:54:50 +01:00
|
|
|
<span :class="{ reacted: note.myReaction == 'like' }" @click="toggleReaction('like')" v-if="reactions.like" v-particle="!isMe"><mk-reaction-icon reaction="like" ref="like"/><span>{{ reactions.like }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'love' }" @click="toggleReaction('love')" v-if="reactions.love" v-particle="!isMe"><mk-reaction-icon reaction="love" ref="love"/><span>{{ reactions.love }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'laugh' }" @click="toggleReaction('laugh')" v-if="reactions.laugh" v-particle="!isMe"><mk-reaction-icon reaction="laugh" ref="laugh"/><span>{{ reactions.laugh }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'hmm' }" @click="toggleReaction('hmm')" v-if="reactions.hmm" v-particle="!isMe"><mk-reaction-icon reaction="hmm" ref="hmm"/><span>{{ reactions.hmm }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'surprise' }" @click="toggleReaction('surprise')" v-if="reactions.surprise" v-particle="!isMe"><mk-reaction-icon reaction="surprise" ref="surprise"/><span>{{ reactions.surprise }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'congrats' }" @click="toggleReaction('congrats')" v-if="reactions.congrats" v-particle="!isMe"><mk-reaction-icon reaction="congrats" ref="congrats"/><span>{{ reactions.congrats }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'angry' }" @click="toggleReaction('angry')" v-if="reactions.angry" v-particle="!isMe"><mk-reaction-icon reaction="angry" ref="angry"/><span>{{ reactions.angry }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'confused' }" @click="toggleReaction('confused')" v-if="reactions.confused" v-particle="!isMe"><mk-reaction-icon reaction="confused" ref="confused"/><span>{{ reactions.confused }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'rip' }" @click="toggleReaction('rip')" v-if="reactions.rip" v-particle="!isMe"><mk-reaction-icon reaction="rip" ref="rip"/><span>{{ reactions.rip }}</span></span>
|
|
|
|
<span :class="{ reacted: note.myReaction == 'pudding' }" @click="toggleReaction('pudding')" v-if="reactions.pudding" v-particle="!isMe"><mk-reaction-icon reaction="pudding" ref="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';
|
2018-12-16 19:29:57 +01:00
|
|
|
import Icon from './reaction-icon.vue';
|
|
|
|
import * as anime from 'animejs';
|
2018-11-08 19:44:35 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
export default Vue.extend({
|
2018-12-27 14:54:50 +01:00
|
|
|
props: {
|
|
|
|
note: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2018-02-16 07:38:12 +01:00
|
|
|
computed: {
|
2018-12-16 19:29:57 +01:00
|
|
|
reactions(): any {
|
2018-04-07 19:30:37 +02:00
|
|
|
return this.note.reactionCounts;
|
2018-12-27 14:54:50 +01:00
|
|
|
},
|
|
|
|
isMe(): boolean {
|
|
|
|
return this.$store.getters.isSignedIn && (this.$store.state.i.id === this.note.userId);
|
2018-08-15 21:57:09 +02:00
|
|
|
}
|
|
|
|
},
|
2018-12-16 19:29:57 +01:00
|
|
|
watch: {
|
|
|
|
'reactions.like'() {
|
|
|
|
this.anime('like');
|
|
|
|
},
|
|
|
|
'reactions.love'() {
|
|
|
|
this.anime('love');
|
|
|
|
},
|
|
|
|
'reactions.laugh'() {
|
|
|
|
this.anime('laugh');
|
|
|
|
},
|
|
|
|
'reactions.hmm'() {
|
|
|
|
this.anime('hmm');
|
|
|
|
},
|
|
|
|
'reactions.surprise'() {
|
|
|
|
this.anime('surprise');
|
|
|
|
},
|
|
|
|
'reactions.congrats'() {
|
|
|
|
this.anime('congrats');
|
|
|
|
},
|
|
|
|
'reactions.angry'() {
|
|
|
|
this.anime('angry');
|
|
|
|
},
|
|
|
|
'reactions.confused'() {
|
|
|
|
this.anime('confused');
|
|
|
|
},
|
|
|
|
'reactions.rip'() {
|
|
|
|
this.anime('rip');
|
|
|
|
},
|
|
|
|
'reactions.pudding'() {
|
|
|
|
this.anime('pudding');
|
|
|
|
}
|
|
|
|
},
|
2018-08-15 21:57:09 +02:00
|
|
|
methods: {
|
2018-12-26 15:05:47 +01:00
|
|
|
toggleReaction(reaction: string) {
|
2018-12-27 14:54:50 +01:00
|
|
|
if (this.isMe) return;
|
|
|
|
|
2018-12-26 15:05:47 +01:00
|
|
|
const oldReaction = this.note.myReaction;
|
|
|
|
if (oldReaction) {
|
|
|
|
this.$root.api('notes/reactions/delete', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
if (oldReaction !== reaction) {
|
|
|
|
this.$root.api('notes/reactions/create', {
|
|
|
|
noteId: this.note.id,
|
|
|
|
reaction: reaction
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.$root.api('notes/reactions/create', {
|
|
|
|
noteId: this.note.id,
|
|
|
|
reaction: reaction
|
|
|
|
});
|
|
|
|
}
|
2018-12-16 19:29:57 +01:00
|
|
|
},
|
|
|
|
anime(reaction: string) {
|
2018-12-17 09:21:36 +01:00
|
|
|
if (this.$store.state.device.reduceMotion) return;
|
2018-12-18 16:25:35 +01:00
|
|
|
if (document.hidden) return;
|
2018-12-17 09:21:36 +01:00
|
|
|
|
2018-12-16 19:29:57 +01:00
|
|
|
this.$nextTick(() => {
|
|
|
|
const rect = this.$refs[reaction].$el.getBoundingClientRect();
|
|
|
|
|
|
|
|
const x = rect.left;
|
|
|
|
const y = rect.top;
|
|
|
|
|
|
|
|
const icon = new Icon({
|
|
|
|
parent: this,
|
|
|
|
propsData: {
|
|
|
|
reaction: reaction
|
|
|
|
}
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
icon.$el.style.position = 'absolute';
|
|
|
|
icon.$el.style.zIndex = 100;
|
|
|
|
icon.$el.style.top = (y + window.scrollY) + 'px';
|
|
|
|
icon.$el.style.left = (x + window.scrollX) + 'px';
|
|
|
|
icon.$el.style.fontSize = window.getComputedStyle(this.$refs[reaction].$el).fontSize;
|
|
|
|
|
|
|
|
document.body.appendChild(icon.$el);
|
|
|
|
|
|
|
|
anime({
|
|
|
|
targets: icon.$el,
|
|
|
|
opacity: [1, 0],
|
|
|
|
translateY: [0, -64],
|
|
|
|
duration: 1000,
|
|
|
|
easing: 'linear',
|
|
|
|
complete: () => {
|
|
|
|
icon.destroyDom();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
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-09-27 15:59:56 +02:00
|
|
|
.mk-reactions-viewer
|
2018-10-06 10:51:59 +02:00
|
|
|
margin 6px 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-12-27 14:54:50 +01:00
|
|
|
&.isMe
|
|
|
|
> span
|
|
|
|
cursor default !important
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background var(--reactionViewerButtonBg) !important
|
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
> span
|
2018-10-08 18:26:04 +02:00
|
|
|
display inline-block
|
|
|
|
height 32px
|
2018-10-06 10:51:59 +02:00
|
|
|
margin-right 6px
|
2018-10-08 18:26:04 +02:00
|
|
|
padding 0 6px
|
|
|
|
border-radius 4px
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2018-10-08 18:26:04 +02:00
|
|
|
*
|
|
|
|
user-select none
|
|
|
|
pointer-events none
|
|
|
|
|
|
|
|
&.reacted
|
|
|
|
background var(--primary)
|
|
|
|
|
|
|
|
> span
|
|
|
|
color var(--primaryForeground)
|
|
|
|
|
|
|
|
&:not(.reacted)
|
2018-08-15 21:57:09 +02:00
|
|
|
cursor pointer
|
2018-10-08 18:26:04 +02:00
|
|
|
background var(--reactionViewerButtonBg)
|
2018-08-15 21:57:09 +02:00
|
|
|
|
2018-10-06 10:51:59 +02:00
|
|
|
&:hover
|
2018-10-08 18:26:04 +02:00
|
|
|
background var(--reactionViewerButtonHoverBg)
|
2018-10-06 10:51:59 +02:00
|
|
|
|
2018-02-16 19:01:00 +01:00
|
|
|
> .mk-reaction-icon
|
2018-02-16 07:38:12 +01:00
|
|
|
font-size 1.4em
|
2017-03-19 20:24:19 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
> span
|
2018-10-08 18:26:04 +02:00
|
|
|
font-size 1.1em
|
|
|
|
line-height 32px
|
|
|
|
vertical-align middle
|
2018-09-27 15:59:56 +02:00
|
|
|
color var(--text)
|
2017-03-19 21:54:41 +01:00
|
|
|
|
2018-02-07 10:41:48 +01:00
|
|
|
</style>
|