我有一个StackBlitz可以分叉,我找到了类似的答案,但是在将其应用于示例时遇到了麻烦,我认为这是因为我有一组对象。
我的代码可以正常工作,但是它很冗长,我想让使用Redux的其他人更容易理解。
const initialState = [];
const todoReducer = (state, action) => {
switch (action.type) {
case 'ADD_TODO': {
return [...state, {
id: state.length,
name: action.name,
complete: false
}];
}
case 'TOGGLE_COMPLETE': {
let left = state.filter((_, index) => index < action.index)
let right = state.filter((_, index) => index > action.index)
let completed = state.filter((_, index) => index == action.index)
let updatedItem = {
id: completed[0].id,
name: completed[0].name,
complete: !completed[0].complete
}
return [...left, updatedItem, ...right];
}
case 'CLEAR': {
return initialState;
}
default: {
return state;
};
}
}
我觉得答案类似于这个吗? Update array object in React Redux reducer
在我上面引用的答案中,他的对象具有state.posts
,如何更新我的示例使其更像这个示例?
如果我没有类似的状态对象,而又无法执行类似的操作,该如何定位待办事项:
state.todos.complete = false.
我想为'COMPLETE'动作写一个更好的reducer。我是否需要修改状态的结构,即是否需要将其作为一个空对象而不是对象数组?
答案 0 :(得分:4)
map
:
case 'TOGGLE_COMPLETE': {
return state.map((item, i) => i === action.index
? {...item, complete: !item.complete}
: item
)
}
您可以有条件地更新“完成”而无需重复多次。