novas atualizacoes do sistema de fechamento

This commit is contained in:
Vitex Tecnologia
2026-04-27 16:50:27 -03:00
parent 6da067c641
commit 4c28862c5c
27 changed files with 3388 additions and 300 deletions
+13 -2
View File
@@ -2,7 +2,7 @@ import { Toaster } from "@/components/ui/toaster";
import { Toaster as Sonner } from "@/components/ui/sonner";
import { TooltipProvider } from "@/components/ui/tooltip";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { BrowserRouter, Routes, Route } from "react-router-dom";
import { BrowserRouter, Routes, Route, Navigate, useLocation } from "react-router-dom";
import { ThemeProvider } from "next-themes";
import Index from "./pages/Index";
import NotFound from "./pages/NotFound";
@@ -11,6 +11,16 @@ import React from "react";
import IntelligenceIAApp from "./modules/intelligence-ia/App";
import FechamentoHgtxApp from "./modules/fechamento-hgtx/App";
const FECHAMENTO_LEGACY_PREFIX = "/fechamento-hgtx";
/** Redireciona URLs antigas `/fechamento-hgtx/...` para `/fechamento/...` (mesmo sufixo, query e hash). */
function FechamentoLegacyRedirect() {
const location = useLocation();
const tail = location.pathname.slice(FECHAMENTO_LEGACY_PREFIX.length);
const to = `/fechamento${tail}`;
return <Navigate to={`${to}${location.search}${location.hash}`} replace />;
}
const queryClient = new QueryClient();
const App = () => (
@@ -34,7 +44,8 @@ const App = () => (
/>
<Route path="/intelligence-ia/*" element={<IntelligenceIAApp />} />
<Route path="/fechamento-hgtx/*" element={<FechamentoHgtxApp />} />
<Route path="/fechamento/*" element={<FechamentoHgtxApp />} />
<Route path="/fechamento-hgtx/*" element={<FechamentoLegacyRedirect />} />
<Route path="/*" element={<Index />} />