mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 19:32:25 +00:00
- Change root layout from h-screen to min-h-screen to prevent height conflicts - Remove overflow-hidden and overflow-y-auto from main container to eliminate competing scroll contexts - Streamline TransactionsTable layout by removing unnecessary overflow wrappers - Add max-w-full constraint to prevent horizontal overflow issues 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { createRootRoute, Outlet } from "@tanstack/react-router";
|
|
import { useState } from "react";
|
|
import Sidebar from "../components/Sidebar";
|
|
import Header from "../components/Header";
|
|
import { PWAInstallPrompt, PWAUpdatePrompt } from "../components/PWAPrompts";
|
|
import { usePWA } from "../hooks/usePWA";
|
|
|
|
function RootLayout() {
|
|
const [sidebarOpen, setSidebarOpen] = useState(false);
|
|
const { updateAvailable, updateSW } = usePWA();
|
|
|
|
const handlePWAInstall = () => {
|
|
console.log("PWA installed successfully");
|
|
};
|
|
|
|
const handlePWAUpdate = async () => {
|
|
try {
|
|
await updateSW();
|
|
console.log("PWA updated successfully");
|
|
} catch (error) {
|
|
console.error("Error updating PWA:", error);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex min-h-screen bg-background">
|
|
<Sidebar sidebarOpen={sidebarOpen} setSidebarOpen={setSidebarOpen} />
|
|
|
|
{/* Mobile overlay */}
|
|
{sidebarOpen && (
|
|
<div
|
|
className="fixed inset-0 z-40 bg-black/50 lg:hidden"
|
|
onClick={() => setSidebarOpen(false)}
|
|
/>
|
|
)}
|
|
|
|
<div className="flex flex-col flex-1">
|
|
<Header setSidebarOpen={setSidebarOpen} />
|
|
<main className="flex-1 p-6">
|
|
<Outlet />
|
|
</main>
|
|
</div>
|
|
|
|
{/* PWA Prompts */}
|
|
<PWAInstallPrompt onInstall={handlePWAInstall} />
|
|
<PWAUpdatePrompt
|
|
updateAvailable={updateAvailable}
|
|
onUpdate={handlePWAUpdate}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export const Route = createRootRoute({
|
|
component: RootLayout,
|
|
});
|