f38a8ef598
- Create adminEvents.js router to handle /api/admin/events endpoints - Mount events router in admin.js to fix 404 errors - Fix admin layout CSS - changed from static to flex layout - Update AdminSidebar positioning from static to relative - Add missing PUT endpoints for general and security settings - Fix frontend environment variables in docker-compose.local.yml - Add build args to Dockerfile.dev for environment variables - Update CORS to accept requests from all dev servers - Remove unused imports from SettingsPage This fixes: - Events page 404 error - Admin layout misalignment (sidebar and content on different rows) - Settings page not loading - CORS issues between frontend and backend 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Outlet, Navigate } from 'react-router-dom';
|
|
|
|
import { useAdminAuth } from '../../contexts';
|
|
import { AdminSidebar } from './AdminSidebar';
|
|
import { AdminHeader } from './AdminHeader';
|
|
|
|
export const AdminLayout: React.FC = () => {
|
|
const { isAuthenticated, isLoading } = useAdminAuth();
|
|
const [sidebarOpen, setSidebarOpen] = useState(false);
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="min-h-screen bg-neutral-50 flex items-center justify-center">
|
|
<div className="text-center">
|
|
<div className="w-16 h-16 border-4 border-primary-600 border-t-transparent rounded-full animate-spin mx-auto mb-4"></div>
|
|
<p className="text-neutral-600">Loading...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!isAuthenticated) {
|
|
return <Navigate to="/admin/login" replace />;
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-neutral-50 flex">
|
|
{/* Mobile sidebar backdrop */}
|
|
{sidebarOpen && (
|
|
<div
|
|
className="fixed inset-0 bg-black bg-opacity-50 z-40 lg:hidden"
|
|
onClick={() => setSidebarOpen(false)}
|
|
/>
|
|
)}
|
|
|
|
{/* Sidebar */}
|
|
<AdminSidebar isOpen={sidebarOpen} onClose={() => setSidebarOpen(false)} />
|
|
|
|
{/* Main content */}
|
|
<div className="flex-1 flex flex-col min-w-0">
|
|
{/* Header */}
|
|
<AdminHeader onMenuClick={() => setSidebarOpen(true)} />
|
|
|
|
{/* Page content */}
|
|
<main id="main-content" className="flex-1 px-4 sm:px-6 lg:px-8 py-8">
|
|
<Outlet />
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}; |