f266c386f3
* chore: repo-wide bloat sweep, remove dead code and fold duplicate helpers Remove 33 dead files, ~270 unreferenced exports/types, 13 dead i18n namespaces and 4 unused dependencies; fold byte-identical helper copies into one canonical home each (lib/utils chunk/sleep/utcDateStamp, lib/dates/iso, lib/invariants/uuid, lib/xml/escape, lib/reports/sru/format, lib/pdf/number-text, lib/browser/panel-request, lib/api/v1/body + v1ValidationError rolled out to ~55 v1 routes, booking-template schemas). No behaviour change: v1 bodies and status codes, MCP tool schemas, DB writes and money math are untouched. Naive ore rounding was deliberately not swapped for roundOre; see DECISIONS.md 2026-09-02 for the full list of things left alone on purpose. tsc, lint, 19588 unit tests and check:guards green; antipattern baseline ratcheted (naive-ore-round 622 -> 620, hand-rolled-invariant 115 -> 113). Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> * test(transactions): import RawTransaction from @/types after the ingest re-export removal CI's type ratchet (check:types, full tsconfig) caught the one test file that still imported the type through lib/transactions/ingest. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> --------- Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
90 lines
3.8 KiB
TypeScript
90 lines
3.8 KiB
TypeScript
import type { ComponentType } from 'react'
|
|
import dynamic from 'next/dynamic'
|
|
import { SettingsLoadingSkeleton } from '../SettingsLoadingSkeleton'
|
|
|
|
const AccountSettingsContent = dynamic(() =>
|
|
import('./AccountSettingsContent').then((module) => ({ default: module.AccountSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const CompanySettingsContent = dynamic(() =>
|
|
import('./CompanySettingsContent').then((module) => ({ default: module.CompanySettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const BookkeepingSettingsContent = dynamic(() =>
|
|
import('./BookkeepingSettingsContent').then((module) => ({ default: module.BookkeepingSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const TaxSettingsContent = dynamic(() =>
|
|
import('./TaxSettingsContent').then((module) => ({ default: module.TaxSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const SalarySettingsContent = dynamic(() =>
|
|
import('./SalarySettingsContent').then((module) => ({ default: module.SalarySettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const InvoicingSettingsContent = dynamic(() =>
|
|
import('./InvoicingSettingsContent').then((module) => ({ default: module.InvoicingSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const TemplatesSettingsContent = dynamic(() =>
|
|
import('./TemplatesSettingsContent').then((module) => ({ default: module.TemplatesSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const BankingSettingsContent = dynamic(() =>
|
|
import('./BankingSettingsContent').then((module) => ({ default: module.BankingSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const AssistantSettingsContent = dynamic(() =>
|
|
import('./AssistantSettingsContent').then((module) => ({ default: module.AssistantSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const ApiSettingsContent = dynamic(() =>
|
|
import('./ApiSettingsContent').then((module) => ({ default: module.ApiSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const BillingSettingsContent = dynamic(() =>
|
|
import('./BillingSettingsContent').then((module) => ({ default: module.BillingSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const TeamSettingsContent = dynamic(() =>
|
|
import('../TeamPanel').then((module) => ({ default: module.TeamPanel })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const BrandSettingsContent = dynamic(() =>
|
|
import('./BrandSettingsContent').then((module) => ({ default: module.BrandSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const WhatsAppSettingsContent = dynamic(() =>
|
|
import('./WhatsAppSettingsContent').then((module) => ({ default: module.WhatsAppSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
const MailSettingsContent = dynamic(() =>
|
|
import('./MailSettingsContent').then((module) => ({ default: module.MailSettingsContent })),
|
|
{ loading: SettingsLoadingSkeleton },
|
|
)
|
|
|
|
/**
|
|
* Single source of truth mapping a settings section id to the component that
|
|
* renders its content. Both the per-section route (`settings/<section>/page.tsx`,
|
|
* a thin wrapper) and the routed settings modal (`SettingsModal` → `SettingsShell`)
|
|
* resolve content through this map, so there is exactly one place a section's
|
|
* composition lives.
|
|
*/
|
|
export const SETTINGS_SECTIONS: Record<string, ComponentType> = {
|
|
account: AccountSettingsContent,
|
|
company: CompanySettingsContent,
|
|
bookkeeping: BookkeepingSettingsContent,
|
|
tax: TaxSettingsContent,
|
|
salary: SalarySettingsContent,
|
|
invoicing: InvoicingSettingsContent,
|
|
templates: TemplatesSettingsContent,
|
|
banking: BankingSettingsContent,
|
|
assistant: AssistantSettingsContent,
|
|
api: ApiSettingsContent,
|
|
billing: BillingSettingsContent,
|
|
team: TeamSettingsContent,
|
|
brand: BrandSettingsContent,
|
|
whatsapp: WhatsAppSettingsContent,
|
|
mail: MailSettingsContent,
|
|
}
|