114 lines
4.6 KiB
JavaScript
114 lines
4.6 KiB
JavaScript
import { jsxs, jsx } from "react/jsx-runtime";
|
|
import { B as BlogCard1 } from "./blog-card-1-CkeyGBWD.js";
|
|
import { B as Button } from "./button-CdJZJLGw.js";
|
|
import { C as Carousel, a as CarouselContent, b as CarouselItem } from "./carousel-3B7htZh-.js";
|
|
import { g as getPageSection, S as Section } from "./section-DPFpz4mP.js";
|
|
import { c as cn } from "./utils-DLCPGU0v.js";
|
|
import { usePage } from "@inertiajs/react";
|
|
import Autoplay from "embla-carousel-autoplay";
|
|
import { ChevronLeft, ChevronRight } from "lucide-react";
|
|
import { useState, useEffect } from "react";
|
|
import "./card-B-gBwpxd.js";
|
|
import "date-fns";
|
|
import "./avatar-C8iCpF5R.js";
|
|
import "@radix-ui/react-avatar";
|
|
import "@radix-ui/react-slot";
|
|
import "class-variance-authority";
|
|
import "embla-carousel-react";
|
|
import "./dialog-DGP_3dPQ.js";
|
|
import "@radix-ui/react-dialog";
|
|
import "./use-lang-44ndmTOc.js";
|
|
import "./chunked-uploader-input-CZfv7yqS.js";
|
|
import "./input-BsvJqbcd.js";
|
|
import "axios";
|
|
import "sonner";
|
|
import "./input-error-D1JIzedA.js";
|
|
import "./loading-button-CCIxhJrY.js";
|
|
import "./label-0rIIfpX0.js";
|
|
import "@radix-ui/react-label";
|
|
import "./textarea-Z0d4V-ti.js";
|
|
import "./inertia-BtwbgBI3.js";
|
|
import "./icon-picker-dialog-Bc1iwzL6.js";
|
|
import "./icon-picker-C-E-UbjO.js";
|
|
import "./debounce-ZFxqVthq.js";
|
|
import "./tooltip-BYKuzaoQ.js";
|
|
import "@radix-ui/react-tooltip";
|
|
import "lucide-react/dynamic";
|
|
import "./scroll-area-CDdrLubh.js";
|
|
import "@radix-ui/react-scroll-area";
|
|
import "./table-header-CdEXSV6s.js";
|
|
import "./table-BMWNGY4o.js";
|
|
import "@tanstack/react-table";
|
|
import "./table-page-size-CF314lUl.js";
|
|
import "./dropdown-menu-msun3TP8.js";
|
|
import "@radix-ui/react-dropdown-menu";
|
|
import "./route-DlE7FdTW.js";
|
|
import "clsx";
|
|
import "tailwind-merge";
|
|
const Blogs = () => {
|
|
const { props } = usePage();
|
|
const { page, customize, blogs } = props;
|
|
const blogsSection = getPageSection(page, "blogs");
|
|
const [api, setApi] = useState();
|
|
const [currentSlide, setCurrentSlide] = useState(0);
|
|
useEffect(() => {
|
|
if (!api) {
|
|
return;
|
|
}
|
|
const handleSelect = () => {
|
|
setCurrentSlide(api.selectedScrollSnap());
|
|
};
|
|
api.on("select", handleSelect);
|
|
return () => {
|
|
api.off("select", handleSelect);
|
|
};
|
|
}, [api]);
|
|
return /* @__PURE__ */ jsxs(Section, { customize, pageSection: blogsSection, containerClass: "z-10 py-20", children: [
|
|
/* @__PURE__ */ jsxs("div", { className: "", children: [
|
|
/* @__PURE__ */ jsx("h2", { className: "mb-2 text-2xl font-bold sm:text-3xl", children: blogsSection == null ? void 0 : blogsSection.title }),
|
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground", children: blogsSection == null ? void 0 : blogsSection.description })
|
|
] }),
|
|
/* @__PURE__ */ jsx(Carousel, { setApi, className: "py-10", opts: { align: "start", loop: true }, plugins: [Autoplay({ delay: 3e3 })], children: /* @__PURE__ */ jsx(CarouselContent, { children: blogs.map((blog) => /* @__PURE__ */ jsx(CarouselItem, { className: "basis-full md:basis-1/2 lg:basis-1/4", children: /* @__PURE__ */ jsx("div", { className: "h-full px-1.5 py-0.5", children: /* @__PURE__ */ jsx(BlogCard1, { blog, className: "h-full" }) }) }, blog.id)) }) }),
|
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
|
|
/* @__PURE__ */ jsx("div", { className: "flex items-center justify-center gap-2.5", children: api && blogs.map(({ id }, index) => /* @__PURE__ */ jsx(
|
|
"div",
|
|
{
|
|
className: cn(
|
|
"cursor-pointer rounded-full transition-all duration-200",
|
|
currentSlide === index ? "bg-primary h-2 w-4" : "h-2 w-2 bg-gray-300"
|
|
),
|
|
onClick: () => api.scrollTo(index)
|
|
},
|
|
id
|
|
)) }),
|
|
/* @__PURE__ */ jsxs("div", { className: "space-x-4", children: [
|
|
/* @__PURE__ */ jsx(
|
|
Button,
|
|
{
|
|
size: "icon",
|
|
variant: "outline",
|
|
disabled: !(api == null ? void 0 : api.canScrollPrev()),
|
|
onClick: () => api == null ? void 0 : api.scrollPrev(),
|
|
className: "hover:border-primary hover:bg-background",
|
|
children: /* @__PURE__ */ jsx(ChevronLeft, {})
|
|
}
|
|
),
|
|
/* @__PURE__ */ jsx(
|
|
Button,
|
|
{
|
|
size: "icon",
|
|
variant: "outline",
|
|
disabled: !(api == null ? void 0 : api.canScrollNext()),
|
|
onClick: () => api == null ? void 0 : api.scrollNext(),
|
|
className: "hover:border-primary hover:bg-background",
|
|
children: /* @__PURE__ */ jsx(ChevronRight, {})
|
|
}
|
|
)
|
|
] })
|
|
] })
|
|
] });
|
|
};
|
|
export {
|
|
Blogs as default
|
|
};
|