/* Shared app chrome (sidebar nav + sticky footer) for the static layout review pages. Mirrors src/gui/app.py:_build_navigation() ordering and src/gui/components/_legacy.py:render_sticky_footer(). Each page sets
to mark the active nav item. */ (function () { // Sections + entries in the same order app.py registers them. var NAV = [ { label: "Analysis", items: [ { id: "home", icon: "insert_chart_outlined", name: "File Analysis", href: "home.html" }, { id: "11_reconciler", icon: "compare_arrows", name: "Reconcile Two Files", href: "11_reconciler.html" }, ]}, { label: "Data Cleaners", items: [ { id: "04_missing_handler", icon: "help_outline", name: "Fix Missing Values", href: "04_missing_handler.html" }, { id: "06_outlier_detector", icon: "insights", name: "Find Unusual Values", href: "06_outlier_detector.html", soon: true }, { id: "02_text_cleaner", icon: "text_format", name: "Clean Text", href: "02_text_cleaner.html" }, { id: "03_format_standardizer", icon: "format_list_bulleted", name: "Standardize Formats", href: "03_format_standardizer.html" }, { id: "01_deduplicator", icon: "search", name: "Find Duplicates", href: "01_deduplicator.html" }, { id: "08_validator_reporter", icon: "check_circle", name: "Quality Check", href: "08_validator_reporter.html", soon: true }, ]}, { label: "Transformations", items: [ { id: "05_column_mapper", icon: "view_column", name: "Map Columns", href: "05_column_mapper.html" }, { id: "07_multi_file_merger", icon: "account_tree", name: "Combine Files", href: "07_multi_file_merger.html", soon: true }, { id: "10_pdf_extractor", icon: "picture_as_pdf", name: "PDF to CSV", href: "10_pdf_extractor.html" }, ]}, { label: "Automations", items: [ { id: "09_pipeline_runner", icon: "auto_awesome", name: "Automated Workflows", href: "09_pipeline_runner.html" }, ]}, ]; var active = document.body.getAttribute("data-page") || ""; // ---- Sidebar ----------------------------------------------------------- var sb = document.getElementById("dt-sidebar"); if (sb) { var html = '' + '' + 'D' + '' + 'UNALOGIX' + 'DataTools' + '' + '' + '' + ''; sb.innerHTML = html; } // ---- Sticky footer ----------------------------------------------------- var ft = document.getElementById("dt-footer"); if (ft) { ft.innerHTML = 'closeClose' + '' + 'DataTools · local-first · static layout preview'; } })();