File size: 8,495 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
---
id: createStructuredSelector
title: createStructuredSelector
sidebar_label: createStructuredSelector
hide_title: true
description: 'createStructuredSelector'
---
import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem'
import { InternalLinks } from '@site/src/components/InternalLinks'
# `createStructuredSelector`
A convenience function that simplifies returning an object made up of selector results.
## Parameters
| Name | Description |
| :--------------------- | :----------------------------------------------------------------------------------- |
| `inputSelectorsObject` | A key value pair consisting of input selectors. |
| `selectorCreator?` | A custom selector creator function. It defaults to <InternalLinks.CreateSelector />. |
## Returns
A memoized structured selector.
## Type Parameters
| Name | Description |
| :--------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `InputSelectorsObject` | The shape of the <InternalLinks.InputSelectors /> object. |
| `MemoizeFunction` | The type of the memoize function that is used to create the structured selector. It defaults to `lruMemoize`. |
| `ArgsMemoizeFunction` | The type of the of the memoize function that is used to memoize the arguments passed into the generated structured selector. It defaults to `lruMemoize`. |
## Examples
### Modern Use Case
{/* START: createStructuredSelector/modernUseCase.ts */}
<Tabs
groupId='language'
defaultValue='ts'
values={[
{label: 'TypeScript', value: 'ts'},
{label: 'JavaScript', value: 'js'},
]}>
<TabItem value='ts'>
```ts title="createStructuredSelector/modernUseCase.ts"
import { createSelector, createStructuredSelector } from 'reselect'
export interface RootState {
todos: {
id: number
completed: boolean
title: string
description: string
}[]
alerts: { id: number; read: boolean }[]
}
// This:
export const structuredSelector = createStructuredSelector(
{
todos: (state: RootState) => state.todos,
alerts: (state: RootState) => state.alerts,
todoById: (state: RootState, id: number) => state.todos[id]
},
createSelector
)
// Is essentially the same as this:
export const selector = createSelector(
[
(state: RootState) => state.todos,
(state: RootState) => state.alerts,
(state: RootState, id: number) => state.todos[id]
],
(todos, alerts, todoById) => {
return {
todos,
alerts,
todoById
}
}
)
```
</TabItem>
<TabItem value='js'>
```js title="createStructuredSelector/modernUseCase.js"
import { createSelector, createStructuredSelector } from 'reselect'
// This:
export const structuredSelector = createStructuredSelector(
{
todos: state => state.todos,
alerts: state => state.alerts,
todoById: (state, id) => state.todos[id]
},
createSelector
)
// Is essentially the same as this:
export const selector = createSelector(
[state => state.todos, state => state.alerts, (state, id) => state.todos[id]],
(todos, alerts, todoById) => {
return {
todos,
alerts,
todoById
}
}
)
```
</TabItem>
</Tabs>
{/* END: createStructuredSelector/modernUseCase.ts */}
In your component:
{/* START: createStructuredSelector/MyComponent.tsx */}
<Tabs
groupId='language'
defaultValue='tsx'
values={[
{label: 'TypeScript', value: 'tsx'},
{label: 'JavaScript', value: 'jsx'},
]}>
<TabItem value='tsx'>
```tsx title="createStructuredSelector/MyComponent.tsx"
import type { RootState } from 'createStructuredSelector/modernUseCase'
import { structuredSelector } from 'createStructuredSelector/modernUseCase'
import type { FC } from 'react'
import { useSelector } from 'react-redux'
interface Props {
id: number
}
const MyComponent: FC<Props> = ({ id }) => {
const { todos, alerts, todoById } = useSelector((state: RootState) =>
structuredSelector(state, id)
)
return (
<div>
Next to do is:
<h2>{todoById.title}</h2>
<p>Description: {todoById.description}</p>
<ul>
<h3>All other to dos:</h3>
{todos.map(todo => (
<li key={todo.id}>{todo.title}</li>
))}
</ul>
</div>
)
}
```
</TabItem>
<TabItem value='jsx'>
```jsx title="createStructuredSelector/MyComponent.jsx"
import { structuredSelector } from 'createStructuredSelector/modernUseCase'
import { useSelector } from 'react-redux'
const MyComponent = ({ id }) => {
const { todos, alerts, todoById } = useSelector(state =>
structuredSelector(state, id)
)
return (
<div>
Next to do is:
<h2>{todoById.title}</h2>
<p>Description: {todoById.description}</p>
<ul>
<h3>All other to dos:</h3>
{todos.map(todo => (
<li key={todo.id}>{todo.title}</li>
))}
</ul>
</div>
)
}
```
</TabItem>
</Tabs>
{/* END: createStructuredSelector/MyComponent.tsx */}
### Simple Use Case
```ts
const selectA = state => state.a
const selectB = state => state.b
// The result function in the following selector
// is simply building an object from the input selectors
const structuredSelector = createSelector(selectA, selectB, (a, b) => ({
a,
b
}))
const result = structuredSelector({ a: 1, b: 2 }) // will produce { x: 1, y: 2 }
```
`createStructuredSelector` takes an object whose properties are input selectors and returns a structured selector. The structured selector returns an object with the same keys as the `inputSelectorsObject` argument, but with the selectors replaced with their values.
```ts
const selectA = state => state.a
const selectB = state => state.b
const structuredSelector = createStructuredSelector({
x: selectA,
y: selectB
})
const result = structuredSelector({ a: 1, b: 2 }) // will produce { x: 1, y: 2 }
```
Structured selectors can be nested:
```ts
const nestedSelector = createStructuredSelector({
subA: createStructuredSelector({
selectorA,
selectorB
}),
subB: createStructuredSelector({
selectorC,
selectorD
})
})
```
## Defining a Pre-Typed <InternalLinks.CreateStructuredSelector>`createStructuredSelector`</InternalLinks.CreateStructuredSelector>
As of Reselect 5.1.0, you can create a "pre-typed" version of <InternalLinks.CreateStructuredSelector /> where the `state` type is predefined. This allows you to set the `state` type once, eliminating the need to specify it with every <InternalLinks.CreateStructuredSelector /> call.
To do this, you can call `createStructuredSelector.withTypes<StateType>()`:
{/* START: createStructuredSelector/withTypes.ts */}
<Tabs
groupId='language'
defaultValue='ts'
values={[
{label: 'TypeScript', value: 'ts'},
{label: 'JavaScript', value: 'js'},
]}>
<TabItem value='ts'>
```ts title="createStructuredSelector/withTypes.ts"
import { createStructuredSelector } from 'reselect'
export interface RootState {
todos: { id: number; completed: boolean }[]
alerts: { id: number; read: boolean }[]
}
export const createStructuredAppSelector =
createStructuredSelector.withTypes<RootState>()
const structuredAppSelector = createStructuredAppSelector({
// Type of `state` is set to `RootState`, no need to manually set the type
// highlight-start
todos: state => state.todos,
// highlight-end
alerts: state => state.alerts,
todoById: (state, id: number) => state.todos[id]
})
```
</TabItem>
<TabItem value='js'>
```js title="createStructuredSelector/withTypes.js"
import { createStructuredSelector } from 'reselect'
export const createStructuredAppSelector = createStructuredSelector.withTypes()
const structuredAppSelector = createStructuredAppSelector({
// Type of `state` is set to `RootState`, no need to manually set the type
// highlight-start
todos: state => state.todos,
// highlight-end
alerts: state => state.alerts,
todoById: (state, id) => state.todos[id]
})
```
</TabItem>
</Tabs>
{/* END: createStructuredSelector/withTypes.ts */}
|