mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			193 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			193 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import * as MutationHelpers from 'shared/helpers/vuex/mutationHelpers';
 | 
						|
import * as types from '../mutation-types';
 | 
						|
import { INBOX_TYPES } from 'shared/mixins/inboxMixin';
 | 
						|
import InboxesAPI from '../../api/inboxes';
 | 
						|
import WebChannel from '../../api/channel/webChannel';
 | 
						|
import FBChannel from '../../api/channel/fbChannel';
 | 
						|
import TwilioChannel from '../../api/channel/twilioChannel';
 | 
						|
 | 
						|
const buildInboxData = inboxParams => {
 | 
						|
  const formData = new FormData();
 | 
						|
  const { channel = {}, ...inboxProperties } = inboxParams;
 | 
						|
  Object.keys(inboxProperties).forEach(key => {
 | 
						|
    formData.append(key, inboxProperties[key]);
 | 
						|
  });
 | 
						|
  const { selectedFeatureFlags = [], ...channelParams } = channel;
 | 
						|
  if (selectedFeatureFlags.length) {
 | 
						|
    selectedFeatureFlags.forEach(featureFlag => {
 | 
						|
      formData.append(`channel[selected_feature_flags][]`, featureFlag);
 | 
						|
    });
 | 
						|
  } else {
 | 
						|
    formData.append('channel[selected_feature_flags][]', '');
 | 
						|
  }
 | 
						|
  Object.keys(channelParams).forEach(key => {
 | 
						|
    formData.append(`channel[${key}]`, channel[key]);
 | 
						|
  });
 | 
						|
  return formData;
 | 
						|
};
 | 
						|
 | 
						|
export const state = {
 | 
						|
  records: [],
 | 
						|
  uiFlags: {
 | 
						|
    isFetching: false,
 | 
						|
    isFetchingItem: false,
 | 
						|
    isCreating: false,
 | 
						|
    isUpdating: false,
 | 
						|
    isUpdatingAutoAssignment: false,
 | 
						|
    isDeleting: false,
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
export const getters = {
 | 
						|
  getInboxes($state) {
 | 
						|
    return $state.records;
 | 
						|
  },
 | 
						|
  getNewConversationInboxes($state) {
 | 
						|
    return $state.records.filter(inbox => {
 | 
						|
      const {
 | 
						|
        channel_type: channelType,
 | 
						|
        phone_number: phoneNumber = '',
 | 
						|
      } = inbox;
 | 
						|
 | 
						|
      const isEmailChannel = channelType === INBOX_TYPES.EMAIL;
 | 
						|
      const isSmsChannel =
 | 
						|
        channelType === INBOX_TYPES.TWILIO &&
 | 
						|
        phoneNumber.startsWith('whatsapp');
 | 
						|
      return isEmailChannel || isSmsChannel;
 | 
						|
    });
 | 
						|
  },
 | 
						|
  getInbox: $state => inboxId => {
 | 
						|
    const [inbox] = $state.records.filter(
 | 
						|
      record => record.id === Number(inboxId)
 | 
						|
    );
 | 
						|
    return inbox || {};
 | 
						|
  },
 | 
						|
  getUIFlags($state) {
 | 
						|
    return $state.uiFlags;
 | 
						|
  },
 | 
						|
  getWebsiteInboxes($state) {
 | 
						|
    return $state.records.filter(
 | 
						|
      item => item.channel_type === 'Channel::WebWidget'
 | 
						|
    );
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
export const actions = {
 | 
						|
  get: async ({ commit }) => {
 | 
						|
    commit(types.default.SET_INBOXES_UI_FLAG, { isFetching: true });
 | 
						|
    try {
 | 
						|
      const response = await InboxesAPI.get();
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isFetching: false });
 | 
						|
      commit(types.default.SET_INBOXES, response.data.payload);
 | 
						|
    } catch (error) {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isFetching: false });
 | 
						|
    }
 | 
						|
  },
 | 
						|
  createChannel: async ({ commit }, params) => {
 | 
						|
    try {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: true });
 | 
						|
      const response = await WebChannel.create(params);
 | 
						|
      commit(types.default.ADD_INBOXES, response.data);
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      return response.data;
 | 
						|
    } catch (error) {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      throw new Error(error);
 | 
						|
    }
 | 
						|
  },
 | 
						|
  createWebsiteChannel: async ({ commit }, params) => {
 | 
						|
    try {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: true });
 | 
						|
      const response = await WebChannel.create(buildInboxData(params));
 | 
						|
      commit(types.default.ADD_INBOXES, response.data);
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      return response.data;
 | 
						|
    } catch (error) {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      throw new Error(error);
 | 
						|
    }
 | 
						|
  },
 | 
						|
  createTwilioChannel: async ({ commit }, params) => {
 | 
						|
    try {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: true });
 | 
						|
      const response = await TwilioChannel.create(params);
 | 
						|
      commit(types.default.ADD_INBOXES, response.data);
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      return response.data;
 | 
						|
    } catch (error) {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      throw new Error(error);
 | 
						|
    }
 | 
						|
  },
 | 
						|
  createFBChannel: async ({ commit }, params) => {
 | 
						|
    try {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: true });
 | 
						|
      const response = await FBChannel.create(params);
 | 
						|
      commit(types.default.ADD_INBOXES, response.data);
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      return response.data;
 | 
						|
    } catch (error) {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isCreating: false });
 | 
						|
      throw new Error(error);
 | 
						|
    }
 | 
						|
  },
 | 
						|
  updateInbox: async ({ commit }, { id, formData = true, ...inboxParams }) => {
 | 
						|
    commit(types.default.SET_INBOXES_UI_FLAG, {
 | 
						|
      isUpdatingAutoAssignment: true,
 | 
						|
    });
 | 
						|
    try {
 | 
						|
      const response = await InboxesAPI.update(
 | 
						|
        id,
 | 
						|
        formData ? buildInboxData(inboxParams) : inboxParams
 | 
						|
      );
 | 
						|
      commit(types.default.EDIT_INBOXES, response.data);
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, {
 | 
						|
        isUpdatingAutoAssignment: false,
 | 
						|
      });
 | 
						|
    } catch (error) {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, {
 | 
						|
        isUpdatingAutoAssignment: false,
 | 
						|
      });
 | 
						|
      throw new Error(error);
 | 
						|
    }
 | 
						|
  },
 | 
						|
  delete: async ({ commit }, inboxId) => {
 | 
						|
    commit(types.default.SET_INBOXES_UI_FLAG, { isDeleting: true });
 | 
						|
    try {
 | 
						|
      await InboxesAPI.delete(inboxId);
 | 
						|
      commit(types.default.DELETE_INBOXES, inboxId);
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isDeleting: false });
 | 
						|
    } catch (error) {
 | 
						|
      commit(types.default.SET_INBOXES_UI_FLAG, { isDeleting: false });
 | 
						|
      throw new Error(error);
 | 
						|
    }
 | 
						|
  },
 | 
						|
  reauthorizeFacebookPage: async ({ commit }, params) => {
 | 
						|
    try {
 | 
						|
      const response = await FBChannel.reauthorizeFacebookPage(params);
 | 
						|
      commit(types.default.EDIT_INBOXES, response.data);
 | 
						|
    } catch (error) {
 | 
						|
      throw new Error(error.message);
 | 
						|
    }
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
export const mutations = {
 | 
						|
  [types.default.SET_INBOXES_UI_FLAG]($state, uiFlag) {
 | 
						|
    $state.uiFlags = { ...$state.uiFlags, ...uiFlag };
 | 
						|
  },
 | 
						|
  [types.default.SET_INBOXES]: MutationHelpers.set,
 | 
						|
  [types.default.SET_INBOXES_ITEM]: MutationHelpers.setSingleRecord,
 | 
						|
  [types.default.ADD_INBOXES]: MutationHelpers.create,
 | 
						|
  [types.default.EDIT_INBOXES]: MutationHelpers.update,
 | 
						|
  [types.default.DELETE_INBOXES]: MutationHelpers.destroy,
 | 
						|
};
 | 
						|
 | 
						|
export default {
 | 
						|
  namespaced: true,
 | 
						|
  state,
 | 
						|
  getters,
 | 
						|
  actions,
 | 
						|
  mutations,
 | 
						|
};
 |