Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Redux v5 and RTK v2 #1459

Open
xsjcTony opened this issue Dec 5, 2023 · 10 comments
Open

Support for Redux v5 and RTK v2 #1459

xsjcTony opened this issue Dec 5, 2023 · 10 comments

Comments

@xsjcTony
Copy link

xsjcTony commented Dec 5, 2023

Functionality seems working fine, but types may need to be adjusted.
馃檹

@Haschtl
Copy link

Haschtl commented Dec 5, 2023

I also updated to RTK v2 and I'm not having any type-issues. Where did you encounter type errors?

@xsjcTony
Copy link
Author

xsjcTony commented Dec 5, 2023

@EskiMojo14
Copy link

A more detailed explanation of the change for context:

Prior to Redux v5, the handling for preloadedState was a little hacky. There was only the one State type parameter for reducers, and it was assumed that in most cases preloadedState would just be this State type. However, the most common exception to this was the reducer created by combineReducers, which would accept Partial<State>.

For a long time this was handled by a special $CombinedState brand, which would tell createStore (and configureStore) that it was allowed to have a partial preloadedState instead. This was unintuitive, and had some user-reported issues.

In v5, we took the opportunity to rethink how preloadedState was handled. In practicality, preloadedState is anything that's valid to pass as the first parameter to your reducer, as long as the reducer still returns its normal State. Following this logic, we added an optional third PreloadedState type parameter to the Reducer type (which defaults to State), which appears in the first parameter of the reducer but not the return type.

type Reducer<S, A extends Action = Action, P = S> = (state: S | P | undefined, action: A) => S

This means that the result of combineReducers is now Reducer<State, Action, Partial<State>>.

However when you pass it to persistReducer, it doesn't know to preserve the PreloadedState type parameter, so you end up with Reducer<State, Action> - and suddenly preloadedState is no longer allowed to be partial.

Users can fix this themselves by adding an overload that knows to preserve PreloadedState:

import type { Action, Reducer } from "redux";
import type { PersistConfig, PersistState } from "redux-persist";

declare module "redux-persist" {
  export function persistReducer<S, A extends Action = Action, P = S>(
    config: PersistConfig<S>,
    baseReducer: Reducer<S, A, P>,
  ): Reducer<
    S & { _persist: PersistState },
    A,
    P & { _persist?: PersistState }
  >;
}

But it'd obviously be nicer if the library could be updated to handle this itself 馃檪

@phryneas
Copy link

phryneas commented Dec 7, 2023

You probably will also have to override the dependency. You can do so with npm overrides:

in your package.json:

{
  // ...
  "dependencies": {
    "@reduxjs/toolkit": "^2.0.1",
    "react-redux": "^9.0.2",
    "redux-persist": "^6.0.0"
  },
  "overrides": {
    "redux-persist": {
      "redux": "^5.0.0"
    }
  }
}

@xsjcTony
Copy link
Author

xsjcTony commented Dec 8, 2023

I guess ">4.0.0" is including v5, at least I didn't encounter any issue when installing dependencies

@phryneas
Copy link

phryneas commented Dec 8, 2023

@xsjcTony Good point. One of our users had problems with that, but I didn't notice it was using >.

UNIDY2002 added a commit to thu-info-community/thu-info-app that referenced this issue Dec 10, 2023
@zvs001
Copy link

zvs001 commented Jan 12, 2024

Update is pretty important. I experience issue that useSelector doesn't make component to rerender on state change.
Issue gone when I downgrade to RTK v1 or drop redux-persist.

@lucipacurar
Copy link

Same issue here: useSelector doesn't trigger rerender and my app is stuck in a weird state.

@EskiMojo14
Copy link

could either of you put together a reproduction of the issue?

@zvs001
Copy link

zvs001 commented Feb 22, 2024

Here is store setup example that I have in app.
I don't remember versions. I think @reduxjs/toolkit was 2.0.1 or 2.1.0

Also react-redux to reproduce requires v9+. I downgraded to v8 to fix the issue

store.tsx
import AsyncStorage from '@react-native-async-storage/async-storage'
import { configureStore, ThunkAction } from '@reduxjs/toolkit'
import { shallowEqual, TypedUseSelectorHook, useDispatch, useSelector } from 'react-redux'
import { persistStore, persistReducer, FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER } from 'redux-persist'
import { Action } from './app/actions'
import { middleware } from './middleware'
import AppReducers from './index'

const persistedReducer = persistReducer(
  {
    key: 'root',
    storage: AsyncStorage,
    version: 2,
  },
  AppReducers,
)

export const store = configureStore({
  reducer: persistedReducer,
  middleware: (getDefaultMiddleware) => {
    return getDefaultMiddleware({
      serializableCheck: {
        ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER],
      },
    }).concat(middleware)
  },
})

// const sagaMiddleware = createSagaMiddleware()
export const persistor = persistStore(store)

// sagaMiddleware.run(saga)

export default {
  store,
  persistor,
}

export const useAppDispatch = () => useDispatch<ReduxDispatch>()
export const useAppSelector: TypedUseSelectorHook<ReduxState> = (selector) => useSelector(selector, shallowEqual)

/* Types */
export type ReduxStore = typeof store
export type ReduxState = ReturnType<typeof AppReducers>
export type ReduxDispatch = typeof store.dispatch
export type ReduxThunkAction<ReturnType = void> = ThunkAction<ReturnType, ReduxState, unknown, Action>
slice.ts
import { createSlice, PayloadAction } from '@reduxjs/toolkit'

interface State {
  deviceLocale: string
  appLocale: string
}

const initialState: State = {
  deviceLocale: '',
  appLocale: '',
}

const slice = createSlice({
  name: 'SYSTEM',
  initialState,
  reducers: {
    setLocale(state, action: PayloadAction<Pick<State, 'appLocale' | 'deviceLocale'>>) {
      const { appLocale, deviceLocale } = action.payload
      state.appLocale = appLocale
      state.deviceLocale = deviceLocale
    },
  },
})

export const { reducer, actions } = slice
export default reducer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants