"use client";

import { useInfiniteQuery } from "@tanstack/react-query";
import { useSettings } from "@/hook/use-settings";
import { shopService } from "@/services/shop";
import { useT } from "@/context/translation-map";
import { Paginate } from "@/types/global";
import { Shop } from "@/types/shop";
import { extractDataFromPagination } from "@/utils/extract-data";
import { ShopCard } from "@/components/shop-card";
import { ListHeader } from "@/components/list-header";
import { Swiper, SwiperSlide } from "swiper/react";
import { Grid } from "swiper/modules";
import "swiper/css/grid";
import { buildUrlQueryParams } from "@/utils/build-url-query-params";
import useAddressStore from "@/global-store/address";
import { ClientOnly } from "@/components/client-only/client-only";

interface NearYouProps {
  data?: Paginate<Shop>;
  lat?: number;
  lon?: number;
}

export const NearYou = ({ data, lat, lon }: NearYouProps) => {
  const { language } = useSettings();
  const t = useT();
  const country = useAddressStore((state) => state.country);
  const city = useAddressStore((state) => state.city);
  const { data: shops } = useInfiniteQuery(
    ["shops", language?.locale, country?.region_id, country?.id, city?.id],
    () =>
      shopService.getAll({
        lang: language?.locale,
        perPage: 8,
        region_id: country?.region_id || undefined,
        country_id: country?.id || undefined,
        city_id: city?.id || undefined,
      }),
    {
      initialData: data ? { pages: [data], pageParams: [1] } : undefined,
    }
  );

  const shopList = extractDataFromPagination(shops?.pages);

  return (
    <div className="mt-14">
      <ListHeader
        title={t("all.shops")}
        link={buildUrlQueryParams("/shops", {
          latitude: lat,
          longitude: lon,
        })}
        container
      />
      <div className="xl:container ">
        <ClientOnly
          fallback={
            <div className="px-4 flex gap-4 overflow-hidden">
              {Array.from(Array(4).keys()).map((i) => (
                <div key={i} className="bg-gray-300 rounded-button min-w-[240px] h-80" />
              ))}
            </div>
          }
        >
          <Swiper
            className="!px-4 xl:!px-0"
            modules={[Grid]}
            breakpoints={{
              992: {
                slidesPerView: 4,
                spaceBetween: 30,
                grid: {
                  rows: 2,
                  fill: "row",
                },
              },
              768: {
                slidesPerView: 3,
                spaceBetween: 30,
                grid: {
                  rows: 1,
                },
              },
              562: {
                slidesPerView: 2.4,
                spaceBetween: 20,
                grid: {
                  rows: 1,
                },
              },
              0: {
                slidesPerView: 1.4,
                spaceBetween: 8,
                grid: {
                  rows: 1,
                },
              },
            }}
          >
            {shopList?.map((shop) => (
              <SwiperSlide key={shop.id}>
                <ShopCard data={shop} />
              </SwiperSlide>
            ))}
          </Swiper>
        </ClientOnly>
      </div>
    </div>
  );
};
