admin-fe/src/store/modules/users.js
2019-03-01 20:32:03 +03:00

56 lines
1.5 KiB
JavaScript

import { fetchUsers, toggleUserActivation, searchUsers } from '@/api/users'
const user = {
state: {
fetchedUsers: [],
loading: true
},
mutations: {
SET_USERS: (state, users) => {
state.fetchedUsers = users
},
SET_LOADING: (state, status) => {
state.loading = status
},
SWAP_USER: (state, user) => {
const usersWithoutSwapped = state.fetchedUsers.filter(u => {
return u.id !== user.id
})
state.fetchedUsers = [...usersWithoutSwapped, user].sort((a, b) =>
a.id.localeCompare(b.id)
)
},
SET_COUNT: (state, count) => {
state.totalUsersCount = count
},
SET_PAGE_SIZE: (state, pageSize) => {
state.pageSize = pageSize
}
},
actions: {
async FetchUsers({ commit }, page = 1) {
const response = await fetchUsers(page)
commit('SET_USERS', response.data.users)
commit('SET_COUNT', response.data.count)
commit('SET_PAGE_SIZE', response.data.page_size)
commit('SET_LOADING', false)
},
async ToggleUserActivation({ commit }, nickname) {
const response = await toggleUserActivation(nickname)
commit('SWAP_USER', response.data)
},
async SearchUsers({ commit, dispatch }, searchValue) {
if (searchValue.length === 0) {
dispatch('FetchUsers')
} else {
const response = await searchUsers(searchValue)
commit('SET_USERS', response.data.users)
}
}
}
}
export default user