Here is the file that's causing me trouble:
var Routers = React.createClass({ getInitialState: function(){ return{ userName: "", relatives: [] } }, userLoggedIn: function(userName, relatives){ this.setState({ userName: userName, relatives: relatives, }) }, render: function() { return ( <Router history={browserHistory}> <Route path="/" userLoggedIn={this.userLoggedIn} component={LogIn}/> <Route path="feed" relatives={this.state.relatives} userName={this.state.userName} component={Feed}/> </Router> ); } });
I am trying to pass the new this.state.relatives
and this.state.userName
through the routes into my "feed"-component. But I'm getting this error message:
Warning: [react-router] You cannot change ; it will be ignored
I know why this happens, but don't know how else i'm supposed to pass the states to my "feed"-component. I've been trying to fix this problem for the past 5 hours and í'm getting quite desperate!
Please help! Thanks
The answers below were helpful and i thank the athors, but they were not the easiest way to do this. The best way to do it in my case turned out to be this: When you change routes you just attach a message to it like this:
browserHistory.push({pathname: '/pathname', state: {message: "hello, im a passed message!"}});
or if you do it through a link:
<Link to={{ pathname: '/pathname', state: { message: 'hello, im a passed message!' } }}/>
source: https://github.com/ReactTraining/react-router/blob/master/packages/react-router/docs/api/location.md
In the component you are trying to reach you can then access the variable like this for example:
componentDidMount: function() { var recievedMessage = this.props.location.state.message },
I hope this helps! :)
To get the data passed via the Link component, we use the useLocation hook, like this: import { useLocation } from 'react-router-dom'; /*... */ const location = useLocation(); const data = location. state; console.
To pass data when navigating programmatically with React Router, we can call navigate with an object. Then we can use the useLocation hook to return the object's data. const navigate = useNavigate(); navigate('/other-page', { state: { id: 7, color: 'green' } });
In React, sharing state is accomplished by moving it up to the closest common ancestor of the components that need it. This is called “lifting state up”. We will remove the local state from the TemperatureInput and move it into the Calculator instead.
With react-router, you pass state or data from one component to another component to use the react-router Link component. Data pass more quickly in the new version of react-router (v6). For example, you can pass an object's data into one component to another component.
I know this might be late to answer this question, however for anybody that wonders about this in future, you can do this example way:
export default class Routes extends Component { constructor(props) { super(props); this.state = { config: 'http://localhost' }; } render() { return ( <div> <BrowserRouter> <Switch> <Route path="/" exact component={App} /> <Route path="/lectures" exact render={() => <Lectures config={this.state.config} />} /> </Switch> </BrowserRouter> </div> ); }
}
This way you can reach config props inside Lecture component. This is a little walk around the issue but for a start its a nice touch! :)
tl;dr your best bet is to use a store like redux
or mobx
when managing state that needs to be accessible throughout your application. Those libraries allow your components to connect to/observe the state and be kept up to date of any state changes.
<Route>
?The reason that you cannot pass props through <Route>
components is that they are not real components in the sense that they do not render anything. Instead, they are used to build a route configuration object.
That means that this:
<Router history={browserHistory}> <Route path='/' component={App}> <Route path='foo' component={Foo} /> </Route> </Router>
is equivalent to this:
<Router history={browserHistory} routes={{ path: '/', component: App, childRoutes: [ { path: 'foo', component: Foo } ] }} />
The routes are only evaluated on the initial mount, which is why you cannot pass new props to them.
If you have some static props that you want to pass to your store, you can create your own higher order component that will inject them into the store. Unfortunately, this only works for static props because, as stated above, the <Route>
s are only evaluated once.
function withProps(Component, props) { return function(matchProps) { return <Component {...props} {...matchProps} /> } } class MyApp extends React.Component { render() { return ( <Router history={browserHistory}> <Route path='/' component={App}> <Route path='foo' component={withProps(Foo, { test: 'ing' })} /> </Route> </Router> ) } }
location.state
location.state
is a convenient way to pass state between components when you are navigating. It has one major downside, however, which is that the state only exists when navigating within your application. If a user follows a link to your website, there will be no state attached to the location.
So how do you pass data to your route's component
s? A common way is to use a store like redux
or mobx
. With redux
, you can connect
your component to the store using a higher order component. Then, when your route's component
(which is really the HOC with your route component as its child) renders, it can grab up to date information from the store.
const Foo = (props) => ( <div>{props.username}</div> ) function mapStateToProps(state) { return { value: state.username }; } export default connect(mapStateToProps)(Foo)
I am not particularly familiar with mobx
, but from my understanding it can be even easier to setup. Using redux
, mobx
, or one of the other state management is a great way to pass state throughout your application.
Note: You can stop reading here. Below are plausible examples for passing state, but you should probably just use a store library.
What if you don't want to use a store? Are you out of luck? No, but you have to use an experimental feature of React: the context
. In order to use the context
, one of your parent components has to explicitly define a getChildContext
method as well as a childContextTypes
object. Any child component that wants to access these values through the context
would then need to define a contextTypes
object (similar to propTypes
).
class MyApp extends React.Component { getChildContext() { return { username: this.state.username } } } MyApp.childContextTypes = { username: React.PropTypes.object } const Foo = (props, context) => ( <div>{context.username}</div> ) Foo.contextTypes = { username: React.PropTypes.object }
You could even write your own higher order component that automatically injects the context
values as props of your <Route>
component
s. This would be something of a "poor man's store". You could get it to work, but most likely less efficiently and with more bugs than using one of the aforementioned store libraries.
React.cloneElement
?There is another way to provide props to a <Route>
's component
, but it only works one level at a time. Essentially, when React Router is rendering components based on the current route, it creates an element for the most deeply nested matched <Route>
first. It then passes that element as the children
prop when creating an element for the next most deeply nested <Route>
. That means that in the render
method of the second component, you can use React.cloneElement
to clone the existing children
element and add additional props to it.
const Bar = (props) => ( <div>These are my props: {JSON.stringify(props)}</div> ) const Foo = (props) => ( <div> This is my child: { props.children && React.cloneElement(props.children, { username: props.username }) } </div> )
This is of course tedious, especially if you were to need to pass this information through multiple levels of <Route>
component
s. You would also need to manage your state within your base <Route>
component (i.e. <Route path='/' component={Base}>
) because you wouldn't have a way to inject the state from parent components of the <Router>
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With