mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
280 lines
7.3 KiB
JavaScript
280 lines
7.3 KiB
JavaScript
import { omit } from 'lodash';
|
|
import ApiService from 'services/ApiService';
|
|
import t from 'store/types';
|
|
|
|
export const fetchAccountTypes = () => {
|
|
return (dispatch, getState) =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.get('account_types')
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ACCOUNT_TYPES_LIST_SET,
|
|
account_types: response.data.account_types,
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const fetchAccountsList = ({ query } = {}) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_LOADING,
|
|
});
|
|
ApiService.get('accounts', { params: query })
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ACCOUNTS_PAGE_SET,
|
|
accounts: response.data.accounts,
|
|
customViewId: response.data.customViewId,
|
|
});
|
|
dispatch({
|
|
type: t.ACCOUNTS_ITEMS_SET,
|
|
accounts: response.data.accounts,
|
|
});
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const fetchAccountsTable = ({ query } = {}) => {
|
|
return (dispatch, getState) =>
|
|
new Promise((resolve, reject) => {
|
|
let pageQuery = getState().accounts.tableQuery;
|
|
|
|
if (pageQuery.filter_roles) {
|
|
pageQuery = {
|
|
...omit(pageQuery, ['filter_roles']),
|
|
stringified_filter_roles:
|
|
JSON.stringify(pageQuery.filter_roles) || '',
|
|
};
|
|
}
|
|
dispatch({
|
|
type: t.ACCOUNTS_TABLE_LOADING,
|
|
loading: true,
|
|
});
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_LOADING,
|
|
});
|
|
ApiService.get('accounts', { params: { ...pageQuery, ...query } })
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ACCOUNTS_PAGE_SET,
|
|
accounts: response.data.accounts,
|
|
customViewId: response.data.customViewId,
|
|
});
|
|
dispatch({
|
|
type: t.ACCOUNTS_ITEMS_SET,
|
|
accounts: response.data.accounts,
|
|
});
|
|
dispatch({
|
|
type: t.ACCOUNTS_TABLE_LOADING,
|
|
loading: false,
|
|
});
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const fetchAccountsDataTable = ({ query }) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.get('accounts')
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ACCOUNTS_DATA_TABLE,
|
|
data: response.data,
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const submitAccount = ({ form }) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_LOADING,
|
|
});
|
|
ApiService.post('accounts', form)
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ACCOUNT_ERRORS_CLEAR,
|
|
});
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
const { data } = response;
|
|
// const { errors } = data;
|
|
|
|
|
|
dispatch({
|
|
type: t.ACCOUNT_ERRORS_CLEAR,
|
|
});
|
|
if (error) {
|
|
dispatch({
|
|
type: t.ACCOUNT_ERRORS_SET,
|
|
payload: { error },
|
|
});
|
|
}
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
reject(data?.errors);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const editAccount = (id, form) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_LOADING,
|
|
});
|
|
ApiService.post(`accounts/${id}`, form)
|
|
.then((response) => {
|
|
dispatch({ type: t.CLEAR_ACCOUNT_FORM_ERRORS });
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
const { data } = response;
|
|
// const { errors } = data;
|
|
|
|
dispatch({ type: t.CLEAR_ACCOUNT_FORM_ERRORS });
|
|
if (error) {
|
|
dispatch({ type: t.ACCOUNT_FORM_ERRORS, error });
|
|
}
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
reject(data?.errors);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const activateAccount = ({ id }) => {
|
|
return (dispatch) => ApiService.post(`accounts/${id}/active`);
|
|
};
|
|
|
|
export const inactiveAccount = ({ id }) => {
|
|
return (dispatch) => ApiService.post(`accounts/${id}/inactive`);
|
|
};
|
|
|
|
export const bulkActivateAccounts = ({ ids }) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.post(`accounts/bulk/activate`, null, { params: { ids } })
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.BULK_ACTIVATE_ACCOUNTS,
|
|
payload: { ids },
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const bulkInactiveAccounts = ({ ids }) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.post(`accounts/bulk/inactivate`, null, { params: { ids } })
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.BULK_INACTIVATE_ACCOUNTS,
|
|
payload: { ids },
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const deleteAccount = ({ id }) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.delete(`accounts/${id}`)
|
|
.then((response) => {
|
|
dispatch({ type: t.ACCOUNT_DELETE, id });
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
reject(error.response.data.errors || []);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const deleteBulkAccounts = ({ ids }) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.delete(`accounts`, { params: { ids } })
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ACCOUNTS_BULK_DELETE,
|
|
payload: { ids },
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
const { data } = response;
|
|
// const { errors } = data;
|
|
|
|
reject(data?.errors);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const fetchAccount = ({ id }) => {
|
|
return (dispatch) =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.get(`accounts/${id}`)
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ACCOUNT_SET,
|
|
account: response.data.account,
|
|
});
|
|
resolve(response);
|
|
})
|
|
.catch((error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|