el.xwx.moe/pages/dashboard.tsx

243 lines
9.1 KiB
TypeScript
Raw Normal View History

import useCollectionStore from "@/store/collections";
2023-06-12 13:23:11 -05:00
import {
faChartSimple,
faChevronDown,
} from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import MainLayout from "@/layouts/MainLayout";
import useLinkStore from "@/store/links";
import useTagStore from "@/store/tags";
2023-06-11 17:28:37 -05:00
import LinkCard from "@/components/LinkCard";
import Link from "next/link";
2023-06-11 17:28:37 -05:00
import CollectionCard from "@/components/CollectionCard";
2023-06-12 13:23:11 -05:00
import { Disclosure, Transition } from "@headlessui/react";
import { useEffect, useState } from "react";
import useLinks from "@/hooks/useLinks";
export default function Dashboard() {
const { collections } = useCollectionStore();
const { links } = useLinkStore();
const { tags } = useTagStore();
2023-06-16 08:02:02 -05:00
const [numberOfLinks, setNumberOfLinks] = useState(0);
2023-06-12 13:23:11 -05:00
const [tagPinDisclosure, setTagPinDisclosure] = useState<boolean>(() => {
const storedValue = localStorage.getItem("tagPinDisclosure");
return storedValue ? storedValue === "true" : true;
});
2023-06-12 13:23:11 -05:00
const [collectionPinDisclosure, setCollectionPinDisclosure] =
useState<boolean>(() => {
const storedValue = localStorage.getItem("collectionPinDisclosure");
return storedValue ? storedValue === "true" : true;
});
2023-06-12 13:23:11 -05:00
const [linkPinDisclosure, setLinkPinDisclosure] = useState<boolean>(() => {
const storedValue = localStorage.getItem("linkPinDisclosure");
return storedValue ? storedValue === "true" : true;
});
2023-06-15 07:39:30 -05:00
useLinks({ pinnedOnly: true, sort: 0 });
2023-06-16 08:02:02 -05:00
useEffect(() => {
setNumberOfLinks(
collections.reduce(
(accumulator, collection) => accumulator + collection._count.links,
0
)
);
}, [collections]);
2023-06-12 13:23:11 -05:00
useEffect(() => {
localStorage.setItem(
"tagPinDisclosure",
tagPinDisclosure ? "true" : "false"
);
2023-06-12 13:23:11 -05:00
}, [tagPinDisclosure]);
2023-05-31 21:43:42 -05:00
2023-06-12 13:23:11 -05:00
useEffect(() => {
localStorage.setItem(
"collectionPinDisclosure",
collectionPinDisclosure ? "true" : "false"
);
}, [collectionPinDisclosure]);
useEffect(() => {
localStorage.setItem(
"linkPinDisclosure",
linkPinDisclosure ? "true" : "false"
);
}, [linkPinDisclosure]);
return (
// ml-80
<MainLayout>
<div className="p-5">
<div className="flex gap-3 items-center mb-5">
2023-05-31 21:43:42 -05:00
<div className="flex gap-2">
<FontAwesomeIcon
icon={faChartSimple}
2023-06-05 10:13:04 -05:00
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500 drop-shadow"
/>
2023-05-31 21:43:42 -05:00
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold">
Dashboard
</p>
</div>
</div>
2023-06-16 08:02:02 -05:00
<br />
2023-06-12 13:23:11 -05:00
<div className="flex flex-col md:flex-row md:items-center justify-evenly gap-2 mb-10">
<div className="flex items-baseline gap-2">
2023-06-12 13:23:11 -05:00
<p className="font-bold text-6xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent">
2023-06-16 08:02:02 -05:00
{numberOfLinks}
2023-06-12 13:23:11 -05:00
</p>
2023-05-31 21:43:42 -05:00
<p className="text-sky-900 text-xl">
2023-06-16 08:02:02 -05:00
{numberOfLinks === 1 ? "Link" : "Links"}
2023-05-31 21:43:42 -05:00
</p>
</div>
<div className="flex items-baseline gap-2">
2023-06-12 13:23:11 -05:00
<p className="font-bold text-6xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent">
{collections.length}
</p>
<p className="text-sky-900 text-xl">Collections</p>
</div>
<div className="flex items-baseline gap-2">
2023-06-12 13:23:11 -05:00
<p className="font-bold text-6xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent">
{tags.length}
</p>
<p className="text-sky-900 text-xl">Tags</p>
</div>
</div>
2023-06-12 13:23:11 -05:00
{/* <hr className="my-5 border-sky-100" /> */}
<br />
<div className="flex flex-col 2xl:flex-row items-start justify-evenly 2xl:gap-2">
<Disclosure defaultOpen={linkPinDisclosure}>
2023-06-13 14:19:37 -05:00
<div className="flex flex-col gap-5 p-2 w-full mx-auto md:w-2/3">
2023-06-12 13:23:11 -05:00
<Disclosure.Button
onClick={() => {
setLinkPinDisclosure(!linkPinDisclosure);
}}
className="flex justify-between gap-2 items-baseline shadow active:shadow-inner duration-100 py-2 px-4 rounded-full"
>
<p className="text-sky-600 text-xl">Pinned Links</p>
<div className="text-sky-600 flex items-center gap-2">
{linkPinDisclosure ? "Hide" : "Show"}
<FontAwesomeIcon
2023-06-12 13:23:11 -05:00
icon={faChevronDown}
className={`w-4 h-4 text-sky-300 ${
linkPinDisclosure ? "rotate-reverse" : "rotate"
}`}
/>
</div>
2023-06-12 13:23:11 -05:00
</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-5 w-full">
2023-06-15 07:39:30 -05:00
{links
.filter((e) => e.pinnedBy)
.map((e, i) => (
<LinkCard key={i} link={e} count={i} />
))}
2023-06-12 13:23:11 -05:00
</Disclosure.Panel>
</Transition>
</div>
2023-06-12 13:23:11 -05:00
</Disclosure>
2023-06-13 14:19:37 -05:00
{/* <Disclosure defaultOpen={collectionPinDisclosure}>
2023-06-12 13:23:11 -05:00
<div className="flex flex-col gap-5 p-2 w-full">
<Disclosure.Button
onClick={() => {
setCollectionPinDisclosure(!collectionPinDisclosure);
}}
className="flex justify-between gap-2 items-baseline shadow active:shadow-inner duration-100 py-2 px-4 rounded-full"
>
<p className="text-sky-600 text-xl">Pinned Collections</p>
2023-06-12 13:23:11 -05:00
<div className="text-sky-600 flex items-center gap-2">
{collectionPinDisclosure ? "Hide" : "Show"}
<FontAwesomeIcon
2023-06-12 13:23:11 -05:00
icon={faChevronDown}
className={`w-4 h-4 text-sky-300 ${
collectionPinDisclosure ? "rotate-reverse" : "rotate"
}`}
/>
</div>
2023-06-12 13:23:11 -05:00
</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-5 w-full">
{collections.slice(0, 5).map((e, i) => (
<CollectionCard key={i} collection={e} />
))}
</Disclosure.Panel>
</Transition>
</div>
2023-06-13 14:19:37 -05:00
</Disclosure> */}
2023-05-15 13:29:51 -05:00
2023-06-13 14:19:37 -05:00
{/* <Disclosure defaultOpen={tagPinDisclosure}>
2023-06-12 13:23:11 -05:00
<div className="flex flex-col gap-5 p-2 w-full">
<Disclosure.Button
onClick={() => {
setTagPinDisclosure(!tagPinDisclosure);
}}
className="flex justify-between gap-2 items-baseline shadow active:shadow-inner duration-100 py-2 px-4 rounded-full"
>
<p className="text-sky-600 text-xl">Pinned Tags</p>
<div className="text-sky-600 flex items-center gap-2">
{tagPinDisclosure ? "Hide" : "Show"}
<FontAwesomeIcon
icon={faChevronDown}
className={`w-4 h-4 text-sky-300 ${
tagPinDisclosure ? "rotate-reverse" : "rotate"
}`}
/>
</div>
</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 gap-2 flex-wrap">
{tags.slice(0, 19).map((e, i) => (
<Link
href={`/tags/${e.id}`}
key={i}
className="px-2 py-1 bg-sky-200 rounded-full hover:opacity-60 duration-100 text-sky-700"
>
{e.name}
</Link>
))}
</Disclosure.Panel>
</Transition>
2023-05-15 13:29:51 -05:00
</div>
2023-06-13 14:19:37 -05:00
</Disclosure> */}
</div>
</div>
</MainLayout>
);
}