npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wrapper-next-with-redux

v1.0.5

Published

redux wrapper for next.js app based on functional components

Downloads

278

Readme

Redux wrapper for next.js app based on functional components

You can use it to handle store creation and management in your next.js app on both server and client side.

Main idea

This package is motivated by next-redux-wrapper package, but has difference in the way it handles store hydration. It do not uses useMemo hook for hydration since it is not working properly. It produces an issue like Cannot update a component while rendering a different component

This package provides you with a way to create a rootReducer and add a HYDRATE action to it with your hydration logic. Wrapper will create a store for your getServerSideProps or getStaticProps so you'll be able to use dispatch action on server, and then it will pass store's state to the client side. On client side it will create a new store and pass it to the app or apply hydration if store already exists after component mounts. After hydration completes it will pass hydrated flag via context that can be accessed by HydrationContext. This can be used optionally via useContext react hook.

Getting Started

Compatibility

  • React: ^18.2.0
  • React DOM: ^18.2.0
  • Next.js: ^13.0.0

This package is compatible with Next.js 13.0.0 and higher to avoid compatibility issues with old version of some libraries, that to not work with react 18

Installing

Install the package

yarn add wrapper-next-with-redux

Usage

Package has 3 main functions:

1) createRootReducer - function that creates rootReducer from passed reducers 
and adds HYDRATE action to it with you hydration logic, that should be passed as a second argument.

2) withReduxWrapper - HOF that creates a wrapper for your serverSideProps, makes store available on server and returns state with props pbject.

3) reduxWrapper - HOC that creates a wrapper for your app, creates a store and passes it to the app or applies hydration if store already exists.

Here is an example of how you can initialize store using createRootReducer method:

const hydrationAction = (state, action) => {
  const { payload } = action;
  const nextState = {
    ...state,
    ...payload,
  };

  if (state.me) {
    nextState.me = state.me;
  }

  return nextState;
};

const initializeStore = () => {
  return configureStore({
    reducer: createRootReducer(rootReducer, hydrationAction),
    middleware: (getDefaultMiddleware) =>
      getDefaultMiddleware({
        thunk: false,
        immutableCheck: false,
        serializableCheck: false,
      }).concat(sagaMiddleware),
  });
};

export const withRedux = (getServerSidePropsFunc) =>
  withReduxWrapper(getServerSidePropsFunc, initializeStore);

Usage of redux-saga and redux-persist is completely up to you and depends on you app design. You may use redux-thunk, and not use redux-persist at all

Then you can use withRedux method in you components and pages to wrap getServerSideProps or getStaticProps:

export const getServerSideProps = withRedux(
  async ({ store, your_other_props(req, res, etc..) }) => {
    dispatch(someMethod));
    store.dispatch(END);
    await store.sagaTask.toPromise();
    const someProps = props_you_want_to_pass_to_component;
    return {
      props: someProps,
    };
  },
);

Then you can use reduxWrapper to wrap your app in _app.js :

reduxWrapper(RootApp, initializeStore);

where initializeStore is a method you created in the previous step.

Additionally, here is an example how you can configure store with redux-persist

const createNoopStorage = () => ({
  getItem() {
    return Promise.resolve(null);
  },
  setItem(_key, value) {
    return Promise.resolve(value);
  },
  removeItem() {
    return Promise.resolve();
  },
});

const storage =
  typeof window !== 'undefined'
    ? createWebStorage('local')
    : createNoopStorage();

const persistConfig = {
  key: 'root',
  whitelist: ['me'],
  storage,
};
const createStore = (persistedReducer) => {
  const sagaMiddleware = createSagaMiddleware();
  const _store = configureStore({
    reducer: persistedReducer,
    middleware: (getDefaultMiddleware) =>
      getDefaultMiddleware({
        thunk: false,
        immutableCheck: false,
        serializableCheck: false,
      }).concat(sagaMiddleware),
  });
  _store.sagaTask = sagaMiddleware.run(sagas);
  _store._persistor = persistStore(_store);
  return _store;
};

const hydrationAction = (state, action) => {
  const { payload } = action;
  const nextState = {
    ...state,
    ...payload,
  };

  if (state.me) {
    nextState.me = state.me;
  }

  return nextState;
};
const persistedReducer = persistReducer(
  persistConfig,
  createRootReducer(rootReducer, hydrationAction),
);

export const initializeStore = () =>
  createStore(persistedReducer);

export const withRedux = (getServerSidePropsFunc) =>
  withReduxWrapper(getServerSidePropsFunc, initializeStore);