Last active
November 9, 2023 00:26
-
-
Save moshemal/540ccb312b3d9941463789eff3c565a4 to your computer and use it in GitHub Desktop.
Debug react-router routings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'; | |
import Login from 'components/Login' | |
import DefaultComponent from 'components/DefaultComponent' | |
class DebugRouter extends Router { | |
constructor(props){ | |
super(props); | |
console.log('initial history is: ', JSON.stringify(this.history, null,2)) | |
this.history.listen((location, action)=>{ | |
console.log( | |
`The current URL is ${location.pathname}${location.search}${location.hash}` | |
) | |
console.log(`The last navigation action was ${action}`, JSON.stringify(this.history, null,2)); | |
}); | |
} | |
} | |
class App extends Component { | |
render() { | |
return ( | |
<DebugRouter> | |
<Switch> | |
<Route exact path="/login" name="Login Page" component={Login} /> | |
<Route path="/" name="Home" component={DefaultComponent} /> | |
</Switch> | |
</DebugRouter> | |
); | |
} | |
} |
Here is the hacky way to use this with a Typescirpt
based project.
- Create
DebugRouter.jsx
file. - Copy & Paste these codes.
import {BrowserRouter} from "react-router-dom";
// noinspection JSUnresolvedVariable
export class DebugRouter extends BrowserRouter {
constructor(props) {
super(props);
console.log('initial history is: ', JSON.stringify(this.history, null, 2))
this.history.listen((location, action) => {
console.log(
`The current URL is ${location.pathname}${location.search}${location.hash}`
)
console.log(`The last navigation action was ${action}`, JSON.stringify(this.history, null, 2));
});
}
}
- Basically you have to ignore
ts-lint
error.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For TypeScript I get
Property 'history' does not exist on type 'DebugRouter'.ts(2339)
Any suggestions? Using react-router-dom v5.2.0.
Edit: Used useHistory to get history object instead.