forked from AkkomaGang/akkoma-fe
Don't add notifications twice + persiste them.
This commit is contained in:
parent
963a0035e5
commit
209e8614b0
2 changed files with 5 additions and 2 deletions
|
@ -29,7 +29,7 @@ Vue.use(VueTimeago, {
|
|||
})
|
||||
|
||||
const persistedStateOptions = {
|
||||
paths: ['users.users']
|
||||
paths: ['users.users', 'statuses.notifications']
|
||||
}
|
||||
|
||||
const store = new Vuex.Store({
|
||||
|
|
|
@ -173,7 +173,10 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us
|
|||
}
|
||||
|
||||
const addNotification = ({type, status, action}) => {
|
||||
state.notifications.push({type, status, action, seen: false})
|
||||
// Only add a new notification if we don't have one for the same action
|
||||
if (!find(state.notifications, (oldNotification) => oldNotification.action.id === action.id)) {
|
||||
state.notifications.push({type, status, action, seen: false})
|
||||
}
|
||||
}
|
||||
|
||||
const favoriteStatus = (favorite) => {
|
||||
|
|
Loading…
Reference in a new issue