Chatwoot/app/javascript/widget/store/modules/agent.js
Nithin David Thomas 83b0bb4062
Feature: As an end-user, I should be able to see the list of agents in the widget. (#461)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
2020-02-05 11:27:22 +05:30

50 lines
1 KiB
JavaScript

import Vue from 'vue';
import { getAvailableAgents } from 'widget/api/agent';
const state = {
records: [],
uiFlags: {
isError: false,
hasFetched: false,
},
};
export const getters = {
availableAgents: $state =>
$state.records.filter(agent => agent.availability_status === 'online'),
};
export const actions = {
fetchAvailableAgents: async ({ commit }, websiteToken) => {
try {
const { data } = await getAvailableAgents(websiteToken);
const { payload = [] } = data;
commit('setAgents', payload);
commit('setError', false);
commit('setHasFetched', true);
} catch (error) {
commit('setError', true);
commit('setHasFetched', true);
}
},
};
export const mutations = {
setAgents($state, data) {
Vue.set($state, 'records', data);
},
setError($state, value) {
Vue.set($state.uiFlags, 'isError', value);
},
setHasFetched($state, value) {
Vue.set($state.uiFlags, 'hasFetched', value);
},
};
export default {
namespaced: true,
state,
getters,
actions,
mutations,
};