Login Logout in Navbar - javascript

I hope you are ok.
I'm trying to switch to log out in Navabar when the user is logged in, but when I console log I get isloggedin false, even though the user is logged in and the token is stored in localstorage.
here is my code:
App.js
const App = () => {
const [isLoggedIn, setLoggedIn] = useState(false)
console.log(isLoggedIn)
const handleLogin = token => {
if (!token) return
localStorage.setItem('token', token)
setLoggedIn(true)
}
const handleLogout = () => () => {
setLoggedIn(false)
localStorage.clear()
}
return (
<div className="App">
<Router>
<Navbar isLoggedIn={isLoggedIn} logout={handleLogout} />
<Switch>
<Route
exact path='/'
component={props => (
<Login {...props} onLogin={handleLogin} />
)}></Route>
<Route exact path="/signin" component={Signin}></Route>
<Route exact path="/feed" component={Feed}></Route>
<Route exact path="/withuser" component={Withuser}></Route>
</Switch>
</Router>
</div>
)
}
export default App;
<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>
Navbar.js:
const TheNavbar = (props) => {
console.log(props)
return (
<div className="navbar">
<Navbar>
<NavbarBrand>
<NavLink id="logo" tag={Link} exact to="/">
<img src="/img/logounax.png" alt="image" style={{ width: 150 }} />
</NavLink>
</NavbarBrand>
<Nav>
{props.isLoggedIn ? (
<Nav>
<NavLink className="link-pink" tag={Link} exact to="/feed">
Profile
</NavLink>
<NavLink
className="link-pink"
tag={Link}
exact to="/"
onClick={props.logout()}>
Logout
</NavLink>
</Nav>
) : (
<Nav>
<NavLink className="link-pink" tag={Link} exact to="/">
Login
</NavLink>
<NavLink className="link-pink" tag={Link} exact to="/signin">
Signin
</NavLink>
</Nav>
)}
</Nav>
</Navbar>
</div>
)
}
<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>
Any ideas why is this happening?
Thank you in advance.
(Post edited)

I check your code there are some issue. You are trying toke check on handleLogin which will only check when you click on handleLogin. What happen if user refresh the page. It will ideally redirect to dashboard page if token is available. So you have to add useEffect which checks on component mount. Basically you need to add this in your App.js component. It will check when component is mounted first time only and if token is available it will set it
useEffect(() => {
if (localStorage.getItem("token")) {
setLoggedIn(true);
}
}, []);
Just add this snippet in your file. It automatically works if every other things are correct.
You still dont added complete code ;-). But I dont think it will required. This will solve your that problem
I modify your sandbox. If you want to test the functionality type test for both field. Here is the demo

Related

React shows another page and then the Homepage, whe navigating to Homepage

I am new to React and I am using the Traversy crash course and the extra video about the react router 6+.
My Routes are like
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'
return (
<div className="container">
<Router>
<Header
title='sikyona'
onAdd={()=> setShowAddtask(!showAddTask)}
showAdd={showAddTask}
/>
<Routes>
<Route
path='/'
element={
<>
{showAddTask && <AddTask onAdd={addTask} />}
{tasks.length > 0
? <Tasks tasks={tasks} onDelete={deleteTask} />
:<p>add tasks</p>
}
</>
}
/>
<Route path='/about' element={<About/>} />
</Routes>
<Footer />
</Router>
</div>
);
The problem is that when I navigate to the homepage http://localhost:3000/ I first see the About page for a second, and then the homepage (Route path='/'...)
I have "react-router-dom": "^6.4.1",
What is this happening and how can I fix it?
The issue isn't that the "About" page or About component is being rendered when the app is loading or navigating to "/" for the first time. It's that the app is actually on "/" and there's no tasks to display just yet and the UI is rendering the container, Header, the Route for path="/" with the "add tasks" text, and the Footer which renders a link to "/about".
Contrast this rendered UI with the actual "/about" path and About component.
Perhaps the UI/UX is fine for you with regards to this behavior and understanding what exactly is being rendered when, and for what reason. If on the other hand you don't want to see any of the UI until data has been loaded you can tweak the code to render nothing or some loading indicator while the tasks are fetched.
Example:
function App() {
const [showAddTask, setShowAddtask] = useState(false);
const [tasks, setTasks] = useState(); // <-- initially undefined
useEffect(() => {
const getTasks = async () => {
try {
const tasks = await fetchTasks();
setTasks(tasks); // <-- defined and populated
} catch(error) {
// log errors, display message, etc... or ignore
setTasks([]); // <-- defined and empty
}
};
getTasks();
}, []);
...
if (!tasks) {
return null; // <-- return null or loading indicator/spinner/etc
}
return (
<div className="container">
<Router>
<Header
title="hello"
onAdd={() => setShowAddtask(show => !show)}
showAdd={showAddTask}
/>
<Routes>
<Route
path="/"
element={
<>
{showAddTask && <AddTask onAdd={addTask} />}
{tasks.length ? (
<Tasks tasks={tasks} onDelete={deleteTask} />
) : (
<p>add tasks</p>
)}
</>
}
/>
<Route path="/about" element={<About />} />
<Route path="/task-details/:id" element={<TaskDetails />} />
</Routes>
<Footer />
</Router>
</div>
);
}
Try to put your <Route path='/' /> last in the list.

React Js how to jump whole pages to other pages when click on the navigation button

I am doing a react js project which include dual language when click on button eng/chi, My whole Pages need to change to english include header and footer. So i had create 2 .js every file which is chi and eng.
How do i jump to the EngMainPage when i click on the button?
In my App.js i using this ways to make it the 1st page when i start the program
import ChineseHomePage from './components/pages/Chinese/ChineseHomePage'
<Switch>
<Route path='/' exact component={ChineseHomePage } />
</Switch>
In my ChineseHomePage i use <Navbar /> to call for the section (under ./components/pages/Chinese/ChineseHomePage)
In my Navbar i have one part which try to use
<li className='nav-item'>
<Link to = {"/WHATSHOULDIPUTHERE"} className='nav-links' onClick={closeMobileMenu}>
中文 / Eng
</Link>
</li>
The objective is when i click on the link, i want to redirect the website to a file at /components/pages/Eng/EngHomePage.js
which part should i add the Route path and what should put in WHATSHOULDIPUTHERE
I would use same routes and dynamic components like this:
...
<Route path='/' exact component={HomePage}/>
...
const HomePage = () => {
const [lang, setLang] = useState('eng');
return lang === 'eng' ? <EnglishHomePage/> : <ChineseHomePage/>
}
You can follow the following methods to fulfill your objective. Personally I prefer method 2 due to that method provides a more robust solution.
Method 1
Define two routes for each Home page component and navigate to relevant route when needed.
App.js
import ChineseHomePage from './components/pages/Chinese/ChineseHomePage'
import EnglishHomePage from './components/pages/Eng/EngHomePage'
<Switch>
<Route path='/ch' exact component={ChineseHomePage} />
<Route path='/en' exact component={EnglishHomePage} />
</Switch>
NavBar.js
<li className='nav-item'>
<Link to="/ch" className='nav-links' onClick={closeMobileMenu}>
中文
</Link>
/
<Link to="/en" className='nav-links' onClick={closeMobileMenu}>
Eng
</Link>
</li>
Method 2
use an useState hook to set your language and render the relevant component according to the set language.
Note: You have to pass the dispatch function of language hook from App.js to other components as a prop.
App.js
import ChineseHomePage from './components/pages/Chinese/ChineseHomePage'
import EnglishHomePage from './components/pages/Eng/EngHomePage'
const [language, setLanguage] = useState('eng');
<Switch>
<Route path='/' exact component={() => {
language == 'eng' ? (<EnglishHomePage setLanguage={setLanguage} />) : (<ChineseHomePage setLanguage={setLanguage} />)
}} />
</Switch>
EngHomePage.js
const EnglishHomePage = ({ setLanguage }) => {
...
<NavBar setLanguage={setLanguage} />
...
}
ChineseHomePage.js
const ChineseHomePage = ({ setLanguage }) => {
...
<NavBar setLanguage={setLanguage} />
...
}
NavBar
const NavBar = ({ setLanguage }) => {
...
<li className='nav-item'>
<div className='nav-links' role='button' onClick={() => {
setLanguage('chi');
closeMobileMenu();
}}>
中文
</div>
/
<div className='nav-links' role='button' onClick={() => {
setLanguage('eng');
closeMobileMenu();
}}>
Eng
</div>
</li>
...
}

How to detect matched route from a component outside of the <Route/> component that was matched using react-router?

I've got the following structure in my React app, using react-router-dom.
<Router>
<Header/>
<Main>
<AllRoutes> // THIS HANDLES THE SWITCH WITH ALL THE ROUTES
<Switch>
<Route exact path={ROUTES.HOME} component={Home}/>
<Route exact path={ROUTES.ABOUT} component={About}/>
<Route exact path={ROUTES.PRIVACY} component={Privacy}/>
// ETC
</Switch>
</AllRoutes>
</Main>
<Footer/> // <==== FOOTER NEEDS TO KNOW WHICH ROUTE HAS BEEN MATCH
<Router>
QUESTION
Footer needs to know what <Route/> has been match. What is the best pattern to achieve that?
OPTION #1
I found the useRouteMatch hook over on react router docs:
This would kind of work, but I don't think it is good enough for my situation. Because a URL string can match a route and still don't be a valid route at the same time.
For example:
Route: /:language/privacy
Valid route: /en/privacy
Not valid route that would also match: /notALanguage/privacy
Once a route has match, I usually need to check if it is valid before rendering a component page or the 404 page.
Like:
<Route exact path={"/:language/privacy"} render={(routeProps) => {
const possibleLanguage = routeProps.match.params.language;
if (possibleLanguage in LANGUAGES) {
return(
<PrivacyPage lang={possibleLanguage}/>
);
}
else {
return(
<Page404/>
);
}
}}/>
OPTION #2
What I'm thinking about doing is:
App.js calls useLocation. So it always re-render when there is a route change.
I could add a detectRoute function in App.js to do all the route checking beforehand.
And my AllRoutes component wouldn't need a component. I would implement a native JS switch and render the corresponding route.
This way I know upfront which <Route/> is going to match and I can pass it on to <Footer/> or any component that lives outside of the matched <Route/>.
Something like this:
SandBox Link
export default function App() {
console.log("Rendering App...");
const location = useLocation();
// THIS WOULD BE THE detectRoute FUNCTION
// I COULD EVEN USE THE useRouteMatch HOOK IN HERE
const matchedRoute =
location.pathname === ROUTE1
? "ROUTE1"
: location.pathname === ROUTE2
? "ROUTE2"
: "404";
return (
<div>
<div className="App">
<Link to={ROUTE1}>Route 1</Link>
<Link to={ROUTE2}>Route 2</Link>
<Link to={"/whatever"}>Route 404</Link>
</div>
<div>
<AllRoutes matchedRoute={matchedRoute} />
</div>
</div>
);
}
function AllRoutes(props) {
switch (props.matchedRoute) {
case "ROUTE1":
return <Route exact path={ROUTE1} component={Page1} />;
case "ROUTE2":
return <Route exact path={ROUTE2} component={Page2} />;
default:
return <Route exact path={"*"} component={Page404} />;
}
}
It works. But I would like to know if there's a proper way of doing this, 'cause this seems a bit weird and there might be something out there that was specifically designed for this.
Generally you want to either:
Wrap the components together
Create another switch to route them (and pass match params)
I put together a somewhat comprehensive example of the options. Hope that helps!
import React from "react";
import "./styles.css";
import { Switch, Link, Route, BrowserRouter } from "react-router-dom";
const hoc = (Component, value) => () => (
<>
<main>
<Component />
</main>
<Footer value={value} />
</>
);
const Wrapper = ({ component: Component, value }) => (
<>
<main>
<Component />
</main>
<Footer value={value} />
</>
);
const WrapperRoute = ({ component, value, ...other }) => (
<Route
{...other}
render={props => <Wrapper component={component} value={value} {...props} />}
/>
);
const Footer = ({ value }) => <footer>Footer! {value}</footer>;
const Header = () => <header>Header!</header>;
const Another = () => <Link to="/onemore">One More!</Link>;
const Home = () => <Link to="/other">Other!</Link>;
const OneMore = () => <Link to="/">Home!</Link>;
const Other = () => <Link to="/another">Another!</Link>;
export default () => (
<BrowserRouter>
<Header />
<Switch>
{/* You could inline it! */}
<Route
path="/another"
render={() => (
<>
<main>
<Another />
</main>
<Footer value="" />
</>
)}
/>
{/* You could use a custom route component (that uses an HOC or a wrapper) */}
<WrapperRoute
component={OneMore}
path="/onemore"
value="I got one more!"
/>
{/* You could use a Higher-Order Component! */}
<Route path="/other" component={hoc(Other, "I got other!")} />
{/* You could use a wrapper component! */}
<Route
path="/"
render={() => <Wrapper component={Home} value="I got home!" />}
/>
</Switch>
{/* You could have another switch for your footer (inline or within the component) */}
<Switch>
<Route
path="/another"
render={() => <Footer value="Switch footer another!" />}
/>
<Route
path="/other"
render={() => <Footer value="Switch footer other!" />}
/>
<Route
path="/onemore"
render={() => <Footer value="Switch footer onemore!" />}
/>
<Route path="/" render={() => <Footer value="Switch footer home!" />} />
</Switch>
</BrowserRouter>
);
Note the WrapperRoute would allow you to do validation on your match params before passing them through. You could do a Redirect if needed.
What I've ended up doing:
Since I'm using Redux, I added a piece of global state to keep track of the matched route.
And I dispatch actions to update that state from the render prop from the <Route/>'s component.
<Switch>
<Route key={index} exact path={"/some-route"} render={(routeProps) => {
// HERE I DISPATCH AN ACTION TO CHANGE THE STATE FOR THE CURRENT ROUTE
dispatch({
type: UPDATE_CURRENT_ROUTE,
payload: { name: "SOME_ROUTE_NAME" }
});
return (
<PrivacyPage
{...routeProps}
/>
);
}}/>
</Switch>
And now I can do on Footer.js:
function Footer() {
const currentRoute = useSelector((state) => state.currentRoute);
// RENDER FOOTER ACCORDINGLY TO THE CURRENT ROUTE
}

How to change NavBar text on login/logout in React.JS?

I have a Navigation bar in my project which I call from inside App.js. Based on if I am logged in or not, I want to render different views of NavBar. If logged in, I want the NavBar to have a logout button. And if logged out, I want the NavBar to have login button. I use a token in localStorage to check if I am logged in or not. When logged in, token is present in localStorage. On logout/before login, there is no token key in localStorage. I pass this token as a state to NavBar as shown:
export default function App() {
const [loggedIn, setLoggedIn] = useState(localStorage.getItem("token"));
return (
<div>
<Router>
<Navbar isAuth={loggedIn} />
<Route exact path="/" exact component={Home} />
<Route path="/login" component={Login} />
<PrivateRoute path="/dashboard" component={Dashboard} />
</Router>
</div>
);
}
Now from NavBar component, I use this prop to render different views of NavBar as shown below:
const NavBar = props => {
const classes = useStyles();
if (props.isAuth !== null) {
return (
<div className={classes.root}>
<AppBar position="static">
<Toolbar>
<Typography variant="h6" className={classes.title}>
<Link
href="/"
style={{ textDecoration: "none", color: "white" }}
>
Timetracker
</Link>
</Typography>
<Link href="/" style={{ color: "white" }}>
<Button color="inherit" onClick={auth.logout}>
Logout
</Button>
</Link>
</Toolbar>
</AppBar>
</div>
);
} else {
return (
<div className={classes.root}>
<AppBar position="static">
<Toolbar>
<Typography variant="h6" className={classes.title}>
<Link
href="/"
style={{ textDecoration: "none", color: "white" }}
>
Timetracker
</Link>
</Typography>
<Link href="/login" style={{ color: "white" }}>
<Button color="inherit">Login</Button>
</Link>
</Toolbar>
</AppBar>
</div>
);
}
};
export default NavBar;
The problem is that, the NavBar does not update itself as soon as I login. I have to manually refresh the page in order to render the new NavBar. Similarly on logout too, It does not update itself and updates only on manual refresh. What is the issue and how to solve this?
I found a simple solution:
use a componentDidMount() or useEffect() function which will render automatically upon loading the NavBar page.
Inside this function, use a setInterval() function to continually retrieve the auth status (say, an interval of 5000). This will continually refresh the NavBar, and change the button immediately.
I imagine you would have to put the auth check in the NavBar component itself, instead of using props. I put the specific buttons I wanted to change in a separate component called NavBarUser, which changes 'login | signup' to 'logout' and contains a user avatar. I then inserted this component into the NavBar itself at the appropriate place.
This is what my code looks like:
```
import React, { useState, useEffect } from 'react';
import Avatar from './Avatar';
import { BrowserRouter as Router, Link } from 'react-router-dom';
const NavBarUser = () => {
const [user, setUser] = useState({});
useEffect(() => {
{ /*
setInterval was used in order to refresh the page constantly
in order to have the "logout" button show immediately in place of
"login", as soon as user logs out.
*/}
setInterval(() => {
const userString = localStorage.getItem("user");
const user = JSON.parse(userString);
setUser(user);
}, [])
}, 5000);
const logout = () => {
return localStorage.removeItem("user");
}
if (!user) {
return (
<div className="navbar-nav ml-auto">
<Link to="/login" className="nav-item nav-link">Login</Link> <span
className="nav-item nav-link">|</span> <Link to="/SignUp" className="nav-item nav-
link">Sign Up</Link>
</div>
)
}
if (user) {
return (
<div className="navbar-nav ml-auto">
<Link to="/" className="nav-item nav-link" onClick={logout}>Logout</Link>
<Avatar img="/images/Eat-healthy.jpg" />
</div>
)
}
}
export default NavBarUser;
```
You need to add <Switch> as well. From the documentation:
Renders the first child or that matches the location.
<Switch> is unique in that it renders a route exclusively. In contrast, every <Route> that matches the location renders inclusively.
Just like the following:
<Router>
<Switch>
<Navbar isAuth={loggedIn} />
<Route exact path="/" exact component={Home} />
<Route path="/login" component={Login} />
<PrivateRoute path="/dashboard" component={Dashboard} />
</Switch>
</Router>
Read further here: Router
I hope that helps!
Your app's state won't update if you change the value of the token in localStorage.
You need to make sure you update the state, I've added a sandbox if it helps.
Here's how I solved this issue:
To start, I created a isLoggedIn state in my App class. I gave it a componentDidMount() method that would fetch the login state from a cookie on app start. Then I created globalLogin and globalLogout methods as arrow functions, which set the isLoggedIn state to true or false accordingly. I passed my Nav component the isLoggedIn state as a prop and passed the Login and Nav routes the globalLogin and globalLogout methods. These methods can then be called from Login or Nav with this.props.globalLogout(); or this.props.globalLogin();.
This is a simplified version of my App.js.
class App extends Component {
constructor(props){
super(props);
this.state = {
isLoggedIn: false,
}
}
componentDidMount() {
const token = Cookie.get("token") ? Cookie.get("token") : null;
if (token) {
this.setState({ "isLoggedIn": true });
}
}
globalLogin = () => {
this.setState({ "isLoggedIn": true });
}
globalLogout = () => {
this.setState({ "isLoggedIn": false });
}
render() {
return (
<Router>
<div className="App">
<Nav isLoggedIn={this.state.isLoggedIn} globalLogout={this.globalLogout}/>
<Switch>
<Route path="/" exact component={Home} />
<Route path="/login" exact>
<Login globalLogin={this.globalLogin}/>
</Route>
</Switch>
</div>
</Router>
);
}
}
EDIT: using history.push didn't work in login module above so I added an intermediate to handle props
render() {
const LoginIntermediate = (props) => {
return (
<Login {...props} globalLogin={this.globalLogin}/>
)
}
return (
<Router>
<div className="App">
<Nav isLoggedIn={this.state.isLoggedIn} globalLogout={this.globalLogout}/>
<Switch>
<Route path="/" exact component={Home} />
<Route path="/login" exact component={LoginIntermediate} />
</Switch>
</div>
</Router>
);
}

How can I access a route for a react chrome extension on a tab that I have opened in the browser?

My end goal is to create a chrome extension that will open a new page after clicking a NavLink on the extension's popup. However, the new tab does not seem to have access to any of the Routes I have already created. So, in my App.js file, I have the following render method:
render() {
return (
<Router><div>
<Toolbar />
<Route path="/" render={
() => {
return (
<div>
<h1>HELLO!</h1>
</div>
);
}
}/>
<Route path="/Profile" render={
() => {
return (<Profile />);
}
}/>
<Route path="/Signup" strict render={
() => {
return (<Signup />);
}
}/>
<Route path="/Login" strict render={
() => {
return (<Login />);
}
}/>
</div></Router>
);
}
And then in Toolbar.js, I have the following render method:
render() {
return (
<Router><div>
<Navbar color="dark" expand="md">
<NavbarBrand><Link to="/" target="_blank">Title</Link></NavbarBrand>
<NavbarToggler onClick={this.toggle} />
<Collapse isOpen={this.state.isOpen} navbar>
<Nav className="ml-auto" navbar>
<NavItem>
<NavLink to="/Profile" exact activeStyle={
{ color:'green' }
}>Profile</NavLink>
</NavItem>
<NavItem>
<NavLink to="/Signup" exact activeStyle={
{ color:'green' }
}>Signup</NavLink>
</NavItem>
<NavItem>
<NavLink to="/Login" exact activeStyle={
{ color:'green' }
}>Login</NavLink>
</NavItem>
</Nav>
</Collapse>
</Navbar>
</div></Router>
);
}
It should be opening index.html with the "/" route and display "HELLO!", but instead it goes to a page that reads:
This site can’t be reached The webpage at
chrome-extension://digmnhpjagkkhhhpfmokdmoejekfdinm/ might be
temporarily down or it may have moved permanently to a new web
address. ERR_UNEXPECTED

Categories

Resources