UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

77 lines (73 loc) 2.84 kB
import { findAyahIdBySurah } from "./findAyahIdBySurah" import { findJuzByAyahId } from "./findJuzByAyahId" import { findSurahByAyahId } from "./findSurahByAyahId" import type { RiwayaData } from "./lists/types" import type { AyahCountBetweenJuzSurah, AyahId, AyahNo, Juz, Surah } from "./types" import { checkValidAyahId } from "./validation" /** * Finds the juz (section) that contains the specified ayah (verse) and calculates the number of ayahs between the start of the juz and the start of the surah (chapter) that contains the ayah. * * @param surah - The surah (chapter) that contains the ayah. * @param ayah - The ayah (verse) number. * @param lists - The Lists object for the riwaya. * @returns An object containing the following properties: * - `juz`: The juz (section) that contains the ayah. * - `leftAyahId`: The ayah ID of the first ayah in the juz. * - `ayahsBetweenJuzSurah`: The number of ayahs between the start of the juz and the start of the surah (positive if the surah starts is in the juz, negative if the surah starts before the juz). */ export function findJuzAndShift( surah: Surah, ayah: AyahNo, lists: RiwayaData ): { juz: Juz leftAyahId: AyahId ayahsBetweenJuzSurah: AyahCountBetweenJuzSurah } { const ayahId: AyahId = findAyahIdBySurah(surah, ayah, lists) const JuzList = lists.JuzList const SurahList = lists.SurahList const juz = findJuzByAyahId(ayahId, lists) const juzLeftAyahId = JuzList[juz] const [surahStartAyahId] = SurahList[surah] return { juz, ayahsBetweenJuzSurah: (surahStartAyahId - juzLeftAyahId) as AyahCountBetweenJuzSurah, leftAyahId: juzLeftAyahId } } /** * Finds the Juz number and calculates the shift between Juz start and Surah start for a given Ayah ID * * @param ayahId - The unique identifier of an Ayah (verse) in the Quran * @param data - The Lists object for the riwaya. * @returns An object containing: * - juz: The Juz number where the Ayah is located * - leftAyahId: The starting Ayah ID of the Juz * - ayahsBetweenJuzSurah: The number of Ayahs between the Juz start and the Surah start * * @throws Error If the provided Ayah ID is invalid */ export function findJuzAndShiftByAyahId( ayahId: AyahId, data: RiwayaData ): { juz: Juz leftAyahId: AyahId ayahsBetweenJuzSurah: AyahCountBetweenJuzSurah } { checkValidAyahId(ayahId, data.meta) const JuzList = data.JuzList const SurahList = data.SurahList const juz = findJuzByAyahId(ayahId, data) const leftAyahId = JuzList[juz] const surah = findSurahByAyahId(ayahId, data) const [surahStartAyahId] = SurahList[surah] return { juz, ayahsBetweenJuzSurah: (surahStartAyahId - leftAyahId) as AyahCountBetweenJuzSurah, leftAyahId } }