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

74 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-07-19 16:49:54 -05:00
import NoLinksFound from "@/components/NoLinksFound";
import useLinks from "@/hooks/useLinks";
import MainLayout from "@/layouts/MainLayout";
2023-03-28 02:31:50 -05:00
import useLinkStore from "@/store/links";
2024-02-11 02:02:14 -06:00
import React, { useEffect, useState } from "react";
2023-12-16 09:33:33 -06:00
import PageHeader from "@/components/PageHeader";
import { Sort, ViewMode } from "@/types/global";
import CardView from "@/components/LinkViews/Layouts/CardView";
import ListView from "@/components/LinkViews/Layouts/ListView";
2024-02-13 09:55:51 -06:00
import { useRouter } from "next/router";
2024-04-23 20:48:15 -05:00
import MasonryView from "@/components/LinkViews/Layouts/MasonryView";
import LinkListOptions from "@/components/LinkListOptions";
import getServerSideProps from "@/lib/client/getServerSideProps";
import { useTranslation } from "next-i18next";
2023-03-28 02:31:50 -05:00
export default function Links() {
const { t } = useTranslation();
const { links } = useLinkStore();
2023-03-28 02:31:50 -05:00
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
);
const [sortBy, setSortBy] = useState<Sort>(Sort.DateNewestFirst);
2024-02-13 09:55:51 -06:00
const router = useRouter();
const [editMode, setEditMode] = useState(false);
2024-03-06 08:06:38 -06:00
2024-02-13 09:55:51 -06:00
useEffect(() => {
2024-03-06 08:06:38 -06:00
if (editMode) return setEditMode(false);
2024-02-13 09:55:51 -06:00
}, [router]);
useLinks({ sort: sortBy });
const linkView = {
2023-12-21 09:55:07 -06:00
[ViewMode.Card]: CardView,
2023-12-15 21:25:39 -06:00
[ViewMode.List]: ListView,
2024-04-23 20:48:15 -05:00
[ViewMode.Masonry]: MasonryView,
2023-12-15 21:25:39 -06:00
};
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">
<LinkListOptions
t={t}
viewMode={viewMode}
setViewMode={setViewMode}
sortBy={sortBy}
setSortBy={setSortBy}
editMode={editMode}
setEditMode={setEditMode}
>
2023-12-17 22:32:33 -06:00
<PageHeader
icon={"bi-link-45deg"}
title={t("all_links")}
description={t("all_links_desc")}
2023-12-17 22:32:33 -06:00
/>
</LinkListOptions>
2023-07-19 16:49:54 -05:00
{links[0] ? (
<LinkComponent editMode={editMode} links={links} />
2023-07-19 16:49:54 -05:00
) : (
<NoLinksFound text={t("you_have_not_added_any_links")} />
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
);
}
export { getServerSideProps };