Hook up sidebar options to the current page

This commit is contained in:
Austin Chen 2022-03-17 10:03:30 -07:00
parent 18b3e25995
commit 50ab6dc6de

View File

@ -3,14 +3,19 @@ import {
FireIcon, FireIcon,
UserGroupIcon, UserGroupIcon,
TrendingUpIcon, TrendingUpIcon,
SearchIcon,
CollectionIcon,
} from '@heroicons/react/outline' } from '@heroicons/react/outline'
import clsx from 'clsx' import clsx from 'clsx'
import Link from 'next/link'
import { useRouter } from 'next/router'
const navigation = [ const navigation = [
{ name: 'Home', href: '#', icon: HomeIcon, current: true }, { name: 'Home', href: '/home', icon: HomeIcon },
{ name: 'Popular', href: '#', icon: FireIcon, current: false }, { name: 'Markets', href: '/markets', icon: SearchIcon },
{ name: 'Communities', href: '#', icon: UserGroupIcon, current: false }, { name: 'Communities', href: '/folds', icon: UserGroupIcon },
{ name: 'Trending', href: '#', icon: TrendingUpIcon, current: false }, { name: 'Trades', href: '/trades', icon: CollectionIcon },
// { name: 'Trending', href: '#', icon: TrendingUpIcon, current: false },
] ]
const communities = [ const communities = [
@ -25,24 +30,28 @@ const communities = [
] ]
export default function Sidebar() { export default function Sidebar() {
const router = useRouter()
const currentPage = router.pathname
return ( return (
<nav aria-label="Sidebar" className="sticky top-4 divide-y divide-gray-300"> <nav aria-label="Sidebar" className="sticky top-4 divide-y divide-gray-300">
<div className="space-y-1 pb-8"> <div className="space-y-1 pb-8">
{navigation.map((item) => ( {navigation.map((item) => (
<Link href={item.href} key={item.name}>
<a <a
key={item.name} key={item.name}
href={item.href} href={item.href}
className={clsx( className={clsx(
item.current item.href == currentPage
? 'bg-gray-200 text-gray-900' ? 'bg-gray-200 text-gray-900'
: 'text-gray-600 hover:bg-gray-50', : 'text-gray-600 hover:bg-gray-50',
'group flex items-center rounded-md px-3 py-2 text-sm font-medium' 'group flex items-center rounded-md px-3 py-2 text-sm font-medium'
)} )}
aria-current={item.current ? 'page' : undefined} aria-current={item.href == currentPage ? 'page' : undefined}
> >
<item.icon <item.icon
className={clsx( className={clsx(
item.current item.href == currentPage
? 'text-gray-500' ? 'text-gray-500'
: 'text-gray-400 group-hover:text-gray-500', : 'text-gray-400 group-hover:text-gray-500',
'-ml-1 mr-3 h-6 w-6 flex-shrink-0' '-ml-1 mr-3 h-6 w-6 flex-shrink-0'
@ -51,6 +60,7 @@ export default function Sidebar() {
/> />
<span className="truncate">{item.name}</span> <span className="truncate">{item.name}</span>
</a> </a>
</Link>
))} ))}
</div> </div>
<div className="pt-10"> <div className="pt-10">