react-router-hash-history

0.2.3 • Public • Published

React Router Hash History

Use React-Router and History change Page, can use in React \ ReactNative \ ReactXP

Install

add package.json

"dependencies"{
  "react-router-hash-history": "git+https://github.com/ymzuiku/react-router-hash-history.git",
}

yarn install:

yarn install

How to use

Create two componen

class Desktop extends React.Component{
  render(){
    return <View>
      <Text>Desktop</Text>
    </View>
  }
}
class Discover extends React.Component{
  render(){
    return <View>
      <Text>Discover</Text>
    </View>
  }
}
// in react or react-native App.js use the components
import {Router, Route, history, Switch,Redirect,hashChange} from 'react-router-hash-history'
class App extends RX.Component {
  componentDidMount(){
    // if begin use other URL page, to be use hashChange()
    hashChange()
  }
  render() {
    return (
      <Router history={history} >
        <View style={[ss.box]} >
          <Text onPress={()=>{
            // changeURL and Router
            history.push('/Discover/')
          }} style={[ss.text]} >Go to Discover</Text>
          <Text  onPress={()=>{
            // changeURL and Router
            history.push('/Desktop/')
          }} style={[ss.text]} >Go to Desktop</Text>
          <Switch >
          <Route exact path='/Discover/*' component={Discover} ></Route>
          <Route exact path='/Desktop/*' component={Desktop} ></Route>
          </Switch>
        </View>
      </Router>
    )
  }
}

Dependents (0)

Package Sidebar

Install

npm i react-router-hash-history

Weekly Downloads

1

Version

0.2.3

License

ISC

Unpacked Size

94.4 kB

Total Files

12

Last publish

Collaborators

  • ymblender