Coder Social home page Coder Social logo

Comments (5)

kirill-konshin avatar kirill-konshin commented on September 23, 2024

Redux store is always top level and is preserved between page transitions. Server side creates a new store only when you initially hit the page, later, when you navigate, server does not send you any data, all new data is requested by client. The store is shared between all pages on client unless you reload the page or open page in a new tab, or something like that.

Ideally server should be stateless, so it can provide only common data that does not belong to any user or session, so in this case you dispatch some common actions from getInititalProps and dispatch authorized actions elsewhere of conditionally (only on client) from getInitialProps.

from next-redux-wrapper.

mojo5000 avatar mojo5000 commented on September 23, 2024

Thank you for the quick response.

Doh - I think I was resetting via a dispatch in getInitialProps.

from next-redux-wrapper.

vaibhav-kona avatar vaibhav-kona commented on September 23, 2024

State gets reset when navigated in between pages even though I am setting initialState in the createStore from params

Page A
screenshot 2018-12-05 at 4 06 59 pm

Page B
screenshot 2018-12-05 at 4 07 06 pm

Store setup:

import { createStore, applyMiddleware } from 'redux';
import logger from 'redux-logger';
import indexForReducers from './common/indexReducer';

const initStore = (initialState) => {
  return createStore(indexForReducers, initialState, applyMiddleware(logger));
};

export default initStore;

from next-redux-wrapper.

kirill-konshin avatar kirill-konshin commented on September 23, 2024

Looks like your navigation makes a full page transition instead of client side routing. Make sure you don’t reload the page. Also you should not use url for initial state, use it in actions instead.

from next-redux-wrapper.

vaibhav-kona avatar vaibhav-kona commented on September 23, 2024

I am using next-routes for routing. I will try and see if i can prevent full page transition with it

from next-redux-wrapper.

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.