2024-04-09 10:51:05 +00:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
import { cn } from '@/lib/utils';
|
2024-04-23 11:22:41 +00:00
|
|
|
import { BookOpenText, Home, Search, SquarePen, Settings } from 'lucide-react';
|
2024-04-09 10:51:05 +00:00
|
|
|
import Link from 'next/link';
|
|
|
|
import { useSelectedLayoutSegments } from 'next/navigation';
|
2024-04-23 11:22:41 +00:00
|
|
|
import React, { Fragment, useState } from 'react';
|
2024-04-09 10:51:05 +00:00
|
|
|
import Layout from './Layout';
|
2024-04-23 11:22:41 +00:00
|
|
|
import { Dialog, Transition } from '@headlessui/react';
|
|
|
|
import SettingsDialog from './SettingsDialog';
|
2024-04-09 10:51:05 +00:00
|
|
|
|
|
|
|
const Sidebar = ({ children }: { children: React.ReactNode }) => {
|
|
|
|
const segments = useSelectedLayoutSegments();
|
|
|
|
|
2024-04-23 11:22:41 +00:00
|
|
|
const [isSettingsOpen, setIsSettingsOpen] = useState(false);
|
|
|
|
|
2024-04-09 10:51:05 +00:00
|
|
|
const navLinks = [
|
|
|
|
{
|
|
|
|
icon: Home,
|
|
|
|
href: '/',
|
|
|
|
active: segments.length === 0,
|
|
|
|
label: 'Home',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: Search,
|
|
|
|
href: '/discover',
|
|
|
|
active: segments.includes('discover'),
|
|
|
|
label: 'Discover',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: BookOpenText,
|
|
|
|
href: '/library',
|
|
|
|
active: segments.includes('library'),
|
|
|
|
label: 'Library',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div className="hidden lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-20 lg:flex-col">
|
|
|
|
<div className="flex grow flex-col items-center justify-between gap-y-5 overflow-y-auto bg-[#111111] px-2 py-8">
|
|
|
|
<a href="/">
|
|
|
|
<SquarePen className="text-white cursor-pointer" />
|
|
|
|
</a>
|
|
|
|
<div className="flex flex-col items-center gap-y-3 w-full">
|
|
|
|
{navLinks.map((link, i) => (
|
|
|
|
<Link
|
|
|
|
key={i}
|
|
|
|
href={link.href}
|
|
|
|
className={cn(
|
|
|
|
'relative flex flex-row items-center justify-center cursor-pointer hover:bg-white/10 hover:text-white duration-150 transition w-full py-2 rounded-lg',
|
|
|
|
link.active ? 'text-white' : 'text-white/70',
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<link.icon />
|
|
|
|
{link.active && (
|
|
|
|
<div className="absolute right-0 -mr-2 h-full w-1 rounded-l-lg bg-white" />
|
|
|
|
)}
|
|
|
|
</Link>
|
|
|
|
))}
|
|
|
|
</div>
|
2024-04-23 11:22:41 +00:00
|
|
|
<Settings
|
|
|
|
onClick={() => setIsSettingsOpen(!isSettingsOpen)}
|
|
|
|
className="text-white cursor-pointer"
|
|
|
|
/>
|
|
|
|
<SettingsDialog
|
|
|
|
isOpen={isSettingsOpen}
|
|
|
|
setIsOpen={setIsSettingsOpen}
|
|
|
|
/>
|
2024-04-09 10:51:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="fixed bottom-0 w-full z-50 flex flex-row items-center gap-x-6 bg-[#111111] px-4 py-4 shadow-sm lg:hidden">
|
|
|
|
{navLinks.map((link, i) => (
|
|
|
|
<Link
|
|
|
|
href={link.href}
|
|
|
|
key={i}
|
|
|
|
className={cn(
|
|
|
|
'relative flex flex-col items-center space-y-1 text-center w-full',
|
|
|
|
link.active ? 'text-white' : 'text-white/70',
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{link.active && (
|
|
|
|
<div className="absolute top-0 -mt-4 h-1 w-full rounded-b-lg bg-white" />
|
|
|
|
)}
|
|
|
|
<link.icon />
|
|
|
|
<p className="text-xs">{link.label}</p>
|
|
|
|
</Link>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Layout>{children}</Layout>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Sidebar;
|