Files
HRM-System/resources/js/components/app-shell.tsx
2026-04-13 08:16:56 +08:00

46 lines
1.5 KiB
TypeScript
Executable File

import { SidebarProvider } from '@/components/ui/sidebar';
import { useLayout } from '@/contexts/LayoutContext';
import { FloatingChatGpt } from '@/components/FloatingChatGpt';
import { cn } from '@/lib/utils';
import { useState } from 'react';
import CookieConsentBanner from '@/components/CookieConsentBanner';
interface AppShellProps {
children: React.ReactNode;
variant?: 'header' | 'sidebar';
}
export function AppShell({ children, variant = 'header' }: AppShellProps) {
const [isOpen, setIsOpen] = useState(() => (typeof window !== 'undefined' ? localStorage.getItem('sidebar') !== 'false' : true));
const handleSidebarChange = (open: boolean) => {
setIsOpen(open);
if (typeof window !== 'undefined') {
localStorage.setItem('sidebar', String(open));
}
};
if (variant === 'header') {
return (
<div className="flex min-h-screen w-full flex-col">
{children}
<FloatingChatGpt />
<CookieConsentBanner />
</div>
);
}
const { position } = useLayout();
return (
<SidebarProvider defaultOpen={isOpen} open={isOpen} onOpenChange={handleSidebarChange}>
<div className={cn('flex w-full', position === 'right' ? 'flex-row-reverse' : 'flex-row')}>
{children}
<FloatingChatGpt />
<CookieConsentBanner />
</div>
</SidebarProvider>
);
}