stupa-pdf-api/frontend/node_modules/@mui/x-date-pickers/node/AdapterDateFnsV3/AdapterDateFnsV3.js

366 lines
14 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.AdapterDateFns = void 0;
var _addDays = require("date-fns/addDays");
var _addSeconds = require("date-fns/addSeconds");
var _addMinutes = require("date-fns/addMinutes");
var _addHours = require("date-fns/addHours");
var _addWeeks = require("date-fns/addWeeks");
var _addMonths = require("date-fns/addMonths");
var _addYears = require("date-fns/addYears");
var _differenceInYears = require("date-fns/differenceInYears");
var _differenceInQuarters = require("date-fns/differenceInQuarters");
var _differenceInMonths = require("date-fns/differenceInMonths");
var _differenceInWeeks = require("date-fns/differenceInWeeks");
var _differenceInDays = require("date-fns/differenceInDays");
var _differenceInHours = require("date-fns/differenceInHours");
var _differenceInMinutes = require("date-fns/differenceInMinutes");
var _differenceInSeconds = require("date-fns/differenceInSeconds");
var _differenceInMilliseconds = require("date-fns/differenceInMilliseconds");
var _eachDayOfInterval = require("date-fns/eachDayOfInterval");
var _endOfDay = require("date-fns/endOfDay");
var _endOfWeek = require("date-fns/endOfWeek");
var _endOfYear = require("date-fns/endOfYear");
var _format = require("date-fns/format");
var _getDate = require("date-fns/getDate");
var _getDaysInMonth = require("date-fns/getDaysInMonth");
var _getHours = require("date-fns/getHours");
var _getMinutes = require("date-fns/getMinutes");
var _getMonth = require("date-fns/getMonth");
var _getSeconds = require("date-fns/getSeconds");
var _getMilliseconds = require("date-fns/getMilliseconds");
var _getWeek = require("date-fns/getWeek");
var _getYear = require("date-fns/getYear");
var _isAfter = require("date-fns/isAfter");
var _isBefore = require("date-fns/isBefore");
var _isEqual = require("date-fns/isEqual");
var _isSameDay = require("date-fns/isSameDay");
var _isSameYear = require("date-fns/isSameYear");
var _isSameMonth = require("date-fns/isSameMonth");
var _isSameHour = require("date-fns/isSameHour");
var _isValid = require("date-fns/isValid");
var _parse = require("date-fns/parse");
var _setDate = require("date-fns/setDate");
var _setHours = require("date-fns/setHours");
var _setMinutes = require("date-fns/setMinutes");
var _setMonth = require("date-fns/setMonth");
var _setSeconds = require("date-fns/setSeconds");
var _setMilliseconds = require("date-fns/setMilliseconds");
var _setYear = require("date-fns/setYear");
var _startOfDay = require("date-fns/startOfDay");
var _startOfMonth = require("date-fns/startOfMonth");
var _endOfMonth = require("date-fns/endOfMonth");
var _startOfWeek = require("date-fns/startOfWeek");
var _startOfYear = require("date-fns/startOfYear");
var _formatISO = require("date-fns/formatISO");
var _parseISO = require("date-fns/parseISO");
var _isWithinInterval = require("date-fns/isWithinInterval");
var _enUS = require("date-fns/locale/en-US");
var _AdapterDateFnsBase = require("../AdapterDateFnsBase");
/* eslint-disable class-methods-use-this */
// TODO remove when date-fns-v3 is the default
// @ts-nocheck
// @ts-ignore TODO remove when date-fns-v3 is the default
// date-fns v2 does not export types
// @ts-ignore TODO remove when date-fns-v3 is the default
/**
* Based on `@date-io/date-fns`
*
* MIT License
*
* Copyright (c) 2017 Dmitriy Kovalenko
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
class AdapterDateFns extends _AdapterDateFnsBase.AdapterDateFnsBase {
constructor({
locale,
formats
} = {}) {
if (typeof _addDays.addDays !== 'function') {
throw new Error([`MUI: The \`date-fns\` package v2.x is not compatible with this adapter.`, 'Please, install v3.x of the package or use the `AdapterDateFns` instead.'].join('\n'));
}
if (!_format.longFormatters) {
throw new Error('MUI: The minimum supported `date-fns` package version compatible with this adapter is `3.2.x`.');
}
super({
locale: locale ?? _enUS.enUS,
formats,
longFormatters: _format.longFormatters
});
this.parseISO = isoString => {
return (0, _parseISO.parseISO)(isoString);
};
this.toISO = value => {
return (0, _formatISO.formatISO)(value, {
format: 'extended'
});
};
this.parse = (value, format) => {
if (value === '') {
return null;
}
return (0, _parse.parse)(value, format, new Date(), {
locale: this.locale
});
};
this.isValid = value => {
return (0, _isValid.isValid)(this.date(value));
};
this.format = (value, formatKey) => {
return this.formatByString(value, this.formats[formatKey]);
};
this.formatByString = (value, formatString) => {
return (0, _format.format)(value, formatString, {
locale: this.locale
});
};
this.getDiff = (value, comparing, unit) => {
switch (unit) {
case 'years':
return (0, _differenceInYears.differenceInYears)(value, this.date(comparing));
case 'quarters':
return (0, _differenceInQuarters.differenceInQuarters)(value, this.date(comparing));
case 'months':
return (0, _differenceInMonths.differenceInMonths)(value, this.date(comparing));
case 'weeks':
return (0, _differenceInWeeks.differenceInWeeks)(value, this.date(comparing));
case 'days':
return (0, _differenceInDays.differenceInDays)(value, this.date(comparing));
case 'hours':
return (0, _differenceInHours.differenceInHours)(value, this.date(comparing));
case 'minutes':
return (0, _differenceInMinutes.differenceInMinutes)(value, this.date(comparing));
case 'seconds':
return (0, _differenceInSeconds.differenceInSeconds)(value, this.date(comparing));
default:
{
return (0, _differenceInMilliseconds.differenceInMilliseconds)(value, this.date(comparing));
}
}
};
this.isEqual = (value, comparing) => {
if (value === null && comparing === null) {
return true;
}
return (0, _isEqual.isEqual)(value, comparing);
};
this.isSameYear = (value, comparing) => {
return (0, _isSameYear.isSameYear)(value, comparing);
};
this.isSameMonth = (value, comparing) => {
return (0, _isSameMonth.isSameMonth)(value, comparing);
};
this.isSameDay = (value, comparing) => {
return (0, _isSameDay.isSameDay)(value, comparing);
};
this.isSameHour = (value, comparing) => {
return (0, _isSameHour.isSameHour)(value, comparing);
};
this.isAfter = (value, comparing) => {
return (0, _isAfter.isAfter)(value, comparing);
};
this.isAfterYear = (value, comparing) => {
return (0, _isAfter.isAfter)(value, (0, _endOfYear.endOfYear)(comparing));
};
this.isAfterDay = (value, comparing) => {
return (0, _isAfter.isAfter)(value, (0, _endOfDay.endOfDay)(comparing));
};
this.isBefore = (value, comparing) => {
return (0, _isBefore.isBefore)(value, comparing);
};
this.isBeforeYear = (value, comparing) => {
return (0, _isBefore.isBefore)(value, this.startOfYear(comparing));
};
this.isBeforeDay = (value, comparing) => {
return (0, _isBefore.isBefore)(value, this.startOfDay(comparing));
};
this.isWithinRange = (value, [start, end]) => {
return (0, _isWithinInterval.isWithinInterval)(value, {
start,
end
});
};
this.startOfYear = value => {
return (0, _startOfYear.startOfYear)(value);
};
this.startOfMonth = value => {
return (0, _startOfMonth.startOfMonth)(value);
};
this.startOfWeek = value => {
return (0, _startOfWeek.startOfWeek)(value, {
locale: this.locale
});
};
this.startOfDay = value => {
return (0, _startOfDay.startOfDay)(value);
};
this.endOfYear = value => {
return (0, _endOfYear.endOfYear)(value);
};
this.endOfMonth = value => {
return (0, _endOfMonth.endOfMonth)(value);
};
this.endOfWeek = value => {
return (0, _endOfWeek.endOfWeek)(value, {
locale: this.locale
});
};
this.endOfDay = value => {
return (0, _endOfDay.endOfDay)(value);
};
this.addYears = (value, amount) => {
return (0, _addYears.addYears)(value, amount);
};
this.addMonths = (value, amount) => {
return (0, _addMonths.addMonths)(value, amount);
};
this.addWeeks = (value, amount) => {
return (0, _addWeeks.addWeeks)(value, amount);
};
this.addDays = (value, amount) => {
return (0, _addDays.addDays)(value, amount);
};
this.addHours = (value, amount) => {
return (0, _addHours.addHours)(value, amount);
};
this.addMinutes = (value, amount) => {
return (0, _addMinutes.addMinutes)(value, amount);
};
this.addSeconds = (value, amount) => {
return (0, _addSeconds.addSeconds)(value, amount);
};
this.getYear = value => {
return (0, _getYear.getYear)(value);
};
this.getMonth = value => {
return (0, _getMonth.getMonth)(value);
};
this.getDate = value => {
return (0, _getDate.getDate)(value);
};
this.getHours = value => {
return (0, _getHours.getHours)(value);
};
this.getMinutes = value => {
return (0, _getMinutes.getMinutes)(value);
};
this.getSeconds = value => {
return (0, _getSeconds.getSeconds)(value);
};
this.getMilliseconds = value => {
return (0, _getMilliseconds.getMilliseconds)(value);
};
this.setYear = (value, year) => {
return (0, _setYear.setYear)(value, year);
};
this.setMonth = (value, month) => {
return (0, _setMonth.setMonth)(value, month);
};
this.setDate = (value, date) => {
return (0, _setDate.setDate)(value, date);
};
this.setHours = (value, hours) => {
return (0, _setHours.setHours)(value, hours);
};
this.setMinutes = (value, minutes) => {
return (0, _setMinutes.setMinutes)(value, minutes);
};
this.setSeconds = (value, seconds) => {
return (0, _setSeconds.setSeconds)(value, seconds);
};
this.setMilliseconds = (value, milliseconds) => {
return (0, _setMilliseconds.setMilliseconds)(value, milliseconds);
};
this.getDaysInMonth = value => {
return (0, _getDaysInMonth.getDaysInMonth)(value);
};
this.getNextMonth = value => {
return (0, _addMonths.addMonths)(value, 1);
};
this.getPreviousMonth = value => {
return (0, _addMonths.addMonths)(value, -1);
};
this.getMonthArray = value => {
const firstMonth = (0, _startOfYear.startOfYear)(value);
const monthArray = [firstMonth];
while (monthArray.length < 12) {
const prevMonth = monthArray[monthArray.length - 1];
monthArray.push(this.getNextMonth(prevMonth));
}
return monthArray;
};
this.mergeDateAndTime = (dateParam, timeParam) => {
return this.setSeconds(this.setMinutes(this.setHours(dateParam, this.getHours(timeParam)), this.getMinutes(timeParam)), this.getSeconds(timeParam));
};
this.getWeekdays = () => {
const now = new Date();
return (0, _eachDayOfInterval.eachDayOfInterval)({
start: (0, _startOfWeek.startOfWeek)(now, {
locale: this.locale
}),
end: (0, _endOfWeek.endOfWeek)(now, {
locale: this.locale
})
}).map(day => this.formatByString(day, 'EEEEEE'));
};
this.getWeekArray = value => {
const start = (0, _startOfWeek.startOfWeek)((0, _startOfMonth.startOfMonth)(value), {
locale: this.locale
});
const end = (0, _endOfWeek.endOfWeek)((0, _endOfMonth.endOfMonth)(value), {
locale: this.locale
});
let count = 0;
let current = start;
const nestedWeeks = [];
while ((0, _isBefore.isBefore)(current, end)) {
const weekNumber = Math.floor(count / 7);
nestedWeeks[weekNumber] = nestedWeeks[weekNumber] || [];
nestedWeeks[weekNumber].push(current);
current = (0, _addDays.addDays)(current, 1);
count += 1;
}
return nestedWeeks;
};
this.getWeekNumber = value => {
return (0, _getWeek.getWeek)(value, {
locale: this.locale
});
};
this.getYearRange = (start, end) => {
const startDate = (0, _startOfYear.startOfYear)(start);
const endDate = (0, _endOfYear.endOfYear)(end);
const years = [];
let current = startDate;
while ((0, _isBefore.isBefore)(current, endDate)) {
years.push(current);
current = (0, _addYears.addYears)(current, 1);
}
return years;
};
}
}
exports.AdapterDateFns = AdapterDateFns;