Refactor
This commit is contained in:
parent
d3f5001679
commit
7c38cda8ee
|
@ -91,19 +91,21 @@ export default Vue.extend({
|
||||||
followRequestDone: false,
|
followRequestDone: false,
|
||||||
groupInviteDone: false,
|
groupInviteDone: false,
|
||||||
connection: null,
|
connection: null,
|
||||||
readObserver: new IntersectionObserver((entries, observer) => {
|
readObserver: null,
|
||||||
if (!entries.some(entry => entry.isIntersecting)) return;
|
|
||||||
this.$root.stream.send('readNotification', {
|
|
||||||
id: this.notification.id
|
|
||||||
});
|
|
||||||
entries.map(({ target }) => observer.unobserve(target));
|
|
||||||
}),
|
|
||||||
faIdCardAlt, faPlus, faQuoteLeft, faQuoteRight, faRetweet, faReply, faAt, faClock, faCheck, faPollH
|
faIdCardAlt, faPlus, faQuoteLeft, faQuoteRight, faRetweet, faReply, faAt, faClock, faCheck, faPollH
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
if (!this.notification.isRead) {
|
if (!this.notification.isRead ) {
|
||||||
|
this.readObserver = new IntersectionObserver((entries, observer) => {
|
||||||
|
if (!entries.some(entry => entry.isIntersecting)) return;
|
||||||
|
this.$root.stream.send('readNotification', {
|
||||||
|
id: this.notification.id
|
||||||
|
});
|
||||||
|
entries.map(({ target }) => observer.unobserve(target));
|
||||||
|
})
|
||||||
|
|
||||||
this.readObserver.observe(this.$el);
|
this.readObserver.observe(this.$el);
|
||||||
|
|
||||||
this.connection = this.$root.stream.useSharedConnection('main');
|
this.connection = this.$root.stream.useSharedConnection('main');
|
||||||
|
|
Loading…
Reference in New Issue