@@ -35,7 +35,7 @@ import { server } from './mocks/server'
35
35
import type { UnknownAction } from 'redux'
36
36
import type { SubscriptionOptions } from '@reduxjs/toolkit/dist/query/core/apiState'
37
37
import type { SerializedError } from '@reduxjs/toolkit'
38
- import { createListenerMiddleware , configureStore } from '@reduxjs/toolkit'
38
+ import { createListenerMiddleware , configureStore , createSlice } from '@reduxjs/toolkit'
39
39
import { delay } from '../../utils'
40
40
import type { SubscriptionSelectors } from '../core/buildMiddleware/types'
41
41
import { countObjectKeys } from '../utils/countObjectKeys'
@@ -2052,7 +2052,19 @@ describe('hooks with createApi defaults set', () => {
2052
2052
} ) ,
2053
2053
} )
2054
2054
2055
- const storeRef = setupApiStore ( api )
2055
+ const counterSlice = createSlice ( {
2056
+ name : "counter" ,
2057
+ initialState : { count : 0 } ,
2058
+ reducers : {
2059
+ increment ( state ) {
2060
+ state . count ++
2061
+ }
2062
+ }
2063
+ } )
2064
+
2065
+ const storeRef = setupApiStore ( api , {
2066
+ counter : counterSlice . reducer ,
2067
+ } )
2056
2068
2057
2069
expectExactType ( api . useGetPostsQuery ) ( api . endpoints . getPosts . useQuery )
2058
2070
expectExactType ( api . useUpdatePostMutation ) (
@@ -2317,6 +2329,52 @@ describe('hooks with createApi defaults set', () => {
2317
2329
await waitFor ( ( ) => expect ( getRenderCount ( ) ) . toBe ( 3 ) )
2318
2330
} )
2319
2331
2332
+ test ( 'useQuery with selectFromResult option does not update when unrelated data in the store changes' , async ( ) => {
2333
+ function Posts ( ) {
2334
+ const { posts } = api . endpoints . getPosts . useQuery ( undefined , {
2335
+ selectFromResult : ( { data } ) => ( {
2336
+ // Intentionally use an unstable reference to force a rerender
2337
+ posts : data ?. filter ( ( post ) => post . name . includes ( 'post' ) ) ,
2338
+ } ) ,
2339
+ } )
2340
+
2341
+ getRenderCount = useRenderCounter ( )
2342
+
2343
+ return (
2344
+ < div >
2345
+ { posts ?. map ( ( post ) => (
2346
+ < div key = { post . id } > { post . name } </ div >
2347
+ ) ) }
2348
+ </ div >
2349
+ )
2350
+ }
2351
+
2352
+ function CounterButton ( ) {
2353
+ return (
2354
+ < div
2355
+ data-testid = "incrementButton"
2356
+ onClick = { ( ) => storeRef . store . dispatch ( counterSlice . actions . increment ( ) ) }
2357
+ >
2358
+ Increment Count
2359
+ </ div >
2360
+ )
2361
+ }
2362
+
2363
+ render (
2364
+ < div >
2365
+ < Posts />
2366
+ < CounterButton />
2367
+ </ div > ,
2368
+ { wrapper : storeRef . wrapper }
2369
+ )
2370
+
2371
+ await waitFor ( ( ) => expect ( getRenderCount ( ) ) . toBe ( 2 ) )
2372
+
2373
+ const incrementBtn = screen . getByTestId ( 'incrementButton' )
2374
+ fireEvent . click ( incrementBtn )
2375
+ expect ( getRenderCount ( ) ) . toBe ( 2 )
2376
+ } )
2377
+
2320
2378
test ( 'useQuery with selectFromResult option has a type error if the result is not an object' , async ( ) => {
2321
2379
function SelectedPost ( ) {
2322
2380
const _res1 = api . endpoints . getPosts . useQuery ( undefined , {
0 commit comments