forked from AkkomaGang/akkoma-fe
#468 - clean up
This commit is contained in:
parent
5ab0e71500
commit
e6268c492e
2 changed files with 9 additions and 15 deletions
|
@ -362,7 +362,9 @@ const Status = {
|
|||
this.$store.state.api.backendInteractor.pinOwnStatus(this.status.id).then((status) => {
|
||||
if (status.error) {
|
||||
this.error = status.error
|
||||
setTimeout(() => this.error = null, 5000)
|
||||
setTimeout(() => {
|
||||
this.error = null
|
||||
}, 5000)
|
||||
} else {
|
||||
this.$store.dispatch('updatePinned', status)
|
||||
}
|
||||
|
|
|
@ -367,24 +367,16 @@ const addNewNotifications = (state, { dispatch, notifications, older, visibleNot
|
|||
|
||||
const removeStatus = (state, { timeline, userId, statusId }) => {
|
||||
const timelineObject = state.timelines[timeline]
|
||||
let removed = false
|
||||
if (userId) {
|
||||
remove(timelineObject.statuses, { user: { id: userId } })
|
||||
remove(timelineObject.visibleStatuses, { user: { id: userId } })
|
||||
removed = true
|
||||
} else if (statusId) {
|
||||
remove(timelineObject.statuses, { id: statusId })
|
||||
remove(timelineObject.visibleStatuses, { id: statusId })
|
||||
removed = true
|
||||
const status = userId ? { user: { id: userId } } : { id: statusId }
|
||||
remove(timelineObject.statuses, status)
|
||||
remove(timelineObject.visibleStatuses, status)
|
||||
if (statusId) {
|
||||
delete timelineObject.statusesObject[statusId]
|
||||
delete timelineObject.visibleStatusesObject[statusId]
|
||||
sortTimeline(timelineObject)
|
||||
}
|
||||
|
||||
if (removed) {
|
||||
timelineObject.minVisibleId = timelineObject.visibleStatuses.length > 0 ? last(timelineObject.visibleStatuses).id : 0
|
||||
timelineObject.maxId = timelineObject.statuses.length > 0 ? first(timelineObject.statuses).id : 0
|
||||
}
|
||||
timelineObject.minVisibleId = timelineObject.visibleStatuses.length > 0 ? last(timelineObject.visibleStatuses).id : 0
|
||||
timelineObject.maxId = timelineObject.statuses.length > 0 ? first(timelineObject.statuses).id : 0
|
||||
}
|
||||
|
||||
export const mutations = {
|
||||
|
|
Loading…
Reference in a new issue