Show users who sent reaction on hover (#5362)

* Show users who sent reaction on hover

* Support i18n

* detail -> details

* Extract methods

* Update on change
This commit is contained in:
Aya Morisawa
2019-08-31 03:04:36 +09:00
committed by syuilo
parent a47baad943
commit 749200d22b
3 changed files with 147 additions and 0 deletions

View File

@@ -5,6 +5,9 @@
@click="toggleReaction(reaction)"
v-if="count > 0"
v-particle="!isMe"
@mouseover="onMouseover"
@mouseleave="onMouseleave"
ref="reaction"
>
<mk-reaction-icon :reaction="reaction" ref="icon"/>
<span>{{ count }}</span>
@@ -15,6 +18,7 @@
import Vue from 'vue';
import Icon from './reaction-icon.vue';
import anime from 'animejs';
import XDetails from './reactions-viewer.details.vue';
export default Vue.extend({
props: {
@@ -40,6 +44,12 @@ export default Vue.extend({
default: true,
},
},
data() {
return {
details: null,
detailsTimeoutId: null
};
},
computed: {
isMe(): boolean {
return this.$store.getters.isSignedIn && this.$store.state.i.id === this.note.userId;
@@ -51,6 +61,7 @@ export default Vue.extend({
watch: {
count(newCount, oldCount) {
if (oldCount < newCount) this.anime();
if (this.details != null) this.openDetails();
},
},
methods: {
@@ -77,6 +88,35 @@ export default Vue.extend({
});
}
},
onMouseover() {
this.detailsTimeoutId = setTimeout(this.openDetails, 300);
},
onMouseleave() {
clearTimeout(this.detailsTimeoutId);
this.closeDetails();
},
openDetails() {
this.$root.api('notes/reactions', {
noteId: this.note.id
}).then((reactions: any[]) => {
const users = reactions.filter(x => x.type === this.reaction)
.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())
.map(x => x.user.username);
this.closeDetails();
this.details = this.$root.new(XDetails, {
reaction: this.reaction,
users,
source: this.$refs.reaction
});
});
},
closeDetails() {
if (this.details != null) {
this.details.close();
this.details = null;
}
},
anime() {
if (this.$store.state.device.reduceMotion) return;
if (document.hidden) return;