add mock api calls for modules viewall component

This commit is contained in:
2021-07-29 14:46:09 +01:00
parent 777df3f907
commit 2b14eaaf1f
30 changed files with 884 additions and 112 deletions
+18
View File
@@ -0,0 +1,18 @@
export const myRepresentationsActionTypes = {
GETMYREPRESENTATIONS: "GETMYREPRESENTATIONS",
SETMYREPRESENTATIONS: "SETMYREPRESENTATIONS",
UPDATEMYREPRESENTATIONS: "UPDATEMYREPRESENTATIONS",
};
export const getMyRepresentationsObj = () => (dispatch) => {
return dispatch({
type: myRepresentationsActionTypes.GETMYREPRESENTATIONS,
});
};
export const setMyRepresentations = (myRepresentations) => (dispatch) => {
return dispatch({
type: myRepresentationsActionTypes.SETMYREPRESENTATIONS,
myRepresentations: myRepresentations,
});
};
+16
View File
@@ -0,0 +1,16 @@
import { myRepresentationsActionTypes } from "./action";
const myRepresentationsInitialState = {
myRepresentations: {},
};
export default function reducer(state = myRepresentationsInitialState, action) {
switch (action.type) {
case myRepresentationsActionTypes.SETMYREPRESENTATIONS:
return {
myRepresentations: action.myRepresentations,
};
default:
return state;
}
}