UNPKG

date-fns

Version:

Modern JavaScript date utility library

65 lines (56 loc) 2.09 kB
"use strict"; exports.getOverlappingDaysInIntervals = getOverlappingDaysInIntervals; var _index = require("./constants.js"); var _index2 = require("./toDate.js"); /** * @name getOverlappingDaysInIntervals * @category Interval Helpers * @summary Get the number of days that overlap in two time intervals * * @description * Get the number of days that overlap in two time intervals * * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc). * * @param intervalLeft - The first interval to compare. * @param intervalRight - The second interval to compare. * * @returns The number of days that overlap in two time intervals * * @example * // For overlapping time intervals adds 1 for each started overlapping day: * getOverlappingDaysInIntervals( * { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) }, * { start: new Date(2014, 0, 17), end: new Date(2014, 0, 21) } * ) * //=> 3 * * @example * // For non-overlapping time intervals returns 0: * getOverlappingDaysInIntervals( * { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) }, * { start: new Date(2014, 0, 21), end: new Date(2014, 0, 22) } * ) * //=> 0 */ function getOverlappingDaysInIntervals(intervalLeft, intervalRight) { const [leftStartTime, leftEndTime] = [ +(0, _index2.toDate)(intervalLeft.start), +(0, _index2.toDate)(intervalLeft.end), ].sort(); const [rightStartTime, rightEndTime] = [ +(0, _index2.toDate)(intervalRight.start), +(0, _index2.toDate)(intervalRight.end), ].sort(); const isOverlapping = leftStartTime < rightEndTime && rightStartTime < leftEndTime; if (!isOverlapping) { return 0; } const overlapStartDate = rightStartTime < leftStartTime ? leftStartTime : rightStartTime; const overlapEndDate = rightEndTime > leftEndTime ? leftEndTime : rightEndTime; const differenceInMs = overlapEndDate - overlapStartDate; return Math.ceil(differenceInMs / _index.millisecondsInDay); }