gpt4 book ai didi

redux - 组件内的 React 状态更改(通过 mapDispatchToProps)给出错误

转载 作者:行者123 更新时间:2023-11-30 23:49:51 28 4
gpt4 key购买 nike

我从这里开始关注 redux 的 Todo 示例 https://github.com/reactjs/redux/tree/master/examples/todos

我做了一些小改动。我正在接受我的待办事项中的更多字段。{text, time, by} 并在表格中显示这些详细信息。

我想按时间对这张 table 进行排序。对于这个用例,我不想遵循 redux 模式。为什么这么问!

对于像订购这样简单的事情,我不想在状态中添加它。我想在 React 状态本身 中维护这些功能。由于 VisibleTodoList 是一个智能组件,其状态具有待办事项,因此我希望能够按照我喜欢的方式对其重新排序。

我的 VisibleTodoList.js

const getVisibleTodos = (todos, filter) => {
switch (filter) {
case 'SHOW_ALL':
return todos
case 'SHOW_COMPLETED':
return todos.filter(t => t.completed)
case 'SHOW_ACTIVE':
return todos.filter(t => !t.completed)
default:
throw new Error('Unknown filter: ' + filter)
}
}

const orderTime = (todos) => {
console.log('inside order time!'); //Displays this. comes inside here.
return todos.filter(t => t.time > 20) //This gives me error!!
}

const mapStateToProps = (state) => ({
todos: getVisibleTodos(state.todos, state.visibilityFilter), // I do not want to add more things to the state. Want to keep it simple.
})

const mapDispatchToProps = ({
onTodoClick: toggleTodo,
onTimeClick: orderTime //My function defined above to returned filtered todos.
})

const VisibleTodoList = connect(
mapStateToProps,
mapDispatchToProps
)(TodoList)

export default VisibleTodoList

TodoList.js 看起来像这样

const TodoList = ({ todos, persons, onTodoClick, completed, onTimeClick}) => (
<div>
<table>
<tbody>
<tr>
<th>Task Name</th>
<th
onClick={() => onTimeClick(todos)}
style={{
textDecoration: completed ? 'line-through' : 'none'
}}>Time</th>
<th>By person</th>
</tr>
{todos.map(todo =>
<Todo
key={todo.id}
{...todo}
/>
)}
</tbody>
</table>
</div>
)

我的 todo.js 看起来几乎一样

const Todo = ({ onClick, completed, text, time, by }) => (
<tr key={text}>
<td style={{
textDecoration: completed ? 'line-through' : 'none'}}>{text}</td>
<td>{time}</td>
<td>{by}</td>
</tr>
)

当我点击“时间”列时,我一直收到这个错误 Action 必须是普通对象。使用自定义中间件进行异步操作。

我做错了什么?另外我应该遵循什么模式来实现这一目标?在不偏离 redux 模式的情况下。我是否必须使用 setState

为了提供更多上下文,我希望有一个本地 UI 状态,而不是在 redux 存储中。就像这里解释的那样 Should you ever use this.setState() when using redux?

更新 1:我确实理解因为 orderTime 没有调度它提示的对象。但是我更广泛的问题是我是否必须实现相同的功能。我该怎么做?如果我理解正确,我将不得不使用 setState 来执行此操作。

最佳答案

这是迄今为止我能想到的最佳解决方案!

const getVisibleTodos = (todos, filter) => {
switch (filter) {
case 'WEIGHT_SORT':
return _.sortBy(todos, [function(o) { return o.time; }]);
default:
throw new Error('Unknown filter: ' + filter)
}
}

class TodoList extends React.Component {

state = { filter: 'SHOW_ALL' }

handleShow = filter => {
this.setState({ filter: 'WEIGHT_SORT' })
}


render(){
const filteredTodos = getVisibleTodos(todos, this.state.filter)
return (
<div>
<table>
<tbody>
<tr>
<th>Task Name</th>
<th
onClick={() => this.handleShow('SHOW_COMPLETED')}>Time</th>
<th>By person</th>
</tr>
{filteredTodos.map(todo =>
<Todo
key={todo.id}
{...todo}
onClick={() => this.props.onTodoClick(todo.id)}
/>
)}
</tbody>
</table>
</div>
)
}
}

这是 UI 调整(排序、排序和其他操作),我们将其保持在 React 本地状态。这会导致更清晰的代码,因为我们的 redux state 是干净的并且不会存储所有这些信息。

接受建议/评论和更好的答案!

关于redux - 组件内的 React 状态更改(通过 mapDispatchToProps)给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42309246/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com