Replace generic "Reading"/"Gospel" headings with real incipits
Deploy / deploy (push) Successful in 1m50s

Bible-plan readings now carry a generated bilingual incipit label
(bible-book-incipits.ts) instead of falling through to the UI's generic
"Reading" heading. Gospel pericopes (whether from the user's own plan
or nocturn-readings.ts's proper content) get the same treatment via a
new label field on the 'gospel' ResolvedPart, recovering the book from
the reading's own citation when no raw book code is available.

Updates 3 matins.test.ts assertions that used "no label" as a stand-in
for "this is a bible-plan reading" — no longer true now that these
readings carry a real label, so they now key off the label's shape
(string = patristic attribution, object = generated incipit) instead.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01AGjUyhUZJaSjiniEmnLdak
This commit is contained in:
2026-09-03 14:02:58 -04:00
parent 56321ab276
commit 998c549e51
5 changed files with 40 additions and 18 deletions
+10 -2
View File
@@ -20,6 +20,7 @@
import type { LanguageCode, TranslationStatus } from '../psalter/types';
import { resolvePassages, type ScriptureCitation } from './octave-readings';
import { getResponsoryForBook } from './matins-responsories';
import { getBookIncipit } from './bible-book-incipits';
const GOSPEL_BOOKS = new Set(['matt', 'mark', 'luke', 'john']);
@@ -37,6 +38,11 @@ export interface BiblePlanReading {
* data/hours/matins-responsories-by-book.yml — undefined when nothing's
* seeded for that book yet, an honest absence, not a placeholder. */
responsory?: Partial<Record<LanguageCode, string>>;
/** The traditional "Léctio libri..."/"A reading from..." incipit for the
* reading's own (first) book — see bible-book-incipits.ts. Undefined only
* for an abbreviation that map doesn't recognize, which shouldn't happen
* for anything actually under src/data/scripture. */
label?: Partial<Record<LanguageCode, string>>;
}
interface BiblePlanReadingRecord {
@@ -107,15 +113,17 @@ function resolveReading(record: BiblePlanReadingRecord, bookIndex: number): Bibl
la: text.la ? 'verified' : 'missing',
en: text.en ? 'verified' : 'missing',
};
const label = formatCitationLabel(record.passages);
const citationLabelText = formatCitationLabel(record.passages);
const firstBook = record.passages[0]?.book;
const responsory = firstBook ? getResponsoryForBook(firstBook, bookIndex)?.text : undefined;
const incipit = firstBook ? getBookIncipit(firstBook) : undefined;
return {
text,
status,
citation: { la: label, en: label },
citation: { la: citationLabelText, en: citationLabelText },
isGospel: isGospelReading(record.passages),
responsory,
label: incipit ? { la: incipit.la, en: incipit.en } : undefined,
};
}