Coder Social home page Coder Social logo

Comments (11)

rt2zz avatar rt2zz commented on May 14, 2024 27

more specifically I think what you are asking is how to use it with applyMiddleware. both applyMiddleware and autoRehydrate are store enhancers so you can compose them as follows:

const store = createStore(
  combineReducers(reducers),
  {},
  compose(
    autoRehydrate(),
    applyMiddleware(thunk)
  )
)

This is using the new redux enhancer as a third argument api, so make sure your redux is up to date. 👍

from redux-persist.

jaruesink avatar jaruesink commented on May 14, 2024 22

store/index.js

import { createStore, applyMiddleware, compose } from 'redux';
import { persistStore, persistReducer } from 'redux-persist';
import storage from 'redux-persist/lib/storage';
import thunk from 'redux-thunk';
import createHistory from 'history/createBrowserHistory';
import rootReducer from '../reducers';
import initialState from './initialState';
import { isDevelopmentEnvironment } from '../environment';

export const history = createHistory();

const enhancers = [];
const middleware = [thunk];

const persistConfig = {
  key: 'root',
  storage
};

const persistedReducer = persistReducer(persistConfig, rootReducer);

if (isDevelopmentEnvironment()) {
  const devToolsExtension = window.__REDUX_DEVTOOLS_EXTENSION__;

  if (typeof devToolsExtension === 'function') {
    enhancers.push(devToolsExtension());
  }
}

const composedEnhancers = compose(
  applyMiddleware(...middleware),
  ...enhancers
);

export default () => {
  const store = createStore(persistedReducer, initialState, composedEnhancers);
  return { store, persistor: persistStore(store) };
};

App.js

//@flow

// Vendors
import React from 'react';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';

// Layouts
import { LayoutGlobal } from './layouts';

// Store
import configureStore from './store';

const { persistor, store } = configureStore();

const App = () => (
  <Provider store={store}>
    <PersistGate loading={null} persistor={persistor}>
      <LayoutGlobal />
    </PersistGate>
  </Provider>
);

export default App;

from redux-persist.

gaearon avatar gaearon commented on May 14, 2024 10

Thanks, but I still get an error. Says "compose is not defined"

Yes, it is not a global. It is exported from redux, just like applyMiddleware. Modern libraries usually don’t export globals, so if you see something that wasn’t declared, it’s very likely that it needs to be imported from somewhere.

import { createStore, applyMiddleware, compose } from 'redux'

from redux-persist.

rt2zz avatar rt2zz commented on May 14, 2024

I should note you will need to import all of those methods and also run persistStore:

import {autoRehydrate, persistStore} from 'redux-persist'

// ...

persistStore(store)

from redux-persist.

skizzo avatar skizzo commented on May 14, 2024

Thanks, but I still get an error. Says "compose is not defined" at the line #4 of your code snippet before. package.json says I run v4.4.0 of react-redux and v1.5.5 of redux-persist, in the same file i added the line

import { autoRehydrate, persistStore } from 'redux-persist';

before.

from redux-persist.

skizzo avatar skizzo commented on May 14, 2024

Works like a charm now, many thanks.

from redux-persist.

roadev avatar roadev commented on May 14, 2024

Thank you very much @rt2zz !

from redux-persist.

taime avatar taime commented on May 14, 2024

I've got an error 'redux-persist' does not contain an export named 'autoRehydrate'.

from redux-persist.

lxblvs avatar lxblvs commented on May 14, 2024

Same as the poster above. Maybe this should be added to the documentation.

from redux-persist.

jsaya01 avatar jsaya01 commented on May 14, 2024

Was anyone able to solve the autoRehydrate issue?

from redux-persist.

jaruesink avatar jaruesink commented on May 14, 2024

autoRehydrate was taken out in v5 from what I could tell, still looking for how this works with the latest version of persist.

from redux-persist.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.