// import React, {Component, Props, ReactDOM} from 'react';
// import {Route, Switch} from 'react-router'; etc etc
// this snippet has it all attached to window since its in browser
const {
BrowserRouter,
Switch,
Route,
Link,
NavLink
} = ReactRouterDOM;
class World extends React.Component {
constructor(props) {
super(props);
console.dir(props);
this.state = {
fromIdeas: props.match.params.WORLD || 'unknown'
}
}
render() {
const { match, location} = this.props;
return (
<React.Fragment>
<h2>{this.state.fromIdeas}</h2>
<span>thing:
{location.query
&& location.query.thing}
</span><br/>
<span>another1:
{location.query
&& location.query.another1
|| 'none for 2 or 3'}
</span>
</React.Fragment>
);
}
}
class Ideas extends React.Component {
constructor(props) {
super(props);
console.dir(props);
this.state = {
fromAppItem: props.location.item,
fromAppId: props.location.id,
nextPage: 'world1',
showWorld2: false
}
}
render() {
return (
<React.Fragment>
<li>item: {this.state.fromAppItem.okay}</li>
<li>id: {this.state.fromAppId}</li>
<li>
<Link
to={{
pathname: `/hello/${this.state.nextPage}`,
query:{thing: 'asdf', another1: 'stuff'}
}}>
Home 1
</Link>
</li>
<li>
<button
onClick={() => this.setState({
nextPage: 'world2',
showWorld2: true})}>
switch 2
</button>
</li>
{this.state.showWorld2
&&
<li>
<Link
to={{
pathname: `/hello/${this.state.nextPage}`,
query:{thing: 'fdsa'}}} >
Home 2
</Link>
</li>
}
<NavLink to="/hello">Home 3</NavLink>
</React.Fragment>
);
}
}
class App extends React.Component {
render() {
return (
<React.Fragment>
<Link to={{
pathname:'/ideas/:id',
id: 222,
item: {
okay: 123
}}}>Ideas</Link>
<Switch>
<Route exact path='/ideas/:id/' component={Ideas}/>
<Route path='/hello/:WORLD?/:thing?' component={World}/>
</Switch>
</React.Fragment>
);
}
}
ReactDOM.render((
<BrowserRouter>
<App />
</BrowserRouter>
), document.getElementById('ideas'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-router-dom/4.3.1/react-router-dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-router/4.3.1/react-router.min.js"></script>
<div id="ideas"></div>
1.x থেকে 2.x আপগ্রেড গাইড থেকে:
<Link to>
, onEnter, এবং isactive ব্যবহারের অবস্থান বর্ণনাকারী
<Link to>
স্ট্রিং ছাড়াও এখন কোনও অবস্থানের বিবরণী নিতে পারে। ক্যোয়ারী এবং রাষ্ট্রীয় প্রপসগুলি হ্রাস করা হয়েছে।
// ভি 1.0.x
<Link to="/foo" query={{ the: 'query' }}/>
// ভি 2.0.0
<Link to={{ pathname: '/foo', query: { the: 'query' } }}/>
// এখনও বৈধ 2.x
<Link to="/foo"/>
একইভাবে, অন্টর হুক থেকে পুনঃনির্দেশ করা এখন একটি অবস্থান বর্ণনাকারী ব্যবহার করে।
// ভি 1.0.x
(nextState, replaceState) => replaceState(null, '/foo')
(nextState, replaceState) => replaceState(null, '/foo', { the: 'query' })
// ভি 2.0.0
(nextState, replace) => replace('/foo')
(nextState, replace) => replace({ pathname: '/foo', query: { the: 'query' } })
কাস্টম লিঙ্ক-জাতীয় উপাদানগুলির জন্য, একইটি রাউটার.আইএসটিভ, পূর্ববর্তী ইতিহাস.আইস্যাকটিভের জন্য প্রযোজ্য।
// ভি 1.0.x
history.isActive(pathname, query, indexOnly)
// ভি 2.0.0
router.isActive({ pathname, query }, indexOnly)
/ideas/${this.props.testvalue}
}>। This.prop.testvalue like </Link>