2023-07-19 16:49:54 -05:00
|
|
|
import NoLinksFound from "@/components/NoLinksFound";
|
2024-08-12 23:08:57 -05:00
|
|
|
import { useLinks } from "@/hooks/store/links";
|
2023-05-14 10:41:08 -05:00
|
|
|
import MainLayout from "@/layouts/MainLayout";
|
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";
|
2024-06-04 15:59:49 -05:00
|
|
|
import { Sort, ViewMode } from "@/types/global";
|
2024-02-13 09:55:51 -06:00
|
|
|
import { useRouter } from "next/router";
|
2024-06-04 15:59:49 -05:00
|
|
|
import LinkListOptions from "@/components/LinkListOptions";
|
|
|
|
import getServerSideProps from "@/lib/client/getServerSideProps";
|
|
|
|
import { useTranslation } from "next-i18next";
|
2024-08-12 23:08:57 -05:00
|
|
|
import Links from "@/components/LinkViews/Links";
|
2023-03-28 02:31:50 -05:00
|
|
|
|
2024-08-12 23:08:57 -05:00
|
|
|
export default function Index() {
|
2024-06-04 15:59:49 -05:00
|
|
|
const { t } = useTranslation();
|
2024-08-01 17:40:08 -05:00
|
|
|
|
2024-08-12 23:08:57 -05:00
|
|
|
const [viewMode, setViewMode] = useState<ViewMode>(
|
|
|
|
(localStorage.getItem("viewMode") as ViewMode) || ViewMode.Card
|
|
|
|
);
|
|
|
|
const [sortBy, setSortBy] = useState<Sort>(
|
|
|
|
Number(localStorage.getItem("sortBy")) ?? Sort.DateNewestFirst
|
2023-12-16 14:06:26 -06:00
|
|
|
);
|
2024-08-12 23:08:57 -05:00
|
|
|
|
|
|
|
const { links, data } = useLinks({
|
|
|
|
sort: sortBy,
|
|
|
|
});
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2024-02-13 09:55:51 -06:00
|
|
|
const router = useRouter();
|
|
|
|
|
2024-02-11 01:06:46 -06:00
|
|
|
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]);
|
|
|
|
|
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">
|
2024-06-04 15:59:49 -05:00
|
|
|
<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"}
|
2024-06-04 15:59:49 -05:00
|
|
|
title={t("all_links")}
|
|
|
|
description={t("all_links_desc")}
|
2023-12-17 22:32:33 -06:00
|
|
|
/>
|
2024-06-04 15:59:49 -05:00
|
|
|
</LinkListOptions>
|
2024-02-11 01:06:46 -06:00
|
|
|
|
2024-08-12 23:08:57 -05:00
|
|
|
<Links
|
|
|
|
editMode={editMode}
|
|
|
|
links={links}
|
|
|
|
layout={viewMode}
|
|
|
|
placeholderCount={1}
|
|
|
|
useData={data}
|
|
|
|
/>
|
2024-08-14 15:44:07 -05:00
|
|
|
{!data.isLoading && links && !links[0] && (
|
2024-06-04 15:59:49 -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>
|
2023-05-14 10:41:08 -05:00
|
|
|
</MainLayout>
|
2023-03-28 02:31:50 -05:00
|
|
|
);
|
|
|
|
}
|
2024-06-04 15:59:49 -05:00
|
|
|
|
|
|
|
export { getServerSideProps };
|