110 lines
3.0 KiB
TypeScript
110 lines
3.0 KiB
TypeScript
import { useLinks } from "@/hooks/store/links";
|
|
import MainLayout from "@/layouts/MainLayout";
|
|
import { Sort, ViewMode } from "@/types/global";
|
|
import { useRouter } from "next/router";
|
|
import React, { useEffect, useState } from "react";
|
|
import PageHeader from "@/components/PageHeader";
|
|
import LinkListOptions from "@/components/LinkListOptions";
|
|
import getServerSideProps from "@/lib/client/getServerSideProps";
|
|
import { useTranslation } from "next-i18next";
|
|
import Links from "@/components/LinkViews/Links";
|
|
|
|
export default function Search() {
|
|
const { t } = useTranslation();
|
|
|
|
const router = useRouter();
|
|
|
|
const [searchFilter, setSearchFilter] = useState({
|
|
name: true,
|
|
url: true,
|
|
description: true,
|
|
tags: true,
|
|
textContent: false,
|
|
});
|
|
|
|
const [viewMode, setViewMode] = useState<ViewMode>(
|
|
(localStorage.getItem("viewMode") as ViewMode) || ViewMode.Card
|
|
);
|
|
|
|
const [sortBy, setSortBy] = useState<Sort>(
|
|
Number(localStorage.getItem("sortBy")) ?? Sort.DateNewestFirst
|
|
);
|
|
|
|
const [editMode, setEditMode] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (editMode) return setEditMode(false);
|
|
}, [router]);
|
|
|
|
// const { isLoading } = useLink({
|
|
// sort: sortBy,
|
|
// searchQueryString: decodeURIComponent(router.query.q as string),
|
|
// searchByName: searchFilter.name,
|
|
// searchByUrl: searchFilter.url,
|
|
// searchByDescription: searchFilter.description,
|
|
// searchByTextContent: searchFilter.textContent,
|
|
// searchByTags: searchFilter.tags,
|
|
// });
|
|
|
|
const { links, data } = useLinks({
|
|
sort: sortBy,
|
|
searchQueryString: decodeURIComponent(router.query.q as string),
|
|
searchByName: searchFilter.name,
|
|
searchByUrl: searchFilter.url,
|
|
searchByDescription: searchFilter.description,
|
|
searchByTextContent: searchFilter.textContent,
|
|
searchByTags: searchFilter.tags,
|
|
});
|
|
|
|
return (
|
|
<MainLayout>
|
|
<div className="p-5 flex flex-col gap-5 w-full h-full">
|
|
<LinkListOptions
|
|
t={t}
|
|
searchFilter={searchFilter}
|
|
setSearchFilter={setSearchFilter}
|
|
viewMode={viewMode}
|
|
setViewMode={setViewMode}
|
|
sortBy={sortBy}
|
|
setSortBy={setSortBy}
|
|
editMode={editMode}
|
|
setEditMode={setEditMode}
|
|
>
|
|
<PageHeader icon={"bi-search"} title={"Search Results"} />
|
|
</LinkListOptions>
|
|
|
|
{/* {
|
|
!isLoading &&
|
|
!links[0] ? (
|
|
<p>{t("nothing_found")}</p>
|
|
) : links[0] ? (
|
|
<LinkComponent
|
|
editMode={editMode}
|
|
links={links}
|
|
isLoading={isLoading}
|
|
/>
|
|
) : (
|
|
isLoading && (
|
|
<GridLoader
|
|
color="oklch(var(--p))"
|
|
loading={true}
|
|
size={20}
|
|
className="m-auto py-10"
|
|
/>
|
|
)
|
|
)} */}
|
|
|
|
<Links
|
|
editMode={editMode}
|
|
links={links}
|
|
layout={viewMode}
|
|
placeholderCount={1}
|
|
useData={data}
|
|
/>
|
|
</div>
|
|
</MainLayout>
|
|
);
|
|
}
|
|
|
|
export { getServerSideProps };
|