126 lines
3.7 KiB
JavaScript
126 lines
3.7 KiB
JavaScript
import * as MutationHelpers from 'shared/helpers/vuex/mutationHelpers';
|
|
import types from '../mutation-types';
|
|
import CampaignsAPI from '../../api/campaigns';
|
|
import AnalyticsHelper from '../../helper/AnalyticsHelper';
|
|
import { CAMPAIGNS_EVENTS } from '../../helper/AnalyticsHelper/events';
|
|
import { CAMPAIGN_TYPES } from 'shared/constants/campaign';
|
|
import { INBOX_TYPES } from 'dashboard/helper/inbox';
|
|
|
|
export const state = {
|
|
records: [],
|
|
uiFlags: {
|
|
isFetching: false,
|
|
isCreating: false,
|
|
},
|
|
};
|
|
|
|
export const getters = {
|
|
getUIFlags(_state) {
|
|
return _state.uiFlags;
|
|
},
|
|
getCampaigns:
|
|
_state =>
|
|
(campaignType, inboxChannelTypes = null) => {
|
|
let filteredRecords = _state.records.filter(
|
|
record => record.campaign_type === campaignType
|
|
);
|
|
|
|
if (inboxChannelTypes && Array.isArray(inboxChannelTypes)) {
|
|
filteredRecords = filteredRecords.filter(record => {
|
|
return (
|
|
record.inbox &&
|
|
inboxChannelTypes.includes(record.inbox.channel_type)
|
|
);
|
|
});
|
|
}
|
|
|
|
return filteredRecords.sort((a1, a2) => a1.id - a2.id);
|
|
},
|
|
getSMSCampaigns: (_state, _getters) => {
|
|
const smsChannelTypes = [INBOX_TYPES.SMS, INBOX_TYPES.TWILIO];
|
|
return _getters.getCampaigns(CAMPAIGN_TYPES.ONE_OFF, smsChannelTypes);
|
|
},
|
|
getWhatsAppCampaigns: (_state, _getters) => {
|
|
const whatsappChannelTypes = [INBOX_TYPES.WHATSAPP];
|
|
return _getters.getCampaigns(CAMPAIGN_TYPES.ONE_OFF, whatsappChannelTypes);
|
|
},
|
|
getLiveChatCampaigns: (_state, _getters) => {
|
|
const liveChatChannelTypes = [INBOX_TYPES.WEB];
|
|
return _getters.getCampaigns(CAMPAIGN_TYPES.ONGOING, liveChatChannelTypes);
|
|
},
|
|
getAllCampaigns: _state => {
|
|
return _state.records;
|
|
},
|
|
};
|
|
|
|
export const actions = {
|
|
get: async function getCampaigns({ commit }) {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isFetching: true });
|
|
try {
|
|
const response = await CampaignsAPI.get();
|
|
commit(types.SET_CAMPAIGNS, response.data);
|
|
} catch (error) {
|
|
// Ignore error
|
|
} finally {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isFetching: false });
|
|
}
|
|
},
|
|
create: async function createCampaign({ commit }, campaignObj) {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isCreating: true });
|
|
try {
|
|
const response = await CampaignsAPI.create(campaignObj);
|
|
commit(types.ADD_CAMPAIGN, response.data);
|
|
} catch (error) {
|
|
throw new Error(error);
|
|
} finally {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isCreating: false });
|
|
}
|
|
},
|
|
update: async ({ commit }, { id, ...updateObj }) => {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isUpdating: true });
|
|
try {
|
|
const response = await CampaignsAPI.update(id, updateObj);
|
|
AnalyticsHelper.track(CAMPAIGNS_EVENTS.UPDATE_CAMPAIGN);
|
|
commit(types.EDIT_CAMPAIGN, response.data);
|
|
} catch (error) {
|
|
throw new Error(error);
|
|
} finally {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isUpdating: false });
|
|
}
|
|
},
|
|
delete: async ({ commit }, id) => {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isDeleting: true });
|
|
try {
|
|
await CampaignsAPI.delete(id);
|
|
AnalyticsHelper.track(CAMPAIGNS_EVENTS.DELETE_CAMPAIGN);
|
|
commit(types.DELETE_CAMPAIGN, id);
|
|
} catch (error) {
|
|
throw new Error(error);
|
|
} finally {
|
|
commit(types.SET_CAMPAIGN_UI_FLAG, { isDeleting: false });
|
|
}
|
|
},
|
|
};
|
|
|
|
export const mutations = {
|
|
[types.SET_CAMPAIGN_UI_FLAG](_state, data) {
|
|
_state.uiFlags = {
|
|
..._state.uiFlags,
|
|
...data,
|
|
};
|
|
},
|
|
|
|
[types.ADD_CAMPAIGN]: MutationHelpers.create,
|
|
[types.SET_CAMPAIGNS]: MutationHelpers.set,
|
|
[types.EDIT_CAMPAIGN]: MutationHelpers.update,
|
|
[types.DELETE_CAMPAIGN]: MutationHelpers.destroy,
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
actions,
|
|
state,
|
|
getters,
|
|
mutations,
|
|
};
|