initial commit

This commit is contained in:
2021-06-28 16:36:49 +01:00
parent 992d88a6c8
commit c712d41599
103 changed files with 44862 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
export const progressActionTypes = {
GETPROGRESS: "GETPROGRESS",
SETPROGRESS: "SETPROGRESS",
UPDATEPROGRESS: "UPDATEPROGRESS",
};
export const getProgressObj = () => (dispatch) => {
return dispatch({
type: progressActionTypes.GETPROGRESS,
});
};
export const setProgress = (progress) => (dispatch) => {
return dispatch({
type: progressActionTypes.SETPROGRESS,
progressObj: progress,
});
};
+16
View File
@@ -0,0 +1,16 @@
import { progressActionTypes } from "./action";
const progressInitialState = {
progress: {},
};
export default function reducer(state = progressInitialState, action) {
switch (action.type) {
case progressActionTypes.SETPROGRESS:
return {
progressObj: action.progressObj,
};
default:
return state;
}
}