lms/bootstrap/ssr/assets/layout-B6zdS-as.js
2025-12-15 12:26:23 +01:00

106 lines
5.6 KiB
JavaScript

import { jsx, jsxs } from "react/jsx-runtime";
import { B as Button } from "./button-CdJZJLGw.js";
import { C as Card } from "./card-B-gBwpxd.js";
import { S as ScrollArea } from "./scroll-area-CDdrLubh.js";
import { S as Sheet, a as SheetTrigger, b as SheetContent } from "./sheet-BOQ-e9_C.js";
import { T as TooltipProvider, a as Tooltip, b as TooltipTrigger, c as TooltipContent } from "./tooltip-BYKuzaoQ.js";
import { u as useScreen } from "./use-screen-B7SDA5zE.js";
import { L as LandingLayout } from "./landing-layout-Cned6N12.js";
import { g as getQueryParams } from "./route-DlE7FdTW.js";
import { usePage, router } from "@inertiajs/react";
import { ListFilter, Grid, List } from "lucide-react";
import { useState } from "react";
import CourseFilter from "./course-filter-C0vDh2aK.js";
import "@radix-ui/react-slot";
import "class-variance-authority";
import "./utils-DLCPGU0v.js";
import "clsx";
import "tailwind-merge";
import "@radix-ui/react-scroll-area";
import "@radix-ui/react-dialog";
import "@radix-ui/react-tooltip";
import "./index-CzkkaexN.js";
import "./app-logo-DWyi5bLn.js";
import "lucide-react/dynamic";
import "./main-BKBelQb-.js";
import "next-themes";
import "sonner";
import "./dropdown-menu-msun3TP8.js";
import "@radix-ui/react-dropdown-menu";
import "./use-auth-8FvJer_G.js";
import "./appearance-BJIqrZL5.js";
import "./language-mewnB-2r.js";
import "./separator-CSqU-rrB.js";
import "@radix-ui/react-separator";
import "./notification-Bg6IzWOo.js";
import "./popover-Cv6Hz_y0.js";
import "@radix-ui/react-popover";
import "date-fns";
import "./profile-toggle-DX74bufz.js";
import "./avatar-C8iCpF5R.js";
import "@radix-ui/react-avatar";
import "nanoid";
import "./search-input-hiWHUNfw.js";
import "./debounce-ZFxqVthq.js";
import "./radio-group-Wf8uu9ZY.js";
import "@radix-ui/react-radio-group";
const Layout = ({ children }) => {
const { url, props } = usePage();
const { category, categoryChild, translate } = props;
const { frontend } = translate;
const [open, setOpen] = useState(false);
const urlParams = getQueryParams(url);
const viewType = urlParams["view"] ?? "grid";
const { screen } = useScreen();
const getQueryRoute = (newParams, category2, category_child) => {
const updatedParams = { ...urlParams };
if ("search" in updatedParams) {
delete updatedParams.search;
}
return route("category.courses", {
category: category2,
category_child,
...updatedParams,
...newParams
});
};
const gridListHandler = (view) => {
router.get(getQueryRoute({ view }, (category == null ? void 0 : category.slug) || "all", categoryChild == null ? void 0 : categoryChild.slug));
};
return /* @__PURE__ */ jsx(LandingLayout, { customizable: false, children: /* @__PURE__ */ jsxs("div", { className: "container flex items-start gap-6 py-6", children: [
screen > 768 && /* @__PURE__ */ jsx(Card, { className: "sticky top-24 w-64 p-4", children: /* @__PURE__ */ jsx(CourseFilter, {}) }),
/* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
/* @__PURE__ */ jsxs("div", { className: "mb-6 flex items-center justify-between", children: [
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
screen < 768 && /* @__PURE__ */ jsxs(Sheet, { open, onOpenChange: setOpen, children: [
/* @__PURE__ */ jsx(SheetTrigger, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "icon", variant: "outline", children: /* @__PURE__ */ jsx(ListFilter, { className: "h-5 w-5" }) }) }),
/* @__PURE__ */ jsx(SheetContent, { side: "left", className: "border-border w-[220px]", children: /* @__PURE__ */ jsx(ScrollArea, { className: "h-full", children: /* @__PURE__ */ jsx(CourseFilter, { setOpen }) }) })
] }),
/* @__PURE__ */ jsxs("div", { children: [
/* @__PURE__ */ jsxs("h2", { className: "text-2xl font-bold capitalize", children: [
category || categoryChild ? (category == null ? void 0 : category.title) || (categoryChild == null ? void 0 : categoryChild.title) : frontend.all,
" ",
frontend.courses
] }),
(category && category.description || categoryChild && categoryChild.description) && /* @__PURE__ */ jsx("p", { className: "text-muted-foreground mt-1 text-sm", children: (category == null ? void 0 : category.description) || (categoryChild == null ? void 0 : categoryChild.description) })
] })
] }),
/* @__PURE__ */ jsxs("div", { className: "flex gap-2", children: [
/* @__PURE__ */ jsx(TooltipProvider, { delayDuration: 0, children: /* @__PURE__ */ jsxs(Tooltip, { children: [
/* @__PURE__ */ jsx(TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "icon", variant: viewType === "grid" ? "default" : "outline", onClick: () => gridListHandler("grid"), children: /* @__PURE__ */ jsx(Grid, { className: "h-4 w-4" }) }) }),
/* @__PURE__ */ jsx(TooltipContent, { children: /* @__PURE__ */ jsx("p", { children: frontend.grid_view }) })
] }) }),
/* @__PURE__ */ jsx(TooltipProvider, { delayDuration: 0, children: /* @__PURE__ */ jsxs(Tooltip, { children: [
/* @__PURE__ */ jsx(TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "icon", variant: viewType === "list" ? "default" : "outline", onClick: () => gridListHandler("list"), children: /* @__PURE__ */ jsx(List, { className: "h-4 w-4" }) }) }),
/* @__PURE__ */ jsx(TooltipContent, { children: /* @__PURE__ */ jsx("p", { children: frontend.list_view }) })
] }) })
] })
] }),
children
] })
] }) });
};
export {
Layout as default
};