hours: add the day's-collect resolver

Terce/Sext/None's Oratio is the day's own Proper-of-season/-saints
collect, not a fixed text — getDayCollect() resolves it from the
LiturgicalDay's winner (temporal id or sanctoral saint's propers),
falling through to an honest "missing" status for saints that don't
have authored propers yet.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-10 13:50:24 -04:00
parent 37ac31c3f2
commit 81440de832
3 changed files with 64 additions and 4 deletions
+8 -1
View File
@@ -12,7 +12,7 @@
import type { FeastClass } from './types';
import sanctoralCalendarData from '../data/calendar/sanctoral-calendar.yml';
interface SaintRecord {
export interface SaintRecord {
id: string;
name: string;
rank: FeastClass;
@@ -38,6 +38,13 @@ export interface SanctoralCandidate {
}
/** Which saint(s) (if any) are assigned to this date. `isoDate`'s year is ignored — the sanctoral cycle repeats every civil year. */
/** The saint's full record — used when something more than id/name/rank is
* needed, e.g. hours/resolve-common.ts's getDayCollect looking up whether
* a real collect has been authored for a winning saint. */
export function getSaintRecord(id: string): SaintRecord | undefined {
return saintsById.get(id);
}
export function getSanctoralCandidatesFor(isoDate: string): SanctoralCandidate[] {
const monthDay = isoDate.slice(5);
const ids = sanctoralCalendar.days[monthDay] ?? [];