Update NotificationCard, fix missing status bug

This commit is contained in:
Daniel Supernault 2021-06-18 05:29:37 -06:00
parent ef63124d88
commit a3a86d46a1
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 21 additions and 2 deletions

View File

@ -130,8 +130,19 @@
fetchNotifications() {
axios.get('/api/pixelfed/v1/notifications?pg=true')
.then(res => {
let data = res.data;
let ids = res.data.map(n => n.id);
let data = res.data.filter(n => {
if(n.type == 'share' && !status) {
return false;
}
if(n.type == 'comment' && !status) {
return false;
}
if(n.type == 'mention' && !status) {
return false;
}
return true;
});
let ids = data.map(n => n.id);
this.notificationMaxId = Math.min(...ids);
this.notifications = data;
this.loading = false;
@ -154,11 +165,19 @@
if(n.type == 'share' && !status) {
return false;
}
if(n.type == 'comment' && !status) {
return false;
}
if(n.type == 'mention' && !status) {
return false;
}
if(_.find(this.notifications, {id: n.id})) {
return false;
}
return true;
});
let ids = data.map(n => n.id);
this.notificationMaxId = Math.min(...ids);
this.notifications.push(...data);
this.notificationCursor++;
$state.loaded();