el.xwx.moe/pages/links/index.tsx

65 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-12-16 14:06:26 -06:00
import LinkCard from "@/components/LinkViews/LinkComponents/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";
import useLinks from "@/hooks/useLinks";
import MainLayout from "@/layouts/MainLayout";
2023-03-28 02:31:50 -05:00
import useLinkStore from "@/store/links";
2023-12-15 21:25:39 -06:00
import { Sort, ViewMode } from "@/types/global";
2023-11-29 14:17:51 -06:00
import { faLink } 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-12-15 21:25:39 -06:00
import ViewDropdown from "@/components/ViewDropdown";
2023-12-16 14:06:26 -06:00
import DefaultView from "@/components/LinkViews/DefaultView";
import GridView from "@/components/LinkViews/GridView";
2023-12-15 21:25:39 -06:00
import ListView from "@/components/LinkViews/ListView";
2023-03-28 02:31:50 -05:00
export default function Links() {
const { links } = useLinkStore();
2023-12-16 14:06:26 -06:00
const [viewMode, setViewMode] = useState<string>(
localStorage.getItem("viewMode") || ViewMode.Default
);
const [sortBy, setSortBy] = useState<Sort>(Sort.DateNewestFirst);
useLinks({ sort: sortBy });
const linkView = {
2023-12-16 14:06:26 -06:00
[ViewMode.Default]: DefaultView,
// [ViewMode.Grid]: GridView,
2023-12-15 21:25:39 -06:00
[ViewMode.List]: ListView,
};
2023-12-15 22:57:50 -06:00
// @ts-ignore
const LinkComponent = linkView[viewMode];
2023-12-15 21:25:39 -06:00
2023-03-28 02:31:50 -05:00
return (
<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}
className="sm:w-10 sm:h-10 w-8 h-8 text-primary drop-shadow"
2023-04-30 15:54:40 -05:00
/>
2023-10-24 16:03:33 -05:00
<div>
2023-11-24 07:39:55 -06:00
<p className="text-3xl capitalize font-thin">All Links</p>
2023-10-24 16:03:33 -05:00
<p className="sm:text-sm text-xs">Links from every Collections</p>
2023-10-24 16:03:33 -05:00
</div>
2023-04-30 15:54:40 -05:00
</div>
<div className="flex gap-2 items-center mt-2">
2023-11-29 14:17:51 -06:00
<SortDropdown sortBy={sortBy} setSort={setSortBy} />
2023-12-15 21:25:39 -06:00
<ViewDropdown viewMode={viewMode} setViewMode={setViewMode} />
</div>
2023-04-23 08:26:39 -05:00
</div>
2023-07-19 16:49:54 -05:00
{links[0] ? (
<LinkComponent links={links} />
2023-07-19 16:49:54 -05:00
) : (
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>
</MainLayout>
2023-03-28 02:31:50 -05:00
);
}