2023-06-05 15:47:01 -05:00
|
|
|
import LinkCard from "@/components/LinkCard";
|
2023-07-19 16:49:54 -05:00
|
|
|
import NoLinksFound from "@/components/NoLinksFound";
|
2023-06-13 23:40:23 -05:00
|
|
|
import SortDropdown from "@/components/SortDropdown";
|
2023-06-14 17:34:54 -05:00
|
|
|
import useLinks from "@/hooks/useLinks";
|
2023-05-14 10:41:08 -05:00
|
|
|
import MainLayout from "@/layouts/MainLayout";
|
2023-03-28 02:31:50 -05:00
|
|
|
import useLinkStore from "@/store/links";
|
2023-06-13 21:44:50 -05:00
|
|
|
import { Sort } from "@/types/global";
|
2023-06-11 17:28:37 -05:00
|
|
|
import { faLink, faSort } from "@fortawesome/free-solid-svg-icons";
|
2023-04-23 08:26:39 -05:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
2023-06-13 23:40:23 -05:00
|
|
|
import { useState } from "react";
|
2023-03-28 02:31:50 -05:00
|
|
|
|
|
|
|
export default function Links() {
|
|
|
|
const { links } = useLinkStore();
|
|
|
|
|
2023-05-15 15:45:06 -05:00
|
|
|
const [sortDropdown, setSortDropdown] = useState(false);
|
2023-06-14 17:34:54 -05:00
|
|
|
const [sortBy, setSortBy] = useState<Sort>(Sort.DateNewestFirst);
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-06-14 17:34:54 -05:00
|
|
|
useLinks({ sort: sortBy });
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-03-28 02:31:50 -05:00
|
|
|
return (
|
2023-05-14 10:41:08 -05:00
|
|
|
<MainLayout>
|
2023-10-23 09:45:48 -05:00
|
|
|
<div className="p-5 flex flex-col gap-5 w-full h-full">
|
2023-10-24 16:03:33 -05:00
|
|
|
<div className="flex gap-3 justify-between">
|
|
|
|
<div className="flex items-center gap-3">
|
2023-04-30 15:54:40 -05:00
|
|
|
<FontAwesomeIcon
|
2023-06-11 17:28:37 -05:00
|
|
|
icon={faLink}
|
2023-10-24 16:03:33 -05:00
|
|
|
className="sm:w-10 sm:h-10 w-6 h-6 text-sky-500 dark:text-sky-500 drop-shadow"
|
2023-04-30 15:54:40 -05:00
|
|
|
/>
|
2023-10-24 16:03:33 -05:00
|
|
|
<div>
|
|
|
|
<p className="text-3xl capitalize text-black dark:text-white font-thin">
|
|
|
|
All Links
|
|
|
|
</p>
|
|
|
|
|
2023-11-09 10:44:49 -06:00
|
|
|
<p className="text-black dark:text-white">
|
2023-11-02 23:09:50 -05:00
|
|
|
Links from every Collections
|
2023-10-24 16:03:33 -05:00
|
|
|
</p>
|
|
|
|
</div>
|
2023-04-30 15:54:40 -05:00
|
|
|
</div>
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-10-24 16:03:33 -05:00
|
|
|
<div className="relative mt-2">
|
2023-05-15 15:45:06 -05:00
|
|
|
<div
|
|
|
|
onClick={() => setSortDropdown(!sortDropdown)}
|
|
|
|
id="sort-dropdown"
|
2023-08-14 22:25:25 -05:00
|
|
|
className="inline-flex rounded-md cursor-pointer hover:bg-slate-200 hover:dark:bg-neutral-700 duration-100 p-1"
|
2023-05-15 15:45:06 -05:00
|
|
|
>
|
|
|
|
<FontAwesomeIcon
|
|
|
|
icon={faSort}
|
|
|
|
id="sort-dropdown"
|
2023-08-22 17:34:46 -05:00
|
|
|
className="w-5 h-5 text-gray-500 dark:text-gray-300"
|
2023-05-15 15:45:06 -05:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{sortDropdown ? (
|
2023-06-13 23:40:23 -05:00
|
|
|
<SortDropdown
|
2023-05-28 17:40:28 -05:00
|
|
|
sortBy={sortBy}
|
2023-06-13 23:40:23 -05:00
|
|
|
setSort={setSortBy}
|
2023-05-28 17:40:28 -05:00
|
|
|
toggleSortDropdown={() => setSortDropdown(!sortDropdown)}
|
|
|
|
/>
|
2023-05-15 15:45:06 -05:00
|
|
|
) : null}
|
|
|
|
</div>
|
2023-04-23 08:26:39 -05:00
|
|
|
</div>
|
2023-07-19 16:49:54 -05:00
|
|
|
{links[0] ? (
|
2023-07-30 15:14:52 -05:00
|
|
|
<div className="grid 2xl:grid-cols-3 xl:grid-cols-2 grid-cols-1 gap-5">
|
2023-07-19 16:49:54 -05:00
|
|
|
{links.map((e, i) => {
|
|
|
|
return <LinkCard key={i} link={e} count={i} />;
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
) : (
|
2023-10-23 09:45:48 -05:00
|
|
|
<NoLinksFound text="You Haven't Created Any Links Yet" />
|
2023-07-19 16:49:54 -05:00
|
|
|
)}
|
2023-04-23 08:26:39 -05:00
|
|
|
</div>
|
2023-05-14 10:41:08 -05:00
|
|
|
</MainLayout>
|
2023-03-28 02:31:50 -05:00
|
|
|
);
|
|
|
|
}
|