Skip to content
Snippets Groups Projects
Commit f04cbc88 authored by Tae Hoon's avatar Tae Hoon
Browse files

Add mute/unmute mutations

parent 3255950b
No related branches found
No related tags found
2 merge requests!1028`master` refresh with `develop`,!611Transition to MastoAPI: Mute & Block and Add Mutes management tab
......@@ -108,6 +108,14 @@ export const mutations = {
saveMutes (state, muteIds) {
state.currentUser.muteIds = muteIds
},
muteUser (state, id) {
const user = state.usersObject[id]
set(user, 'mastodonMuted', true)
},
unmuteUser (state, id) {
const user = state.usersObject[id]
set(user, 'mastodonMuted', false)
},
setUserForStatus (state, status) {
status.user = state.usersObject[status.user.id]
},
......@@ -200,19 +208,11 @@ const users = {
},
muteUser (store, id) {
return store.rootState.api.backendInteractor.muteUser(id)
.then(() => {
const user = store.rootState.users.usersObject[id]
set(user, 'mastodonMuted', true)
store.commit('addNewUsers', [user])
})
.then(() => store.commit('muteUser', id))
},
unmuteUser (store, id) {
return store.rootState.api.backendInteractor.unmuteUser(id)
.then(() => {
const user = store.rootState.users.usersObject[id]
set(user, 'mastodonMuted', false)
store.commit('addNewUsers', [user])
})
.then(() => store.commit('unmuteUser', id))
},
addFriends ({ rootState, commit }, fetchBy) {
return new Promise((resolve, reject) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment