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>
78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
/**
|
|
* Shared column-detection helpers for register imports
|
|
* (customers, suppliers, articles).
|
|
*/
|
|
|
|
export function normalize(header: string): string {
|
|
return header.toLowerCase().trim().replace(/[_\-./]/g, ' ')
|
|
}
|
|
|
|
export function matchesKeywords(header: string, keywords: string[]): boolean {
|
|
const normalized = normalize(header)
|
|
return keywords.some((kw) => normalized === kw || normalized.includes(kw))
|
|
}
|
|
|
|
/**
|
|
* Find the first column index whose header matches one of `keywords`,
|
|
* skipping any indices already taken by other columns.
|
|
*/
|
|
export function findColumn(
|
|
headers: string[],
|
|
keywords: string[],
|
|
taken: Set<number>,
|
|
): number | null {
|
|
for (let i = 0; i < headers.length; i++) {
|
|
if (taken.has(i)) continue
|
|
if (matchesKeywords(headers[i], keywords)) {
|
|
taken.add(i)
|
|
return i
|
|
}
|
|
}
|
|
return null
|
|
}
|
|
|
|
/** Trim a string-or-blank cell, returning null when empty. */
|
|
export function cellOrNull(value: unknown): string | null {
|
|
if (value === null || value === undefined) return null
|
|
const str = String(value).trim()
|
|
return str === '' ? null : str
|
|
}
|
|
|
|
/** Parse an integer payment term ("30 dagar" → 30) with a default fallback. */
|
|
export function parsePaymentTerms(value: unknown, fallback: number): number {
|
|
const str = cellOrNull(value)
|
|
if (!str) return fallback
|
|
const match = str.match(/-?\d+/)
|
|
if (!match) return fallback
|
|
const n = parseInt(match[0], 10)
|
|
if (isNaN(n) || n < 0 || n > 365) return fallback
|
|
return n
|
|
}
|
|
|
|
/**
|
|
* Normalize an org/personal number to its dedup key (digits only).
|
|
* Returns null for empty input or strings that contain no digits.
|
|
*/
|
|
export function normalizeOrgNumber(value: string | null): string | null {
|
|
if (!value) return null
|
|
return value.replace(/\D/g, '') || null
|
|
}
|
|
|
|
/**
|
|
* Normalize an email to its dedup key (trimmed + lowercased).
|
|
* Returns null for empty/whitespace-only input.
|
|
*/
|
|
export function normalizeEmail(value: string | null): string | null {
|
|
if (!value) return null
|
|
return value.trim().toLowerCase() || null
|
|
}
|
|
|
|
/**
|
|
* Lowercased dedup key for matching a row by name (articles, and any other
|
|
* importer that dedupes on a free-text name). Same rule as normalizeEmail.
|
|
*/
|
|
export function normalizeNameKey(value: string | null): string | null {
|
|
if (!value) return null
|
|
return value.trim().toLowerCase() || null
|
|
}
|