From 01bd5cec3a83e9ced7715954e76dd820aa7e91dd Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Thu, 26 Mar 2026 16:44:07 -0300 Subject: content, wiki-data: sameDayAs --- src/common-util/wiki-data.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'src/common-util') diff --git a/src/common-util/wiki-data.js b/src/common-util/wiki-data.js index 42ff677e..ae186065 100644 --- a/src/common-util/wiki-data.js +++ b/src/common-util/wiki-data.js @@ -616,3 +616,30 @@ export const albumHasSubstantialCommentaryPage = album => album.tracks .flatMap(track => track.commentary) .filter(entry => !entry.isWikiEditorCommentary)); + +export function sameDayAs(givenDate, thing) { + if (!givenDate) return null; + + const compare = (a, b) => + a && b && + a.toDateString() === b.toDateString(); + + if (thing.isAlbum || thing.isTrack) { + const album = thing.isTrack ? thing.album : thing; + const track = thing.isTrack ? thing : null; + + if (compare(givenDate, album.date)) { + if (album.style === 'single') { + return 'single'; + } else { + return 'album'; + } + } + + if (compare(givenDate, track?.date)) { + return 'track'; + } + } + + return null; +} -- cgit 1.3.0-6-gf8a5