'use client'; import { Clover, Film, Home, Search, Tv } from 'lucide-react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; interface MobileBottomNavProps { /** * 主动指定当前激活的路径。当未提供时,自动使用 usePathname() 获取的路径。 */ activePath?: string; } const MobileBottomNav = ({ activePath }: MobileBottomNavProps) => { const pathname = usePathname(); // 当前激活路径:优先使用传入的 activePath,否则回退到浏览器地址 const currentActive = activePath ?? pathname; const navItems = [ { icon: Home, label: '首页', href: '/' }, { icon: Search, label: '搜索', href: '/search' }, { icon: Tv, label: 'IPTV', href: '/iptv' }, { icon: Film, label: '电影', href: '/douban?type=movie', }, { icon: Clover, label: '综艺', href: '/douban?type=show', }, ]; const isActive = (href: string) => { const typeMatch = href.match(/type=([^&]+)/)?.[1]; // 解码URL以进行正确的比较 const decodedActive = decodeURIComponent(currentActive); const decodedItemHref = decodeURIComponent(href); return ( decodedActive === decodedItemHref || (decodedActive.startsWith('/douban') && decodedActive.includes(`type=${typeMatch}`)) ); }; return ( ); }; export default MobileBottomNav;