mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			136 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import * as types from './mutation-types'
 | |
| import * as searchTypes from '../search/mutation-types'
 | |
| 
 | |
| export const fetchCustomers = ({ commit, dispatch, state }, params) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios
 | |
|       .get(`/api/v1/customers`, { params })
 | |
|       .then((response) => {
 | |
|         commit(types.BOOTSTRAP_CUSTOMERS, response.data.customers.data)
 | |
|         commit(types.SET_TOTAL_CUSTOMERS, response.data.customerTotalCount)
 | |
|         commit(
 | |
|           'search/' + searchTypes.SET_CUSTOMER_LISTS,
 | |
|           response.data.customers.data,
 | |
|           { root: true }
 | |
|         )
 | |
|         resolve(response)
 | |
|       })
 | |
|       .catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const fetchCustomer = ({ commit, dispatch, state }, params) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios
 | |
|       .get(`/api/v1/customers/${params.id}`)
 | |
|       .then((response) => {
 | |
|         resolve(response)
 | |
|       })
 | |
|       .catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const fetchViewCustomer = ({ commit, dispatch }, params) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios
 | |
|       .get(`/api/v1/customers/${params.id}/stats`, { params })
 | |
|       .then((response) => {
 | |
|         commit(types.SET_SELECTED_VIEW_CUSTOMER, response.data)
 | |
|         resolve(response)
 | |
|       })
 | |
|       .catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const addCustomer = ({ commit, dispatch, state }, data) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios
 | |
|       .post('/api/v1/customers', data)
 | |
|       .then((response) => {
 | |
|         commit(types.ADD_CUSTOMER, response.data)
 | |
|         resolve(response)
 | |
|       })
 | |
|       .catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const updateCustomer = ({ commit, dispatch, state }, data) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios
 | |
|       .put(`/api/v1/customers/${data.id}`, data)
 | |
|       .then((response) => {
 | |
|         if (response.data.success) {
 | |
|           commit(types.UPDATE_CUSTOMER, response.data)
 | |
|         }
 | |
|         resolve(response)
 | |
|       })
 | |
|       .catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const deleteCustomer = ({ commit, dispatch, state }, id) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios
 | |
|       .post(`/api/v1/customers/delete`, id)
 | |
|       .then((response) => {
 | |
|         commit(types.DELETE_CUSTOMER, id)
 | |
|         resolve(response)
 | |
|       })
 | |
|       .catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const deleteMultipleCustomers = ({ commit, dispatch, state }, id) => {
 | |
|   return new Promise((resolve, reject) => {
 | |
|     window.axios
 | |
|       .post(`/api/v1/customers/delete`, { ids: state.selectedCustomers })
 | |
|       .then((response) => {
 | |
|         commit(types.DELETE_MULTIPLE_CUSTOMERS, state.selectedCustomers)
 | |
|         resolve(response)
 | |
|       })
 | |
|       .catch((err) => {
 | |
|         reject(err)
 | |
|       })
 | |
|   })
 | |
| }
 | |
| 
 | |
| export const setSelectAllState = ({ commit, dispatch, state }, data) => {
 | |
|   commit(types.SET_SELECT_ALL_STATE, data)
 | |
| }
 | |
| 
 | |
| export const selectAllCustomers = ({ commit, dispatch, state }) => {
 | |
|   if (state.selectedCustomers.length === state.customers.length) {
 | |
|     commit(types.SET_SELECTED_CUSTOMERS, [])
 | |
|     commit(types.SET_SELECT_ALL_STATE, false)
 | |
|   } else {
 | |
|     let allCustomerIds = state.customers.map((cust) => cust.id)
 | |
|     commit(types.SET_SELECTED_CUSTOMERS, allCustomerIds)
 | |
|     commit(types.SET_SELECT_ALL_STATE, true)
 | |
|   }
 | |
| }
 | |
| 
 | |
| export const selectCustomer = ({ commit, dispatch, state }, data) => {
 | |
|   commit(types.SET_SELECTED_CUSTOMERS, data)
 | |
|   if (state.selectedCustomers.length === state.customers.length) {
 | |
|     commit(types.SET_SELECT_ALL_STATE, true)
 | |
|   } else {
 | |
|     commit(types.SET_SELECT_ALL_STATE, false)
 | |
|   }
 | |
| }
 | |
| 
 | |
| export const resetSelectedCustomer = ({ commit, dispatch, state }, data) => {
 | |
|   commit(types.RESET_SELECTED_CUSTOMER)
 | |
| }
 |