improved sidebar

This commit is contained in:
Daniel 2023-06-11 02:25:18 +03:30
parent 98856289f1
commit c017c6e95a
2 changed files with 131 additions and 53 deletions

View File

@ -6,13 +6,27 @@ import {
faHashtag, faHashtag,
faBookmark, faBookmark,
faChartSimple, faChartSimple,
faChevronDown,
} from "@fortawesome/free-solid-svg-icons"; } from "@fortawesome/free-solid-svg-icons";
import useTagStore from "@/store/tags"; import useTagStore from "@/store/tags";
import Link from "next/link"; import Link from "next/link";
import { useRouter } from "next/router"; import { useRouter } from "next/router";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { Disclosure, Transition } from "@headlessui/react";
export default function Sidebar({ className }: { className?: string }) { export default function Sidebar({ className }: { className?: string }) {
const [tagDisclosure, setTagDisclosure] = useState<boolean>(() => {
const storedValue = localStorage.getItem("tagDisclosure");
return storedValue ? storedValue === "true" : true;
});
const [collectionDisclosure, setCollectionDisclosure] = useState<boolean>(
() => {
const storedValue = localStorage.getItem("collectionDisclosure");
return storedValue ? storedValue === "true" : true;
}
);
const { collections } = useCollectionStore(); const { collections } = useCollectionStore();
const { tags } = useTagStore(); const { tags } = useTagStore();
@ -20,6 +34,17 @@ export default function Sidebar({ className }: { className?: string }) {
const [active, setActive] = useState(""); const [active, setActive] = useState("");
useEffect(() => {
localStorage.setItem("tagDisclosure", tagDisclosure ? "true" : "false");
}, [tagDisclosure]);
useEffect(() => {
localStorage.setItem(
"collectionDisclosure",
collectionDisclosure ? "true" : "false"
);
}, [collectionDisclosure]);
useEffect(() => { useEffect(() => {
setActive(router.asPath); setActive(router.asPath);
}, [router, collections]); }, [router, collections]);
@ -80,61 +105,104 @@ export default function Sidebar({ className }: { className?: string }) {
</Link> </Link>
</div> </div>
<div className="text-gray-500 mt-5"> <Disclosure defaultOpen={collectionDisclosure}>
<p className="text-sm mb-2 pl-2 font-semibold">Collections</p> <Disclosure.Button
</div> onClick={() => {
<div className="flex flex-col gap-1"> setCollectionDisclosure(!collectionDisclosure);
{collections }}
.sort((a, b) => a.name.localeCompare(b.name)) className="flex items-center justify-between text-sm w-full text-left mb-2 pl-2 font-bold text-gray-500 mt-5"
.map((e, i) => { >
return ( <p>Collections</p>
<Link key={i} href={`/collections/${e.id}`}>
<div
className={`${
active === `/collections/${e.id}`
? "bg-sky-200"
: "hover:bg-slate-200 bg-gray-100"
} duration-100 py-1 px-2 cursor-pointer flex items-center gap-2 w-full rounded-md h-8 capitalize`}
>
<FontAwesomeIcon
icon={faFolder}
className="w-6 h-6 drop-shadow"
style={{ color: e.color }}
/>
<p className="text-sky-600 truncate w-4/6">{e.name}</p> <FontAwesomeIcon
</div> icon={faChevronDown}
</Link> className={`w-3 h-3 ${
); collectionDisclosure ? "rotate-reverse" : "rotate"
})} }`}
</div> />
<div className="text-gray-500 mt-5"> </Disclosure.Button>
<p className="text-sm mb-2 pl-2 font-semibold">Tags</p> <Transition
</div> enter="transition duration-100 ease-out"
<div className="flex flex-col gap-1"> enterFrom="transform opacity-0 -translate-y-3"
{tags enterTo="transform opacity-100 translate-y-0"
.sort((a, b) => a.name.localeCompare(b.name)) leave="transition duration-100 ease-out"
.map((e, i) => { leaveFrom="transform opacity-100 translate-y-0"
return ( leaveTo="transform opacity-0 -translate-y-3"
<Link key={i} href={`/tags/${e.id}`}> >
<div <Disclosure.Panel className="flex flex-col gap-1">
className={`${ {collections
active === `/tags/${e.id}` .sort((a, b) => a.name.localeCompare(b.name))
? "bg-sky-200" .map((e, i) => {
: "hover:bg-slate-200 bg-gray-100" return (
} duration-100 py-1 px-2 cursor-pointer flex items-center gap-2 w-full rounded-md h-8`} <Link key={i} href={`/collections/${e.id}`}>
> <div
<FontAwesomeIcon className={`${
icon={faHashtag} active === `/collections/${e.id}`
className="w-4 h-4 text-sky-500 mt-1" ? "bg-sky-200"
/> : "hover:bg-slate-200 bg-gray-100"
} duration-100 py-1 px-2 cursor-pointer flex items-center gap-2 w-full rounded-md h-8 capitalize`}
>
<FontAwesomeIcon
icon={faFolder}
className="w-6 h-6 drop-shadow"
style={{ color: e.color }}
/>
<p className="text-sky-600 truncate w-4/6">{e.name}</p> <p className="text-sky-600 truncate w-4/6">{e.name}</p>
</div> </div>
</Link> </Link>
); );
})} })}
</div> </Disclosure.Panel>
</Transition>
</Disclosure>
<Disclosure defaultOpen={tagDisclosure}>
<Disclosure.Button
onClick={() => {
setTagDisclosure(!tagDisclosure);
}}
className="flex items-center justify-between text-sm w-full text-left mb-2 pl-2 font-bold text-gray-500 mt-5"
>
<p>Tags</p>
<FontAwesomeIcon
icon={faChevronDown}
className={`w-3 h-3 ${tagDisclosure ? "rotate-reverse" : "rotate"}`}
/>
</Disclosure.Button>
<Transition
enter="transition duration-100 ease-out"
enterFrom="transform opacity-0 -translate-y-3"
enterTo="transform opacity-100 translate-y-0"
leave="transition duration-100 ease-out"
leaveFrom="transform opacity-100 translate-y-0"
leaveTo="transform opacity-0 -translate-y-3"
>
<Disclosure.Panel className="flex flex-col gap-1">
{tags
.sort((a, b) => a.name.localeCompare(b.name))
.map((e, i) => {
return (
<Link key={i} href={`/tags/${e.id}`}>
<div
className={`${
active === `/tags/${e.id}`
? "bg-sky-200"
: "hover:bg-slate-200 bg-gray-100"
} duration-100 py-1 px-2 cursor-pointer flex items-center gap-2 w-full rounded-md h-8`}
>
<FontAwesomeIcon
icon={faHashtag}
className="w-4 h-4 text-sky-500 mt-1"
/>
<p className="text-sky-600 truncate w-4/6">{e.name}</p>
</div>
</Link>
);
})}
</Disclosure.Panel>
</Transition>
</Disclosure>
</div> </div>
); );
} }

View File

@ -27,6 +27,16 @@
hyphens: auto; hyphens: auto;
} }
.rotate {
transition: transform 0.1s ease;
transform: rotate(-90deg);
}
.rotate-reverse {
transition: transform 0.1s ease;
transform: rotate(0deg);
}
.fade-in { .fade-in {
animation: fade-in-animation 100ms; animation: fade-in-animation 100ms;
} }