修复header导致服务端客户端渲染不一致问题

This commit is contained in:
2025-05-12 22:51:43 +08:00
parent 94276be2b7
commit 8e97636913

View File

@@ -3,7 +3,7 @@
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import Link from "next/link"; import Link from "next/link";
import { usePathname } from "next/navigation"; import { usePathname } from "next/navigation";
import { useState } from "react"; import { useCallback, useState } from "react";
import { import {
Drawer, Drawer,
DrawerContent, DrawerContent,
@@ -21,11 +21,18 @@ export default function Header() {
const [showMenu, setShowMenu] = useState(false); const [showMenu, setShowMenu] = useState(false);
const menuItems = [ const menuItems = [
{ name: '特恩(TONE)', href: '/' }, { name: '特恩(TONE)', path: '/' },
{ name: '资源', href: '/resource' }, { name: '资源', path: '/resource' },
{ name: '博客', href: '/blog' }, { name: '博客', path: '/blog' },
{ name: '控制台', href: '/console/login' }, { name: '控制台', path: '/console' },
] ];
const getHref = useCallback((path: string) => {
if (path === '/console') {
return localStorage.getItem('token') ? '/console' : '/console/login';
}
return path;
}, []);
return ( return (
<header className="sticky top-0 z-50 backdrop-blur-sm bg-white/40 shadow"> <header className="sticky top-0 z-50 backdrop-blur-sm bg-white/40 shadow">
@@ -61,11 +68,11 @@ export default function Header() {
{menuItems.slice(1).map((item) => ( {menuItems.slice(1).map((item) => (
<Link <Link
key={item.name} key={item.name}
href={item.href} href={getHref(item.path)}
onClick={() => setShowMenu(false)} onClick={() => setShowMenu(false)}
> >
<Button className="w-full" size='lg' <Button className="w-full" size='lg'
variant={pathname.startsWith(item.href) ? 'default' : 'outline'} variant={pathname.startsWith(item.path) ? 'default' : 'outline'}
>{item.name}</Button> >{item.name}</Button>
</Link> </Link>
))} ))}
@@ -78,11 +85,11 @@ export default function Header() {
)}> )}>
{menuItems.slice(1).map((item) => ( {menuItems.slice(1).map((item) => (
<Link <Link
key={item.href} key={item.name}
href={item.href} href={getHref(item.path)}
className={cn( className={cn(
"cursor-pointer md:text-lg font-medium text-zinc-500 hover:text-zinc-800 border-b-4 border-transparent duration-200", "cursor-pointer md:text-lg font-medium text-zinc-500 hover:text-zinc-800 border-b-4 border-transparent duration-200",
pathname.startsWith(item.href) && "text-zinc-800 border-b-pink-500" pathname.startsWith(item.path) && "text-zinc-800 border-b-pink-500"
)} )}
> >
{item.name} {item.name}