GithubHelp home page GithubHelp logo

Comments (3)

gaearon avatar gaearon commented on April 27, 2024

I just checked and it works fine for me.
My best bet is you have duplicate Reacts so they don't recognize each other's context.

Make sure you don't have

node_modules/react-router/node_modules/react
node_modules/react-redux/node_modules/react
etc

and only have node_modules/react.

from react-redux.

rob-mccann avatar rob-mccann commented on April 27, 2024

My limited understanding is that react-router is the parent for your page components rather than the app wrapper.

We're using a newer version of react router and hit a similar thing with react-intl but this should still apply:

  1. We extend the router class to put the objects from props onto the context
import React  from 'react';
import Router from 'react-router';

export default class extends Router {
    getChildContext() {
        const context = this.context,
              props   = this.props;

        return {
            locales: props.locales || context.locales,
            formats: props.formats || context.formats,
            messages: props.messages || context.messages,

            config: props.config || context.config,

            router: this
        };
    }

    static childContextTypes = {
        locales: React.PropTypes.oneOfType([
            React.PropTypes.string,
            React.PropTypes.array
        ]),

        formats: React.PropTypes.object,
        messages: React.PropTypes.object,

        config: React.PropTypes.object.isRequired,

        router: React.PropTypes.object.isRequired
    }
}
  1. We use the above router rather than the one supplied by react-router and pass what we want in the context as a prop to the router
<Router config={config} {...initialState} {...intl}  />

from react-redux.

volkanunsal avatar volkanunsal commented on April 27, 2024

I think this was a duplicate Reacts issue. Thanks for the help! 👍

from react-redux.

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.