最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - react-redux useSelector hook disallows passing props directly to the selector - Stack Overflow

programmeradmin0浏览0评论

I've just started playing with the new useSelector hook provided in react-redux.

I have always passed props directly in to my selectors like this:

mapStateToProps(state, ownProps) {
   return {
      user: userSelector(state, ownProps.userId)
   }
}

Is passing props directly into selectors considered an anti pattern?

If "No", then how can I achieve this with useSelector?

If "Yes", then what are the correct patterns to achieve this parameterisation of the selector?

I've just started playing with the new useSelector hook provided in react-redux.

I have always passed props directly in to my selectors like this:

mapStateToProps(state, ownProps) {
   return {
      user: userSelector(state, ownProps.userId)
   }
}

Is passing props directly into selectors considered an anti pattern?

If "No", then how can I achieve this with useSelector?

If "Yes", then what are the correct patterns to achieve this parameterisation of the selector?

Share Improve this question asked Jul 5, 2019 at 3:14 hally9khally9k 2,5932 gold badges29 silver badges51 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

This is good practice to use props in selectors.

The selector function does not receive an ownProps argument. However, props can be used through closure (see the examples below) or by using a curried selector.

useSelector accepts function with state argument. If you'll pass arrow function to useSelector you'll be able to access any variable in closure, including props.

This example is taken from official documentation

import React from 'react'
import { useSelector } from 'react-redux'

export const TodoListItem = props => {
  const todo = useSelector(state => state.todos[props.id])
  return <div>{todo.text}</div>
}

Also take a look at stale props page in official documentation on how to avoid some mistakes with local props usage.

发布评论

评论列表(0)

  1. 暂无评论