193cadef27
Frontend fixes: - Disable verbatimModuleSyntax in TypeScript config to fix module imports - Add displayName to critical React components for better production debugging - Configure Vite build with manual chunks for better code splitting - Enable sourcemaps for production debugging Backend fixes: - Remove updated_at field from events table insert (column doesn't exist) - Fix SQL error that was causing 500 errors on event creation These changes resolve: - React error #130 that occurred during login and event creation - 500 Internal Server Error when creating new events - Better error tracking in production builds 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
54 lines
1.6 KiB
TypeScript
54 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>
|
|
);
|
|
};
|
|
|
|
AdminLayout.displayName = 'AdminLayout'; |