mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
95 lines
2.3 KiB
JavaScript
95 lines
2.3 KiB
JavaScript
import ApiService from 'services/ApiService';
|
|
import t from 'store/types';
|
|
|
|
export const submitItem = ({ form }) => {
|
|
return dispatch => ApiService.post(`items`, form);
|
|
};
|
|
|
|
export const editItem = ({ id, form }) => {
|
|
return dispatch => ApiService.post(`items/${id}`, form);
|
|
};
|
|
|
|
export const fetchItems = ({ query }) => {
|
|
return (dispatch, getState) => new Promise((resolve, reject) => {
|
|
const pageQuery = getState().items.tableQuery;
|
|
|
|
dispatch({
|
|
type: t.ITEMS_TABLE_LOADING,
|
|
payload: { loading: true },
|
|
});
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_LOADING,
|
|
});
|
|
ApiService.get(`items`, { params: { ...pageQuery, ...query } }).then(response => {
|
|
dispatch({
|
|
type: t.ITEMS_SET,
|
|
items: response.data.items.results,
|
|
});
|
|
dispatch({
|
|
type: t.ITEMS_PAGE_SET,
|
|
items: response.data.items.results,
|
|
customViewId: response.data.customViewId,
|
|
paginationMeta: response.data.items.pagination,
|
|
});
|
|
dispatch({
|
|
type: t.ITEMS_TABLE_LOADING,
|
|
payload: { loading: false },
|
|
});
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
resolve(response);
|
|
}).catch((error) => {
|
|
dispatch({
|
|
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
|
});
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const fetchItem = ({ id }) => {
|
|
return dispatch =>
|
|
new Promise((resolve, reject) => {
|
|
ApiService.get(`items/${id}`)
|
|
.then(response => {
|
|
dispatch({
|
|
type: t.ITEM_SET,
|
|
item: response.data.item
|
|
});
|
|
})
|
|
.catch(error => {
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const deleteItem = ({ id }) => {
|
|
return dispatch => new Promise((resolve, reject) => {
|
|
ApiService.delete(`items/${id}`)
|
|
.then((response) => {
|
|
dispatch({
|
|
type: t.ITEM_DELETE,
|
|
payload: { id },
|
|
});
|
|
resolve(response);
|
|
}).catch((error) => { reject(error); });
|
|
});
|
|
};
|
|
|
|
|
|
|
|
export const deleteBulkItems = ({ ids }) => {
|
|
return dispatch => new Promise((resolve, reject) => {
|
|
ApiService.delete(`items`, { params: { ids }}).then((response) => {
|
|
dispatch({
|
|
type: t.ITEMS_BULK_DELETE,
|
|
payload: { ids }
|
|
});
|
|
resolve(response);
|
|
}).catch((error) => {
|
|
reject(error);
|
|
});
|
|
});
|
|
};
|