96 lines
3.3 KiB
TypeScript
96 lines
3.3 KiB
TypeScript
import ClickAwayHandler from "@/components/ClickAwayHandler";
|
|
import LinkList from "@/components/LinkList";
|
|
import RadioButton from "@/components/RadioButton";
|
|
import SortLinkDropdown from "@/components/SortLinkDropdown";
|
|
import MainLayout from "@/layouts/MainLayout";
|
|
import useLinkStore from "@/store/links";
|
|
import { faBookmark, faSort } from "@fortawesome/free-solid-svg-icons";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { ChangeEvent, useEffect, useState } from "react";
|
|
|
|
export default function Links() {
|
|
const { links } = useLinkStore();
|
|
|
|
const [sortDropdown, setSortDropdown] = useState(false);
|
|
const [sortBy, setSortBy] = useState("Name (A-Z)");
|
|
const [sortedLinks, setSortedLinks] = useState(links);
|
|
|
|
const handleSortChange = (event: ChangeEvent<HTMLInputElement>) => {
|
|
setSortBy(event.target.value);
|
|
};
|
|
|
|
useEffect(() => {
|
|
const linksArray = [...links];
|
|
|
|
if (sortBy === "Name (A-Z)")
|
|
setSortedLinks(linksArray.sort((a, b) => a.name.localeCompare(b.name)));
|
|
else if (sortBy === "Title (A-Z)")
|
|
setSortedLinks(linksArray.sort((a, b) => a.title.localeCompare(b.title)));
|
|
else if (sortBy === "Name (Z-A)")
|
|
setSortedLinks(linksArray.sort((a, b) => b.name.localeCompare(a.name)));
|
|
else if (sortBy === "Title (Z-A)")
|
|
setSortedLinks(linksArray.sort((a, b) => b.title.localeCompare(a.title)));
|
|
else if (sortBy === "Date (Newest First)")
|
|
setSortedLinks(
|
|
linksArray.sort(
|
|
(a, b) =>
|
|
new Date(b.createdAt as string).getTime() -
|
|
new Date(a.createdAt as string).getTime()
|
|
)
|
|
);
|
|
else if (sortBy === "Date (Oldest First)")
|
|
setSortedLinks(
|
|
linksArray.sort(
|
|
(a, b) =>
|
|
new Date(a.createdAt as string).getTime() -
|
|
new Date(b.createdAt as string).getTime()
|
|
)
|
|
);
|
|
}, [links, sortBy]);
|
|
|
|
return (
|
|
<MainLayout>
|
|
<div className="p-5 flex flex-col gap-5 w-full">
|
|
<div className="flex gap-3 justify-between items-center">
|
|
<div className="flex gap-2">
|
|
<FontAwesomeIcon
|
|
icon={faBookmark}
|
|
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500 drop-shadow"
|
|
/>
|
|
<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">
|
|
All Links
|
|
</p>
|
|
</div>
|
|
|
|
<div className="relative">
|
|
<div
|
|
onClick={() => setSortDropdown(!sortDropdown)}
|
|
id="sort-dropdown"
|
|
className="inline-flex rounded-md cursor-pointer hover:bg-slate-200 duration-100 p-1"
|
|
>
|
|
<FontAwesomeIcon
|
|
icon={faSort}
|
|
id="sort-dropdown"
|
|
className="w-5 h-5 text-gray-500"
|
|
/>
|
|
</div>
|
|
|
|
{sortDropdown ? (
|
|
<SortLinkDropdown
|
|
handleSortChange={handleSortChange}
|
|
sortBy={sortBy}
|
|
toggleSortDropdown={() => setSortDropdown(!sortDropdown)}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
<div className="grid 2xl:grid-cols-3 xl:grid-cols-2 gap-5">
|
|
{sortedLinks.map((e, i) => {
|
|
return <LinkList key={i} link={e} count={i} />;
|
|
})}
|
|
</div>
|
|
</div>
|
|
</MainLayout>
|
|
);
|
|
}
|