You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.3 KiB
77 lines
2.3 KiB
import { cn } from "@core/utils/cn.ts";
|
|
import { AlignLeftIcon, type LucideIcon } from "lucide-react";
|
|
import Footer from "@components/UI/Footer.tsx";
|
|
import { Spinner } from "@components/UI/Spinner.tsx";
|
|
import { ErrorBoundary } from "react-error-boundary";
|
|
import { ErrorPage } from "@components/UI/ErrorPage.tsx";
|
|
|
|
|
|
export interface PageLayoutProps {
|
|
label: string;
|
|
noPadding?: boolean;
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
actions?: {
|
|
icon: LucideIcon;
|
|
iconClasses?: string;
|
|
onClick: () => void;
|
|
disabled?: boolean;
|
|
isLoading?: boolean;
|
|
}[];
|
|
}
|
|
|
|
export const PageLayout = ({
|
|
label,
|
|
noPadding,
|
|
actions,
|
|
className,
|
|
children,
|
|
}: PageLayoutProps) => {
|
|
return (
|
|
<ErrorBoundary FallbackComponent={ErrorPage}>
|
|
<div className="relative flex h-full w-full flex-col">
|
|
<div className="flex h-14 shrink-0 border-b-[0.5px] border-slate-300 dark:border-slate-700 md:h-16 md:px-4">
|
|
<button
|
|
type="button"
|
|
className="pl-4 transition-all hover:text-accent md:hidden"
|
|
>
|
|
<AlignLeftIcon />
|
|
</button>
|
|
<div className="flex flex-1 items-center justify-between px-4 md:px-0">
|
|
<div className="flex w-full items-center">
|
|
<span className="w-full text-lg font-medium">{label}</span>
|
|
<div className="flex justify-end space-x-4">
|
|
{actions?.map((action) => (
|
|
<button
|
|
key={action.icon.displayName}
|
|
type="button"
|
|
disabled={action?.disabled}
|
|
className="transition-all hover:text-accent"
|
|
onClick={action.onClick}
|
|
>
|
|
{action?.isLoading ? <Spinner /> : (
|
|
<action.icon
|
|
className={action.iconClasses}
|
|
aria-disabled={action.disabled}
|
|
/>
|
|
)}
|
|
</button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
className={cn(
|
|
"flex h-full w-full flex-col overflow-y-auto",
|
|
!noPadding && "pl-3 pr-3 ",
|
|
className
|
|
)}
|
|
>
|
|
{children}
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
</ErrorBoundary>
|
|
);
|
|
};
|
|
|