📅  最后修改于: 2022-03-11 15:03:27.428000             🧑  作者: Mango
import {
CREATE_TUTORIAL,
RETRIEVE_TUTORIALS,
UPDATE_TUTORIAL,
DELETE_TUTORIAL,
DELETE_ALL_TUTORIALS,
} from "../actions/types";
const initialState = [];
function tutorialReducer(tutorials = initialState, action) {
const { type, payload } = action;
switch (type) {
case CREATE_TUTORIAL:
return [...tutorials, payload];
case RETRIEVE_TUTORIALS:
return payload;
case UPDATE_TUTORIAL:
return tutorials.map((tutorial) => {
if (tutorial.id === payload.id) {
return {
...tutorial,
...payload,
};
} else {
return tutorial;
}
});
case DELETE_TUTORIAL:
return tutorials.filter(({ id }) => id !== payload.id);
case DELETE_ALL_TUTORIALS:
return [];
default:
return tutorials;
}
};
export default tutorialReducer;