mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
optimize: style dashboard topbar.
fix: seed view roles relations. fix: stopped all resources reducers temp. fix: stopped filter dropdown component temp.
This commit is contained in:
@@ -4,14 +4,14 @@ import t from 'store/types';
|
||||
export const fetchResourceColumns = ({ resourceSlug }) => {
|
||||
return (dispatch) => new Promise((resolve, reject) => {
|
||||
ApiService.get(`resources/${resourceSlug}/columns`).then((response) => {
|
||||
dispatch({
|
||||
type: t.RESOURCE_COLUMNS_SET,
|
||||
columns: response.data.resource_columns,
|
||||
resource_slug: resourceSlug,
|
||||
});
|
||||
dispatch({
|
||||
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
||||
});
|
||||
// dispatch({
|
||||
// type: t.RESOURCE_COLUMNS_SET,
|
||||
// columns: response.data.resource_columns,
|
||||
// resource_slug: resourceSlug,
|
||||
// });
|
||||
// dispatch({
|
||||
// type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
||||
// });
|
||||
resolve(response);
|
||||
}).catch((error) => { reject(error); });
|
||||
});
|
||||
@@ -20,14 +20,14 @@ export const fetchResourceColumns = ({ resourceSlug }) => {
|
||||
export const fetchResourceFields = ({ resourceSlug }) => {
|
||||
return (dispatch) => new Promise((resolve, reject) => {
|
||||
ApiService.get(`resources/${resourceSlug}/fields`).then((response) => {
|
||||
dispatch({
|
||||
type: t.RESOURCE_FIELDS_SET,
|
||||
fields: response.data.resource_fields,
|
||||
resource_slug: resourceSlug,
|
||||
});
|
||||
dispatch({
|
||||
type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
||||
});
|
||||
// dispatch({
|
||||
// type: t.RESOURCE_FIELDS_SET,
|
||||
// fields: response.data.resource_fields,
|
||||
// resource_slug: resourceSlug,
|
||||
// });
|
||||
// dispatch({
|
||||
// type: t.SET_DASHBOARD_REQUEST_COMPLETED,
|
||||
// });
|
||||
resolve(response);
|
||||
}).catch((error) => { reject(error); });
|
||||
});
|
||||
@@ -36,13 +36,13 @@ export const fetchResourceFields = ({ resourceSlug }) => {
|
||||
export const fetchResourceData = ({ resourceSlug }) => {
|
||||
return (dispatch) => new Promise((resolve, reject) => {
|
||||
ApiService.get(`/resources/${resourceSlug}/data`).then((response) => {
|
||||
dispatch({
|
||||
type: t.RESOURCE_DATA_SET,
|
||||
payload: {
|
||||
data: response.data.data,
|
||||
resource_key: resourceSlug,
|
||||
},
|
||||
});
|
||||
// dispatch({
|
||||
// type: t.RESOURCE_DATA_SET,
|
||||
// payload: {
|
||||
// data: response.data.data,
|
||||
// resource_key: resourceSlug,
|
||||
// },
|
||||
// });
|
||||
resolve(response);
|
||||
}).catch(error => { reject(error); });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user