forked from AkkomaGang/akkoma-fe
#468 - update pinned status after actions(remove, add)
This commit is contained in:
parent
f1ff48ffd6
commit
df207593e9
2 changed files with 14 additions and 3 deletions
|
@ -105,7 +105,7 @@
|
||||||
v-if="preview"
|
v-if="preview"
|
||||||
:isPreview="true"
|
:isPreview="true"
|
||||||
:statusoid="preview"
|
:statusoid="preview"
|
||||||
:compact=true
|
:compact="true"
|
||||||
/>
|
/>
|
||||||
<div v-else class="status-preview status-preview-loading">
|
<div v-else class="status-preview status-preview-loading">
|
||||||
<i class="icon-spin4 animate-spin"></i>
|
<i class="icon-spin4 animate-spin"></i>
|
||||||
|
|
|
@ -171,7 +171,7 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us
|
||||||
// This makes sure that user timeline won't get data meant for other
|
// This makes sure that user timeline won't get data meant for other
|
||||||
// user. I.e. opening different user profiles makes request which could
|
// user. I.e. opening different user profiles makes request which could
|
||||||
// return data late after user already viewing different user profile
|
// return data late after user already viewing different user profile
|
||||||
if ((timeline === 'user' || timeline === 'media') && timelineObject.userId !== userId) {
|
if ((timeline === 'user' || timeline === 'media' || timeline === 'pinned') && timelineObject.userId !== userId) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -378,6 +378,7 @@ const removeStatus = (state, { timeline, userId, statusId }) => {
|
||||||
removed = true
|
removed = true
|
||||||
delete timelineObject.statusesObject[statusId]
|
delete timelineObject.statusesObject[statusId]
|
||||||
delete timelineObject.visibleStatusesObject[statusId]
|
delete timelineObject.visibleStatusesObject[statusId]
|
||||||
|
sortTimeline(timelineObject)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (removed) {
|
if (removed) {
|
||||||
|
@ -551,7 +552,17 @@ const statuses = {
|
||||||
},
|
},
|
||||||
updatePinned ({ rootState, commit }, status) {
|
updatePinned ({ rootState, commit }, status) {
|
||||||
commit('setPinned', { status })
|
commit('setPinned', { status })
|
||||||
if (!status.pinned) {
|
if (status.pinned) {
|
||||||
|
const statusObj = rootState.statuses.allStatusesObject[status.id]
|
||||||
|
const user = rootState.users.currentUser
|
||||||
|
commit('addNewStatuses', {
|
||||||
|
statuses: [statusObj],
|
||||||
|
showImmediately: true,
|
||||||
|
timeline: 'pinned',
|
||||||
|
user,
|
||||||
|
userId: user.id
|
||||||
|
})
|
||||||
|
} else {
|
||||||
commit('removeStatus', { timeline: 'pinned', statusId: status.id })
|
commit('removeStatus', { timeline: 'pinned', statusId: status.id })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue