summaryrefslogtreecommitdiff
path: root/packages/client/src/components/reactions-viewer.reaction.vue
blob: 7dc079fde60cb3d385abccb770901232de92af94 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<template>
<button
	v-if="count > 0"
	ref="buttonRef"
	v-ripple="canToggle"
	class="hkzvhatu _button"
	:class="{ reacted: note.myReaction == reaction, canToggle }"
	@click="toggleReaction()"
>
	<XReactionIcon :reaction="reaction" :custom-emojis="note.emojis"/>
	<span>{{ count }}</span>
</button>
</template>

<script lang="ts">
import { computed, defineComponent, onMounted, ref, watch } from 'vue';
import XDetails from '@/components/reactions-viewer.details.vue';
import XReactionIcon from '@/components/reaction-icon.vue';
import * as os from '@/os';
import { useTooltip } from '@/scripts/use-tooltip';
import { $i } from '@/account';

export default defineComponent({
	components: {
		XReactionIcon
	},

	props: {
		reaction: {
			type: String,
			required: true,
		},
		count: {
			type: Number,
			required: true,
		},
		isInitial: {
			type: Boolean,
			required: true,
		},
		note: {
			type: Object,
			required: true,
		},
	},

	setup(props) {
		const buttonRef = ref<HTMLElement>();

		const canToggle = computed(() => !props.reaction.match(/@\w/) && $i);

		const toggleReaction = () => {
			if (!canToggle.value) return;

			const oldReaction = props.note.myReaction;
			if (oldReaction) {
				os.api('notes/reactions/delete', {
					noteId: props.note.id
				}).then(() => {
					if (oldReaction !== props.reaction) {
						os.api('notes/reactions/create', {
							noteId: props.note.id,
							reaction: props.reaction
						});
					}
				});
			} else {
				os.api('notes/reactions/create', {
					noteId: props.note.id,
					reaction: props.reaction
				});
			}
		};

		const anime = () => {
			if (document.hidden) return;

			// TODO: 新しくリアクションが付いたことが視覚的に分かりやすいアニメーション
		};

		watch(() => props.count, (newCount, oldCount) => {
			if (oldCount < newCount) anime();
		});

		onMounted(() => {
			if (!props.isInitial) anime();
		});

		useTooltip(buttonRef, async (showing) => {
			const reactions = await os.api('notes/reactions', {
				noteId: props.note.id,
				type: props.reaction,
				limit: 11
			});

			const users = reactions.map(x => x.user);

			os.popup(XDetails, {
				showing,
				reaction: props.reaction,
				emojis: props.note.emojis,
				users,
				count: props.count,
				targetElement: buttonRef.value,
			}, {}, 'closed');
		});

		return {
			buttonRef,
			canToggle,
			toggleReaction,
		};
	},
});
</script>

<style lang="scss" scoped>
.hkzvhatu {
	display: inline-block;
	height: 32px;
	margin: 2px;
	padding: 0 6px;
	border-radius: 4px;

	&.canToggle {
		background: rgba(0, 0, 0, 0.05);

		&:hover {
			background: rgba(0, 0, 0, 0.1);
		}
	}

	&:not(.canToggle) {
		cursor: default;
	}

	&.reacted {
		background: var(--accent);

		&:hover {
			background: var(--accent);
		}

		> span {
			color: var(--fgOnAccent);
		}
	}

	> span {
		font-size: 0.9em;
		line-height: 32px;
		margin: 0 0 0 4px;
	}
}
</style>