Giter VIP home page Giter VIP logo

Comments (3)

bernabe9 avatar bernabe9 commented on June 6, 2024 2

Checkout the new server rendering example: https://github.com/bernabe9/redux-react-session/tree/master/examples/server%20rendering

from redux-react-session.

umpc avatar umpc commented on June 6, 2024

While I am not familiar with the exact use case for initServerSession, req is expected to be a Map-type value with a cookie String-type key.

initServerSession sets the session and/or user info based on the cookie data it finds in the req map.

The Usage section in the readme shows the inclusion of the sessionReducer, so I would expect that it is needed in this case as well.

from redux-react-session.

bernabe9 avatar bernabe9 commented on June 6, 2024

First of all, just clarify some concepts, when we have a server rendering the client makes the request to the server and then the server returns a response with the full rendered content. So, the problem here is that the client is who have the data for the authentication(for example in the cookies), but is the server who needs this data.

The server needs the authentication data for:

  1. Detect if the route requested is valid for the user (if the route needs authentication)
  2. Request something to an external API(using the authentication data)

Regarding to your questions:
createStore() is just a function that creates the redux storage, maybe that generates confusion. Here is how it looks without createStore():

// server.js
import { sessionService, sessionReducer } from 'redux-react-session';
import { combineReducers, createStore, compose, applyMiddleware } from 'redux';

// ...
app.use((req, res) => {
  // Add the sessionReducer
  const reducer = combineReducers({
    session: sessionReducer
  });
  const store = createStore(reducer, undefined, compose(applyMiddleware(thunkMiddleware)));
  sessionService.initServerSession(store, req);
  // ...
}
// ...

There is no more configuration for the server, although I will add an example for the server rendering since it's hard to understand.

from redux-react-session.

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.