UNPKG

@burglekitt/gmt

Version:

Temporal-based date and time utilities with timezone support and polyfill integration

74 lines (73 loc) 4.21 kB
import { Temporal } from "@js-temporal/polyfill"; import { calendarOfAllDateValues, formatDateInCalendar, parseCalendarDateValue, } from "../../internal/index.js"; import { isValidCalendarDate } from "../validate/index.js"; import { isValidDateInterval } from "./validate/index.js"; /** * Split a date interval at arbitrary `points`, producing consecutive sub-intervals. * * - `points` need not be sorted — they are sorted internally before splitting. * - Points outside `[start, end]` are dropped; they cannot introduce a boundary that isn't * inside the interval. * - Points exactly on `start` or `end` are dropped too — they would only produce a * zero-length sub-interval at the edge, which `divideEqually`'s zero-length case is the * deliberate way to express, not `splitAt`'s. * - Duplicate points collapse to a single boundary. * - Returns `[{ start, end }]` (the whole interval, unsplit) when no valid in-range point remains. * - Returns `[]` when `points` is not an array, when any element is not a valid ISO PlainDate * string, or on invalid input (unparseable start/end, `start > end`). * - Accepts GMT calendar-annotated PlainDate strings — E5 (issue #78). `start`, `end`, and * every element of `points` must carry the *same* calendar tag (or all be bare ISO); any * mismatch returns `[]` (E5 decision of record D4) — this also makes `.equals()`'s dedup of * duplicate points safe, since same-calendar `PlainDate`s compare equal correctly. * * @param start ISO PlainDate string for the interval start, optionally calendar-annotated * @param end ISO PlainDate string for the interval end, optionally calendar-annotated * @param points array of ISO PlainDate strings to split at, optionally calendar-annotated (must match `start`/`end`'s calendar) * @returns array of `{ start, end }` records, or `[]` on invalid input / mismatched calendars * * @example intervalSplitAtDate("2024-01-01", "2024-01-10", ["2024-01-05"]) // [{ start: "2024-01-01", end: "2024-01-05" }, { start: "2024-01-05", end: "2024-01-10" }] * @example intervalSplitAtDate("2024-01-01", "2024-01-10", ["2024-01-07", "2024-01-03"]) // [{ start: "2024-01-01", end: "2024-01-03" }, { start: "2024-01-03", end: "2024-01-07" }, { start: "2024-01-07", end: "2024-01-10" }] * @example intervalSplitAtDate("2024-01-01", "2024-01-10", ["2024-01-01", "2024-01-10", "2024-06-01"]) // [{ start: "2024-01-01", end: "2024-01-10" }] (start, end, and out-of-range points all drop) * @example intervalSplitAtDate("2024-01-01", "2024-01-10", []) // [{ start: "2024-01-01", end: "2024-01-10" }] * @example intervalSplitAtDate("invalid", "2024-01-10", ["2024-01-05"]) // [] * @example intervalSplitAtDate("2024-01-01", "2024-01-10", ["not-a-date"]) // [] */ export function intervalSplitAtDate(start, end, points) { if (!Array.isArray(points)) { return []; } if (!isValidDateInterval(start, end)) { return []; } if (!points.every((point) => typeof point === "string")) { return []; } if (!points.every((point) => isValidCalendarDate(point))) { return []; } const calendar = calendarOfAllDateValues([start, end, ...points]); if (!calendar) { return []; } try { const startVal = parseCalendarDateValue(start); const endVal = parseCalendarDateValue(end); const parsedPoints = points.map((point) => parseCalendarDateValue(point)); const inRangePoints = parsedPoints.filter((point) => Temporal.PlainDate.compare(point, startVal) > 0 && Temporal.PlainDate.compare(point, endVal) < 0); inRangePoints.sort(Temporal.PlainDate.compare); const uniquePoints = inRangePoints.filter((point, index) => index === 0 || !point.equals(inRangePoints[index - 1])); const boundaries = [startVal, ...uniquePoints, endVal]; const result = []; for (let i = 0; i < boundaries.length - 1; i++) { result.push({ start: formatDateInCalendar(boundaries[i], calendar), end: formatDateInCalendar(boundaries[i + 1], calendar), }); } return result; } catch { return []; } }