summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components/reactions-viewer.vue
blob: c30fa2a1dcb370f808088f430705ff39ba371626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<template>
<div class="mk-reactions-viewer">
	<template v-if="reactions">
		<span :class="{notReacted}" @click="react('like')" v-if="reactions.like"><mk-reaction-icon reaction="like"/><span>{{ reactions.like }}</span></span>
		<span :class="{notReacted}" @click="react('love')" v-if="reactions.love"><mk-reaction-icon reaction="love"/><span>{{ reactions.love }}</span></span>
		<span :class="{notReacted}" @click="react('laugh')" v-if="reactions.laugh"><mk-reaction-icon reaction="laugh"/><span>{{ reactions.laugh }}</span></span>
		<span :class="{notReacted}" @click="react('hmm')" v-if="reactions.hmm"><mk-reaction-icon reaction="hmm"/><span>{{ reactions.hmm }}</span></span>
		<span :class="{notReacted}" @click="react('surprise')" v-if="reactions.surprise"><mk-reaction-icon reaction="surprise"/><span>{{ reactions.surprise }}</span></span>
		<span :class="{notReacted}" @click="react('congrats')" v-if="reactions.congrats"><mk-reaction-icon reaction="congrats"/><span>{{ reactions.congrats }}</span></span>
		<span :class="{notReacted}" @click="react('angry')" v-if="reactions.angry"><mk-reaction-icon reaction="angry"/><span>{{ reactions.angry }}</span></span>
		<span :class="{notReacted}" @click="react('confused')" v-if="reactions.confused"><mk-reaction-icon reaction="confused"/><span>{{ reactions.confused }}</span></span>
		<span :class="{notReacted}" @click="react('rip')" v-if="reactions.rip"><mk-reaction-icon reaction="rip"/><span>{{ reactions.rip }}</span></span>
		<span :class="{notReacted}" @click="react('pudding')" v-if="reactions.pudding"><mk-reaction-icon reaction="pudding"/><span>{{ reactions.pudding }}</span></span>
	</template>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	props: ['note'],
	computed: {
		reactions(): number {
			return this.note.reactionCounts;
		},
		notReacted(): boolean {
			return this.note.myReaction == null;
		}
	},
	methods: {
		react(reaction: string) {
			(this as any).api('notes/reactions/create', {
				noteId: this.note.id,
				reaction: reaction
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
root(isDark)
	$borderColor = isDark ? #5e6673 : #eee
	border-top dashed 1px $borderColor
	border-bottom dashed 1px $borderColor
	margin 4px 0

	&:empty
		display none

	> span
		margin-right 8px

		&.notReacted
			cursor pointer

		> .mk-reaction-icon
			font-size 1.4em

		> span
			margin-left 4px
			font-size 1.2em
			color isDark ? #d1d5dc : #444

.mk-reactions-viewer[data-darkmode]
	root(true)

.mk-reactions-viewer:not([data-darkmode])
	root(false)

</style>