86 lines
2.3 KiB
JavaScript
86 lines
2.3 KiB
JavaScript
|
/* eslint no-param-reassign: 0 */
|
||
|
import * as MutationHelpers from 'shared/helpers/vuex/mutationHelpers';
|
||
|
import * as types from '../mutation-types';
|
||
|
import ContactAPI from '../../api/contacts';
|
||
|
|
||
|
const state = {
|
||
|
records: [],
|
||
|
uiFlags: {
|
||
|
isFetching: false,
|
||
|
isFetchingItem: false,
|
||
|
isUpdating: false,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const getters = {
|
||
|
getContacts($state) {
|
||
|
return $state.records;
|
||
|
},
|
||
|
getUIFlags($state) {
|
||
|
return $state.uiFlags;
|
||
|
},
|
||
|
getContact: $state => id => {
|
||
|
const [contact = {}] = $state.records.filter(
|
||
|
record => record.id === Number(id)
|
||
|
);
|
||
|
return contact;
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const actions = {
|
||
|
get: async ({ commit }) => {
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isFetching: true });
|
||
|
try {
|
||
|
const response = await ContactAPI.get();
|
||
|
commit(types.default.SET_CONTACTS, response.data.payload);
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isFetching: false });
|
||
|
} catch (error) {
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isFetching: false });
|
||
|
}
|
||
|
},
|
||
|
|
||
|
show: async ({ commit }, { id }) => {
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isFetchingItem: true });
|
||
|
try {
|
||
|
const response = await ContactAPI.show(id);
|
||
|
commit(types.default.SET_CONTACT_ITEM, response.data.payload);
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isFetchingItem: false });
|
||
|
} catch (error) {
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isFetchingItem: false });
|
||
|
}
|
||
|
},
|
||
|
|
||
|
update: async ({ commit }, { id, ...updateObj }) => {
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isUpdating: true });
|
||
|
try {
|
||
|
const response = await ContactAPI.update(id, updateObj);
|
||
|
commit(types.default.EDIT_CONTACT, response.data.payload);
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isUpdating: false });
|
||
|
} catch (error) {
|
||
|
commit(types.default.SET_CONTACT_UI_FLAG, { isUpdating: false });
|
||
|
throw new Error(error);
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const mutations = {
|
||
|
[types.default.SET_CONTACT_UI_FLAG]($state, data) {
|
||
|
$state.uiFlags = {
|
||
|
...$state.uiFlags,
|
||
|
...data,
|
||
|
};
|
||
|
},
|
||
|
|
||
|
[types.default.SET_CONTACTS]: MutationHelpers.set,
|
||
|
[types.default.SET_CONTACT_ITEM]: MutationHelpers.setSingleRecord,
|
||
|
[types.default.EDIT_CONTACT]: MutationHelpers.update,
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
namespaced: true,
|
||
|
state,
|
||
|
getters,
|
||
|
actions,
|
||
|
mutations,
|
||
|
};
|