mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update NotificationCard, fix missing status bug
This commit is contained in:
parent
ef63124d88
commit
a3a86d46a1
1 changed files with 21 additions and 2 deletions
|
@ -130,8 +130,19 @@
|
||||||
fetchNotifications() {
|
fetchNotifications() {
|
||||||
axios.get('/api/pixelfed/v1/notifications?pg=true')
|
axios.get('/api/pixelfed/v1/notifications?pg=true')
|
||||||
.then(res => {
|
.then(res => {
|
||||||
let data = res.data;
|
let data = res.data.filter(n => {
|
||||||
let ids = res.data.map(n => n.id);
|
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.notificationMaxId = Math.min(...ids);
|
||||||
this.notifications = data;
|
this.notifications = data;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
@ -154,11 +165,19 @@
|
||||||
if(n.type == 'share' && !status) {
|
if(n.type == 'share' && !status) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if(n.type == 'comment' && !status) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(n.type == 'mention' && !status) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if(_.find(this.notifications, {id: n.id})) {
|
if(_.find(this.notifications, {id: n.id})) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
let ids = data.map(n => n.id);
|
||||||
|
this.notificationMaxId = Math.min(...ids);
|
||||||
this.notifications.push(...data);
|
this.notifications.push(...data);
|
||||||
this.notificationCursor++;
|
this.notificationCursor++;
|
||||||
$state.loaded();
|
$state.loaded();
|
||||||
|
|
Loading…
Reference in a new issue