admin管理员组文章数量:1355532
I created a navbar in nextjs that uses clerk for authentication. The sidebar shows 'sign up' and 'sign out' menu items when the user is signed out. When the user is signed in the menu items should disappear. But whenever I go to a new page or refresh the page when the user is signed in, the 'sign up' and 'sign out' menu items appear for a second and then disappear. But what should happen is the 'sign up' and 'sign out' menu items items should never appear because the user is signed in.
'use client'
import { useAuth } from "@clerk/nextjs";
import { useEffect, useState } from "react";
import { useContext } from 'react';
import { createContext } from 'react';
export const SideBarContext = createContext(true);
const navItems = [
{ icon: 'ICON', label: 'Dashboard', path: '/dashboard' },
{ icon: 'ICON', label: 'Learn', path: '' },
{ icon: 'ICON', label: 'Quiz', path: '/quizzes' },
{ icon: 'ICON', label: 'Sign up', path: '/signup' },
{ icon: 'ICON', label: 'Sign in', path: '/signin' },
{ icon: 'ICON', label: 'Shop', path: '' },
{ icon: 'ICON', label: 'Setting', path: '' },
]
const Menu = () => {
const expanded = useContext(SideBarContext)
const { signOut, isSignedIn } = useAuth()
const menuItems = navItems.map(item => {
if (!(isSignedIn && (item.label == 'Sign in' || item.label == 'Sign up'))) {
return <li key={item.label} className='flex gap-2'><span>{item.icon}</span>{expanded && <a href={item.path}>{item.label}</a>}</li>
}
})
const logout = () => {
signOut()
}
return (
<ul className={`text-2xl flex flex-col gap-2 ${expanded ? "items-start" : "items-center"}`}>
{menuItems}
{<li onClick={logout}>Log out</li>}
</ul>
)
}
export function NavBar() {
const [expanded, setExpanded] = useState(true);
const handleClick = () => {
setExpanded(!expanded)
}
const Toggle = () => {
return (
<div onClick={handleClick}>
<label className="btn btn-circle swap swap-rotate" onClick={handleClick}>
<input type="checkbox" checked={expanded} onChange={handleClick} />
<svg
className="swap-off fill-current"
xmlns=";
width="32"
height="32"
viewBox="0 0 512 512">
<path d="M64,384H448V341.33H64Zm0-106.67H448V234.67H64ZM64,128v42.67H448V128Z" />
</svg>
<svg
className="swap-on fill-current"
xmlns=";
width="32"
height="32"
viewBox="0 0 512 512">
<polygon
points="400 145.49 366.51 112 256 222.51 145.49 112 112 145.49 222.51 256 112 366.51 145.49 400 256 289.49 366.51 400 400 366.51 289.49 256 400 145.49" />
</svg>
</label>
</div>
)
}
return (
<div className={` bg-blue-500 flex items-start min-h-screen transition-all duration-500 ease-in-out ${expanded ? "w-[256px] min-w-[256px]" : "w-[64px] min-w-[64px]"}`}>
<div className={`bg-blue-500 overflow-x-hidden h-full fixed top-0 transition-all duration-500 ease-in-out ${expanded ? "w-[256px]" : "w-[64px]"}`}>
<Toggle />
<div className="text-4xl mb-5">Title</div>
<div>{expanded ? "true" : "false"}</div>
<SideBarContext value={expanded}>
<Menu />
</SideBarContext>
</div>
</div >
)
}
I created a navbar in nextjs that uses clerk for authentication. The sidebar shows 'sign up' and 'sign out' menu items when the user is signed out. When the user is signed in the menu items should disappear. But whenever I go to a new page or refresh the page when the user is signed in, the 'sign up' and 'sign out' menu items appear for a second and then disappear. But what should happen is the 'sign up' and 'sign out' menu items items should never appear because the user is signed in.
'use client'
import { useAuth } from "@clerk/nextjs";
import { useEffect, useState } from "react";
import { useContext } from 'react';
import { createContext } from 'react';
export const SideBarContext = createContext(true);
const navItems = [
{ icon: 'ICON', label: 'Dashboard', path: '/dashboard' },
{ icon: 'ICON', label: 'Learn', path: '' },
{ icon: 'ICON', label: 'Quiz', path: '/quizzes' },
{ icon: 'ICON', label: 'Sign up', path: '/signup' },
{ icon: 'ICON', label: 'Sign in', path: '/signin' },
{ icon: 'ICON', label: 'Shop', path: '' },
{ icon: 'ICON', label: 'Setting', path: '' },
]
const Menu = () => {
const expanded = useContext(SideBarContext)
const { signOut, isSignedIn } = useAuth()
const menuItems = navItems.map(item => {
if (!(isSignedIn && (item.label == 'Sign in' || item.label == 'Sign up'))) {
return <li key={item.label} className='flex gap-2'><span>{item.icon}</span>{expanded && <a href={item.path}>{item.label}</a>}</li>
}
})
const logout = () => {
signOut()
}
return (
<ul className={`text-2xl flex flex-col gap-2 ${expanded ? "items-start" : "items-center"}`}>
{menuItems}
{<li onClick={logout}>Log out</li>}
</ul>
)
}
export function NavBar() {
const [expanded, setExpanded] = useState(true);
const handleClick = () => {
setExpanded(!expanded)
}
const Toggle = () => {
return (
<div onClick={handleClick}>
<label className="btn btn-circle swap swap-rotate" onClick={handleClick}>
<input type="checkbox" checked={expanded} onChange={handleClick} />
<svg
className="swap-off fill-current"
xmlns="http://www.w3./2000/svg"
width="32"
height="32"
viewBox="0 0 512 512">
<path d="M64,384H448V341.33H64Zm0-106.67H448V234.67H64ZM64,128v42.67H448V128Z" />
</svg>
<svg
className="swap-on fill-current"
xmlns="http://www.w3./2000/svg"
width="32"
height="32"
viewBox="0 0 512 512">
<polygon
points="400 145.49 366.51 112 256 222.51 145.49 112 112 145.49 222.51 256 112 366.51 145.49 400 256 289.49 366.51 400 400 366.51 289.49 256 400 145.49" />
</svg>
</label>
</div>
)
}
return (
<div className={` bg-blue-500 flex items-start min-h-screen transition-all duration-500 ease-in-out ${expanded ? "w-[256px] min-w-[256px]" : "w-[64px] min-w-[64px]"}`}>
<div className={`bg-blue-500 overflow-x-hidden h-full fixed top-0 transition-all duration-500 ease-in-out ${expanded ? "w-[256px]" : "w-[64px]"}`}>
<Toggle />
<div className="text-4xl mb-5">Title</div>
<div>{expanded ? "true" : "false"}</div>
<SideBarContext value={expanded}>
<Menu />
</SideBarContext>
</div>
</div >
)
}
Share
Improve this question
asked Mar 31 at 17:19
user30123003user30123003
11 bronze badge
New contributor
user30123003 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1 Answer
Reset to default 0Not sure, but this might work. If you render it with conditionally by using
const { isLoaded } = useAuth();
Make use of isLoaded to stop render the component eg:
if (!isLoaded) {
// Prevent rendering until auth state is loaded
return null;
}
本文标签: reactjssidebar menu items show for a second then disappearsStack Overflow
版权声明:本文标题:reactjs - sidebar menu items show for a second then disappears - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743931638a2563950.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论