Recover to clean v0.60f then implement only the storage listing contract. - Add listInvestigations() to provider: enumerate by prefix, project lightweight summary (id, scenario, updatedAt, investigationRevision, reportExists, reportGeneratedFromRevision), sort by updatedAt desc - Add application-facing wrapper in investigation-storage.js - Add 8 deterministic tests covering all listing invariants (coexistence, correct IDs, lightweight projection, legacy exclusion, unrelated exclusion, independent update, ordering, malformed skip) - Fix MockStorageMap WebStorage API compatibility (.length + .key(i)) - Portfolio NOT migrated — that is v0.60g2
43 lines
1.5 KiB
JavaScript
43 lines
1.5 KiB
JavaScript
// investigation-storage — application-facing persistence boundary
|
|
// Owns the canonical identity contract: snapshot.id is the sole save identity.
|
|
// Delegates to the concrete localStorage provider internally.
|
|
|
|
import { loadInvestigation as _load, saveInvestigation as _save, clearInvestigation as _clear, listInvestigations as _list } from "./providers/local-storage.js";
|
|
|
|
/**
|
|
* Canonical save contract: snapshot.id is the sole identity authority.
|
|
* When snapshot carries an id — persist under that id key (identity-aware).
|
|
* When snapshot has no id — fall back to legacy singleton compatibility path.
|
|
*/
|
|
export function saveInvestigation(snapshot, explicitId) {
|
|
if (snapshot && typeof snapshot === "object" && snapshot.id != null) {
|
|
return _save(snapshot, snapshot.id);
|
|
}
|
|
// Legacy unidentified snapshot — singleton fallback for unmigrated callers
|
|
return _save(snapshot, explicitId);
|
|
}
|
|
|
|
/**
|
|
* Canonical load contract: select by durable id when supplied;
|
|
* fall back to legacy singleton path otherwise.
|
|
*/
|
|
export function loadInvestigation(id) {
|
|
return _load(id != null ? id : undefined);
|
|
}
|
|
|
|
/**
|
|
* Canonical clear contract: remove by identity-aware key when supplied;
|
|
* fall back to legacy singleton keys otherwise.
|
|
*/
|
|
export function clearInvestigation(id) {
|
|
return _clear(id ?? undefined);
|
|
}
|
|
|
|
/**
|
|
* Lists all durable-ID Investigation records as lightweight summaries.
|
|
* Excludes legacy singleton, sessionStorage state, unrelated storage, malformed entries.
|
|
*/
|
|
export function listInvestigations() {
|
|
return _list();
|
|
}
|