2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
2024-02-13 15:59:27 +00:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2019-02-06 17:05:49 +00:00
|
|
|
<template>
|
2020-02-21 21:43:46 +00:00
|
|
|
<button
|
2023-01-08 05:28:14 +00:00
|
|
|
ref="buttonEl"
|
2021-12-27 13:59:14 +00:00
|
|
|
v-ripple="canToggle"
|
2023-01-14 08:23:49 +00:00
|
|
|
class="_button"
|
2023-09-10 08:16:50 +00:00
|
|
|
:class="[$style.root, { [$style.reacted]: note.myReaction == reaction, [$style.canToggle]: canToggle, [$style.small]: defaultStore.state.reactionsDisplaySize === 'small', [$style.large]: defaultStore.state.reactionsDisplaySize === 'large' }]"
|
2021-11-12 14:53:10 +00:00
|
|
|
@click="toggleReaction()"
|
2024-01-13 06:25:11 +00:00
|
|
|
@contextmenu.prevent.stop="menu"
|
2019-02-06 17:05:49 +00:00
|
|
|
>
|
2023-11-23 23:37:27 +00:00
|
|
|
<MkReactionIcon :class="defaultStore.state.limitWidthOfReaction ? $style.limitWidth : ''" :reaction="reaction" :emojiUrl="note.reactionEmojis[reaction.substring(1, reaction.length - 1)]"/>
|
2023-01-14 08:23:49 +00:00
|
|
|
<span :class="$style.count">{{ count }}</span>
|
2020-02-21 21:43:46 +00:00
|
|
|
</button>
|
2019-02-06 17:05:49 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-30 14:51:18 +00:00
|
|
|
<script lang="ts" setup>
|
2023-11-03 06:35:07 +00:00
|
|
|
import { computed, inject, onMounted, shallowRef, watch } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2024-01-30 10:53:53 +00:00
|
|
|
import MkCustomEmojiDetailedDialog from './MkCustomEmojiDetailedDialog.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XDetails from '@/components/MkReactionsViewer.details.vue';
|
2023-01-08 05:22:04 +00:00
|
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
2024-01-04 09:32:46 +00:00
|
|
|
import { misskeyApi, misskeyApiGet } from '@/scripts/misskey-api.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { useTooltip } from '@/scripts/use-tooltip.js';
|
|
|
|
import { $i } from '@/account.js';
|
2023-01-08 07:17:42 +00:00
|
|
|
import MkReactionEffect from '@/components/MkReactionEffect.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2023-11-26 04:04:44 +00:00
|
|
|
import * as sound from '@/scripts/sound.js';
|
2024-02-06 07:45:21 +00:00
|
|
|
import { checkReactionPermissions } from '@/scripts/check-reaction-permissions.js';
|
|
|
|
import { customEmojis } from '@/custom-emojis.js';
|
2019-02-06 17:05:49 +00:00
|
|
|
|
2022-06-30 14:51:18 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
reaction: string;
|
|
|
|
count: number;
|
|
|
|
isInitial: boolean;
|
2023-09-04 04:33:38 +00:00
|
|
|
note: Misskey.entities.Note;
|
2022-06-30 14:51:18 +00:00
|
|
|
}>();
|
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
const mock = inject<boolean>('mock', false);
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'reactionToggled', emoji: string, newCount: number): void;
|
|
|
|
}>();
|
|
|
|
|
2023-01-08 05:28:14 +00:00
|
|
|
const buttonEl = shallowRef<HTMLElement>();
|
2022-06-30 14:51:18 +00:00
|
|
|
|
2024-02-06 07:45:21 +00:00
|
|
|
const isCustomEmoji = computed(() => props.reaction.includes(':'));
|
|
|
|
const emoji = computed(() => isCustomEmoji.value ? customEmojis.value.find(emoji => emoji.name === props.reaction.replace(/:/g, '').replace(/@\./, '')) : null);
|
|
|
|
|
|
|
|
const canToggle = computed(() => {
|
|
|
|
return !props.reaction.match(/@\w/) && $i
|
|
|
|
&& (emoji.value && checkReactionPermissions($i, props.note, emoji.value))
|
|
|
|
|| !isCustomEmoji.value;
|
|
|
|
});
|
|
|
|
const canGetInfo = computed(() => !props.reaction.match(/@\w/) && props.reaction.includes(':'));
|
2022-06-30 14:51:18 +00:00
|
|
|
|
2023-05-19 00:15:24 +00:00
|
|
|
async function toggleReaction() {
|
2022-06-30 14:51:18 +00:00
|
|
|
if (!canToggle.value) return;
|
|
|
|
|
|
|
|
const oldReaction = props.note.myReaction;
|
|
|
|
if (oldReaction) {
|
2023-05-19 00:15:24 +00:00
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: oldReaction !== props.reaction ? i18n.ts.changeReactionConfirm : i18n.ts.cancelReactionConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
|
2023-11-26 04:04:44 +00:00
|
|
|
if (oldReaction !== props.reaction) {
|
2024-01-09 04:25:33 +00:00
|
|
|
sound.playMisskeySfx('reaction');
|
2023-11-26 04:04:44 +00:00
|
|
|
}
|
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
if (mock) {
|
|
|
|
emit('reactionToggled', props.reaction, (props.count - 1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-01-04 09:32:46 +00:00
|
|
|
misskeyApi('notes/reactions/delete', {
|
2022-06-30 14:51:18 +00:00
|
|
|
noteId: props.note.id,
|
|
|
|
}).then(() => {
|
|
|
|
if (oldReaction !== props.reaction) {
|
2024-01-04 09:32:46 +00:00
|
|
|
misskeyApi('notes/reactions/create', {
|
2021-11-12 14:53:10 +00:00
|
|
|
noteId: props.note.id,
|
2022-06-30 14:51:18 +00:00
|
|
|
reaction: props.reaction,
|
2019-02-06 17:05:49 +00:00
|
|
|
});
|
|
|
|
}
|
2021-11-12 14:53:10 +00:00
|
|
|
});
|
2022-06-30 14:51:18 +00:00
|
|
|
} else {
|
2024-01-09 04:25:33 +00:00
|
|
|
sound.playMisskeySfx('reaction');
|
2023-11-26 04:04:44 +00:00
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
if (mock) {
|
|
|
|
emit('reactionToggled', props.reaction, (props.count + 1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-01-04 09:32:46 +00:00
|
|
|
misskeyApi('notes/reactions/create', {
|
2022-06-30 14:51:18 +00:00
|
|
|
noteId: props.note.id,
|
|
|
|
reaction: props.reaction,
|
2021-11-12 14:53:10 +00:00
|
|
|
});
|
2023-01-21 04:14:55 +00:00
|
|
|
if (props.note.text && props.note.text.length > 100 && (Date.now() - new Date(props.note.createdAt).getTime() < 1000 * 3)) {
|
|
|
|
claimAchievement('reactWithoutRead');
|
|
|
|
}
|
2022-06-30 14:51:18 +00:00
|
|
|
}
|
2023-05-19 00:15:24 +00:00
|
|
|
}
|
2021-11-12 14:53:10 +00:00
|
|
|
|
2024-01-13 06:25:11 +00:00
|
|
|
async function menu(ev) {
|
2024-02-06 07:45:21 +00:00
|
|
|
if (!canGetInfo.value) return;
|
|
|
|
|
2024-01-13 06:25:11 +00:00
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.info,
|
|
|
|
icon: 'ti ti-info-circle',
|
|
|
|
action: async () => {
|
|
|
|
os.popup(MkCustomEmojiDetailedDialog, {
|
|
|
|
emoji: await misskeyApiGet('emoji', {
|
|
|
|
name: props.reaction.replace(/:/g, '').replace(/@\./, ''),
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}], ev.currentTarget ?? ev.target);
|
|
|
|
}
|
|
|
|
|
2023-05-19 00:15:24 +00:00
|
|
|
function anime() {
|
2024-01-30 10:53:53 +00:00
|
|
|
if (document.hidden || !defaultStore.state.animation || buttonEl.value == null) return;
|
2022-06-30 14:51:18 +00:00
|
|
|
|
2023-01-08 05:28:14 +00:00
|
|
|
const rect = buttonEl.value.getBoundingClientRect();
|
|
|
|
const x = rect.left + 16;
|
|
|
|
const y = rect.top + (buttonEl.value.offsetHeight / 2);
|
2023-01-08 07:17:42 +00:00
|
|
|
os.popup(MkReactionEffect, { reaction: props.reaction, x, y }, {}, 'end');
|
2023-05-19 00:15:24 +00:00
|
|
|
}
|
2021-11-12 14:53:10 +00:00
|
|
|
|
2022-06-30 14:51:18 +00:00
|
|
|
watch(() => props.count, (newCount, oldCount) => {
|
|
|
|
if (oldCount < newCount) anime();
|
2019-02-06 17:05:49 +00:00
|
|
|
});
|
2022-06-30 14:51:18 +00:00
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (!props.isInitial) anime();
|
|
|
|
});
|
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
if (!mock) {
|
|
|
|
useTooltip(buttonEl, async (showing) => {
|
2024-01-04 09:32:46 +00:00
|
|
|
const reactions = await misskeyApiGet('notes/reactions', {
|
2023-11-03 06:35:07 +00:00
|
|
|
noteId: props.note.id,
|
|
|
|
type: props.reaction,
|
2023-11-03 08:55:39 +00:00
|
|
|
limit: 10,
|
2023-11-03 06:35:07 +00:00
|
|
|
_cacheKey_: props.count,
|
|
|
|
});
|
|
|
|
|
|
|
|
const users = reactions.map(x => x.user);
|
|
|
|
|
|
|
|
os.popup(XDetails, {
|
|
|
|
showing,
|
|
|
|
reaction: props.reaction,
|
|
|
|
users,
|
|
|
|
count: props.count,
|
|
|
|
targetElement: buttonEl.value,
|
|
|
|
}, {}, 'closed');
|
|
|
|
}, 100);
|
|
|
|
}
|
2019-02-06 17:05:49 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-14 08:23:49 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2023-12-14 07:17:01 +00:00
|
|
|
display: inline-flex;
|
2023-09-10 08:16:50 +00:00
|
|
|
height: 42px;
|
2020-01-29 19:37:25 +00:00
|
|
|
margin: 2px;
|
|
|
|
padding: 0 6px;
|
2023-09-10 08:16:50 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
border-radius: 6px;
|
2023-12-14 07:17:01 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2019-09-02 21:20:04 +00:00
|
|
|
|
2020-04-15 15:47:17 +00:00
|
|
|
&.canToggle {
|
2023-02-11 04:05:36 +00:00
|
|
|
background: var(--buttonBg);
|
2019-02-06 17:05:49 +00:00
|
|
|
|
2020-04-15 15:47:17 +00:00
|
|
|
&:hover {
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-06 17:05:49 +00:00
|
|
|
|
2020-04-15 15:47:17 +00:00
|
|
|
&:not(.canToggle) {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2019-02-06 17:05:49 +00:00
|
|
|
|
2023-09-10 08:16:50 +00:00
|
|
|
&.small {
|
|
|
|
height: 32px;
|
|
|
|
font-size: 1em;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
> .count {
|
|
|
|
font-size: 0.9em;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-30 03:49:23 +00:00
|
|
|
&.large {
|
2023-09-10 08:16:50 +00:00
|
|
|
height: 52px;
|
|
|
|
font-size: 2em;
|
|
|
|
border-radius: 8px;
|
2023-03-30 03:49:23 +00:00
|
|
|
|
|
|
|
> .count {
|
2023-09-10 08:16:50 +00:00
|
|
|
font-size: 0.6em;
|
|
|
|
line-height: 52px;
|
2023-03-30 03:49:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 08:38:41 +00:00
|
|
|
&.reacted, &.reacted:hover {
|
2023-09-18 04:25:49 +00:00
|
|
|
background: var(--accentedBg);
|
|
|
|
color: var(--accent);
|
2023-12-14 07:17:01 +00:00
|
|
|
box-shadow: 0 0 0 1px var(--accent) inset;
|
2020-04-17 11:30:12 +00:00
|
|
|
|
2022-05-19 14:23:12 +00:00
|
|
|
> .count {
|
2023-07-31 08:38:41 +00:00
|
|
|
color: var(--accent);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-05-19 14:23:12 +00:00
|
|
|
|
|
|
|
> .icon {
|
|
|
|
filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-14 08:23:49 +00:00
|
|
|
}
|
2019-02-06 17:05:49 +00:00
|
|
|
|
2023-11-23 23:37:27 +00:00
|
|
|
.limitWidth {
|
2023-12-27 06:15:08 +00:00
|
|
|
max-width: 70px;
|
|
|
|
object-fit: contain;
|
2023-09-21 01:29:40 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 08:23:49 +00:00
|
|
|
.count {
|
2023-09-10 08:16:50 +00:00
|
|
|
font-size: 0.7em;
|
|
|
|
line-height: 42px;
|
2023-01-14 08:23:49 +00:00
|
|
|
margin: 0 0 0 4px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2019-02-06 17:05:49 +00:00
|
|
|
</style>
|