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>
73 lines
2.3 KiB
TypeScript
73 lines
2.3 KiB
TypeScript
/**
|
|
* Initial fiscal-year scope resolution shared by FyPicker and
|
|
* FiscalYearSelector. Pure so the restore rules (persisted choice, "all
|
|
* years", newest started period, most recently ended period) can be tested
|
|
* without React, and so both pickers cannot drift apart again.
|
|
*/
|
|
|
|
import type { FiscalPeriod } from '@/types'
|
|
import { ALL_YEARS_VALUE } from '@/components/common/fiscal-year-storage'
|
|
import { todayIsoUtc } from '@/lib/dates/iso'
|
|
|
|
/** Newest first; optionally drops periods that have not started yet. */
|
|
export function prepareFiscalPeriods(
|
|
periods: readonly FiscalPeriod[],
|
|
hideFuturePeriods: boolean,
|
|
today: string = todayIsoUtc(),
|
|
): FiscalPeriod[] {
|
|
return periods
|
|
.filter((p) => !hideFuturePeriods || p.period_start <= today)
|
|
.sort((a, b) => b.period_start.localeCompare(a.period_start))
|
|
}
|
|
|
|
export interface FiscalScopeOptions {
|
|
/** Whether "all years" (null) is a valid selection on this surface. */
|
|
includeAllOption: boolean
|
|
/**
|
|
* Filing surfaces: ignore the persisted choice and open on the most
|
|
* recently ended period (only an ended year can be declared).
|
|
*/
|
|
preferLatestEnded?: boolean
|
|
today?: string
|
|
}
|
|
|
|
export interface FiscalScopePick {
|
|
periodId: string | null
|
|
period: FiscalPeriod | null
|
|
}
|
|
|
|
/**
|
|
* What the picker should select on load, or null when nothing should be
|
|
* auto-selected. `periods` must already be prepared (newest first);
|
|
* `stored` is the raw persisted value for this company (or null).
|
|
*/
|
|
export function resolveInitialFiscalScope(
|
|
periods: readonly FiscalPeriod[],
|
|
stored: string | null,
|
|
options: FiscalScopeOptions,
|
|
): FiscalScopePick | null {
|
|
const newest = periods[0] ?? null
|
|
|
|
if (options.preferLatestEnded) {
|
|
const today = options.today ?? todayIsoUtc()
|
|
const pick = periods.find((p) => p.period_end < today) ?? newest
|
|
return pick ? { periodId: pick.id, period: pick } : null
|
|
}
|
|
|
|
if (stored === ALL_YEARS_VALUE) {
|
|
if (options.includeAllOption) return { periodId: null, period: null }
|
|
return newest ? { periodId: newest.id, period: newest } : null
|
|
}
|
|
|
|
if (stored) {
|
|
const match = periods.find((p) => p.id === stored)
|
|
if (match) return { periodId: match.id, period: match }
|
|
}
|
|
|
|
if (!options.includeAllOption && newest) {
|
|
return { periodId: newest.id, period: newest }
|
|
}
|
|
|
|
return null
|
|
}
|