2019-02-06 17:05:49 +00:00
|
|
|
<template>
|
2020-02-21 21:43:46 +00:00
|
|
|
<button
|
2021-11-19 10:36:12 +00:00
|
|
|
ref="buttonRef"
|
2021-12-27 13:59:14 +00:00
|
|
|
v-ripple="canToggle"
|
2020-02-21 21:43:46 +00:00
|
|
|
class="hkzvhatu _button"
|
2020-07-27 14:25:37 +00:00
|
|
|
:class="{ reacted: note.myReaction == reaction, canToggle }"
|
2021-11-12 14:53:10 +00:00
|
|
|
@click="toggleReaction()"
|
2019-02-06 17:05:49 +00:00
|
|
|
>
|
2022-12-29 01:14:44 +00:00
|
|
|
<XReactionIcon class="icon" :reaction="reaction"/>
|
2022-05-19 14:23:12 +00:00
|
|
|
<span class="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-01-03 01:12:37 +00:00
|
|
|
import { computed, onMounted, ref, shallowRef, watch } from 'vue';
|
2022-06-30 14:51:18 +00:00
|
|
|
import * as misskey from 'misskey-js';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XDetails from '@/components/MkReactionsViewer.details.vue';
|
|
|
|
import XReactionIcon from '@/components/MkReactionIcon.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2021-11-12 14:53:10 +00:00
|
|
|
import { useTooltip } from '@/scripts/use-tooltip';
|
|
|
|
import { $i } from '@/account';
|
2023-01-01 03:28:30 +00:00
|
|
|
import MkPlusOneEffect from '@/components/MkPlusOneEffect.vue';
|
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;
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
}>();
|
|
|
|
|
2023-01-03 01:12:37 +00:00
|
|
|
const buttonRef = shallowRef<HTMLElement>();
|
2022-06-30 14:51:18 +00:00
|
|
|
|
|
|
|
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) {
|
2020-10-17 11:12:00 +00:00
|
|
|
os.api('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 {
|
|
|
|
os.api('notes/reactions/create', {
|
|
|
|
noteId: props.note.id,
|
|
|
|
reaction: props.reaction,
|
2021-11-12 14:53:10 +00:00
|
|
|
});
|
2022-06-30 14:51:18 +00:00
|
|
|
}
|
|
|
|
};
|
2021-11-12 14:53:10 +00:00
|
|
|
|
2022-06-30 14:51:18 +00:00
|
|
|
const anime = () => {
|
|
|
|
if (document.hidden) return;
|
|
|
|
|
2023-01-01 03:28:30 +00:00
|
|
|
const rect = buttonRef.value.getBoundingClientRect();
|
|
|
|
const x = rect.left + (buttonRef.value.offsetWidth / 2);
|
|
|
|
const y = rect.top + (buttonRef.value.offsetHeight / 2);
|
2023-01-07 08:37:30 +00:00
|
|
|
os.popup(MkPlusOneEffect, { reaction: props.reaction, x, y }, {}, 'end');
|
2022-06-30 14:51:18 +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();
|
|
|
|
});
|
|
|
|
|
|
|
|
useTooltip(buttonRef, async (showing) => {
|
2022-07-05 10:16:21 +00:00
|
|
|
const reactions = await os.apiGet('notes/reactions', {
|
2022-06-30 14:51:18 +00:00
|
|
|
noteId: props.note.id,
|
|
|
|
type: props.reaction,
|
|
|
|
limit: 11,
|
2022-07-05 10:16:21 +00:00
|
|
|
_cacheKey_: props.count,
|
2022-06-30 14:51:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const users = reactions.map(x => x.user);
|
|
|
|
|
|
|
|
os.popup(XDetails, {
|
|
|
|
showing,
|
|
|
|
reaction: props.reaction,
|
|
|
|
users,
|
|
|
|
count: props.count,
|
|
|
|
targetElement: buttonRef.value,
|
|
|
|
}, {}, 'closed');
|
|
|
|
}, 100);
|
2019-02-06 17:05:49 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-02-21 21:43:46 +00:00
|
|
|
.hkzvhatu {
|
2020-01-29 19:37:25 +00:00
|
|
|
display: inline-block;
|
|
|
|
height: 32px;
|
|
|
|
margin: 2px;
|
|
|
|
padding: 0 6px;
|
|
|
|
border-radius: 4px;
|
2019-09-02 21:20:04 +00:00
|
|
|
|
2020-04-15 15:47:17 +00:00
|
|
|
&.canToggle {
|
|
|
|
background: rgba(0, 0, 0, 0.05);
|
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
|
|
|
|
2020-04-15 15:47:17 +00:00
|
|
|
&.reacted {
|
|
|
|
background: var(--accent);
|
|
|
|
|
2020-04-17 11:30:12 +00:00
|
|
|
&:hover {
|
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
|
2022-05-19 14:23:12 +00:00
|
|
|
> .count {
|
2021-08-09 09:55:39 +00:00
|
|
|
color: var(--fgOnAccent);
|
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
|
|
|
}
|
2019-02-06 17:05:49 +00:00
|
|
|
|
2022-05-19 14:23:12 +00:00
|
|
|
> .count {
|
2020-01-29 19:37:25 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
line-height: 32px;
|
2021-10-24 04:54:31 +00:00
|
|
|
margin: 0 0 0 4px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-06 17:05:49 +00:00
|
|
|
</style>
|