How to use react-router-dom
Create a protected route and store the response in localStorage so that the user can view its details again the next time it is opened. After logging in, you should be redirected to the dashboard page.
All functions are added in ContextApi.
Codesandbox link: Code
I tried, but couldn't achieve it.
Routing page
import React, { useContext } from "react"; import { globalC } from "./context"; import { Route, Switch, BrowserRouter } from "react-router-dom"; import About from "./About"; import Dashboard from "./Dashboard"; import Login from "./Login"; import PageNotFound from "./PageNotFound"; function Routes() { const { authLogin } = useContext(globalC); console.log("authLogin", authLogin); return ( <BrowserRouter> <Switch> {authLogin ? ( <> <Route path="/dashboard" component={Dashboard} exact /> <Route exact path="/About" component={About} /> </> ) : ( <Route path="/" component={Login} exact /> )} <Route component={PageNotFound} /> </Switch> </BrowserRouter> ); } export default Routes;
Context page
import React, { Component, createContext } from "react"; import axios from "axios"; export const globalC = createContext(); export class Gprov extends Component { state = { authLogin: null, authLoginerror: null }; componentDidMount() { var localData = JSON.parse(localStorage.getItem("loginDetail")); if (localData) { this.setState({ authLogin: localData }); } } loginData = async () => { let payload = { token: "ctz43XoULrgv_0p1pvq7tA", data: { name: "nameFirst", email: "internetEmail", phone: "phoneHome", _repeat: 300 } }; await axios .post(`https://app.fakejson.com/q`, payload) .then((res) => { if (res.status === 200) { this.setState({ authLogin: res.data }); localStorage.setItem("loginDetail", JSON.stringify(res.data)); } }) .catch((err) => this.setState({ authLoginerror: err }) ); }; render() { // console.log(localStorage.getItem("loginDetail")); return ( <globalC.Provider value={{ ...this.state, loginData: this.loginData }} > {this.props.children} </globalC.Provider> ); } }
For v6:
Link to documentation: https://gist.github.com/mjackson/d54b40a094277b7afdd6b81f51a0393f
question
Switch
does not handle any rendering except forRoute
andRedirect
components. If you wanted to "nest" like this, then you would need to wrap each component in a common route, but this is completely unnecessary.Your login component also does not handle redirecting back to the "homepage" or private route originally visited.
solution
react-router-dom
v6In version 6, custom routing components are no longer popular, and the recommended method is to use the authentication layout component.
...
or
...
react-router-dom
v5Create a
PrivateRoute
component that consumes your authentication context.Update your
Login
component to handle redirects back to the original access route.Render all routes in a "flat list"