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-12-16 09:33:33 -06:00
|
|
|
import React, { useState } from "react";
|
|
|
|
import PageHeader from "@/components/PageHeader";
|
2023-12-15 21:25:39 -06:00
|
|
|
import { Sort, ViewMode } from "@/types/global";
|
|
|
|
import ViewDropdown from "@/components/ViewDropdown";
|
2023-12-21 04:08:56 -06:00
|
|
|
import CardView from "@/components/LinkViews/Layouts/CardView";
|
|
|
|
import ListView from "@/components/LinkViews/Layouts/ListView";
|
2023-12-21 04:11:26 -06:00
|
|
|
// import GridView from "@/components/LinkViews/Layouts/GridView";
|
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>(
|
2023-12-21 09:55:07 -06:00
|
|
|
localStorage.getItem("viewMode") || ViewMode.Card
|
2023-12-16 14:06:26 -06:00
|
|
|
);
|
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-12-17 00:25:46 -06:00
|
|
|
const linkView = {
|
2023-12-21 09:55:07 -06:00
|
|
|
[ViewMode.Card]: CardView,
|
2023-12-16 14:06:26 -06:00
|
|
|
// [ViewMode.Grid]: GridView,
|
2023-12-15 21:25:39 -06:00
|
|
|
[ViewMode.List]: ListView,
|
|
|
|
};
|
|
|
|
|
2023-12-15 22:57:50 -06:00
|
|
|
// @ts-ignore
|
2023-12-17 00:25:46 -06:00
|
|
|
const LinkComponent = linkView[viewMode];
|
2023-12-15 21:25:39 -06: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-12-17 22:32:33 -06:00
|
|
|
<div className="flex justify-between">
|
|
|
|
<PageHeader
|
|
|
|
icon={"bi-link-45deg"}
|
|
|
|
title={"All Links"}
|
|
|
|
description={"Links from every Collections"}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div className="mt-2 flex items-center justify-end gap-2">
|
|
|
|
<SortDropdown sortBy={sortBy} setSort={setSortBy} />
|
|
|
|
<ViewDropdown viewMode={viewMode} setViewMode={setViewMode} />
|
|
|
|
</div>
|
2023-04-23 08:26:39 -05:00
|
|
|
</div>
|
2023-12-16 09:33:33 -06:00
|
|
|
|
2023-07-19 16:49:54 -05:00
|
|
|
{links[0] ? (
|
2023-12-17 22:32:33 -06:00
|
|
|
<LinkComponent links={links} />
|
2023-07-19 16:49:54 -05:00
|
|
|
) : (
|
2023-12-17 22:32:33 -06: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
|
|
|
);
|
|
|
|
}
|