el.xwx.moe/pages/dashboard.tsx

261 lines
9.9 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";
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>(() => {
2023-07-08 05:35:43 -05:00
const storedValue =
typeof window !== "undefined" && localStorage.getItem("tagPinDisclosure");
2023-06-12 13:23:11 -05:00
return storedValue ? storedValue === "true" : true;
});
2023-06-12 13:23:11 -05:00
const [collectionPinDisclosure, setCollectionPinDisclosure] =
useState<boolean>(() => {
2023-07-08 05:35:43 -05:00
const storedValue =
typeof window !== "undefined" &&
localStorage.getItem("collectionPinDisclosure");
2023-06-12 13:23:11 -05:00
return storedValue ? storedValue === "true" : true;
});
2023-06-12 13:23:11 -05:00
const [linkPinDisclosure, setLinkPinDisclosure] = useState<boolean>(() => {
2023-07-08 05:35:43 -05:00
const storedValue =
typeof window !== "undefined" &&
localStorage.getItem("linkPinDisclosure");
2023-06-12 13:23:11 -05:00
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 as any).links,
2023-06-16 08:02:02 -05:00
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-08-02 12:53:55 -05:00
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500 dark:text-sky-300 drop-shadow"
/>
2023-08-02 12:53:55 -05:00
<p className="sm:text-4xl text-3xl capitalize text-sky-700 dark:text-sky-400 font-bold">
2023-05-31 21:43:42 -05:00
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-08-02 12:53:55 -05:00
<p className="font-bold text-6xl text-sky-700 dark:text-sky-300">{numberOfLinks}</p>
<p className="text-sky-900 dark:text-sky-500 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-08-02 12:53:55 -05:00
<p className="font-bold text-6xl text-sky-700 dark:text-sky-300">
2023-06-12 13:23:11 -05:00
{collections.length}
</p>
2023-08-02 12:53:55 -05:00
<p className="text-sky-900 dark:text-sky-500 text-xl">
2023-07-18 10:34:43 -05:00
{collections.length === 1 ? "Collection" : "Collections"}
</p>
</div>
<div className="flex items-baseline gap-2">
2023-08-02 12:53:55 -05:00
<p className="font-bold text-6xl text-sky-700 dark:text-sky-300">{tags.length}</p>
<p className="text-sky-900 dark:text-sky-500 text-xl">
2023-07-18 10:34:43 -05:00
{tags.length === 1 ? "Tag" : "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">
2023-07-18 10:34:43 -05:00
{links.some((e) => e.pinnedBy && e.pinnedBy[0]) ? (
<Disclosure defaultOpen={linkPinDisclosure}>
<div className="flex flex-col gap-5 p-2 w-full mx-auto md:w-2/3">
<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"
>
2023-07-22 16:49:09 -05:00
<p className="text-sky-700 text-xl">Pinned Links</p>
2023-07-18 10:34:43 -05:00
2023-07-22 16:49:09 -05:00
<div className="text-sky-700 flex items-center gap-2">
2023-07-18 10:34:43 -05:00
{linkPinDisclosure ? "Hide" : "Show"}
<FontAwesomeIcon
icon={faChevronDown}
className={`w-4 h-4 text-sky-300 ${
linkPinDisclosure ? "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="grid grid-cols-1 xl:grid-cols-2 gap-5 w-full">
{links
.filter((e) => e.pinnedBy && e.pinnedBy[0])
.map((e, i) => (
<LinkCard key={i} link={e} count={i} />
))}
</Disclosure.Panel>
</Transition>
</div>
</Disclosure>
) : (
2023-08-02 12:53:55 -05:00
<div className="border border-solid border-sky-100 dark:border-sky-800 w-full mx-auto md:w-2/3 p-10 rounded-2xl">
<p className="text-center text-2xl text-sky-700 dark:text-sky-300">
2023-07-18 10:34:43 -05:00
No Pinned Links
</p>
2023-08-02 12:53:55 -05:00
<p className="text-center text-sky-900 dark:text-sky-500 text-sm">
2023-07-18 10:34:43 -05:00
You can Pin Links by clicking on the three dots on each Link and
2023-07-18 13:36:09 -05:00
clicking &quot;Pin to Dashboard.&quot;
2023-07-18 10:34:43 -05:00
</p>
</div>
2023-07-18 10:34:43 -05:00
)}
2023-06-12 13:23:11 -05:00
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"
>
2023-07-22 16:49:09 -05:00
<p className="text-sky-700 text-xl">Pinned Collections</p>
2023-07-22 16:49:09 -05:00
<div className="text-sky-700 flex items-center gap-2">
2023-06-12 13:23:11 -05:00
{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"
>
2023-07-22 16:49:09 -05:00
<p className="text-sky-700 text-xl">Pinned Tags</p>
2023-06-12 13:23:11 -05:00
2023-07-22 16:49:09 -05:00
<div className="text-sky-700 flex items-center gap-2">
2023-06-12 13:23:11 -05:00
{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>
);
}