infoalloggi-monorepo/apps/infoalloggi/src/pages/annunci.tsx

419 lines
9.9 KiB
TypeScript
Raw Normal View History

2025-08-28 18:27:07 +02:00
import { keepPreviousData } from "@tanstack/react-query";
import {
ChevronDown,
ChevronUp,
Filter,
FilterX,
MapIcon,
RotateCcwIcon,
Table,
} from "lucide-react";
2025-08-04 17:45:44 +02:00
import type { GetServerSideProps } from "next";
import dynamic from "next/dynamic";
2025-08-04 17:45:44 +02:00
import Head from "next/head";
import { useCallback, useEffect, useMemo, useState } from "react";
2025-08-28 18:27:07 +02:00
import { AccordionComp } from "~/components/accordionComp";
import { CTA_TipologiaModal } from "~/components/annunci_tutorial";
import { LazyCardAnnuncio } from "~/components/annuncio_card";
2025-08-28 18:27:07 +02:00
import { CodiceBox } from "~/components/codiceRicerca";
import { Layout } from "~/components/Layout";
2025-08-04 17:45:44 +02:00
import { LoadingPage } from "~/components/loading";
2025-08-28 18:27:07 +02:00
import { Status500 } from "~/components/status-page";
import { Badge } from "~/components/ui/badge";
2025-08-04 17:45:44 +02:00
import { Button } from "~/components/ui/button";
2025-08-28 18:27:07 +02:00
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuTrigger,
} from "~/components/ui/dropdown-menu";
2025-08-04 17:45:44 +02:00
import { Label } from "~/components/ui/label";
import {
2025-08-28 18:27:07 +02:00
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "~/components/ui/select";
import { cn } from "~/lib/utils";
2025-08-04 17:45:44 +02:00
import { useTranslation } from "~/providers/I18nProvider";
import {
2025-08-28 18:27:07 +02:00
type AnnunciOptions,
RicercaProvider,
type SortTypes,
useRicerca,
2025-08-04 17:45:44 +02:00
} from "~/providers/RicercaProvider";
2025-08-28 18:27:07 +02:00
import { generateSSGHelper } from "~/server/utils/ssgHelper";
import { api } from "~/utils/api";
2025-08-04 17:45:44 +02:00
const MapSection = dynamic(
() =>
import("~/components/annunci_map").then((mod) => ({
default: mod.MapSection,
})),
{
ssr: false,
loading: () => <LoadingPage />,
},
);
2025-08-04 17:45:44 +02:00
type AnnunciPageProps = {
2025-08-28 18:27:07 +02:00
options: AnnunciOptions;
2025-08-04 17:45:44 +02:00
};
const Annunci = ({ options }: AnnunciPageProps) => {
2025-08-28 18:27:07 +02:00
const { t } = useTranslation();
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
return (
<RicercaProvider options={options}>
<Head>
<title>{t.heads.annunci_titolo}</title>
2025-08-29 16:18:32 +02:00
<meta content={t.heads.annunci_description} name="description" />
2025-08-28 18:27:07 +02:00
</Head>
2025-08-04 17:45:44 +02:00
<main className="relative mx-auto w-full max-w-10xl space-y-5 bg-background px-2 py-5 md:px-8">
<Badge className="bg-muted py-1 text-foreground text-sm outline outline-muted-foreground">
{t.annunci.titolo}
</Badge>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<Ricerca />
<AccordionComp
className="max-w-6xl px-4 py-4 md:py-8"
defaultOpen={0}
2025-08-29 16:18:32 +02:00
texts={t.annunci.accordion_minifaq}
2025-08-28 18:27:07 +02:00
/>
</main>
</RicercaProvider>
);
2025-08-04 17:45:44 +02:00
};
2025-08-04 17:45:44 +02:00
export default Annunci;
Annunci.getLayout = (page: React.ReactNode) => {
return <Layout>{page}</Layout>;
};
2025-08-04 17:45:44 +02:00
export const getServerSideProps = (async () => {
2025-08-28 18:27:07 +02:00
const helper = generateSSGHelper();
const options = await helper.annunci.getAnnunciOptions.fetch();
return {
props: {
options,
},
};
2025-08-04 17:45:44 +02:00
}) satisfies GetServerSideProps<AnnunciPageProps>;
const Ricerca = () => {
const { map } = useRicerca();
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
return (
<div className="mx-auto w-full space-y-5">
<RicercaHeader />
<div className="relative flex w-full gap-4">
<RicercaSideFilters />
<div className="flex-1">{map ? <MapSection /> : <AnnunciList />}</div>
</div>
</div>
);
};
const Filters = () => {
const { t } = useTranslation();
const {
tipo,
setTipo,
comune,
setComune,
consegna,
setConsegna,
sort,
setSort,
comuniOptions,
tipologieOptions,
consegnaOptions,
ResetParams,
nFiltri,
} = useRicerca();
const mappedConsegnaOptions = useMemo(
// biome-ignore lint/style/noNonNullAssertion: <known lenght>
() => consegnaOptions.map((m) => t.preferenze.mesi[m]!).filter(Boolean),
[consegnaOptions, t.preferenze.mesi],
);
return (
<>
<SelectFilter
defaultValue={""}
handleReset={async () => {
await setTipo("");
}}
label={t.annunci.fs_tipologia.titolo}
onValueChange={async (value: string) => {
await setTipo(value);
}}
options={tipologieOptions}
placeholder={t.seleziona_placeholder}
value={tipo}
/>
<SelectFilter
defaultValue={""}
handleReset={async () => {
await setComune(null);
}}
label={t.annunci.comune}
onValueChange={async (value: string) => {
await setComune(value);
}}
options={comuniOptions}
placeholder={t.seleziona_placeholder}
value={comune}
/>
<SelectFilter
defaultValue={""}
handleReset={async () => {
await setConsegna(null);
}}
label={t.annunci.consegna}
onValueChange={async (value: string) => {
if (value === "") {
await setConsegna(null);
return;
}
if (t.preferenze.mesi.includes(value)) {
await setConsegna(t.preferenze.mesi.indexOf(value));
return;
}
console.warn("Value not found in preferenze.mesi");
await setConsegna(null);
}}
options={mappedConsegnaOptions}
placeholder={t.seleziona_placeholder}
value={consegna ? t.preferenze.mesi[consegna] || "" : ""}
/>
<SelectFilter
defaultValue={sort}
handleReset={async () => {
await setSort("Recenti");
}}
label={t.ordina_per}
onValueChange={async (value: SortTypes) => {
await setSort(value);
}}
options={["Recenti", "Prezzo", "Consegna", "Mq"]}
placeholder={t.seleziona_placeholder}
value={sort}
/>
<Button
className="flex flex-row gap-2"
disabled={nFiltri === 0}
onClick={ResetParams}
variant="destructive"
>
<FilterX className="size-5" /> {t.annunci.filtri_reset}
</Button>
</>
);
};
const RicercaSideFilters = () => {
return (
<div className="hidden h-fit w-46 max-w-46 shrink-0 grow-0 flex-col gap-3 overflow-clip rounded-md bg-secondary p-2 outline-neutral-300 2xl:flex">
<Filters />
</div>
2025-08-28 18:27:07 +02:00
);
2025-08-04 17:45:44 +02:00
};
const DrowdownFilters = () => {
2025-08-28 18:27:07 +02:00
const { t } = useTranslation();
const { nFiltri } = useRicerca();
2025-08-28 18:27:07 +02:00
const [open, setOpen] = useState(false);
2025-08-04 17:45:44 +02:00
// Close dropdown when page resizes
const handleResize = useCallback(() => {
setOpen(false);
}, []);
useEffect(() => {
window.addEventListener("resize", handleResize);
return () => {
window.removeEventListener("resize", handleResize);
};
}, [handleResize]);
return (
<div className="flex w-full sm:w-auto 2xl:hidden">
<DropdownMenu onOpenChange={setOpen} open={open}>
<DropdownMenuTrigger asChild>
<Button
className="group flex w-full flex-row gap-2 sm:w-auto"
variant="default"
>
<Badge className="w-fit rounded-md bg-secondary px-1.5 py-0.5 text-secondary-foreground dark:group-hover:bg-transparent">
{nFiltri}
</Badge>
<Filter className="size-5" />{" "}
{nFiltri === 1 ? t.annunci.filtro_attivo : t.annunci.filtri_attivi}
{open ? <ChevronUp /> : <ChevronDown />}
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent
align="start"
className="flex w-60 max-w-3xl flex-col gap-2 p-4"
>
<Filters />
</DropdownMenuContent>
</DropdownMenu>
</div>
);
};
const RicercaHeader = () => {
const { map, setMap } = useRicerca();
2025-08-28 18:27:07 +02:00
return (
<div className="mx-auto w-full max-w-10xl space-y-5">
<div className="flex w-full flex-col-reverse gap-2 sm:flex-row">
<div className="flex w-full items-center gap-2 sm:w-auto">
<DrowdownFilters />
2025-08-28 18:27:07 +02:00
<Button
className="flex w-fit flex-row items-center gap-2"
2025-08-28 18:27:07 +02:00
onClick={async () => {
await setMap((v) => !v);
}}
2025-08-29 16:18:32 +02:00
variant="default"
2025-08-28 18:27:07 +02:00
>
{!map ? (
<>
<MapIcon className="size-5" />{" "}
<span className="hidden sm:block">Mappa</span>
</>
) : (
<>
<Table className="size-5" />
<span className="hidden sm:block">Lista</span>
</>
)}
</Button>
</div>
<div className="flex w-full items-center justify-between gap-2 sm:justify-between">
<div className="relative z-35 flex w-full gap-1 sm:w-auto">
<CodiceBox
className="h-9 w-full"
inputId="annunci-search"
optionBoxClassName="top-11 "
/>
2025-08-28 18:27:07 +02:00
</div>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<CTA_TipologiaModal />
</div>
</div>
</div>
);
2025-08-04 17:45:44 +02:00
};
const AnnunciList = () => {
2025-08-28 18:27:07 +02:00
const {
tipo,
comune,
consegna,
sort,
map,
isLoading: ricercaLoading,
} = useRicerca();
2025-08-04 17:45:44 +02:00
const { data, status } = api.annunci.annunciRicerca.useQuery(
{
comune: comune || undefined,
consegna: consegna || undefined,
sort: sort || undefined,
tipologia: tipo || undefined,
},
{
enabled: !map,
placeholderData: keepPreviousData,
staleTime: 5000,
},
);
2025-08-28 18:27:07 +02:00
if (ricercaLoading) return <LoadingPage />;
if (status === "error") return <Status500 />;
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
return (
<div className="w-full space-y-4">
2025-08-28 18:27:07 +02:00
{status === "pending" ? (
<LoadingPage />
) : (
<div className="relative z-0 mx-auto grid w-full grid-flow-row grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4">
{data.map((annuncio, idx) => (
<LazyCardAnnuncio
key={annuncio.codice}
{...annuncio}
eager={idx <= 9}
videos={[]}
/>
))}
</div>
2025-08-28 18:27:07 +02:00
)}
</div>
2025-08-28 18:27:07 +02:00
);
2025-08-04 17:45:44 +02:00
};
interface SelectFilterProps<T> {
2025-08-28 18:27:07 +02:00
label: string;
options: string[];
defaultValue?: T;
value: T | undefined;
onValueChange: (value: T) => void;
handleReset: () => void;
placeholder: string;
2025-08-04 17:45:44 +02:00
}
export const SelectFilter = <T extends string>({
2025-08-28 18:27:07 +02:00
label,
options,
defaultValue,
value,
onValueChange,
placeholder,
handleReset,
2025-08-04 17:45:44 +02:00
}: SelectFilterProps<T>) => {
2025-08-28 18:27:07 +02:00
return (
<div className="flex flex-col gap-2">
<div className="flex h-4 flex-row gap-4 px-1">
<Label
className={cn(
2025-10-10 16:18:43 +02:00
"font-semibold text-muted-foreground",
value !== defaultValue && "text-primary",
2025-08-28 18:27:07 +02:00
)}
>
{label}
</Label>
{value !== defaultValue && (
<button
className="cursor-pointer"
onClick={handleReset}
type="button"
>
2025-08-28 18:27:07 +02:00
<RotateCcwIcon className="size-4" />
</button>
)}
</div>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<Select
defaultValue={defaultValue}
onValueChange={onValueChange}
2025-08-29 16:18:32 +02:00
value={value}
2025-08-28 18:27:07 +02:00
>
<SelectTrigger className="w-full bg-primary-foreground text-primary">
2025-08-28 18:27:07 +02:00
<SelectValue placeholder={placeholder} />
</SelectTrigger>
<SelectContent>
{options.map((option) => (
2025-08-29 16:18:32 +02:00
<SelectItem className="text-left" key={option} value={option}>
2025-08-28 18:27:07 +02:00
{option}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
);
2025-08-04 17:45:44 +02:00
};