2018-10-07 04:06:17 +02:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default prop => ({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
connection: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
$_ns_note_(): any {
|
|
|
|
return this[prop];
|
|
|
|
},
|
|
|
|
|
|
|
|
$_ns_isRenote(): boolean {
|
2018-10-08 18:33:40 +02:00
|
|
|
return (this.$_ns_note_.renote != null &&
|
2018-10-07 04:06:17 +02:00
|
|
|
this.$_ns_note_.text == null &&
|
|
|
|
this.$_ns_note_.fileIds.length == 0 &&
|
|
|
|
this.$_ns_note_.poll == null);
|
|
|
|
},
|
|
|
|
|
|
|
|
$_ns_target(): any {
|
2018-10-08 18:33:31 +02:00
|
|
|
return this.$_ns_isRenote ? this.$_ns_note_.renote : this.$_ns_note_;
|
2018-10-07 04:06:17 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.connection = this.$root.stream;
|
2018-10-07 04:06:17 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.capture(true);
|
|
|
|
|
|
|
|
if (this.$store.getters.isSignedIn) {
|
|
|
|
this.connection.on('_connected_', this.onStreamConnected);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
|
|
|
this.decapture(true);
|
|
|
|
|
|
|
|
if (this.$store.getters.isSignedIn) {
|
|
|
|
this.connection.off('_connected_', this.onStreamConnected);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
capture(withHandler = false) {
|
|
|
|
if (this.$store.getters.isSignedIn) {
|
|
|
|
const data = {
|
|
|
|
id: this.$_ns_target.id
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
if (
|
|
|
|
(this.$_ns_target.visibleUserIds || []).includes(this.$store.state.i.id) ||
|
|
|
|
(this.$_ns_target.mentions || []).includes(this.$store.state.i.id)
|
|
|
|
) {
|
|
|
|
data.read = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.connection.send('sn', data);
|
|
|
|
if (withHandler) this.connection.on('noteUpdated', this.onStreamNoteUpdated);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
decapture(withHandler = false) {
|
|
|
|
if (this.$store.getters.isSignedIn) {
|
|
|
|
this.connection.send('un', {
|
|
|
|
id: this.$_ns_target.id
|
|
|
|
});
|
|
|
|
if (withHandler) this.connection.off('noteUpdated', this.onStreamNoteUpdated);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onStreamConnected() {
|
|
|
|
this.capture();
|
|
|
|
},
|
|
|
|
|
|
|
|
onStreamNoteUpdated(data) {
|
|
|
|
const { type, id, body } = data;
|
|
|
|
|
|
|
|
if (id !== this.$_ns_target.id) return;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case 'reacted': {
|
|
|
|
const reaction = body.reaction;
|
2018-10-08 18:26:04 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (this.$_ns_target.reactions == null) {
|
|
|
|
Vue.set(this.$_ns_target, 'reactions', {});
|
2018-10-08 18:26:04 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (this.$_ns_target.reactions[reaction] == null) {
|
|
|
|
Vue.set(this.$_ns_target.reactions, reaction, 0);
|
2018-10-08 22:35:40 +02:00
|
|
|
}
|
|
|
|
|
2018-12-26 15:05:47 +01:00
|
|
|
// Increment the count
|
2019-04-07 14:50:36 +02:00
|
|
|
this.$_ns_target.reactions[reaction]++;
|
2018-10-08 18:26:04 +02:00
|
|
|
|
|
|
|
if (body.userId == this.$store.state.i.id) {
|
|
|
|
Vue.set(this.$_ns_target, 'myReaction', reaction);
|
|
|
|
}
|
2018-10-07 04:06:17 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-26 15:05:47 +01:00
|
|
|
case 'unreacted': {
|
|
|
|
const reaction = body.reaction;
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (this.$_ns_target.reactions == null) {
|
2018-12-26 15:05:47 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (this.$_ns_target.reactions[reaction] == null) {
|
2018-12-26 15:05:47 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decrement the count
|
2019-04-07 14:50:36 +02:00
|
|
|
if (this.$_ns_target.reactions[reaction] > 0) this.$_ns_target.reactions[reaction]--;
|
2018-12-26 15:05:47 +01:00
|
|
|
|
|
|
|
if (body.userId == this.$store.state.i.id) {
|
|
|
|
Vue.set(this.$_ns_target, 'myReaction', null);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
case 'pollVoted': {
|
|
|
|
const choice = body.choice;
|
2019-04-07 14:50:36 +02:00
|
|
|
this.$_ns_target.poll.choices[choice].votes++;
|
|
|
|
if (body.userId == this.$store.state.i.id) {
|
|
|
|
Vue.set(this.$_ns_target.poll.choices[choice], 'isVoted', true);
|
|
|
|
}
|
2018-10-07 04:06:17 +02:00
|
|
|
break;
|
|
|
|
}
|
2018-10-07 13:08:42 +02:00
|
|
|
|
|
|
|
case 'deleted': {
|
|
|
|
Vue.set(this.$_ns_target, 'deletedAt', body.deletedAt);
|
2019-01-26 09:47:56 +01:00
|
|
|
Vue.set(this.$_ns_target, 'renote', null);
|
2018-10-07 13:08:42 +02:00
|
|
|
this.$_ns_target.text = null;
|
|
|
|
this.$_ns_target.fileIds = [];
|
|
|
|
this.$_ns_target.poll = null;
|
|
|
|
this.$_ns_target.geo = null;
|
|
|
|
this.$_ns_target.cw = null;
|
|
|
|
break;
|
|
|
|
}
|
2018-10-07 04:06:17 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|