46904 lines
1.9 MiB
46904 lines
1.9 MiB
/*
|
||
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
||
if you want to view the source, please visit the github repository of this plugin
|
||
*/
|
||
|
||
var __create = Object.create;
|
||
var __defProp = Object.defineProperty;
|
||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||
var __getProtoOf = Object.getPrototypeOf;
|
||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||
var __commonJS = (cb, mod) => function __require() {
|
||
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
||
};
|
||
var __export = (target, all) => {
|
||
for (var name in all)
|
||
__defProp(target, name, { get: all[name], enumerable: true });
|
||
};
|
||
var __copyProps = (to, from, except, desc) => {
|
||
if (from && typeof from === "object" || typeof from === "function") {
|
||
for (let key of __getOwnPropNames(from))
|
||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||
}
|
||
return to;
|
||
};
|
||
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
||
// If the importer is in node compatibility mode or this is not an ESM
|
||
// file that has been converted to a CommonJS file using a Babel-
|
||
// compatible transform (i.e. "__esModule" has not been set), then set
|
||
// "default" to the CommonJS "module.exports" for node compatibility.
|
||
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
||
mod
|
||
));
|
||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||
|
||
// node_modules/obsidian-dataview/lib/index.js
|
||
var require_lib = __commonJS({
|
||
"node_modules/obsidian-dataview/lib/index.js"(exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
require("obsidian");
|
||
var LuxonError = class extends Error {
|
||
};
|
||
var InvalidDateTimeError = class extends LuxonError {
|
||
constructor(reason) {
|
||
super(`Invalid DateTime: ${reason.toMessage()}`);
|
||
}
|
||
};
|
||
var InvalidIntervalError = class extends LuxonError {
|
||
constructor(reason) {
|
||
super(`Invalid Interval: ${reason.toMessage()}`);
|
||
}
|
||
};
|
||
var InvalidDurationError = class extends LuxonError {
|
||
constructor(reason) {
|
||
super(`Invalid Duration: ${reason.toMessage()}`);
|
||
}
|
||
};
|
||
var ConflictingSpecificationError = class extends LuxonError {
|
||
};
|
||
var InvalidUnitError = class extends LuxonError {
|
||
constructor(unit) {
|
||
super(`Invalid unit ${unit}`);
|
||
}
|
||
};
|
||
var InvalidArgumentError = class extends LuxonError {
|
||
};
|
||
var ZoneIsAbstractError = class extends LuxonError {
|
||
constructor() {
|
||
super("Zone is an abstract class");
|
||
}
|
||
};
|
||
var n = "numeric";
|
||
var s = "short";
|
||
var l = "long";
|
||
var DATE_SHORT = {
|
||
year: n,
|
||
month: n,
|
||
day: n
|
||
};
|
||
var DATE_MED = {
|
||
year: n,
|
||
month: s,
|
||
day: n
|
||
};
|
||
var DATE_MED_WITH_WEEKDAY = {
|
||
year: n,
|
||
month: s,
|
||
day: n,
|
||
weekday: s
|
||
};
|
||
var DATE_FULL = {
|
||
year: n,
|
||
month: l,
|
||
day: n
|
||
};
|
||
var DATE_HUGE = {
|
||
year: n,
|
||
month: l,
|
||
day: n,
|
||
weekday: l
|
||
};
|
||
var TIME_SIMPLE = {
|
||
hour: n,
|
||
minute: n
|
||
};
|
||
var TIME_WITH_SECONDS = {
|
||
hour: n,
|
||
minute: n,
|
||
second: n
|
||
};
|
||
var TIME_WITH_SHORT_OFFSET = {
|
||
hour: n,
|
||
minute: n,
|
||
second: n,
|
||
timeZoneName: s
|
||
};
|
||
var TIME_WITH_LONG_OFFSET = {
|
||
hour: n,
|
||
minute: n,
|
||
second: n,
|
||
timeZoneName: l
|
||
};
|
||
var TIME_24_SIMPLE = {
|
||
hour: n,
|
||
minute: n,
|
||
hourCycle: "h23"
|
||
};
|
||
var TIME_24_WITH_SECONDS = {
|
||
hour: n,
|
||
minute: n,
|
||
second: n,
|
||
hourCycle: "h23"
|
||
};
|
||
var TIME_24_WITH_SHORT_OFFSET = {
|
||
hour: n,
|
||
minute: n,
|
||
second: n,
|
||
hourCycle: "h23",
|
||
timeZoneName: s
|
||
};
|
||
var TIME_24_WITH_LONG_OFFSET = {
|
||
hour: n,
|
||
minute: n,
|
||
second: n,
|
||
hourCycle: "h23",
|
||
timeZoneName: l
|
||
};
|
||
var DATETIME_SHORT = {
|
||
year: n,
|
||
month: n,
|
||
day: n,
|
||
hour: n,
|
||
minute: n
|
||
};
|
||
var DATETIME_SHORT_WITH_SECONDS = {
|
||
year: n,
|
||
month: n,
|
||
day: n,
|
||
hour: n,
|
||
minute: n,
|
||
second: n
|
||
};
|
||
var DATETIME_MED = {
|
||
year: n,
|
||
month: s,
|
||
day: n,
|
||
hour: n,
|
||
minute: n
|
||
};
|
||
var DATETIME_MED_WITH_SECONDS = {
|
||
year: n,
|
||
month: s,
|
||
day: n,
|
||
hour: n,
|
||
minute: n,
|
||
second: n
|
||
};
|
||
var DATETIME_MED_WITH_WEEKDAY = {
|
||
year: n,
|
||
month: s,
|
||
day: n,
|
||
weekday: s,
|
||
hour: n,
|
||
minute: n
|
||
};
|
||
var DATETIME_FULL = {
|
||
year: n,
|
||
month: l,
|
||
day: n,
|
||
hour: n,
|
||
minute: n,
|
||
timeZoneName: s
|
||
};
|
||
var DATETIME_FULL_WITH_SECONDS = {
|
||
year: n,
|
||
month: l,
|
||
day: n,
|
||
hour: n,
|
||
minute: n,
|
||
second: n,
|
||
timeZoneName: s
|
||
};
|
||
var DATETIME_HUGE = {
|
||
year: n,
|
||
month: l,
|
||
day: n,
|
||
weekday: l,
|
||
hour: n,
|
||
minute: n,
|
||
timeZoneName: l
|
||
};
|
||
var DATETIME_HUGE_WITH_SECONDS = {
|
||
year: n,
|
||
month: l,
|
||
day: n,
|
||
weekday: l,
|
||
hour: n,
|
||
minute: n,
|
||
second: n,
|
||
timeZoneName: l
|
||
};
|
||
var Zone = class {
|
||
/**
|
||
* The type of zone
|
||
* @abstract
|
||
* @type {string}
|
||
*/
|
||
get type() {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
/**
|
||
* The name of this zone.
|
||
* @abstract
|
||
* @type {string}
|
||
*/
|
||
get name() {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
get ianaName() {
|
||
return this.name;
|
||
}
|
||
/**
|
||
* Returns whether the offset is known to be fixed for the whole year.
|
||
* @abstract
|
||
* @type {boolean}
|
||
*/
|
||
get isUniversal() {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
/**
|
||
* Returns the offset's common name (such as EST) at the specified timestamp
|
||
* @abstract
|
||
* @param {number} ts - Epoch milliseconds for which to get the name
|
||
* @param {Object} opts - Options to affect the format
|
||
* @param {string} opts.format - What style of offset to return. Accepts 'long' or 'short'.
|
||
* @param {string} opts.locale - What locale to return the offset name in.
|
||
* @return {string}
|
||
*/
|
||
offsetName(ts, opts) {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
/**
|
||
* Returns the offset's value as a string
|
||
* @abstract
|
||
* @param {number} ts - Epoch milliseconds for which to get the offset
|
||
* @param {string} format - What style of offset to return.
|
||
* Accepts 'narrow', 'short', or 'techie'. Returning '+6', '+06:00', or '+0600' respectively
|
||
* @return {string}
|
||
*/
|
||
formatOffset(ts, format) {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
/**
|
||
* Return the offset in minutes for this zone at the specified timestamp.
|
||
* @abstract
|
||
* @param {number} ts - Epoch milliseconds for which to compute the offset
|
||
* @return {number}
|
||
*/
|
||
offset(ts) {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
/**
|
||
* Return whether this Zone is equal to another zone
|
||
* @abstract
|
||
* @param {Zone} otherZone - the zone to compare
|
||
* @return {boolean}
|
||
*/
|
||
equals(otherZone) {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
/**
|
||
* Return whether this Zone is valid.
|
||
* @abstract
|
||
* @type {boolean}
|
||
*/
|
||
get isValid() {
|
||
throw new ZoneIsAbstractError();
|
||
}
|
||
};
|
||
var singleton$1 = null;
|
||
var SystemZone = class extends Zone {
|
||
/**
|
||
* Get a singleton instance of the local zone
|
||
* @return {SystemZone}
|
||
*/
|
||
static get instance() {
|
||
if (singleton$1 === null) {
|
||
singleton$1 = new SystemZone();
|
||
}
|
||
return singleton$1;
|
||
}
|
||
/** @override **/
|
||
get type() {
|
||
return "system";
|
||
}
|
||
/** @override **/
|
||
get name() {
|
||
return new Intl.DateTimeFormat().resolvedOptions().timeZone;
|
||
}
|
||
/** @override **/
|
||
get isUniversal() {
|
||
return false;
|
||
}
|
||
/** @override **/
|
||
offsetName(ts, { format, locale }) {
|
||
return parseZoneInfo(ts, format, locale);
|
||
}
|
||
/** @override **/
|
||
formatOffset(ts, format) {
|
||
return formatOffset(this.offset(ts), format);
|
||
}
|
||
/** @override **/
|
||
offset(ts) {
|
||
return -new Date(ts).getTimezoneOffset();
|
||
}
|
||
/** @override **/
|
||
equals(otherZone) {
|
||
return otherZone.type === "system";
|
||
}
|
||
/** @override **/
|
||
get isValid() {
|
||
return true;
|
||
}
|
||
};
|
||
var dtfCache = {};
|
||
function makeDTF(zone) {
|
||
if (!dtfCache[zone]) {
|
||
dtfCache[zone] = new Intl.DateTimeFormat("en-US", {
|
||
hour12: false,
|
||
timeZone: zone,
|
||
year: "numeric",
|
||
month: "2-digit",
|
||
day: "2-digit",
|
||
hour: "2-digit",
|
||
minute: "2-digit",
|
||
second: "2-digit",
|
||
era: "short"
|
||
});
|
||
}
|
||
return dtfCache[zone];
|
||
}
|
||
var typeToPos = {
|
||
year: 0,
|
||
month: 1,
|
||
day: 2,
|
||
era: 3,
|
||
hour: 4,
|
||
minute: 5,
|
||
second: 6
|
||
};
|
||
function hackyOffset(dtf, date) {
|
||
const formatted = dtf.format(date).replace(/\u200E/g, ""), parsed = /(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(formatted), [, fMonth, fDay, fYear, fadOrBc, fHour, fMinute, fSecond] = parsed;
|
||
return [fYear, fMonth, fDay, fadOrBc, fHour, fMinute, fSecond];
|
||
}
|
||
function partsOffset(dtf, date) {
|
||
const formatted = dtf.formatToParts(date);
|
||
const filled = [];
|
||
for (let i = 0; i < formatted.length; i++) {
|
||
const { type, value } = formatted[i];
|
||
const pos = typeToPos[type];
|
||
if (type === "era") {
|
||
filled[pos] = value;
|
||
} else if (!isUndefined(pos)) {
|
||
filled[pos] = parseInt(value, 10);
|
||
}
|
||
}
|
||
return filled;
|
||
}
|
||
var ianaZoneCache = {};
|
||
var IANAZone = class extends Zone {
|
||
/**
|
||
* @param {string} name - Zone name
|
||
* @return {IANAZone}
|
||
*/
|
||
static create(name) {
|
||
if (!ianaZoneCache[name]) {
|
||
ianaZoneCache[name] = new IANAZone(name);
|
||
}
|
||
return ianaZoneCache[name];
|
||
}
|
||
/**
|
||
* Reset local caches. Should only be necessary in testing scenarios.
|
||
* @return {void}
|
||
*/
|
||
static resetCache() {
|
||
ianaZoneCache = {};
|
||
dtfCache = {};
|
||
}
|
||
/**
|
||
* Returns whether the provided string is a valid specifier. This only checks the string's format, not that the specifier identifies a known zone; see isValidZone for that.
|
||
* @param {string} s - The string to check validity on
|
||
* @example IANAZone.isValidSpecifier("America/New_York") //=> true
|
||
* @example IANAZone.isValidSpecifier("Sport~~blorp") //=> false
|
||
* @deprecated This method returns false for some valid IANA names. Use isValidZone instead.
|
||
* @return {boolean}
|
||
*/
|
||
static isValidSpecifier(s2) {
|
||
return this.isValidZone(s2);
|
||
}
|
||
/**
|
||
* Returns whether the provided string identifies a real zone
|
||
* @param {string} zone - The string to check
|
||
* @example IANAZone.isValidZone("America/New_York") //=> true
|
||
* @example IANAZone.isValidZone("Fantasia/Castle") //=> false
|
||
* @example IANAZone.isValidZone("Sport~~blorp") //=> false
|
||
* @return {boolean}
|
||
*/
|
||
static isValidZone(zone) {
|
||
if (!zone) {
|
||
return false;
|
||
}
|
||
try {
|
||
new Intl.DateTimeFormat("en-US", { timeZone: zone }).format();
|
||
return true;
|
||
} catch (e) {
|
||
return false;
|
||
}
|
||
}
|
||
constructor(name) {
|
||
super();
|
||
this.zoneName = name;
|
||
this.valid = IANAZone.isValidZone(name);
|
||
}
|
||
/** @override **/
|
||
get type() {
|
||
return "iana";
|
||
}
|
||
/** @override **/
|
||
get name() {
|
||
return this.zoneName;
|
||
}
|
||
/** @override **/
|
||
get isUniversal() {
|
||
return false;
|
||
}
|
||
/** @override **/
|
||
offsetName(ts, { format, locale }) {
|
||
return parseZoneInfo(ts, format, locale, this.name);
|
||
}
|
||
/** @override **/
|
||
formatOffset(ts, format) {
|
||
return formatOffset(this.offset(ts), format);
|
||
}
|
||
/** @override **/
|
||
offset(ts) {
|
||
const date = new Date(ts);
|
||
if (isNaN(date))
|
||
return NaN;
|
||
const dtf = makeDTF(this.name);
|
||
let [year, month, day, adOrBc, hour, minute, second] = dtf.formatToParts ? partsOffset(dtf, date) : hackyOffset(dtf, date);
|
||
if (adOrBc === "BC") {
|
||
year = -Math.abs(year) + 1;
|
||
}
|
||
const adjustedHour = hour === 24 ? 0 : hour;
|
||
const asUTC = objToLocalTS({
|
||
year,
|
||
month,
|
||
day,
|
||
hour: adjustedHour,
|
||
minute,
|
||
second,
|
||
millisecond: 0
|
||
});
|
||
let asTS = +date;
|
||
const over = asTS % 1e3;
|
||
asTS -= over >= 0 ? over : 1e3 + over;
|
||
return (asUTC - asTS) / (60 * 1e3);
|
||
}
|
||
/** @override **/
|
||
equals(otherZone) {
|
||
return otherZone.type === "iana" && otherZone.name === this.name;
|
||
}
|
||
/** @override **/
|
||
get isValid() {
|
||
return this.valid;
|
||
}
|
||
};
|
||
var intlLFCache = {};
|
||
function getCachedLF(locString, opts = {}) {
|
||
const key = JSON.stringify([locString, opts]);
|
||
let dtf = intlLFCache[key];
|
||
if (!dtf) {
|
||
dtf = new Intl.ListFormat(locString, opts);
|
||
intlLFCache[key] = dtf;
|
||
}
|
||
return dtf;
|
||
}
|
||
var intlDTCache = {};
|
||
function getCachedDTF(locString, opts = {}) {
|
||
const key = JSON.stringify([locString, opts]);
|
||
let dtf = intlDTCache[key];
|
||
if (!dtf) {
|
||
dtf = new Intl.DateTimeFormat(locString, opts);
|
||
intlDTCache[key] = dtf;
|
||
}
|
||
return dtf;
|
||
}
|
||
var intlNumCache = {};
|
||
function getCachedINF(locString, opts = {}) {
|
||
const key = JSON.stringify([locString, opts]);
|
||
let inf = intlNumCache[key];
|
||
if (!inf) {
|
||
inf = new Intl.NumberFormat(locString, opts);
|
||
intlNumCache[key] = inf;
|
||
}
|
||
return inf;
|
||
}
|
||
var intlRelCache = {};
|
||
function getCachedRTF(locString, opts = {}) {
|
||
const { base, ...cacheKeyOpts } = opts;
|
||
const key = JSON.stringify([locString, cacheKeyOpts]);
|
||
let inf = intlRelCache[key];
|
||
if (!inf) {
|
||
inf = new Intl.RelativeTimeFormat(locString, opts);
|
||
intlRelCache[key] = inf;
|
||
}
|
||
return inf;
|
||
}
|
||
var sysLocaleCache = null;
|
||
function systemLocale() {
|
||
if (sysLocaleCache) {
|
||
return sysLocaleCache;
|
||
} else {
|
||
sysLocaleCache = new Intl.DateTimeFormat().resolvedOptions().locale;
|
||
return sysLocaleCache;
|
||
}
|
||
}
|
||
function parseLocaleString(localeStr) {
|
||
const xIndex = localeStr.indexOf("-x-");
|
||
if (xIndex !== -1) {
|
||
localeStr = localeStr.substring(0, xIndex);
|
||
}
|
||
const uIndex = localeStr.indexOf("-u-");
|
||
if (uIndex === -1) {
|
||
return [localeStr];
|
||
} else {
|
||
let options;
|
||
let selectedStr;
|
||
try {
|
||
options = getCachedDTF(localeStr).resolvedOptions();
|
||
selectedStr = localeStr;
|
||
} catch (e) {
|
||
const smaller = localeStr.substring(0, uIndex);
|
||
options = getCachedDTF(smaller).resolvedOptions();
|
||
selectedStr = smaller;
|
||
}
|
||
const { numberingSystem, calendar } = options;
|
||
return [selectedStr, numberingSystem, calendar];
|
||
}
|
||
}
|
||
function intlConfigString(localeStr, numberingSystem, outputCalendar) {
|
||
if (outputCalendar || numberingSystem) {
|
||
if (!localeStr.includes("-u-")) {
|
||
localeStr += "-u";
|
||
}
|
||
if (outputCalendar) {
|
||
localeStr += `-ca-${outputCalendar}`;
|
||
}
|
||
if (numberingSystem) {
|
||
localeStr += `-nu-${numberingSystem}`;
|
||
}
|
||
return localeStr;
|
||
} else {
|
||
return localeStr;
|
||
}
|
||
}
|
||
function mapMonths(f) {
|
||
const ms = [];
|
||
for (let i = 1; i <= 12; i++) {
|
||
const dt = DateTime.utc(2016, i, 1);
|
||
ms.push(f(dt));
|
||
}
|
||
return ms;
|
||
}
|
||
function mapWeekdays(f) {
|
||
const ms = [];
|
||
for (let i = 1; i <= 7; i++) {
|
||
const dt = DateTime.utc(2016, 11, 13 + i);
|
||
ms.push(f(dt));
|
||
}
|
||
return ms;
|
||
}
|
||
function listStuff(loc, length, defaultOK, englishFn, intlFn) {
|
||
const mode = loc.listingMode(defaultOK);
|
||
if (mode === "error") {
|
||
return null;
|
||
} else if (mode === "en") {
|
||
return englishFn(length);
|
||
} else {
|
||
return intlFn(length);
|
||
}
|
||
}
|
||
function supportsFastNumbers(loc) {
|
||
if (loc.numberingSystem && loc.numberingSystem !== "latn") {
|
||
return false;
|
||
} else {
|
||
return loc.numberingSystem === "latn" || !loc.locale || loc.locale.startsWith("en") || new Intl.DateTimeFormat(loc.intl).resolvedOptions().numberingSystem === "latn";
|
||
}
|
||
}
|
||
var PolyNumberFormatter = class {
|
||
constructor(intl, forceSimple, opts) {
|
||
this.padTo = opts.padTo || 0;
|
||
this.floor = opts.floor || false;
|
||
const { padTo, floor, ...otherOpts } = opts;
|
||
if (!forceSimple || Object.keys(otherOpts).length > 0) {
|
||
const intlOpts = { useGrouping: false, ...opts };
|
||
if (opts.padTo > 0)
|
||
intlOpts.minimumIntegerDigits = opts.padTo;
|
||
this.inf = getCachedINF(intl, intlOpts);
|
||
}
|
||
}
|
||
format(i) {
|
||
if (this.inf) {
|
||
const fixed = this.floor ? Math.floor(i) : i;
|
||
return this.inf.format(fixed);
|
||
} else {
|
||
const fixed = this.floor ? Math.floor(i) : roundTo(i, 3);
|
||
return padStart(fixed, this.padTo);
|
||
}
|
||
}
|
||
};
|
||
var PolyDateFormatter = class {
|
||
constructor(dt, intl, opts) {
|
||
this.opts = opts;
|
||
let z = void 0;
|
||
if (dt.zone.isUniversal) {
|
||
const gmtOffset = -1 * (dt.offset / 60);
|
||
const offsetZ = gmtOffset >= 0 ? `Etc/GMT+${gmtOffset}` : `Etc/GMT${gmtOffset}`;
|
||
if (dt.offset !== 0 && IANAZone.create(offsetZ).valid) {
|
||
z = offsetZ;
|
||
this.dt = dt;
|
||
} else {
|
||
z = "UTC";
|
||
if (opts.timeZoneName) {
|
||
this.dt = dt;
|
||
} else {
|
||
this.dt = dt.offset === 0 ? dt : DateTime.fromMillis(dt.ts + dt.offset * 60 * 1e3);
|
||
}
|
||
}
|
||
} else if (dt.zone.type === "system") {
|
||
this.dt = dt;
|
||
} else {
|
||
this.dt = dt;
|
||
z = dt.zone.name;
|
||
}
|
||
const intlOpts = { ...this.opts };
|
||
intlOpts.timeZone = intlOpts.timeZone || z;
|
||
this.dtf = getCachedDTF(intl, intlOpts);
|
||
}
|
||
format() {
|
||
return this.dtf.format(this.dt.toJSDate());
|
||
}
|
||
formatToParts() {
|
||
return this.dtf.formatToParts(this.dt.toJSDate());
|
||
}
|
||
resolvedOptions() {
|
||
return this.dtf.resolvedOptions();
|
||
}
|
||
};
|
||
var PolyRelFormatter = class {
|
||
constructor(intl, isEnglish, opts) {
|
||
this.opts = { style: "long", ...opts };
|
||
if (!isEnglish && hasRelative()) {
|
||
this.rtf = getCachedRTF(intl, opts);
|
||
}
|
||
}
|
||
format(count, unit) {
|
||
if (this.rtf) {
|
||
return this.rtf.format(count, unit);
|
||
} else {
|
||
return formatRelativeTime(unit, count, this.opts.numeric, this.opts.style !== "long");
|
||
}
|
||
}
|
||
formatToParts(count, unit) {
|
||
if (this.rtf) {
|
||
return this.rtf.formatToParts(count, unit);
|
||
} else {
|
||
return [];
|
||
}
|
||
}
|
||
};
|
||
var Locale = class {
|
||
static fromOpts(opts) {
|
||
return Locale.create(opts.locale, opts.numberingSystem, opts.outputCalendar, opts.defaultToEN);
|
||
}
|
||
static create(locale, numberingSystem, outputCalendar, defaultToEN = false) {
|
||
const specifiedLocale = locale || Settings.defaultLocale;
|
||
const localeR = specifiedLocale || (defaultToEN ? "en-US" : systemLocale());
|
||
const numberingSystemR = numberingSystem || Settings.defaultNumberingSystem;
|
||
const outputCalendarR = outputCalendar || Settings.defaultOutputCalendar;
|
||
return new Locale(localeR, numberingSystemR, outputCalendarR, specifiedLocale);
|
||
}
|
||
static resetCache() {
|
||
sysLocaleCache = null;
|
||
intlDTCache = {};
|
||
intlNumCache = {};
|
||
intlRelCache = {};
|
||
}
|
||
static fromObject({ locale, numberingSystem, outputCalendar } = {}) {
|
||
return Locale.create(locale, numberingSystem, outputCalendar);
|
||
}
|
||
constructor(locale, numbering, outputCalendar, specifiedLocale) {
|
||
const [parsedLocale, parsedNumberingSystem, parsedOutputCalendar] = parseLocaleString(locale);
|
||
this.locale = parsedLocale;
|
||
this.numberingSystem = numbering || parsedNumberingSystem || null;
|
||
this.outputCalendar = outputCalendar || parsedOutputCalendar || null;
|
||
this.intl = intlConfigString(this.locale, this.numberingSystem, this.outputCalendar);
|
||
this.weekdaysCache = { format: {}, standalone: {} };
|
||
this.monthsCache = { format: {}, standalone: {} };
|
||
this.meridiemCache = null;
|
||
this.eraCache = {};
|
||
this.specifiedLocale = specifiedLocale;
|
||
this.fastNumbersCached = null;
|
||
}
|
||
get fastNumbers() {
|
||
if (this.fastNumbersCached == null) {
|
||
this.fastNumbersCached = supportsFastNumbers(this);
|
||
}
|
||
return this.fastNumbersCached;
|
||
}
|
||
listingMode() {
|
||
const isActuallyEn = this.isEnglish();
|
||
const hasNoWeirdness = (this.numberingSystem === null || this.numberingSystem === "latn") && (this.outputCalendar === null || this.outputCalendar === "gregory");
|
||
return isActuallyEn && hasNoWeirdness ? "en" : "intl";
|
||
}
|
||
clone(alts) {
|
||
if (!alts || Object.getOwnPropertyNames(alts).length === 0) {
|
||
return this;
|
||
} else {
|
||
return Locale.create(
|
||
alts.locale || this.specifiedLocale,
|
||
alts.numberingSystem || this.numberingSystem,
|
||
alts.outputCalendar || this.outputCalendar,
|
||
alts.defaultToEN || false
|
||
);
|
||
}
|
||
}
|
||
redefaultToEN(alts = {}) {
|
||
return this.clone({ ...alts, defaultToEN: true });
|
||
}
|
||
redefaultToSystem(alts = {}) {
|
||
return this.clone({ ...alts, defaultToEN: false });
|
||
}
|
||
months(length, format = false, defaultOK = true) {
|
||
return listStuff(this, length, defaultOK, months, () => {
|
||
const intl = format ? { month: length, day: "numeric" } : { month: length }, formatStr = format ? "format" : "standalone";
|
||
if (!this.monthsCache[formatStr][length]) {
|
||
this.monthsCache[formatStr][length] = mapMonths((dt) => this.extract(dt, intl, "month"));
|
||
}
|
||
return this.monthsCache[formatStr][length];
|
||
});
|
||
}
|
||
weekdays(length, format = false, defaultOK = true) {
|
||
return listStuff(this, length, defaultOK, weekdays, () => {
|
||
const intl = format ? { weekday: length, year: "numeric", month: "long", day: "numeric" } : { weekday: length }, formatStr = format ? "format" : "standalone";
|
||
if (!this.weekdaysCache[formatStr][length]) {
|
||
this.weekdaysCache[formatStr][length] = mapWeekdays(
|
||
(dt) => this.extract(dt, intl, "weekday")
|
||
);
|
||
}
|
||
return this.weekdaysCache[formatStr][length];
|
||
});
|
||
}
|
||
meridiems(defaultOK = true) {
|
||
return listStuff(
|
||
this,
|
||
void 0,
|
||
defaultOK,
|
||
() => meridiems,
|
||
() => {
|
||
if (!this.meridiemCache) {
|
||
const intl = { hour: "numeric", hourCycle: "h12" };
|
||
this.meridiemCache = [DateTime.utc(2016, 11, 13, 9), DateTime.utc(2016, 11, 13, 19)].map(
|
||
(dt) => this.extract(dt, intl, "dayperiod")
|
||
);
|
||
}
|
||
return this.meridiemCache;
|
||
}
|
||
);
|
||
}
|
||
eras(length, defaultOK = true) {
|
||
return listStuff(this, length, defaultOK, eras, () => {
|
||
const intl = { era: length };
|
||
if (!this.eraCache[length]) {
|
||
this.eraCache[length] = [DateTime.utc(-40, 1, 1), DateTime.utc(2017, 1, 1)].map(
|
||
(dt) => this.extract(dt, intl, "era")
|
||
);
|
||
}
|
||
return this.eraCache[length];
|
||
});
|
||
}
|
||
extract(dt, intlOpts, field) {
|
||
const df = this.dtFormatter(dt, intlOpts), results = df.formatToParts(), matching = results.find((m) => m.type.toLowerCase() === field);
|
||
return matching ? matching.value : null;
|
||
}
|
||
numberFormatter(opts = {}) {
|
||
return new PolyNumberFormatter(this.intl, opts.forceSimple || this.fastNumbers, opts);
|
||
}
|
||
dtFormatter(dt, intlOpts = {}) {
|
||
return new PolyDateFormatter(dt, this.intl, intlOpts);
|
||
}
|
||
relFormatter(opts = {}) {
|
||
return new PolyRelFormatter(this.intl, this.isEnglish(), opts);
|
||
}
|
||
listFormatter(opts = {}) {
|
||
return getCachedLF(this.intl, opts);
|
||
}
|
||
isEnglish() {
|
||
return this.locale === "en" || this.locale.toLowerCase() === "en-us" || new Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith("en-us");
|
||
}
|
||
equals(other) {
|
||
return this.locale === other.locale && this.numberingSystem === other.numberingSystem && this.outputCalendar === other.outputCalendar;
|
||
}
|
||
};
|
||
var singleton = null;
|
||
var FixedOffsetZone = class extends Zone {
|
||
/**
|
||
* Get a singleton instance of UTC
|
||
* @return {FixedOffsetZone}
|
||
*/
|
||
static get utcInstance() {
|
||
if (singleton === null) {
|
||
singleton = new FixedOffsetZone(0);
|
||
}
|
||
return singleton;
|
||
}
|
||
/**
|
||
* Get an instance with a specified offset
|
||
* @param {number} offset - The offset in minutes
|
||
* @return {FixedOffsetZone}
|
||
*/
|
||
static instance(offset2) {
|
||
return offset2 === 0 ? FixedOffsetZone.utcInstance : new FixedOffsetZone(offset2);
|
||
}
|
||
/**
|
||
* Get an instance of FixedOffsetZone from a UTC offset string, like "UTC+6"
|
||
* @param {string} s - The offset string to parse
|
||
* @example FixedOffsetZone.parseSpecifier("UTC+6")
|
||
* @example FixedOffsetZone.parseSpecifier("UTC+06")
|
||
* @example FixedOffsetZone.parseSpecifier("UTC-6:00")
|
||
* @return {FixedOffsetZone}
|
||
*/
|
||
static parseSpecifier(s2) {
|
||
if (s2) {
|
||
const r = s2.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);
|
||
if (r) {
|
||
return new FixedOffsetZone(signedOffset(r[1], r[2]));
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
constructor(offset2) {
|
||
super();
|
||
this.fixed = offset2;
|
||
}
|
||
/** @override **/
|
||
get type() {
|
||
return "fixed";
|
||
}
|
||
/** @override **/
|
||
get name() {
|
||
return this.fixed === 0 ? "UTC" : `UTC${formatOffset(this.fixed, "narrow")}`;
|
||
}
|
||
get ianaName() {
|
||
if (this.fixed === 0) {
|
||
return "Etc/UTC";
|
||
} else {
|
||
return `Etc/GMT${formatOffset(-this.fixed, "narrow")}`;
|
||
}
|
||
}
|
||
/** @override **/
|
||
offsetName() {
|
||
return this.name;
|
||
}
|
||
/** @override **/
|
||
formatOffset(ts, format) {
|
||
return formatOffset(this.fixed, format);
|
||
}
|
||
/** @override **/
|
||
get isUniversal() {
|
||
return true;
|
||
}
|
||
/** @override **/
|
||
offset() {
|
||
return this.fixed;
|
||
}
|
||
/** @override **/
|
||
equals(otherZone) {
|
||
return otherZone.type === "fixed" && otherZone.fixed === this.fixed;
|
||
}
|
||
/** @override **/
|
||
get isValid() {
|
||
return true;
|
||
}
|
||
};
|
||
var InvalidZone = class extends Zone {
|
||
constructor(zoneName) {
|
||
super();
|
||
this.zoneName = zoneName;
|
||
}
|
||
/** @override **/
|
||
get type() {
|
||
return "invalid";
|
||
}
|
||
/** @override **/
|
||
get name() {
|
||
return this.zoneName;
|
||
}
|
||
/** @override **/
|
||
get isUniversal() {
|
||
return false;
|
||
}
|
||
/** @override **/
|
||
offsetName() {
|
||
return null;
|
||
}
|
||
/** @override **/
|
||
formatOffset() {
|
||
return "";
|
||
}
|
||
/** @override **/
|
||
offset() {
|
||
return NaN;
|
||
}
|
||
/** @override **/
|
||
equals() {
|
||
return false;
|
||
}
|
||
/** @override **/
|
||
get isValid() {
|
||
return false;
|
||
}
|
||
};
|
||
function normalizeZone(input, defaultZone2) {
|
||
if (isUndefined(input) || input === null) {
|
||
return defaultZone2;
|
||
} else if (input instanceof Zone) {
|
||
return input;
|
||
} else if (isString(input)) {
|
||
const lowered = input.toLowerCase();
|
||
if (lowered === "default")
|
||
return defaultZone2;
|
||
else if (lowered === "local" || lowered === "system")
|
||
return SystemZone.instance;
|
||
else if (lowered === "utc" || lowered === "gmt")
|
||
return FixedOffsetZone.utcInstance;
|
||
else
|
||
return FixedOffsetZone.parseSpecifier(lowered) || IANAZone.create(input);
|
||
} else if (isNumber(input)) {
|
||
return FixedOffsetZone.instance(input);
|
||
} else if (typeof input === "object" && input.offset && typeof input.offset === "number") {
|
||
return input;
|
||
} else {
|
||
return new InvalidZone(input);
|
||
}
|
||
}
|
||
var now = () => Date.now();
|
||
var defaultZone = "system";
|
||
var defaultLocale = null;
|
||
var defaultNumberingSystem = null;
|
||
var defaultOutputCalendar = null;
|
||
var twoDigitCutoffYear = 60;
|
||
var throwOnInvalid;
|
||
var Settings = class {
|
||
/**
|
||
* Get the callback for returning the current timestamp.
|
||
* @type {function}
|
||
*/
|
||
static get now() {
|
||
return now;
|
||
}
|
||
/**
|
||
* Set the callback for returning the current timestamp.
|
||
* The function should return a number, which will be interpreted as an Epoch millisecond count
|
||
* @type {function}
|
||
* @example Settings.now = () => Date.now() + 3000 // pretend it is 3 seconds in the future
|
||
* @example Settings.now = () => 0 // always pretend it's Jan 1, 1970 at midnight in UTC time
|
||
*/
|
||
static set now(n2) {
|
||
now = n2;
|
||
}
|
||
/**
|
||
* Set the default time zone to create DateTimes in. Does not affect existing instances.
|
||
* Use the value "system" to reset this value to the system's time zone.
|
||
* @type {string}
|
||
*/
|
||
static set defaultZone(zone) {
|
||
defaultZone = zone;
|
||
}
|
||
/**
|
||
* Get the default time zone object currently used to create DateTimes. Does not affect existing instances.
|
||
* The default value is the system's time zone (the one set on the machine that runs this code).
|
||
* @type {Zone}
|
||
*/
|
||
static get defaultZone() {
|
||
return normalizeZone(defaultZone, SystemZone.instance);
|
||
}
|
||
/**
|
||
* Get the default locale to create DateTimes with. Does not affect existing instances.
|
||
* @type {string}
|
||
*/
|
||
static get defaultLocale() {
|
||
return defaultLocale;
|
||
}
|
||
/**
|
||
* Set the default locale to create DateTimes with. Does not affect existing instances.
|
||
* @type {string}
|
||
*/
|
||
static set defaultLocale(locale) {
|
||
defaultLocale = locale;
|
||
}
|
||
/**
|
||
* Get the default numbering system to create DateTimes with. Does not affect existing instances.
|
||
* @type {string}
|
||
*/
|
||
static get defaultNumberingSystem() {
|
||
return defaultNumberingSystem;
|
||
}
|
||
/**
|
||
* Set the default numbering system to create DateTimes with. Does not affect existing instances.
|
||
* @type {string}
|
||
*/
|
||
static set defaultNumberingSystem(numberingSystem) {
|
||
defaultNumberingSystem = numberingSystem;
|
||
}
|
||
/**
|
||
* Get the default output calendar to create DateTimes with. Does not affect existing instances.
|
||
* @type {string}
|
||
*/
|
||
static get defaultOutputCalendar() {
|
||
return defaultOutputCalendar;
|
||
}
|
||
/**
|
||
* Set the default output calendar to create DateTimes with. Does not affect existing instances.
|
||
* @type {string}
|
||
*/
|
||
static set defaultOutputCalendar(outputCalendar) {
|
||
defaultOutputCalendar = outputCalendar;
|
||
}
|
||
/**
|
||
* Get the cutoff year after which a string encoding a year as two digits is interpreted to occur in the current century.
|
||
* @type {number}
|
||
*/
|
||
static get twoDigitCutoffYear() {
|
||
return twoDigitCutoffYear;
|
||
}
|
||
/**
|
||
* Set the cutoff year after which a string encoding a year as two digits is interpreted to occur in the current century.
|
||
* @type {number}
|
||
* @example Settings.twoDigitCutoffYear = 0 // cut-off year is 0, so all 'yy' are interpretted as current century
|
||
* @example Settings.twoDigitCutoffYear = 50 // '49' -> 1949; '50' -> 2050
|
||
* @example Settings.twoDigitCutoffYear = 1950 // interpretted as 50
|
||
* @example Settings.twoDigitCutoffYear = 2050 // ALSO interpretted as 50
|
||
*/
|
||
static set twoDigitCutoffYear(cutoffYear) {
|
||
twoDigitCutoffYear = cutoffYear % 100;
|
||
}
|
||
/**
|
||
* Get whether Luxon will throw when it encounters invalid DateTimes, Durations, or Intervals
|
||
* @type {boolean}
|
||
*/
|
||
static get throwOnInvalid() {
|
||
return throwOnInvalid;
|
||
}
|
||
/**
|
||
* Set whether Luxon will throw when it encounters invalid DateTimes, Durations, or Intervals
|
||
* @type {boolean}
|
||
*/
|
||
static set throwOnInvalid(t) {
|
||
throwOnInvalid = t;
|
||
}
|
||
/**
|
||
* Reset Luxon's global caches. Should only be necessary in testing scenarios.
|
||
* @return {void}
|
||
*/
|
||
static resetCaches() {
|
||
Locale.resetCache();
|
||
IANAZone.resetCache();
|
||
}
|
||
};
|
||
function isUndefined(o) {
|
||
return typeof o === "undefined";
|
||
}
|
||
function isNumber(o) {
|
||
return typeof o === "number";
|
||
}
|
||
function isInteger(o) {
|
||
return typeof o === "number" && o % 1 === 0;
|
||
}
|
||
function isString(o) {
|
||
return typeof o === "string";
|
||
}
|
||
function isDate(o) {
|
||
return Object.prototype.toString.call(o) === "[object Date]";
|
||
}
|
||
function hasRelative() {
|
||
try {
|
||
return typeof Intl !== "undefined" && !!Intl.RelativeTimeFormat;
|
||
} catch (e) {
|
||
return false;
|
||
}
|
||
}
|
||
function maybeArray(thing) {
|
||
return Array.isArray(thing) ? thing : [thing];
|
||
}
|
||
function bestBy(arr, by, compare) {
|
||
if (arr.length === 0) {
|
||
return void 0;
|
||
}
|
||
return arr.reduce((best, next) => {
|
||
const pair = [by(next), next];
|
||
if (!best) {
|
||
return pair;
|
||
} else if (compare(best[0], pair[0]) === best[0]) {
|
||
return best;
|
||
} else {
|
||
return pair;
|
||
}
|
||
}, null)[1];
|
||
}
|
||
function pick(obj, keys) {
|
||
return keys.reduce((a, k) => {
|
||
a[k] = obj[k];
|
||
return a;
|
||
}, {});
|
||
}
|
||
function hasOwnProperty(obj, prop) {
|
||
return Object.prototype.hasOwnProperty.call(obj, prop);
|
||
}
|
||
function integerBetween(thing, bottom, top) {
|
||
return isInteger(thing) && thing >= bottom && thing <= top;
|
||
}
|
||
function floorMod(x, n2) {
|
||
return x - n2 * Math.floor(x / n2);
|
||
}
|
||
function padStart(input, n2 = 2) {
|
||
const isNeg = input < 0;
|
||
let padded;
|
||
if (isNeg) {
|
||
padded = "-" + ("" + -input).padStart(n2, "0");
|
||
} else {
|
||
padded = ("" + input).padStart(n2, "0");
|
||
}
|
||
return padded;
|
||
}
|
||
function parseInteger(string) {
|
||
if (isUndefined(string) || string === null || string === "") {
|
||
return void 0;
|
||
} else {
|
||
return parseInt(string, 10);
|
||
}
|
||
}
|
||
function parseFloating(string) {
|
||
if (isUndefined(string) || string === null || string === "") {
|
||
return void 0;
|
||
} else {
|
||
return parseFloat(string);
|
||
}
|
||
}
|
||
function parseMillis(fraction) {
|
||
if (isUndefined(fraction) || fraction === null || fraction === "") {
|
||
return void 0;
|
||
} else {
|
||
const f = parseFloat("0." + fraction) * 1e3;
|
||
return Math.floor(f);
|
||
}
|
||
}
|
||
function roundTo(number, digits, towardZero = false) {
|
||
const factor = 10 ** digits, rounder = towardZero ? Math.trunc : Math.round;
|
||
return rounder(number * factor) / factor;
|
||
}
|
||
function isLeapYear(year) {
|
||
return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
|
||
}
|
||
function daysInYear(year) {
|
||
return isLeapYear(year) ? 366 : 365;
|
||
}
|
||
function daysInMonth(year, month) {
|
||
const modMonth = floorMod(month - 1, 12) + 1, modYear = year + (month - modMonth) / 12;
|
||
if (modMonth === 2) {
|
||
return isLeapYear(modYear) ? 29 : 28;
|
||
} else {
|
||
return [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][modMonth - 1];
|
||
}
|
||
}
|
||
function objToLocalTS(obj) {
|
||
let d = Date.UTC(
|
||
obj.year,
|
||
obj.month - 1,
|
||
obj.day,
|
||
obj.hour,
|
||
obj.minute,
|
||
obj.second,
|
||
obj.millisecond
|
||
);
|
||
if (obj.year < 100 && obj.year >= 0) {
|
||
d = new Date(d);
|
||
d.setUTCFullYear(d.getUTCFullYear() - 1900);
|
||
}
|
||
return +d;
|
||
}
|
||
function weeksInWeekYear(weekYear) {
|
||
const p1 = (weekYear + Math.floor(weekYear / 4) - Math.floor(weekYear / 100) + Math.floor(weekYear / 400)) % 7, last = weekYear - 1, p2 = (last + Math.floor(last / 4) - Math.floor(last / 100) + Math.floor(last / 400)) % 7;
|
||
return p1 === 4 || p2 === 3 ? 53 : 52;
|
||
}
|
||
function untruncateYear(year) {
|
||
if (year > 99) {
|
||
return year;
|
||
} else
|
||
return year > Settings.twoDigitCutoffYear ? 1900 + year : 2e3 + year;
|
||
}
|
||
function parseZoneInfo(ts, offsetFormat, locale, timeZone = null) {
|
||
const date = new Date(ts), intlOpts = {
|
||
hourCycle: "h23",
|
||
year: "numeric",
|
||
month: "2-digit",
|
||
day: "2-digit",
|
||
hour: "2-digit",
|
||
minute: "2-digit"
|
||
};
|
||
if (timeZone) {
|
||
intlOpts.timeZone = timeZone;
|
||
}
|
||
const modified = { timeZoneName: offsetFormat, ...intlOpts };
|
||
const parsed = new Intl.DateTimeFormat(locale, modified).formatToParts(date).find((m) => m.type.toLowerCase() === "timezonename");
|
||
return parsed ? parsed.value : null;
|
||
}
|
||
function signedOffset(offHourStr, offMinuteStr) {
|
||
let offHour = parseInt(offHourStr, 10);
|
||
if (Number.isNaN(offHour)) {
|
||
offHour = 0;
|
||
}
|
||
const offMin = parseInt(offMinuteStr, 10) || 0, offMinSigned = offHour < 0 || Object.is(offHour, -0) ? -offMin : offMin;
|
||
return offHour * 60 + offMinSigned;
|
||
}
|
||
function asNumber(value) {
|
||
const numericValue = Number(value);
|
||
if (typeof value === "boolean" || value === "" || Number.isNaN(numericValue))
|
||
throw new InvalidArgumentError(`Invalid unit value ${value}`);
|
||
return numericValue;
|
||
}
|
||
function normalizeObject(obj, normalizer) {
|
||
const normalized = {};
|
||
for (const u in obj) {
|
||
if (hasOwnProperty(obj, u)) {
|
||
const v = obj[u];
|
||
if (v === void 0 || v === null)
|
||
continue;
|
||
normalized[normalizer(u)] = asNumber(v);
|
||
}
|
||
}
|
||
return normalized;
|
||
}
|
||
function formatOffset(offset2, format) {
|
||
const hours = Math.trunc(Math.abs(offset2 / 60)), minutes = Math.trunc(Math.abs(offset2 % 60)), sign = offset2 >= 0 ? "+" : "-";
|
||
switch (format) {
|
||
case "short":
|
||
return `${sign}${padStart(hours, 2)}:${padStart(minutes, 2)}`;
|
||
case "narrow":
|
||
return `${sign}${hours}${minutes > 0 ? `:${minutes}` : ""}`;
|
||
case "techie":
|
||
return `${sign}${padStart(hours, 2)}${padStart(minutes, 2)}`;
|
||
default:
|
||
throw new RangeError(`Value format ${format} is out of range for property format`);
|
||
}
|
||
}
|
||
function timeObject(obj) {
|
||
return pick(obj, ["hour", "minute", "second", "millisecond"]);
|
||
}
|
||
var monthsLong = [
|
||
"January",
|
||
"February",
|
||
"March",
|
||
"April",
|
||
"May",
|
||
"June",
|
||
"July",
|
||
"August",
|
||
"September",
|
||
"October",
|
||
"November",
|
||
"December"
|
||
];
|
||
var monthsShort = [
|
||
"Jan",
|
||
"Feb",
|
||
"Mar",
|
||
"Apr",
|
||
"May",
|
||
"Jun",
|
||
"Jul",
|
||
"Aug",
|
||
"Sep",
|
||
"Oct",
|
||
"Nov",
|
||
"Dec"
|
||
];
|
||
var monthsNarrow = ["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"];
|
||
function months(length) {
|
||
switch (length) {
|
||
case "narrow":
|
||
return [...monthsNarrow];
|
||
case "short":
|
||
return [...monthsShort];
|
||
case "long":
|
||
return [...monthsLong];
|
||
case "numeric":
|
||
return ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"];
|
||
case "2-digit":
|
||
return ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"];
|
||
default:
|
||
return null;
|
||
}
|
||
}
|
||
var weekdaysLong = [
|
||
"Monday",
|
||
"Tuesday",
|
||
"Wednesday",
|
||
"Thursday",
|
||
"Friday",
|
||
"Saturday",
|
||
"Sunday"
|
||
];
|
||
var weekdaysShort = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"];
|
||
var weekdaysNarrow = ["M", "T", "W", "T", "F", "S", "S"];
|
||
function weekdays(length) {
|
||
switch (length) {
|
||
case "narrow":
|
||
return [...weekdaysNarrow];
|
||
case "short":
|
||
return [...weekdaysShort];
|
||
case "long":
|
||
return [...weekdaysLong];
|
||
case "numeric":
|
||
return ["1", "2", "3", "4", "5", "6", "7"];
|
||
default:
|
||
return null;
|
||
}
|
||
}
|
||
var meridiems = ["AM", "PM"];
|
||
var erasLong = ["Before Christ", "Anno Domini"];
|
||
var erasShort = ["BC", "AD"];
|
||
var erasNarrow = ["B", "A"];
|
||
function eras(length) {
|
||
switch (length) {
|
||
case "narrow":
|
||
return [...erasNarrow];
|
||
case "short":
|
||
return [...erasShort];
|
||
case "long":
|
||
return [...erasLong];
|
||
default:
|
||
return null;
|
||
}
|
||
}
|
||
function meridiemForDateTime(dt) {
|
||
return meridiems[dt.hour < 12 ? 0 : 1];
|
||
}
|
||
function weekdayForDateTime(dt, length) {
|
||
return weekdays(length)[dt.weekday - 1];
|
||
}
|
||
function monthForDateTime(dt, length) {
|
||
return months(length)[dt.month - 1];
|
||
}
|
||
function eraForDateTime(dt, length) {
|
||
return eras(length)[dt.year < 0 ? 0 : 1];
|
||
}
|
||
function formatRelativeTime(unit, count, numeric = "always", narrow = false) {
|
||
const units = {
|
||
years: ["year", "yr."],
|
||
quarters: ["quarter", "qtr."],
|
||
months: ["month", "mo."],
|
||
weeks: ["week", "wk."],
|
||
days: ["day", "day", "days"],
|
||
hours: ["hour", "hr."],
|
||
minutes: ["minute", "min."],
|
||
seconds: ["second", "sec."]
|
||
};
|
||
const lastable = ["hours", "minutes", "seconds"].indexOf(unit) === -1;
|
||
if (numeric === "auto" && lastable) {
|
||
const isDay = unit === "days";
|
||
switch (count) {
|
||
case 1:
|
||
return isDay ? "tomorrow" : `next ${units[unit][0]}`;
|
||
case -1:
|
||
return isDay ? "yesterday" : `last ${units[unit][0]}`;
|
||
case 0:
|
||
return isDay ? "today" : `this ${units[unit][0]}`;
|
||
}
|
||
}
|
||
const isInPast = Object.is(count, -0) || count < 0, fmtValue = Math.abs(count), singular = fmtValue === 1, lilUnits = units[unit], fmtUnit = narrow ? singular ? lilUnits[1] : lilUnits[2] || lilUnits[1] : singular ? units[unit][0] : unit;
|
||
return isInPast ? `${fmtValue} ${fmtUnit} ago` : `in ${fmtValue} ${fmtUnit}`;
|
||
}
|
||
function stringifyTokens(splits, tokenToString) {
|
||
let s2 = "";
|
||
for (const token of splits) {
|
||
if (token.literal) {
|
||
s2 += token.val;
|
||
} else {
|
||
s2 += tokenToString(token.val);
|
||
}
|
||
}
|
||
return s2;
|
||
}
|
||
var macroTokenToFormatOpts = {
|
||
D: DATE_SHORT,
|
||
DD: DATE_MED,
|
||
DDD: DATE_FULL,
|
||
DDDD: DATE_HUGE,
|
||
t: TIME_SIMPLE,
|
||
tt: TIME_WITH_SECONDS,
|
||
ttt: TIME_WITH_SHORT_OFFSET,
|
||
tttt: TIME_WITH_LONG_OFFSET,
|
||
T: TIME_24_SIMPLE,
|
||
TT: TIME_24_WITH_SECONDS,
|
||
TTT: TIME_24_WITH_SHORT_OFFSET,
|
||
TTTT: TIME_24_WITH_LONG_OFFSET,
|
||
f: DATETIME_SHORT,
|
||
ff: DATETIME_MED,
|
||
fff: DATETIME_FULL,
|
||
ffff: DATETIME_HUGE,
|
||
F: DATETIME_SHORT_WITH_SECONDS,
|
||
FF: DATETIME_MED_WITH_SECONDS,
|
||
FFF: DATETIME_FULL_WITH_SECONDS,
|
||
FFFF: DATETIME_HUGE_WITH_SECONDS
|
||
};
|
||
var Formatter = class {
|
||
static create(locale, opts = {}) {
|
||
return new Formatter(locale, opts);
|
||
}
|
||
static parseFormat(fmt) {
|
||
let current2 = null, currentFull = "", bracketed = false;
|
||
const splits = [];
|
||
for (let i = 0; i < fmt.length; i++) {
|
||
const c = fmt.charAt(i);
|
||
if (c === "'") {
|
||
if (currentFull.length > 0) {
|
||
splits.push({ literal: bracketed, val: currentFull });
|
||
}
|
||
current2 = null;
|
||
currentFull = "";
|
||
bracketed = !bracketed;
|
||
} else if (bracketed) {
|
||
currentFull += c;
|
||
} else if (c === current2) {
|
||
currentFull += c;
|
||
} else {
|
||
if (currentFull.length > 0) {
|
||
splits.push({ literal: false, val: currentFull });
|
||
}
|
||
currentFull = c;
|
||
current2 = c;
|
||
}
|
||
}
|
||
if (currentFull.length > 0) {
|
||
splits.push({ literal: bracketed, val: currentFull });
|
||
}
|
||
return splits;
|
||
}
|
||
static macroTokenToFormatOpts(token) {
|
||
return macroTokenToFormatOpts[token];
|
||
}
|
||
constructor(locale, formatOpts) {
|
||
this.opts = formatOpts;
|
||
this.loc = locale;
|
||
this.systemLoc = null;
|
||
}
|
||
formatWithSystemDefault(dt, opts) {
|
||
if (this.systemLoc === null) {
|
||
this.systemLoc = this.loc.redefaultToSystem();
|
||
}
|
||
const df = this.systemLoc.dtFormatter(dt, { ...this.opts, ...opts });
|
||
return df.format();
|
||
}
|
||
formatDateTime(dt, opts = {}) {
|
||
const df = this.loc.dtFormatter(dt, { ...this.opts, ...opts });
|
||
return df.format();
|
||
}
|
||
formatDateTimeParts(dt, opts = {}) {
|
||
const df = this.loc.dtFormatter(dt, { ...this.opts, ...opts });
|
||
return df.formatToParts();
|
||
}
|
||
formatInterval(interval, opts = {}) {
|
||
const df = this.loc.dtFormatter(interval.start, { ...this.opts, ...opts });
|
||
return df.dtf.formatRange(interval.start.toJSDate(), interval.end.toJSDate());
|
||
}
|
||
resolvedOptions(dt, opts = {}) {
|
||
const df = this.loc.dtFormatter(dt, { ...this.opts, ...opts });
|
||
return df.resolvedOptions();
|
||
}
|
||
num(n2, p = 0) {
|
||
if (this.opts.forceSimple) {
|
||
return padStart(n2, p);
|
||
}
|
||
const opts = { ...this.opts };
|
||
if (p > 0) {
|
||
opts.padTo = p;
|
||
}
|
||
return this.loc.numberFormatter(opts).format(n2);
|
||
}
|
||
formatDateTimeFromString(dt, fmt) {
|
||
const knownEnglish = this.loc.listingMode() === "en", useDateTimeFormatter = this.loc.outputCalendar && this.loc.outputCalendar !== "gregory", string = (opts, extract) => this.loc.extract(dt, opts, extract), formatOffset2 = (opts) => {
|
||
if (dt.isOffsetFixed && dt.offset === 0 && opts.allowZ) {
|
||
return "Z";
|
||
}
|
||
return dt.isValid ? dt.zone.formatOffset(dt.ts, opts.format) : "";
|
||
}, meridiem = () => knownEnglish ? meridiemForDateTime(dt) : string({ hour: "numeric", hourCycle: "h12" }, "dayperiod"), month = (length, standalone) => knownEnglish ? monthForDateTime(dt, length) : string(standalone ? { month: length } : { month: length, day: "numeric" }, "month"), weekday = (length, standalone) => knownEnglish ? weekdayForDateTime(dt, length) : string(
|
||
standalone ? { weekday: length } : { weekday: length, month: "long", day: "numeric" },
|
||
"weekday"
|
||
), maybeMacro = (token) => {
|
||
const formatOpts = Formatter.macroTokenToFormatOpts(token);
|
||
if (formatOpts) {
|
||
return this.formatWithSystemDefault(dt, formatOpts);
|
||
} else {
|
||
return token;
|
||
}
|
||
}, era = (length) => knownEnglish ? eraForDateTime(dt, length) : string({ era: length }, "era"), tokenToString = (token) => {
|
||
switch (token) {
|
||
case "S":
|
||
return this.num(dt.millisecond);
|
||
case "u":
|
||
case "SSS":
|
||
return this.num(dt.millisecond, 3);
|
||
case "s":
|
||
return this.num(dt.second);
|
||
case "ss":
|
||
return this.num(dt.second, 2);
|
||
case "uu":
|
||
return this.num(Math.floor(dt.millisecond / 10), 2);
|
||
case "uuu":
|
||
return this.num(Math.floor(dt.millisecond / 100));
|
||
case "m":
|
||
return this.num(dt.minute);
|
||
case "mm":
|
||
return this.num(dt.minute, 2);
|
||
case "h":
|
||
return this.num(dt.hour % 12 === 0 ? 12 : dt.hour % 12);
|
||
case "hh":
|
||
return this.num(dt.hour % 12 === 0 ? 12 : dt.hour % 12, 2);
|
||
case "H":
|
||
return this.num(dt.hour);
|
||
case "HH":
|
||
return this.num(dt.hour, 2);
|
||
case "Z":
|
||
return formatOffset2({ format: "narrow", allowZ: this.opts.allowZ });
|
||
case "ZZ":
|
||
return formatOffset2({ format: "short", allowZ: this.opts.allowZ });
|
||
case "ZZZ":
|
||
return formatOffset2({ format: "techie", allowZ: this.opts.allowZ });
|
||
case "ZZZZ":
|
||
return dt.zone.offsetName(dt.ts, { format: "short", locale: this.loc.locale });
|
||
case "ZZZZZ":
|
||
return dt.zone.offsetName(dt.ts, { format: "long", locale: this.loc.locale });
|
||
case "z":
|
||
return dt.zoneName;
|
||
case "a":
|
||
return meridiem();
|
||
case "d":
|
||
return useDateTimeFormatter ? string({ day: "numeric" }, "day") : this.num(dt.day);
|
||
case "dd":
|
||
return useDateTimeFormatter ? string({ day: "2-digit" }, "day") : this.num(dt.day, 2);
|
||
case "c":
|
||
return this.num(dt.weekday);
|
||
case "ccc":
|
||
return weekday("short", true);
|
||
case "cccc":
|
||
return weekday("long", true);
|
||
case "ccccc":
|
||
return weekday("narrow", true);
|
||
case "E":
|
||
return this.num(dt.weekday);
|
||
case "EEE":
|
||
return weekday("short", false);
|
||
case "EEEE":
|
||
return weekday("long", false);
|
||
case "EEEEE":
|
||
return weekday("narrow", false);
|
||
case "L":
|
||
return useDateTimeFormatter ? string({ month: "numeric", day: "numeric" }, "month") : this.num(dt.month);
|
||
case "LL":
|
||
return useDateTimeFormatter ? string({ month: "2-digit", day: "numeric" }, "month") : this.num(dt.month, 2);
|
||
case "LLL":
|
||
return month("short", true);
|
||
case "LLLL":
|
||
return month("long", true);
|
||
case "LLLLL":
|
||
return month("narrow", true);
|
||
case "M":
|
||
return useDateTimeFormatter ? string({ month: "numeric" }, "month") : this.num(dt.month);
|
||
case "MM":
|
||
return useDateTimeFormatter ? string({ month: "2-digit" }, "month") : this.num(dt.month, 2);
|
||
case "MMM":
|
||
return month("short", false);
|
||
case "MMMM":
|
||
return month("long", false);
|
||
case "MMMMM":
|
||
return month("narrow", false);
|
||
case "y":
|
||
return useDateTimeFormatter ? string({ year: "numeric" }, "year") : this.num(dt.year);
|
||
case "yy":
|
||
return useDateTimeFormatter ? string({ year: "2-digit" }, "year") : this.num(dt.year.toString().slice(-2), 2);
|
||
case "yyyy":
|
||
return useDateTimeFormatter ? string({ year: "numeric" }, "year") : this.num(dt.year, 4);
|
||
case "yyyyyy":
|
||
return useDateTimeFormatter ? string({ year: "numeric" }, "year") : this.num(dt.year, 6);
|
||
case "G":
|
||
return era("short");
|
||
case "GG":
|
||
return era("long");
|
||
case "GGGGG":
|
||
return era("narrow");
|
||
case "kk":
|
||
return this.num(dt.weekYear.toString().slice(-2), 2);
|
||
case "kkkk":
|
||
return this.num(dt.weekYear, 4);
|
||
case "W":
|
||
return this.num(dt.weekNumber);
|
||
case "WW":
|
||
return this.num(dt.weekNumber, 2);
|
||
case "o":
|
||
return this.num(dt.ordinal);
|
||
case "ooo":
|
||
return this.num(dt.ordinal, 3);
|
||
case "q":
|
||
return this.num(dt.quarter);
|
||
case "qq":
|
||
return this.num(dt.quarter, 2);
|
||
case "X":
|
||
return this.num(Math.floor(dt.ts / 1e3));
|
||
case "x":
|
||
return this.num(dt.ts);
|
||
default:
|
||
return maybeMacro(token);
|
||
}
|
||
};
|
||
return stringifyTokens(Formatter.parseFormat(fmt), tokenToString);
|
||
}
|
||
formatDurationFromString(dur, fmt) {
|
||
const tokenToField = (token) => {
|
||
switch (token[0]) {
|
||
case "S":
|
||
return "millisecond";
|
||
case "s":
|
||
return "second";
|
||
case "m":
|
||
return "minute";
|
||
case "h":
|
||
return "hour";
|
||
case "d":
|
||
return "day";
|
||
case "w":
|
||
return "week";
|
||
case "M":
|
||
return "month";
|
||
case "y":
|
||
return "year";
|
||
default:
|
||
return null;
|
||
}
|
||
}, tokenToString = (lildur) => (token) => {
|
||
const mapped = tokenToField(token);
|
||
if (mapped) {
|
||
return this.num(lildur.get(mapped), token.length);
|
||
} else {
|
||
return token;
|
||
}
|
||
}, tokens = Formatter.parseFormat(fmt), realTokens = tokens.reduce(
|
||
(found, { literal, val }) => literal ? found : found.concat(val),
|
||
[]
|
||
), collapsed = dur.shiftTo(...realTokens.map(tokenToField).filter((t) => t));
|
||
return stringifyTokens(tokens, tokenToString(collapsed));
|
||
}
|
||
};
|
||
var Invalid = class {
|
||
constructor(reason, explanation) {
|
||
this.reason = reason;
|
||
this.explanation = explanation;
|
||
}
|
||
toMessage() {
|
||
if (this.explanation) {
|
||
return `${this.reason}: ${this.explanation}`;
|
||
} else {
|
||
return this.reason;
|
||
}
|
||
}
|
||
};
|
||
var ianaRegex = /[A-Za-z_+-]{1,256}(?::?\/[A-Za-z0-9_+-]{1,256}(?:\/[A-Za-z0-9_+-]{1,256})?)?/;
|
||
function combineRegexes(...regexes) {
|
||
const full = regexes.reduce((f, r) => f + r.source, "");
|
||
return RegExp(`^${full}$`);
|
||
}
|
||
function combineExtractors(...extractors) {
|
||
return (m) => extractors.reduce(
|
||
([mergedVals, mergedZone, cursor], ex) => {
|
||
const [val, zone, next] = ex(m, cursor);
|
||
return [{ ...mergedVals, ...val }, zone || mergedZone, next];
|
||
},
|
||
[{}, null, 1]
|
||
).slice(0, 2);
|
||
}
|
||
function parse(s2, ...patterns) {
|
||
if (s2 == null) {
|
||
return [null, null];
|
||
}
|
||
for (const [regex, extractor] of patterns) {
|
||
const m = regex.exec(s2);
|
||
if (m) {
|
||
return extractor(m);
|
||
}
|
||
}
|
||
return [null, null];
|
||
}
|
||
function simpleParse(...keys) {
|
||
return (match2, cursor) => {
|
||
const ret = {};
|
||
let i;
|
||
for (i = 0; i < keys.length; i++) {
|
||
ret[keys[i]] = parseInteger(match2[cursor + i]);
|
||
}
|
||
return [ret, null, cursor + i];
|
||
};
|
||
}
|
||
var offsetRegex = /(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/;
|
||
var isoExtendedZone = `(?:${offsetRegex.source}?(?:\\[(${ianaRegex.source})\\])?)?`;
|
||
var isoTimeBaseRegex = /(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/;
|
||
var isoTimeRegex = RegExp(`${isoTimeBaseRegex.source}${isoExtendedZone}`);
|
||
var isoTimeExtensionRegex = RegExp(`(?:T${isoTimeRegex.source})?`);
|
||
var isoYmdRegex = /([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/;
|
||
var isoWeekRegex = /(\d{4})-?W(\d\d)(?:-?(\d))?/;
|
||
var isoOrdinalRegex = /(\d{4})-?(\d{3})/;
|
||
var extractISOWeekData = simpleParse("weekYear", "weekNumber", "weekDay");
|
||
var extractISOOrdinalData = simpleParse("year", "ordinal");
|
||
var sqlYmdRegex = /(\d{4})-(\d\d)-(\d\d)/;
|
||
var sqlTimeRegex = RegExp(
|
||
`${isoTimeBaseRegex.source} ?(?:${offsetRegex.source}|(${ianaRegex.source}))?`
|
||
);
|
||
var sqlTimeExtensionRegex = RegExp(`(?: ${sqlTimeRegex.source})?`);
|
||
function int(match2, pos, fallback) {
|
||
const m = match2[pos];
|
||
return isUndefined(m) ? fallback : parseInteger(m);
|
||
}
|
||
function extractISOYmd(match2, cursor) {
|
||
const item = {
|
||
year: int(match2, cursor),
|
||
month: int(match2, cursor + 1, 1),
|
||
day: int(match2, cursor + 2, 1)
|
||
};
|
||
return [item, null, cursor + 3];
|
||
}
|
||
function extractISOTime(match2, cursor) {
|
||
const item = {
|
||
hours: int(match2, cursor, 0),
|
||
minutes: int(match2, cursor + 1, 0),
|
||
seconds: int(match2, cursor + 2, 0),
|
||
milliseconds: parseMillis(match2[cursor + 3])
|
||
};
|
||
return [item, null, cursor + 4];
|
||
}
|
||
function extractISOOffset(match2, cursor) {
|
||
const local = !match2[cursor] && !match2[cursor + 1], fullOffset = signedOffset(match2[cursor + 1], match2[cursor + 2]), zone = local ? null : FixedOffsetZone.instance(fullOffset);
|
||
return [{}, zone, cursor + 3];
|
||
}
|
||
function extractIANAZone(match2, cursor) {
|
||
const zone = match2[cursor] ? IANAZone.create(match2[cursor]) : null;
|
||
return [{}, zone, cursor + 1];
|
||
}
|
||
var isoTimeOnly = RegExp(`^T?${isoTimeBaseRegex.source}$`);
|
||
var isoDuration = /^-?P(?:(?:(-?\d{1,20}(?:\.\d{1,20})?)Y)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20}(?:\.\d{1,20})?)W)?(?:(-?\d{1,20}(?:\.\d{1,20})?)D)?(?:T(?:(-?\d{1,20}(?:\.\d{1,20})?)H)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,20}))?S)?)?)$/;
|
||
function extractISODuration(match2) {
|
||
const [s2, yearStr, monthStr, weekStr, dayStr, hourStr, minuteStr, secondStr, millisecondsStr] = match2;
|
||
const hasNegativePrefix = s2[0] === "-";
|
||
const negativeSeconds = secondStr && secondStr[0] === "-";
|
||
const maybeNegate = (num, force = false) => num !== void 0 && (force || num && hasNegativePrefix) ? -num : num;
|
||
return [
|
||
{
|
||
years: maybeNegate(parseFloating(yearStr)),
|
||
months: maybeNegate(parseFloating(monthStr)),
|
||
weeks: maybeNegate(parseFloating(weekStr)),
|
||
days: maybeNegate(parseFloating(dayStr)),
|
||
hours: maybeNegate(parseFloating(hourStr)),
|
||
minutes: maybeNegate(parseFloating(minuteStr)),
|
||
seconds: maybeNegate(parseFloating(secondStr), secondStr === "-0"),
|
||
milliseconds: maybeNegate(parseMillis(millisecondsStr), negativeSeconds)
|
||
}
|
||
];
|
||
}
|
||
var obsOffsets = {
|
||
GMT: 0,
|
||
EDT: -4 * 60,
|
||
EST: -5 * 60,
|
||
CDT: -5 * 60,
|
||
CST: -6 * 60,
|
||
MDT: -6 * 60,
|
||
MST: -7 * 60,
|
||
PDT: -7 * 60,
|
||
PST: -8 * 60
|
||
};
|
||
function fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) {
|
||
const result = {
|
||
year: yearStr.length === 2 ? untruncateYear(parseInteger(yearStr)) : parseInteger(yearStr),
|
||
month: monthsShort.indexOf(monthStr) + 1,
|
||
day: parseInteger(dayStr),
|
||
hour: parseInteger(hourStr),
|
||
minute: parseInteger(minuteStr)
|
||
};
|
||
if (secondStr)
|
||
result.second = parseInteger(secondStr);
|
||
if (weekdayStr) {
|
||
result.weekday = weekdayStr.length > 3 ? weekdaysLong.indexOf(weekdayStr) + 1 : weekdaysShort.indexOf(weekdayStr) + 1;
|
||
}
|
||
return result;
|
||
}
|
||
var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;
|
||
function extractRFC2822(match2) {
|
||
const [
|
||
,
|
||
weekdayStr,
|
||
dayStr,
|
||
monthStr,
|
||
yearStr,
|
||
hourStr,
|
||
minuteStr,
|
||
secondStr,
|
||
obsOffset,
|
||
milOffset,
|
||
offHourStr,
|
||
offMinuteStr
|
||
] = match2, result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr);
|
||
let offset2;
|
||
if (obsOffset) {
|
||
offset2 = obsOffsets[obsOffset];
|
||
} else if (milOffset) {
|
||
offset2 = 0;
|
||
} else {
|
||
offset2 = signedOffset(offHourStr, offMinuteStr);
|
||
}
|
||
return [result, new FixedOffsetZone(offset2)];
|
||
}
|
||
function preprocessRFC2822(s2) {
|
||
return s2.replace(/\([^()]*\)|[\n\t]/g, " ").replace(/(\s\s+)/g, " ").trim();
|
||
}
|
||
var rfc1123 = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/;
|
||
var rfc850 = /^(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/;
|
||
var ascii = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;
|
||
function extractRFC1123Or850(match2) {
|
||
const [, weekdayStr, dayStr, monthStr, yearStr, hourStr, minuteStr, secondStr] = match2, result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr);
|
||
return [result, FixedOffsetZone.utcInstance];
|
||
}
|
||
function extractASCII(match2) {
|
||
const [, weekdayStr, monthStr, dayStr, hourStr, minuteStr, secondStr, yearStr] = match2, result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr);
|
||
return [result, FixedOffsetZone.utcInstance];
|
||
}
|
||
var isoYmdWithTimeExtensionRegex = combineRegexes(isoYmdRegex, isoTimeExtensionRegex);
|
||
var isoWeekWithTimeExtensionRegex = combineRegexes(isoWeekRegex, isoTimeExtensionRegex);
|
||
var isoOrdinalWithTimeExtensionRegex = combineRegexes(isoOrdinalRegex, isoTimeExtensionRegex);
|
||
var isoTimeCombinedRegex = combineRegexes(isoTimeRegex);
|
||
var extractISOYmdTimeAndOffset = combineExtractors(
|
||
extractISOYmd,
|
||
extractISOTime,
|
||
extractISOOffset,
|
||
extractIANAZone
|
||
);
|
||
var extractISOWeekTimeAndOffset = combineExtractors(
|
||
extractISOWeekData,
|
||
extractISOTime,
|
||
extractISOOffset,
|
||
extractIANAZone
|
||
);
|
||
var extractISOOrdinalDateAndTime = combineExtractors(
|
||
extractISOOrdinalData,
|
||
extractISOTime,
|
||
extractISOOffset,
|
||
extractIANAZone
|
||
);
|
||
var extractISOTimeAndOffset = combineExtractors(
|
||
extractISOTime,
|
||
extractISOOffset,
|
||
extractIANAZone
|
||
);
|
||
function parseISODate(s2) {
|
||
return parse(
|
||
s2,
|
||
[isoYmdWithTimeExtensionRegex, extractISOYmdTimeAndOffset],
|
||
[isoWeekWithTimeExtensionRegex, extractISOWeekTimeAndOffset],
|
||
[isoOrdinalWithTimeExtensionRegex, extractISOOrdinalDateAndTime],
|
||
[isoTimeCombinedRegex, extractISOTimeAndOffset]
|
||
);
|
||
}
|
||
function parseRFC2822Date(s2) {
|
||
return parse(preprocessRFC2822(s2), [rfc2822, extractRFC2822]);
|
||
}
|
||
function parseHTTPDate(s2) {
|
||
return parse(
|
||
s2,
|
||
[rfc1123, extractRFC1123Or850],
|
||
[rfc850, extractRFC1123Or850],
|
||
[ascii, extractASCII]
|
||
);
|
||
}
|
||
function parseISODuration(s2) {
|
||
return parse(s2, [isoDuration, extractISODuration]);
|
||
}
|
||
var extractISOTimeOnly = combineExtractors(extractISOTime);
|
||
function parseISOTimeOnly(s2) {
|
||
return parse(s2, [isoTimeOnly, extractISOTimeOnly]);
|
||
}
|
||
var sqlYmdWithTimeExtensionRegex = combineRegexes(sqlYmdRegex, sqlTimeExtensionRegex);
|
||
var sqlTimeCombinedRegex = combineRegexes(sqlTimeRegex);
|
||
var extractISOTimeOffsetAndIANAZone = combineExtractors(
|
||
extractISOTime,
|
||
extractISOOffset,
|
||
extractIANAZone
|
||
);
|
||
function parseSQL(s2) {
|
||
return parse(
|
||
s2,
|
||
[sqlYmdWithTimeExtensionRegex, extractISOYmdTimeAndOffset],
|
||
[sqlTimeCombinedRegex, extractISOTimeOffsetAndIANAZone]
|
||
);
|
||
}
|
||
var INVALID$2 = "Invalid Duration";
|
||
var lowOrderMatrix = {
|
||
weeks: {
|
||
days: 7,
|
||
hours: 7 * 24,
|
||
minutes: 7 * 24 * 60,
|
||
seconds: 7 * 24 * 60 * 60,
|
||
milliseconds: 7 * 24 * 60 * 60 * 1e3
|
||
},
|
||
days: {
|
||
hours: 24,
|
||
minutes: 24 * 60,
|
||
seconds: 24 * 60 * 60,
|
||
milliseconds: 24 * 60 * 60 * 1e3
|
||
},
|
||
hours: { minutes: 60, seconds: 60 * 60, milliseconds: 60 * 60 * 1e3 },
|
||
minutes: { seconds: 60, milliseconds: 60 * 1e3 },
|
||
seconds: { milliseconds: 1e3 }
|
||
};
|
||
var casualMatrix = {
|
||
years: {
|
||
quarters: 4,
|
||
months: 12,
|
||
weeks: 52,
|
||
days: 365,
|
||
hours: 365 * 24,
|
||
minutes: 365 * 24 * 60,
|
||
seconds: 365 * 24 * 60 * 60,
|
||
milliseconds: 365 * 24 * 60 * 60 * 1e3
|
||
},
|
||
quarters: {
|
||
months: 3,
|
||
weeks: 13,
|
||
days: 91,
|
||
hours: 91 * 24,
|
||
minutes: 91 * 24 * 60,
|
||
seconds: 91 * 24 * 60 * 60,
|
||
milliseconds: 91 * 24 * 60 * 60 * 1e3
|
||
},
|
||
months: {
|
||
weeks: 4,
|
||
days: 30,
|
||
hours: 30 * 24,
|
||
minutes: 30 * 24 * 60,
|
||
seconds: 30 * 24 * 60 * 60,
|
||
milliseconds: 30 * 24 * 60 * 60 * 1e3
|
||
},
|
||
...lowOrderMatrix
|
||
};
|
||
var daysInYearAccurate = 146097 / 400;
|
||
var daysInMonthAccurate = 146097 / 4800;
|
||
var accurateMatrix = {
|
||
years: {
|
||
quarters: 4,
|
||
months: 12,
|
||
weeks: daysInYearAccurate / 7,
|
||
days: daysInYearAccurate,
|
||
hours: daysInYearAccurate * 24,
|
||
minutes: daysInYearAccurate * 24 * 60,
|
||
seconds: daysInYearAccurate * 24 * 60 * 60,
|
||
milliseconds: daysInYearAccurate * 24 * 60 * 60 * 1e3
|
||
},
|
||
quarters: {
|
||
months: 3,
|
||
weeks: daysInYearAccurate / 28,
|
||
days: daysInYearAccurate / 4,
|
||
hours: daysInYearAccurate * 24 / 4,
|
||
minutes: daysInYearAccurate * 24 * 60 / 4,
|
||
seconds: daysInYearAccurate * 24 * 60 * 60 / 4,
|
||
milliseconds: daysInYearAccurate * 24 * 60 * 60 * 1e3 / 4
|
||
},
|
||
months: {
|
||
weeks: daysInMonthAccurate / 7,
|
||
days: daysInMonthAccurate,
|
||
hours: daysInMonthAccurate * 24,
|
||
minutes: daysInMonthAccurate * 24 * 60,
|
||
seconds: daysInMonthAccurate * 24 * 60 * 60,
|
||
milliseconds: daysInMonthAccurate * 24 * 60 * 60 * 1e3
|
||
},
|
||
...lowOrderMatrix
|
||
};
|
||
var orderedUnits$1 = [
|
||
"years",
|
||
"quarters",
|
||
"months",
|
||
"weeks",
|
||
"days",
|
||
"hours",
|
||
"minutes",
|
||
"seconds",
|
||
"milliseconds"
|
||
];
|
||
var reverseUnits = orderedUnits$1.slice(0).reverse();
|
||
function clone$1(dur, alts, clear = false) {
|
||
const conf = {
|
||
values: clear ? alts.values : { ...dur.values, ...alts.values || {} },
|
||
loc: dur.loc.clone(alts.loc),
|
||
conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy,
|
||
matrix: alts.matrix || dur.matrix
|
||
};
|
||
return new Duration(conf);
|
||
}
|
||
function antiTrunc(n2) {
|
||
return n2 < 0 ? Math.floor(n2) : Math.ceil(n2);
|
||
}
|
||
function convert(matrix, fromMap, fromUnit, toMap, toUnit) {
|
||
const conv = matrix[toUnit][fromUnit], raw = fromMap[fromUnit] / conv, sameSign = Math.sign(raw) === Math.sign(toMap[toUnit]), added = !sameSign && toMap[toUnit] !== 0 && Math.abs(raw) <= 1 ? antiTrunc(raw) : Math.trunc(raw);
|
||
toMap[toUnit] += added;
|
||
fromMap[fromUnit] -= added * conv;
|
||
}
|
||
function normalizeValues(matrix, vals) {
|
||
reverseUnits.reduce((previous, current2) => {
|
||
if (!isUndefined(vals[current2])) {
|
||
if (previous) {
|
||
convert(matrix, vals, previous, vals, current2);
|
||
}
|
||
return current2;
|
||
} else {
|
||
return previous;
|
||
}
|
||
}, null);
|
||
}
|
||
function removeZeroes(vals) {
|
||
const newVals = {};
|
||
for (const [key, value] of Object.entries(vals)) {
|
||
if (value !== 0) {
|
||
newVals[key] = value;
|
||
}
|
||
}
|
||
return newVals;
|
||
}
|
||
var Duration = class {
|
||
/**
|
||
* @private
|
||
*/
|
||
constructor(config) {
|
||
const accurate = config.conversionAccuracy === "longterm" || false;
|
||
let matrix = accurate ? accurateMatrix : casualMatrix;
|
||
if (config.matrix) {
|
||
matrix = config.matrix;
|
||
}
|
||
this.values = config.values;
|
||
this.loc = config.loc || Locale.create();
|
||
this.conversionAccuracy = accurate ? "longterm" : "casual";
|
||
this.invalid = config.invalid || null;
|
||
this.matrix = matrix;
|
||
this.isLuxonDuration = true;
|
||
}
|
||
/**
|
||
* Create Duration from a number of milliseconds.
|
||
* @param {number} count of milliseconds
|
||
* @param {Object} opts - options for parsing
|
||
* @param {string} [opts.locale='en-US'] - the locale to use
|
||
* @param {string} opts.numberingSystem - the numbering system to use
|
||
* @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use
|
||
* @return {Duration}
|
||
*/
|
||
static fromMillis(count, opts) {
|
||
return Duration.fromObject({ milliseconds: count }, opts);
|
||
}
|
||
/**
|
||
* Create a Duration from a JavaScript object with keys like 'years' and 'hours'.
|
||
* If this object is empty then a zero milliseconds duration is returned.
|
||
* @param {Object} obj - the object to create the DateTime from
|
||
* @param {number} obj.years
|
||
* @param {number} obj.quarters
|
||
* @param {number} obj.months
|
||
* @param {number} obj.weeks
|
||
* @param {number} obj.days
|
||
* @param {number} obj.hours
|
||
* @param {number} obj.minutes
|
||
* @param {number} obj.seconds
|
||
* @param {number} obj.milliseconds
|
||
* @param {Object} [opts=[]] - options for creating this Duration
|
||
* @param {string} [opts.locale='en-US'] - the locale to use
|
||
* @param {string} opts.numberingSystem - the numbering system to use
|
||
* @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use
|
||
* @param {string} [opts.matrix=Object] - the custom conversion system to use
|
||
* @return {Duration}
|
||
*/
|
||
static fromObject(obj, opts = {}) {
|
||
if (obj == null || typeof obj !== "object") {
|
||
throw new InvalidArgumentError(
|
||
`Duration.fromObject: argument expected to be an object, got ${obj === null ? "null" : typeof obj}`
|
||
);
|
||
}
|
||
return new Duration({
|
||
values: normalizeObject(obj, Duration.normalizeUnit),
|
||
loc: Locale.fromObject(opts),
|
||
conversionAccuracy: opts.conversionAccuracy,
|
||
matrix: opts.matrix
|
||
});
|
||
}
|
||
/**
|
||
* Create a Duration from DurationLike.
|
||
*
|
||
* @param {Object | number | Duration} durationLike
|
||
* One of:
|
||
* - object with keys like 'years' and 'hours'.
|
||
* - number representing milliseconds
|
||
* - Duration instance
|
||
* @return {Duration}
|
||
*/
|
||
static fromDurationLike(durationLike) {
|
||
if (isNumber(durationLike)) {
|
||
return Duration.fromMillis(durationLike);
|
||
} else if (Duration.isDuration(durationLike)) {
|
||
return durationLike;
|
||
} else if (typeof durationLike === "object") {
|
||
return Duration.fromObject(durationLike);
|
||
} else {
|
||
throw new InvalidArgumentError(
|
||
`Unknown duration argument ${durationLike} of type ${typeof durationLike}`
|
||
);
|
||
}
|
||
}
|
||
/**
|
||
* Create a Duration from an ISO 8601 duration string.
|
||
* @param {string} text - text to parse
|
||
* @param {Object} opts - options for parsing
|
||
* @param {string} [opts.locale='en-US'] - the locale to use
|
||
* @param {string} opts.numberingSystem - the numbering system to use
|
||
* @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use
|
||
* @param {string} [opts.matrix=Object] - the preset conversion system to use
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Durations
|
||
* @example Duration.fromISO('P3Y6M1W4DT12H30M5S').toObject() //=> { years: 3, months: 6, weeks: 1, days: 4, hours: 12, minutes: 30, seconds: 5 }
|
||
* @example Duration.fromISO('PT23H').toObject() //=> { hours: 23 }
|
||
* @example Duration.fromISO('P5Y3M').toObject() //=> { years: 5, months: 3 }
|
||
* @return {Duration}
|
||
*/
|
||
static fromISO(text, opts) {
|
||
const [parsed] = parseISODuration(text);
|
||
if (parsed) {
|
||
return Duration.fromObject(parsed, opts);
|
||
} else {
|
||
return Duration.invalid("unparsable", `the input "${text}" can't be parsed as ISO 8601`);
|
||
}
|
||
}
|
||
/**
|
||
* Create a Duration from an ISO 8601 time string.
|
||
* @param {string} text - text to parse
|
||
* @param {Object} opts - options for parsing
|
||
* @param {string} [opts.locale='en-US'] - the locale to use
|
||
* @param {string} opts.numberingSystem - the numbering system to use
|
||
* @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use
|
||
* @param {string} [opts.matrix=Object] - the conversion system to use
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Times
|
||
* @example Duration.fromISOTime('11:22:33.444').toObject() //=> { hours: 11, minutes: 22, seconds: 33, milliseconds: 444 }
|
||
* @example Duration.fromISOTime('11:00').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }
|
||
* @example Duration.fromISOTime('T11:00').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }
|
||
* @example Duration.fromISOTime('1100').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }
|
||
* @example Duration.fromISOTime('T1100').toObject() //=> { hours: 11, minutes: 0, seconds: 0 }
|
||
* @return {Duration}
|
||
*/
|
||
static fromISOTime(text, opts) {
|
||
const [parsed] = parseISOTimeOnly(text);
|
||
if (parsed) {
|
||
return Duration.fromObject(parsed, opts);
|
||
} else {
|
||
return Duration.invalid("unparsable", `the input "${text}" can't be parsed as ISO 8601`);
|
||
}
|
||
}
|
||
/**
|
||
* Create an invalid Duration.
|
||
* @param {string} reason - simple string of why this datetime is invalid. Should not contain parameters or anything else data-dependent
|
||
* @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information
|
||
* @return {Duration}
|
||
*/
|
||
static invalid(reason, explanation = null) {
|
||
if (!reason) {
|
||
throw new InvalidArgumentError("need to specify a reason the Duration is invalid");
|
||
}
|
||
const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation);
|
||
if (Settings.throwOnInvalid) {
|
||
throw new InvalidDurationError(invalid);
|
||
} else {
|
||
return new Duration({ invalid });
|
||
}
|
||
}
|
||
/**
|
||
* @private
|
||
*/
|
||
static normalizeUnit(unit) {
|
||
const normalized = {
|
||
year: "years",
|
||
years: "years",
|
||
quarter: "quarters",
|
||
quarters: "quarters",
|
||
month: "months",
|
||
months: "months",
|
||
week: "weeks",
|
||
weeks: "weeks",
|
||
day: "days",
|
||
days: "days",
|
||
hour: "hours",
|
||
hours: "hours",
|
||
minute: "minutes",
|
||
minutes: "minutes",
|
||
second: "seconds",
|
||
seconds: "seconds",
|
||
millisecond: "milliseconds",
|
||
milliseconds: "milliseconds"
|
||
}[unit ? unit.toLowerCase() : unit];
|
||
if (!normalized)
|
||
throw new InvalidUnitError(unit);
|
||
return normalized;
|
||
}
|
||
/**
|
||
* Check if an object is a Duration. Works across context boundaries
|
||
* @param {object} o
|
||
* @return {boolean}
|
||
*/
|
||
static isDuration(o) {
|
||
return o && o.isLuxonDuration || false;
|
||
}
|
||
/**
|
||
* Get the locale of a Duration, such 'en-GB'
|
||
* @type {string}
|
||
*/
|
||
get locale() {
|
||
return this.isValid ? this.loc.locale : null;
|
||
}
|
||
/**
|
||
* Get the numbering system of a Duration, such 'beng'. The numbering system is used when formatting the Duration
|
||
*
|
||
* @type {string}
|
||
*/
|
||
get numberingSystem() {
|
||
return this.isValid ? this.loc.numberingSystem : null;
|
||
}
|
||
/**
|
||
* Returns a string representation of this Duration formatted according to the specified format string. You may use these tokens:
|
||
* * `S` for milliseconds
|
||
* * `s` for seconds
|
||
* * `m` for minutes
|
||
* * `h` for hours
|
||
* * `d` for days
|
||
* * `w` for weeks
|
||
* * `M` for months
|
||
* * `y` for years
|
||
* Notes:
|
||
* * Add padding by repeating the token, e.g. "yy" pads the years to two digits, "hhhh" pads the hours out to four digits
|
||
* * Tokens can be escaped by wrapping with single quotes.
|
||
* * The duration will be converted to the set of units in the format string using {@link Duration#shiftTo} and the Durations's conversion accuracy setting.
|
||
* @param {string} fmt - the format string
|
||
* @param {Object} opts - options
|
||
* @param {boolean} [opts.floor=true] - floor numerical values
|
||
* @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat("y d s") //=> "1 6 2"
|
||
* @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat("yy dd sss") //=> "01 06 002"
|
||
* @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat("M S") //=> "12 518402000"
|
||
* @return {string}
|
||
*/
|
||
toFormat(fmt, opts = {}) {
|
||
const fmtOpts = {
|
||
...opts,
|
||
floor: opts.round !== false && opts.floor !== false
|
||
};
|
||
return this.isValid ? Formatter.create(this.loc, fmtOpts).formatDurationFromString(this, fmt) : INVALID$2;
|
||
}
|
||
/**
|
||
* Returns a string representation of a Duration with all units included.
|
||
* To modify its behavior use the `listStyle` and any Intl.NumberFormat option, though `unitDisplay` is especially relevant.
|
||
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat
|
||
* @param opts - On option object to override the formatting. Accepts the same keys as the options parameter of the native `Int.NumberFormat` constructor, as well as `listStyle`.
|
||
* @example
|
||
* ```js
|
||
* var dur = Duration.fromObject({ days: 1, hours: 5, minutes: 6 })
|
||
* dur.toHuman() //=> '1 day, 5 hours, 6 minutes'
|
||
* dur.toHuman({ listStyle: "long" }) //=> '1 day, 5 hours, and 6 minutes'
|
||
* dur.toHuman({ unitDisplay: "short" }) //=> '1 day, 5 hr, 6 min'
|
||
* ```
|
||
*/
|
||
toHuman(opts = {}) {
|
||
const l2 = orderedUnits$1.map((unit) => {
|
||
const val = this.values[unit];
|
||
if (isUndefined(val)) {
|
||
return null;
|
||
}
|
||
return this.loc.numberFormatter({ style: "unit", unitDisplay: "long", ...opts, unit: unit.slice(0, -1) }).format(val);
|
||
}).filter((n2) => n2);
|
||
return this.loc.listFormatter({ type: "conjunction", style: opts.listStyle || "narrow", ...opts }).format(l2);
|
||
}
|
||
/**
|
||
* Returns a JavaScript object with this Duration's values.
|
||
* @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toObject() //=> { years: 1, days: 6, seconds: 2 }
|
||
* @return {Object}
|
||
*/
|
||
toObject() {
|
||
if (!this.isValid)
|
||
return {};
|
||
return { ...this.values };
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of this Duration.
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Durations
|
||
* @example Duration.fromObject({ years: 3, seconds: 45 }).toISO() //=> 'P3YT45S'
|
||
* @example Duration.fromObject({ months: 4, seconds: 45 }).toISO() //=> 'P4MT45S'
|
||
* @example Duration.fromObject({ months: 5 }).toISO() //=> 'P5M'
|
||
* @example Duration.fromObject({ minutes: 5 }).toISO() //=> 'PT5M'
|
||
* @example Duration.fromObject({ milliseconds: 6 }).toISO() //=> 'PT0.006S'
|
||
* @return {string}
|
||
*/
|
||
toISO() {
|
||
if (!this.isValid)
|
||
return null;
|
||
let s2 = "P";
|
||
if (this.years !== 0)
|
||
s2 += this.years + "Y";
|
||
if (this.months !== 0 || this.quarters !== 0)
|
||
s2 += this.months + this.quarters * 3 + "M";
|
||
if (this.weeks !== 0)
|
||
s2 += this.weeks + "W";
|
||
if (this.days !== 0)
|
||
s2 += this.days + "D";
|
||
if (this.hours !== 0 || this.minutes !== 0 || this.seconds !== 0 || this.milliseconds !== 0)
|
||
s2 += "T";
|
||
if (this.hours !== 0)
|
||
s2 += this.hours + "H";
|
||
if (this.minutes !== 0)
|
||
s2 += this.minutes + "M";
|
||
if (this.seconds !== 0 || this.milliseconds !== 0)
|
||
s2 += roundTo(this.seconds + this.milliseconds / 1e3, 3) + "S";
|
||
if (s2 === "P")
|
||
s2 += "T0S";
|
||
return s2;
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of this Duration, formatted as a time of day.
|
||
* Note that this will return null if the duration is invalid, negative, or equal to or greater than 24 hours.
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Times
|
||
* @param {Object} opts - options
|
||
* @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0
|
||
* @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0
|
||
* @param {boolean} [opts.includePrefix=false] - include the `T` prefix
|
||
* @param {string} [opts.format='extended'] - choose between the basic and extended format
|
||
* @example Duration.fromObject({ hours: 11 }).toISOTime() //=> '11:00:00.000'
|
||
* @example Duration.fromObject({ hours: 11 }).toISOTime({ suppressMilliseconds: true }) //=> '11:00:00'
|
||
* @example Duration.fromObject({ hours: 11 }).toISOTime({ suppressSeconds: true }) //=> '11:00'
|
||
* @example Duration.fromObject({ hours: 11 }).toISOTime({ includePrefix: true }) //=> 'T11:00:00.000'
|
||
* @example Duration.fromObject({ hours: 11 }).toISOTime({ format: 'basic' }) //=> '110000.000'
|
||
* @return {string}
|
||
*/
|
||
toISOTime(opts = {}) {
|
||
if (!this.isValid)
|
||
return null;
|
||
const millis = this.toMillis();
|
||
if (millis < 0 || millis >= 864e5)
|
||
return null;
|
||
opts = {
|
||
suppressMilliseconds: false,
|
||
suppressSeconds: false,
|
||
includePrefix: false,
|
||
format: "extended",
|
||
...opts
|
||
};
|
||
const value = this.shiftTo("hours", "minutes", "seconds", "milliseconds");
|
||
let fmt = opts.format === "basic" ? "hhmm" : "hh:mm";
|
||
if (!opts.suppressSeconds || value.seconds !== 0 || value.milliseconds !== 0) {
|
||
fmt += opts.format === "basic" ? "ss" : ":ss";
|
||
if (!opts.suppressMilliseconds || value.milliseconds !== 0) {
|
||
fmt += ".SSS";
|
||
}
|
||
}
|
||
let str = value.toFormat(fmt);
|
||
if (opts.includePrefix) {
|
||
str = "T" + str;
|
||
}
|
||
return str;
|
||
}
|
||
/**
|
||
* Returns an ISO 8601 representation of this Duration appropriate for use in JSON.
|
||
* @return {string}
|
||
*/
|
||
toJSON() {
|
||
return this.toISO();
|
||
}
|
||
/**
|
||
* Returns an ISO 8601 representation of this Duration appropriate for use in debugging.
|
||
* @return {string}
|
||
*/
|
||
toString() {
|
||
return this.toISO();
|
||
}
|
||
/**
|
||
* Returns an milliseconds value of this Duration.
|
||
* @return {number}
|
||
*/
|
||
toMillis() {
|
||
return this.as("milliseconds");
|
||
}
|
||
/**
|
||
* Returns an milliseconds value of this Duration. Alias of {@link toMillis}
|
||
* @return {number}
|
||
*/
|
||
valueOf() {
|
||
return this.toMillis();
|
||
}
|
||
/**
|
||
* Make this Duration longer by the specified amount. Return a newly-constructed Duration.
|
||
* @param {Duration|Object|number} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()
|
||
* @return {Duration}
|
||
*/
|
||
plus(duration) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const dur = Duration.fromDurationLike(duration), result = {};
|
||
for (const k of orderedUnits$1) {
|
||
if (hasOwnProperty(dur.values, k) || hasOwnProperty(this.values, k)) {
|
||
result[k] = dur.get(k) + this.get(k);
|
||
}
|
||
}
|
||
return clone$1(this, { values: result }, true);
|
||
}
|
||
/**
|
||
* Make this Duration shorter by the specified amount. Return a newly-constructed Duration.
|
||
* @param {Duration|Object|number} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()
|
||
* @return {Duration}
|
||
*/
|
||
minus(duration) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const dur = Duration.fromDurationLike(duration);
|
||
return this.plus(dur.negate());
|
||
}
|
||
/**
|
||
* Scale this Duration by the specified amount. Return a newly-constructed Duration.
|
||
* @param {function} fn - The function to apply to each unit. Arity is 1 or 2: the value of the unit and, optionally, the unit name. Must return a number.
|
||
* @example Duration.fromObject({ hours: 1, minutes: 30 }).mapUnits(x => x * 2) //=> { hours: 2, minutes: 60 }
|
||
* @example Duration.fromObject({ hours: 1, minutes: 30 }).mapUnits((x, u) => u === "hours" ? x * 2 : x) //=> { hours: 2, minutes: 30 }
|
||
* @return {Duration}
|
||
*/
|
||
mapUnits(fn) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const result = {};
|
||
for (const k of Object.keys(this.values)) {
|
||
result[k] = asNumber(fn(this.values[k], k));
|
||
}
|
||
return clone$1(this, { values: result }, true);
|
||
}
|
||
/**
|
||
* Get the value of unit.
|
||
* @param {string} unit - a unit such as 'minute' or 'day'
|
||
* @example Duration.fromObject({years: 2, days: 3}).get('years') //=> 2
|
||
* @example Duration.fromObject({years: 2, days: 3}).get('months') //=> 0
|
||
* @example Duration.fromObject({years: 2, days: 3}).get('days') //=> 3
|
||
* @return {number}
|
||
*/
|
||
get(unit) {
|
||
return this[Duration.normalizeUnit(unit)];
|
||
}
|
||
/**
|
||
* "Set" the values of specified units. Return a newly-constructed Duration.
|
||
* @param {Object} values - a mapping of units to numbers
|
||
* @example dur.set({ years: 2017 })
|
||
* @example dur.set({ hours: 8, minutes: 30 })
|
||
* @return {Duration}
|
||
*/
|
||
set(values) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const mixed = { ...this.values, ...normalizeObject(values, Duration.normalizeUnit) };
|
||
return clone$1(this, { values: mixed });
|
||
}
|
||
/**
|
||
* "Set" the locale and/or numberingSystem. Returns a newly-constructed Duration.
|
||
* @example dur.reconfigure({ locale: 'en-GB' })
|
||
* @return {Duration}
|
||
*/
|
||
reconfigure({ locale, numberingSystem, conversionAccuracy, matrix } = {}) {
|
||
const loc = this.loc.clone({ locale, numberingSystem });
|
||
const opts = { loc, matrix, conversionAccuracy };
|
||
return clone$1(this, opts);
|
||
}
|
||
/**
|
||
* Return the length of the duration in the specified unit.
|
||
* @param {string} unit - a unit such as 'minutes' or 'days'
|
||
* @example Duration.fromObject({years: 1}).as('days') //=> 365
|
||
* @example Duration.fromObject({years: 1}).as('months') //=> 12
|
||
* @example Duration.fromObject({hours: 60}).as('days') //=> 2.5
|
||
* @return {number}
|
||
*/
|
||
as(unit) {
|
||
return this.isValid ? this.shiftTo(unit).get(unit) : NaN;
|
||
}
|
||
/**
|
||
* Reduce this Duration to its canonical representation in its current units.
|
||
* @example Duration.fromObject({ years: 2, days: 5000 }).normalize().toObject() //=> { years: 15, days: 255 }
|
||
* @example Duration.fromObject({ hours: 12, minutes: -45 }).normalize().toObject() //=> { hours: 11, minutes: 15 }
|
||
* @return {Duration}
|
||
*/
|
||
normalize() {
|
||
if (!this.isValid)
|
||
return this;
|
||
const vals = this.toObject();
|
||
normalizeValues(this.matrix, vals);
|
||
return clone$1(this, { values: vals }, true);
|
||
}
|
||
/**
|
||
* Rescale units to its largest representation
|
||
* @example Duration.fromObject({ milliseconds: 90000 }).rescale().toObject() //=> { minutes: 1, seconds: 30 }
|
||
* @return {Duration}
|
||
*/
|
||
rescale() {
|
||
if (!this.isValid)
|
||
return this;
|
||
const vals = removeZeroes(this.normalize().shiftToAll().toObject());
|
||
return clone$1(this, { values: vals }, true);
|
||
}
|
||
/**
|
||
* Convert this Duration into its representation in a different set of units.
|
||
* @example Duration.fromObject({ hours: 1, seconds: 30 }).shiftTo('minutes', 'milliseconds').toObject() //=> { minutes: 60, milliseconds: 30000 }
|
||
* @return {Duration}
|
||
*/
|
||
shiftTo(...units) {
|
||
if (!this.isValid)
|
||
return this;
|
||
if (units.length === 0) {
|
||
return this;
|
||
}
|
||
units = units.map((u) => Duration.normalizeUnit(u));
|
||
const built = {}, accumulated = {}, vals = this.toObject();
|
||
let lastUnit;
|
||
for (const k of orderedUnits$1) {
|
||
if (units.indexOf(k) >= 0) {
|
||
lastUnit = k;
|
||
let own = 0;
|
||
for (const ak in accumulated) {
|
||
own += this.matrix[ak][k] * accumulated[ak];
|
||
accumulated[ak] = 0;
|
||
}
|
||
if (isNumber(vals[k])) {
|
||
own += vals[k];
|
||
}
|
||
const i = Math.trunc(own);
|
||
built[k] = i;
|
||
accumulated[k] = (own * 1e3 - i * 1e3) / 1e3;
|
||
for (const down in vals) {
|
||
if (orderedUnits$1.indexOf(down) > orderedUnits$1.indexOf(k)) {
|
||
convert(this.matrix, vals, down, built, k);
|
||
}
|
||
}
|
||
} else if (isNumber(vals[k])) {
|
||
accumulated[k] = vals[k];
|
||
}
|
||
}
|
||
for (const key in accumulated) {
|
||
if (accumulated[key] !== 0) {
|
||
built[lastUnit] += key === lastUnit ? accumulated[key] : accumulated[key] / this.matrix[lastUnit][key];
|
||
}
|
||
}
|
||
return clone$1(this, { values: built }, true).normalize();
|
||
}
|
||
/**
|
||
* Shift this Duration to all available units.
|
||
* Same as shiftTo("years", "months", "weeks", "days", "hours", "minutes", "seconds", "milliseconds")
|
||
* @return {Duration}
|
||
*/
|
||
shiftToAll() {
|
||
if (!this.isValid)
|
||
return this;
|
||
return this.shiftTo(
|
||
"years",
|
||
"months",
|
||
"weeks",
|
||
"days",
|
||
"hours",
|
||
"minutes",
|
||
"seconds",
|
||
"milliseconds"
|
||
);
|
||
}
|
||
/**
|
||
* Return the negative of this Duration.
|
||
* @example Duration.fromObject({ hours: 1, seconds: 30 }).negate().toObject() //=> { hours: -1, seconds: -30 }
|
||
* @return {Duration}
|
||
*/
|
||
negate() {
|
||
if (!this.isValid)
|
||
return this;
|
||
const negated = {};
|
||
for (const k of Object.keys(this.values)) {
|
||
negated[k] = this.values[k] === 0 ? 0 : -this.values[k];
|
||
}
|
||
return clone$1(this, { values: negated }, true);
|
||
}
|
||
/**
|
||
* Get the years.
|
||
* @type {number}
|
||
*/
|
||
get years() {
|
||
return this.isValid ? this.values.years || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the quarters.
|
||
* @type {number}
|
||
*/
|
||
get quarters() {
|
||
return this.isValid ? this.values.quarters || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the months.
|
||
* @type {number}
|
||
*/
|
||
get months() {
|
||
return this.isValid ? this.values.months || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the weeks
|
||
* @type {number}
|
||
*/
|
||
get weeks() {
|
||
return this.isValid ? this.values.weeks || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the days.
|
||
* @type {number}
|
||
*/
|
||
get days() {
|
||
return this.isValid ? this.values.days || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the hours.
|
||
* @type {number}
|
||
*/
|
||
get hours() {
|
||
return this.isValid ? this.values.hours || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the minutes.
|
||
* @type {number}
|
||
*/
|
||
get minutes() {
|
||
return this.isValid ? this.values.minutes || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the seconds.
|
||
* @return {number}
|
||
*/
|
||
get seconds() {
|
||
return this.isValid ? this.values.seconds || 0 : NaN;
|
||
}
|
||
/**
|
||
* Get the milliseconds.
|
||
* @return {number}
|
||
*/
|
||
get milliseconds() {
|
||
return this.isValid ? this.values.milliseconds || 0 : NaN;
|
||
}
|
||
/**
|
||
* Returns whether the Duration is invalid. Invalid durations are returned by diff operations
|
||
* on invalid DateTimes or Intervals.
|
||
* @return {boolean}
|
||
*/
|
||
get isValid() {
|
||
return this.invalid === null;
|
||
}
|
||
/**
|
||
* Returns an error code if this Duration became invalid, or null if the Duration is valid
|
||
* @return {string}
|
||
*/
|
||
get invalidReason() {
|
||
return this.invalid ? this.invalid.reason : null;
|
||
}
|
||
/**
|
||
* Returns an explanation of why this Duration became invalid, or null if the Duration is valid
|
||
* @type {string}
|
||
*/
|
||
get invalidExplanation() {
|
||
return this.invalid ? this.invalid.explanation : null;
|
||
}
|
||
/**
|
||
* Equality check
|
||
* Two Durations are equal iff they have the same units and the same values for each unit.
|
||
* @param {Duration} other
|
||
* @return {boolean}
|
||
*/
|
||
equals(other) {
|
||
if (!this.isValid || !other.isValid) {
|
||
return false;
|
||
}
|
||
if (!this.loc.equals(other.loc)) {
|
||
return false;
|
||
}
|
||
function eq(v1, v2) {
|
||
if (v1 === void 0 || v1 === 0)
|
||
return v2 === void 0 || v2 === 0;
|
||
return v1 === v2;
|
||
}
|
||
for (const u of orderedUnits$1) {
|
||
if (!eq(this.values[u], other.values[u])) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
};
|
||
var INVALID$1 = "Invalid Interval";
|
||
function validateStartEnd(start, end) {
|
||
if (!start || !start.isValid) {
|
||
return Interval.invalid("missing or invalid start");
|
||
} else if (!end || !end.isValid) {
|
||
return Interval.invalid("missing or invalid end");
|
||
} else if (end < start) {
|
||
return Interval.invalid(
|
||
"end before start",
|
||
`The end of an interval must be after its start, but you had start=${start.toISO()} and end=${end.toISO()}`
|
||
);
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
var Interval = class {
|
||
/**
|
||
* @private
|
||
*/
|
||
constructor(config) {
|
||
this.s = config.start;
|
||
this.e = config.end;
|
||
this.invalid = config.invalid || null;
|
||
this.isLuxonInterval = true;
|
||
}
|
||
/**
|
||
* Create an invalid Interval.
|
||
* @param {string} reason - simple string of why this Interval is invalid. Should not contain parameters or anything else data-dependent
|
||
* @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information
|
||
* @return {Interval}
|
||
*/
|
||
static invalid(reason, explanation = null) {
|
||
if (!reason) {
|
||
throw new InvalidArgumentError("need to specify a reason the Interval is invalid");
|
||
}
|
||
const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation);
|
||
if (Settings.throwOnInvalid) {
|
||
throw new InvalidIntervalError(invalid);
|
||
} else {
|
||
return new Interval({ invalid });
|
||
}
|
||
}
|
||
/**
|
||
* Create an Interval from a start DateTime and an end DateTime. Inclusive of the start but not the end.
|
||
* @param {DateTime|Date|Object} start
|
||
* @param {DateTime|Date|Object} end
|
||
* @return {Interval}
|
||
*/
|
||
static fromDateTimes(start, end) {
|
||
const builtStart = friendlyDateTime(start), builtEnd = friendlyDateTime(end);
|
||
const validateError = validateStartEnd(builtStart, builtEnd);
|
||
if (validateError == null) {
|
||
return new Interval({
|
||
start: builtStart,
|
||
end: builtEnd
|
||
});
|
||
} else {
|
||
return validateError;
|
||
}
|
||
}
|
||
/**
|
||
* Create an Interval from a start DateTime and a Duration to extend to.
|
||
* @param {DateTime|Date|Object} start
|
||
* @param {Duration|Object|number} duration - the length of the Interval.
|
||
* @return {Interval}
|
||
*/
|
||
static after(start, duration) {
|
||
const dur = Duration.fromDurationLike(duration), dt = friendlyDateTime(start);
|
||
return Interval.fromDateTimes(dt, dt.plus(dur));
|
||
}
|
||
/**
|
||
* Create an Interval from an end DateTime and a Duration to extend backwards to.
|
||
* @param {DateTime|Date|Object} end
|
||
* @param {Duration|Object|number} duration - the length of the Interval.
|
||
* @return {Interval}
|
||
*/
|
||
static before(end, duration) {
|
||
const dur = Duration.fromDurationLike(duration), dt = friendlyDateTime(end);
|
||
return Interval.fromDateTimes(dt.minus(dur), dt);
|
||
}
|
||
/**
|
||
* Create an Interval from an ISO 8601 string.
|
||
* Accepts `<start>/<end>`, `<start>/<duration>`, and `<duration>/<end>` formats.
|
||
* @param {string} text - the ISO string to parse
|
||
* @param {Object} [opts] - options to pass {@link DateTime#fromISO} and optionally {@link Duration#fromISO}
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals
|
||
* @return {Interval}
|
||
*/
|
||
static fromISO(text, opts) {
|
||
const [s2, e] = (text || "").split("/", 2);
|
||
if (s2 && e) {
|
||
let start, startIsValid;
|
||
try {
|
||
start = DateTime.fromISO(s2, opts);
|
||
startIsValid = start.isValid;
|
||
} catch (e2) {
|
||
startIsValid = false;
|
||
}
|
||
let end, endIsValid;
|
||
try {
|
||
end = DateTime.fromISO(e, opts);
|
||
endIsValid = end.isValid;
|
||
} catch (e2) {
|
||
endIsValid = false;
|
||
}
|
||
if (startIsValid && endIsValid) {
|
||
return Interval.fromDateTimes(start, end);
|
||
}
|
||
if (startIsValid) {
|
||
const dur = Duration.fromISO(e, opts);
|
||
if (dur.isValid) {
|
||
return Interval.after(start, dur);
|
||
}
|
||
} else if (endIsValid) {
|
||
const dur = Duration.fromISO(s2, opts);
|
||
if (dur.isValid) {
|
||
return Interval.before(end, dur);
|
||
}
|
||
}
|
||
}
|
||
return Interval.invalid("unparsable", `the input "${text}" can't be parsed as ISO 8601`);
|
||
}
|
||
/**
|
||
* Check if an object is an Interval. Works across context boundaries
|
||
* @param {object} o
|
||
* @return {boolean}
|
||
*/
|
||
static isInterval(o) {
|
||
return o && o.isLuxonInterval || false;
|
||
}
|
||
/**
|
||
* Returns the start of the Interval
|
||
* @type {DateTime}
|
||
*/
|
||
get start() {
|
||
return this.isValid ? this.s : null;
|
||
}
|
||
/**
|
||
* Returns the end of the Interval
|
||
* @type {DateTime}
|
||
*/
|
||
get end() {
|
||
return this.isValid ? this.e : null;
|
||
}
|
||
/**
|
||
* Returns whether this Interval's end is at least its start, meaning that the Interval isn't 'backwards'.
|
||
* @type {boolean}
|
||
*/
|
||
get isValid() {
|
||
return this.invalidReason === null;
|
||
}
|
||
/**
|
||
* Returns an error code if this Interval is invalid, or null if the Interval is valid
|
||
* @type {string}
|
||
*/
|
||
get invalidReason() {
|
||
return this.invalid ? this.invalid.reason : null;
|
||
}
|
||
/**
|
||
* Returns an explanation of why this Interval became invalid, or null if the Interval is valid
|
||
* @type {string}
|
||
*/
|
||
get invalidExplanation() {
|
||
return this.invalid ? this.invalid.explanation : null;
|
||
}
|
||
/**
|
||
* Returns the length of the Interval in the specified unit.
|
||
* @param {string} unit - the unit (such as 'hours' or 'days') to return the length in.
|
||
* @return {number}
|
||
*/
|
||
length(unit = "milliseconds") {
|
||
return this.isValid ? this.toDuration(...[unit]).get(unit) : NaN;
|
||
}
|
||
/**
|
||
* Returns the count of minutes, hours, days, months, or years included in the Interval, even in part.
|
||
* Unlike {@link Interval#length} this counts sections of the calendar, not periods of time, e.g. specifying 'day'
|
||
* asks 'what dates are included in this interval?', not 'how many days long is this interval?'
|
||
* @param {string} [unit='milliseconds'] - the unit of time to count.
|
||
* @return {number}
|
||
*/
|
||
count(unit = "milliseconds") {
|
||
if (!this.isValid)
|
||
return NaN;
|
||
const start = this.start.startOf(unit), end = this.end.startOf(unit);
|
||
return Math.floor(end.diff(start, unit).get(unit)) + 1;
|
||
}
|
||
/**
|
||
* Returns whether this Interval's start and end are both in the same unit of time
|
||
* @param {string} unit - the unit of time to check sameness on
|
||
* @return {boolean}
|
||
*/
|
||
hasSame(unit) {
|
||
return this.isValid ? this.isEmpty() || this.e.minus(1).hasSame(this.s, unit) : false;
|
||
}
|
||
/**
|
||
* Return whether this Interval has the same start and end DateTimes.
|
||
* @return {boolean}
|
||
*/
|
||
isEmpty() {
|
||
return this.s.valueOf() === this.e.valueOf();
|
||
}
|
||
/**
|
||
* Return whether this Interval's start is after the specified DateTime.
|
||
* @param {DateTime} dateTime
|
||
* @return {boolean}
|
||
*/
|
||
isAfter(dateTime) {
|
||
if (!this.isValid)
|
||
return false;
|
||
return this.s > dateTime;
|
||
}
|
||
/**
|
||
* Return whether this Interval's end is before the specified DateTime.
|
||
* @param {DateTime} dateTime
|
||
* @return {boolean}
|
||
*/
|
||
isBefore(dateTime) {
|
||
if (!this.isValid)
|
||
return false;
|
||
return this.e <= dateTime;
|
||
}
|
||
/**
|
||
* Return whether this Interval contains the specified DateTime.
|
||
* @param {DateTime} dateTime
|
||
* @return {boolean}
|
||
*/
|
||
contains(dateTime) {
|
||
if (!this.isValid)
|
||
return false;
|
||
return this.s <= dateTime && this.e > dateTime;
|
||
}
|
||
/**
|
||
* "Sets" the start and/or end dates. Returns a newly-constructed Interval.
|
||
* @param {Object} values - the values to set
|
||
* @param {DateTime} values.start - the starting DateTime
|
||
* @param {DateTime} values.end - the ending DateTime
|
||
* @return {Interval}
|
||
*/
|
||
set({ start, end } = {}) {
|
||
if (!this.isValid)
|
||
return this;
|
||
return Interval.fromDateTimes(start || this.s, end || this.e);
|
||
}
|
||
/**
|
||
* Split this Interval at each of the specified DateTimes
|
||
* @param {...DateTime} dateTimes - the unit of time to count.
|
||
* @return {Array}
|
||
*/
|
||
splitAt(...dateTimes) {
|
||
if (!this.isValid)
|
||
return [];
|
||
const sorted = dateTimes.map(friendlyDateTime).filter((d) => this.contains(d)).sort(), results = [];
|
||
let { s: s2 } = this, i = 0;
|
||
while (s2 < this.e) {
|
||
const added = sorted[i] || this.e, next = +added > +this.e ? this.e : added;
|
||
results.push(Interval.fromDateTimes(s2, next));
|
||
s2 = next;
|
||
i += 1;
|
||
}
|
||
return results;
|
||
}
|
||
/**
|
||
* Split this Interval into smaller Intervals, each of the specified length.
|
||
* Left over time is grouped into a smaller interval
|
||
* @param {Duration|Object|number} duration - The length of each resulting interval.
|
||
* @return {Array}
|
||
*/
|
||
splitBy(duration) {
|
||
const dur = Duration.fromDurationLike(duration);
|
||
if (!this.isValid || !dur.isValid || dur.as("milliseconds") === 0) {
|
||
return [];
|
||
}
|
||
let { s: s2 } = this, idx = 1, next;
|
||
const results = [];
|
||
while (s2 < this.e) {
|
||
const added = this.start.plus(dur.mapUnits((x) => x * idx));
|
||
next = +added > +this.e ? this.e : added;
|
||
results.push(Interval.fromDateTimes(s2, next));
|
||
s2 = next;
|
||
idx += 1;
|
||
}
|
||
return results;
|
||
}
|
||
/**
|
||
* Split this Interval into the specified number of smaller intervals.
|
||
* @param {number} numberOfParts - The number of Intervals to divide the Interval into.
|
||
* @return {Array}
|
||
*/
|
||
divideEqually(numberOfParts) {
|
||
if (!this.isValid)
|
||
return [];
|
||
return this.splitBy(this.length() / numberOfParts).slice(0, numberOfParts);
|
||
}
|
||
/**
|
||
* Return whether this Interval overlaps with the specified Interval
|
||
* @param {Interval} other
|
||
* @return {boolean}
|
||
*/
|
||
overlaps(other) {
|
||
return this.e > other.s && this.s < other.e;
|
||
}
|
||
/**
|
||
* Return whether this Interval's end is adjacent to the specified Interval's start.
|
||
* @param {Interval} other
|
||
* @return {boolean}
|
||
*/
|
||
abutsStart(other) {
|
||
if (!this.isValid)
|
||
return false;
|
||
return +this.e === +other.s;
|
||
}
|
||
/**
|
||
* Return whether this Interval's start is adjacent to the specified Interval's end.
|
||
* @param {Interval} other
|
||
* @return {boolean}
|
||
*/
|
||
abutsEnd(other) {
|
||
if (!this.isValid)
|
||
return false;
|
||
return +other.e === +this.s;
|
||
}
|
||
/**
|
||
* Return whether this Interval engulfs the start and end of the specified Interval.
|
||
* @param {Interval} other
|
||
* @return {boolean}
|
||
*/
|
||
engulfs(other) {
|
||
if (!this.isValid)
|
||
return false;
|
||
return this.s <= other.s && this.e >= other.e;
|
||
}
|
||
/**
|
||
* Return whether this Interval has the same start and end as the specified Interval.
|
||
* @param {Interval} other
|
||
* @return {boolean}
|
||
*/
|
||
equals(other) {
|
||
if (!this.isValid || !other.isValid) {
|
||
return false;
|
||
}
|
||
return this.s.equals(other.s) && this.e.equals(other.e);
|
||
}
|
||
/**
|
||
* Return an Interval representing the intersection of this Interval and the specified Interval.
|
||
* Specifically, the resulting Interval has the maximum start time and the minimum end time of the two Intervals.
|
||
* Returns null if the intersection is empty, meaning, the intervals don't intersect.
|
||
* @param {Interval} other
|
||
* @return {Interval}
|
||
*/
|
||
intersection(other) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const s2 = this.s > other.s ? this.s : other.s, e = this.e < other.e ? this.e : other.e;
|
||
if (s2 >= e) {
|
||
return null;
|
||
} else {
|
||
return Interval.fromDateTimes(s2, e);
|
||
}
|
||
}
|
||
/**
|
||
* Return an Interval representing the union of this Interval and the specified Interval.
|
||
* Specifically, the resulting Interval has the minimum start time and the maximum end time of the two Intervals.
|
||
* @param {Interval} other
|
||
* @return {Interval}
|
||
*/
|
||
union(other) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const s2 = this.s < other.s ? this.s : other.s, e = this.e > other.e ? this.e : other.e;
|
||
return Interval.fromDateTimes(s2, e);
|
||
}
|
||
/**
|
||
* Merge an array of Intervals into a equivalent minimal set of Intervals.
|
||
* Combines overlapping and adjacent Intervals.
|
||
* @param {Array} intervals
|
||
* @return {Array}
|
||
*/
|
||
static merge(intervals) {
|
||
const [found, final] = intervals.sort((a, b) => a.s - b.s).reduce(
|
||
([sofar, current2], item) => {
|
||
if (!current2) {
|
||
return [sofar, item];
|
||
} else if (current2.overlaps(item) || current2.abutsStart(item)) {
|
||
return [sofar, current2.union(item)];
|
||
} else {
|
||
return [sofar.concat([current2]), item];
|
||
}
|
||
},
|
||
[[], null]
|
||
);
|
||
if (final) {
|
||
found.push(final);
|
||
}
|
||
return found;
|
||
}
|
||
/**
|
||
* Return an array of Intervals representing the spans of time that only appear in one of the specified Intervals.
|
||
* @param {Array} intervals
|
||
* @return {Array}
|
||
*/
|
||
static xor(intervals) {
|
||
let start = null, currentCount = 0;
|
||
const results = [], ends = intervals.map((i) => [
|
||
{ time: i.s, type: "s" },
|
||
{ time: i.e, type: "e" }
|
||
]), flattened = Array.prototype.concat(...ends), arr = flattened.sort((a, b) => a.time - b.time);
|
||
for (const i of arr) {
|
||
currentCount += i.type === "s" ? 1 : -1;
|
||
if (currentCount === 1) {
|
||
start = i.time;
|
||
} else {
|
||
if (start && +start !== +i.time) {
|
||
results.push(Interval.fromDateTimes(start, i.time));
|
||
}
|
||
start = null;
|
||
}
|
||
}
|
||
return Interval.merge(results);
|
||
}
|
||
/**
|
||
* Return an Interval representing the span of time in this Interval that doesn't overlap with any of the specified Intervals.
|
||
* @param {...Interval} intervals
|
||
* @return {Array}
|
||
*/
|
||
difference(...intervals) {
|
||
return Interval.xor([this].concat(intervals)).map((i) => this.intersection(i)).filter((i) => i && !i.isEmpty());
|
||
}
|
||
/**
|
||
* Returns a string representation of this Interval appropriate for debugging.
|
||
* @return {string}
|
||
*/
|
||
toString() {
|
||
if (!this.isValid)
|
||
return INVALID$1;
|
||
return `[${this.s.toISO()} \u2013 ${this.e.toISO()})`;
|
||
}
|
||
/**
|
||
* Returns a localized string representing this Interval. Accepts the same options as the
|
||
* Intl.DateTimeFormat constructor and any presets defined by Luxon, such as
|
||
* {@link DateTime.DATE_FULL} or {@link DateTime.TIME_SIMPLE}. The exact behavior of this method
|
||
* is browser-specific, but in general it will return an appropriate representation of the
|
||
* Interval in the assigned locale. Defaults to the system's locale if no locale has been
|
||
* specified.
|
||
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat
|
||
* @param {Object} [formatOpts=DateTime.DATE_SHORT] - Either a DateTime preset or
|
||
* Intl.DateTimeFormat constructor options.
|
||
* @param {Object} opts - Options to override the configuration of the start DateTime.
|
||
* @example Interval.fromISO('2022-11-07T09:00Z/2022-11-08T09:00Z').toLocaleString(); //=> 11/7/2022 – 11/8/2022
|
||
* @example Interval.fromISO('2022-11-07T09:00Z/2022-11-08T09:00Z').toLocaleString(DateTime.DATE_FULL); //=> November 7 – 8, 2022
|
||
* @example Interval.fromISO('2022-11-07T09:00Z/2022-11-08T09:00Z').toLocaleString(DateTime.DATE_FULL, { locale: 'fr-FR' }); //=> 7–8 novembre 2022
|
||
* @example Interval.fromISO('2022-11-07T17:00Z/2022-11-07T19:00Z').toLocaleString(DateTime.TIME_SIMPLE); //=> 6:00 – 8:00 PM
|
||
* @example Interval.fromISO('2022-11-07T17:00Z/2022-11-07T19:00Z').toLocaleString({ weekday: 'short', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' }); //=> Mon, Nov 07, 6:00 – 8:00 p
|
||
* @return {string}
|
||
*/
|
||
toLocaleString(formatOpts = DATE_SHORT, opts = {}) {
|
||
return this.isValid ? Formatter.create(this.s.loc.clone(opts), formatOpts).formatInterval(this) : INVALID$1;
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of this Interval.
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals
|
||
* @param {Object} opts - The same options as {@link DateTime#toISO}
|
||
* @return {string}
|
||
*/
|
||
toISO(opts) {
|
||
if (!this.isValid)
|
||
return INVALID$1;
|
||
return `${this.s.toISO(opts)}/${this.e.toISO(opts)}`;
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of date of this Interval.
|
||
* The time components are ignored.
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals
|
||
* @return {string}
|
||
*/
|
||
toISODate() {
|
||
if (!this.isValid)
|
||
return INVALID$1;
|
||
return `${this.s.toISODate()}/${this.e.toISODate()}`;
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of time of this Interval.
|
||
* The date components are ignored.
|
||
* @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals
|
||
* @param {Object} opts - The same options as {@link DateTime#toISO}
|
||
* @return {string}
|
||
*/
|
||
toISOTime(opts) {
|
||
if (!this.isValid)
|
||
return INVALID$1;
|
||
return `${this.s.toISOTime(opts)}/${this.e.toISOTime(opts)}`;
|
||
}
|
||
/**
|
||
* Returns a string representation of this Interval formatted according to the specified format
|
||
* string. **You may not want this.** See {@link Interval#toLocaleString} for a more flexible
|
||
* formatting tool.
|
||
* @param {string} dateFormat - The format string. This string formats the start and end time.
|
||
* See {@link DateTime#toFormat} for details.
|
||
* @param {Object} opts - Options.
|
||
* @param {string} [opts.separator = ' – '] - A separator to place between the start and end
|
||
* representations.
|
||
* @return {string}
|
||
*/
|
||
toFormat(dateFormat, { separator = " \u2013 " } = {}) {
|
||
if (!this.isValid)
|
||
return INVALID$1;
|
||
return `${this.s.toFormat(dateFormat)}${separator}${this.e.toFormat(dateFormat)}`;
|
||
}
|
||
/**
|
||
* Return a Duration representing the time spanned by this interval.
|
||
* @param {string|string[]} [unit=['milliseconds']] - the unit or units (such as 'hours' or 'days') to include in the duration.
|
||
* @param {Object} opts - options that affect the creation of the Duration
|
||
* @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use
|
||
* @example Interval.fromDateTimes(dt1, dt2).toDuration().toObject() //=> { milliseconds: 88489257 }
|
||
* @example Interval.fromDateTimes(dt1, dt2).toDuration('days').toObject() //=> { days: 1.0241812152777778 }
|
||
* @example Interval.fromDateTimes(dt1, dt2).toDuration(['hours', 'minutes']).toObject() //=> { hours: 24, minutes: 34.82095 }
|
||
* @example Interval.fromDateTimes(dt1, dt2).toDuration(['hours', 'minutes', 'seconds']).toObject() //=> { hours: 24, minutes: 34, seconds: 49.257 }
|
||
* @example Interval.fromDateTimes(dt1, dt2).toDuration('seconds').toObject() //=> { seconds: 88489.257 }
|
||
* @return {Duration}
|
||
*/
|
||
toDuration(unit, opts) {
|
||
if (!this.isValid) {
|
||
return Duration.invalid(this.invalidReason);
|
||
}
|
||
return this.e.diff(this.s, unit, opts);
|
||
}
|
||
/**
|
||
* Run mapFn on the interval start and end, returning a new Interval from the resulting DateTimes
|
||
* @param {function} mapFn
|
||
* @return {Interval}
|
||
* @example Interval.fromDateTimes(dt1, dt2).mapEndpoints(endpoint => endpoint.toUTC())
|
||
* @example Interval.fromDateTimes(dt1, dt2).mapEndpoints(endpoint => endpoint.plus({ hours: 2 }))
|
||
*/
|
||
mapEndpoints(mapFn) {
|
||
return Interval.fromDateTimes(mapFn(this.s), mapFn(this.e));
|
||
}
|
||
};
|
||
var Info = class {
|
||
/**
|
||
* Return whether the specified zone contains a DST.
|
||
* @param {string|Zone} [zone='local'] - Zone to check. Defaults to the environment's local zone.
|
||
* @return {boolean}
|
||
*/
|
||
static hasDST(zone = Settings.defaultZone) {
|
||
const proto = DateTime.now().setZone(zone).set({ month: 12 });
|
||
return !zone.isUniversal && proto.offset !== proto.set({ month: 6 }).offset;
|
||
}
|
||
/**
|
||
* Return whether the specified zone is a valid IANA specifier.
|
||
* @param {string} zone - Zone to check
|
||
* @return {boolean}
|
||
*/
|
||
static isValidIANAZone(zone) {
|
||
return IANAZone.isValidZone(zone);
|
||
}
|
||
/**
|
||
* Converts the input into a {@link Zone} instance.
|
||
*
|
||
* * If `input` is already a Zone instance, it is returned unchanged.
|
||
* * If `input` is a string containing a valid time zone name, a Zone instance
|
||
* with that name is returned.
|
||
* * If `input` is a string that doesn't refer to a known time zone, a Zone
|
||
* instance with {@link Zone#isValid} == false is returned.
|
||
* * If `input is a number, a Zone instance with the specified fixed offset
|
||
* in minutes is returned.
|
||
* * If `input` is `null` or `undefined`, the default zone is returned.
|
||
* @param {string|Zone|number} [input] - the value to be converted
|
||
* @return {Zone}
|
||
*/
|
||
static normalizeZone(input) {
|
||
return normalizeZone(input, Settings.defaultZone);
|
||
}
|
||
/**
|
||
* Return an array of standalone month names.
|
||
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat
|
||
* @param {string} [length='long'] - the length of the month representation, such as "numeric", "2-digit", "narrow", "short", "long"
|
||
* @param {Object} opts - options
|
||
* @param {string} [opts.locale] - the locale code
|
||
* @param {string} [opts.numberingSystem=null] - the numbering system
|
||
* @param {string} [opts.locObj=null] - an existing locale object to use
|
||
* @param {string} [opts.outputCalendar='gregory'] - the calendar
|
||
* @example Info.months()[0] //=> 'January'
|
||
* @example Info.months('short')[0] //=> 'Jan'
|
||
* @example Info.months('numeric')[0] //=> '1'
|
||
* @example Info.months('short', { locale: 'fr-CA' } )[0] //=> 'janv.'
|
||
* @example Info.months('numeric', { locale: 'ar' })[0] //=> '١'
|
||
* @example Info.months('long', { outputCalendar: 'islamic' })[0] //=> 'Rabiʻ I'
|
||
* @return {Array}
|
||
*/
|
||
static months(length = "long", { locale = null, numberingSystem = null, locObj = null, outputCalendar = "gregory" } = {}) {
|
||
return (locObj || Locale.create(locale, numberingSystem, outputCalendar)).months(length);
|
||
}
|
||
/**
|
||
* Return an array of format month names.
|
||
* Format months differ from standalone months in that they're meant to appear next to the day of the month. In some languages, that
|
||
* changes the string.
|
||
* See {@link Info#months}
|
||
* @param {string} [length='long'] - the length of the month representation, such as "numeric", "2-digit", "narrow", "short", "long"
|
||
* @param {Object} opts - options
|
||
* @param {string} [opts.locale] - the locale code
|
||
* @param {string} [opts.numberingSystem=null] - the numbering system
|
||
* @param {string} [opts.locObj=null] - an existing locale object to use
|
||
* @param {string} [opts.outputCalendar='gregory'] - the calendar
|
||
* @return {Array}
|
||
*/
|
||
static monthsFormat(length = "long", { locale = null, numberingSystem = null, locObj = null, outputCalendar = "gregory" } = {}) {
|
||
return (locObj || Locale.create(locale, numberingSystem, outputCalendar)).months(length, true);
|
||
}
|
||
/**
|
||
* Return an array of standalone week names.
|
||
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat
|
||
* @param {string} [length='long'] - the length of the weekday representation, such as "narrow", "short", "long".
|
||
* @param {Object} opts - options
|
||
* @param {string} [opts.locale] - the locale code
|
||
* @param {string} [opts.numberingSystem=null] - the numbering system
|
||
* @param {string} [opts.locObj=null] - an existing locale object to use
|
||
* @example Info.weekdays()[0] //=> 'Monday'
|
||
* @example Info.weekdays('short')[0] //=> 'Mon'
|
||
* @example Info.weekdays('short', { locale: 'fr-CA' })[0] //=> 'lun.'
|
||
* @example Info.weekdays('short', { locale: 'ar' })[0] //=> 'الاثنين'
|
||
* @return {Array}
|
||
*/
|
||
static weekdays(length = "long", { locale = null, numberingSystem = null, locObj = null } = {}) {
|
||
return (locObj || Locale.create(locale, numberingSystem, null)).weekdays(length);
|
||
}
|
||
/**
|
||
* Return an array of format week names.
|
||
* Format weekdays differ from standalone weekdays in that they're meant to appear next to more date information. In some languages, that
|
||
* changes the string.
|
||
* See {@link Info#weekdays}
|
||
* @param {string} [length='long'] - the length of the month representation, such as "narrow", "short", "long".
|
||
* @param {Object} opts - options
|
||
* @param {string} [opts.locale=null] - the locale code
|
||
* @param {string} [opts.numberingSystem=null] - the numbering system
|
||
* @param {string} [opts.locObj=null] - an existing locale object to use
|
||
* @return {Array}
|
||
*/
|
||
static weekdaysFormat(length = "long", { locale = null, numberingSystem = null, locObj = null } = {}) {
|
||
return (locObj || Locale.create(locale, numberingSystem, null)).weekdays(length, true);
|
||
}
|
||
/**
|
||
* Return an array of meridiems.
|
||
* @param {Object} opts - options
|
||
* @param {string} [opts.locale] - the locale code
|
||
* @example Info.meridiems() //=> [ 'AM', 'PM' ]
|
||
* @example Info.meridiems({ locale: 'my' }) //=> [ 'နံနက်', 'ညနေ' ]
|
||
* @return {Array}
|
||
*/
|
||
static meridiems({ locale = null } = {}) {
|
||
return Locale.create(locale).meridiems();
|
||
}
|
||
/**
|
||
* Return an array of eras, such as ['BC', 'AD']. The locale can be specified, but the calendar system is always Gregorian.
|
||
* @param {string} [length='short'] - the length of the era representation, such as "short" or "long".
|
||
* @param {Object} opts - options
|
||
* @param {string} [opts.locale] - the locale code
|
||
* @example Info.eras() //=> [ 'BC', 'AD' ]
|
||
* @example Info.eras('long') //=> [ 'Before Christ', 'Anno Domini' ]
|
||
* @example Info.eras('long', { locale: 'fr' }) //=> [ 'avant Jésus-Christ', 'après Jésus-Christ' ]
|
||
* @return {Array}
|
||
*/
|
||
static eras(length = "short", { locale = null } = {}) {
|
||
return Locale.create(locale, null, "gregory").eras(length);
|
||
}
|
||
/**
|
||
* Return the set of available features in this environment.
|
||
* Some features of Luxon are not available in all environments. For example, on older browsers, relative time formatting support is not available. Use this function to figure out if that's the case.
|
||
* Keys:
|
||
* * `relative`: whether this environment supports relative time formatting
|
||
* @example Info.features() //=> { relative: false }
|
||
* @return {Object}
|
||
*/
|
||
static features() {
|
||
return { relative: hasRelative() };
|
||
}
|
||
};
|
||
function dayDiff(earlier, later) {
|
||
const utcDayStart = (dt) => dt.toUTC(0, { keepLocalTime: true }).startOf("day").valueOf(), ms = utcDayStart(later) - utcDayStart(earlier);
|
||
return Math.floor(Duration.fromMillis(ms).as("days"));
|
||
}
|
||
function highOrderDiffs(cursor, later, units) {
|
||
const differs = [
|
||
["years", (a, b) => b.year - a.year],
|
||
["quarters", (a, b) => b.quarter - a.quarter + (b.year - a.year) * 4],
|
||
["months", (a, b) => b.month - a.month + (b.year - a.year) * 12],
|
||
[
|
||
"weeks",
|
||
(a, b) => {
|
||
const days = dayDiff(a, b);
|
||
return (days - days % 7) / 7;
|
||
}
|
||
],
|
||
["days", dayDiff]
|
||
];
|
||
const results = {};
|
||
const earlier = cursor;
|
||
let lowestOrder, highWater;
|
||
for (const [unit, differ] of differs) {
|
||
if (units.indexOf(unit) >= 0) {
|
||
lowestOrder = unit;
|
||
results[unit] = differ(cursor, later);
|
||
highWater = earlier.plus(results);
|
||
if (highWater > later) {
|
||
results[unit]--;
|
||
cursor = earlier.plus(results);
|
||
} else {
|
||
cursor = highWater;
|
||
}
|
||
}
|
||
}
|
||
return [cursor, results, highWater, lowestOrder];
|
||
}
|
||
function diff(earlier, later, units, opts) {
|
||
let [cursor, results, highWater, lowestOrder] = highOrderDiffs(earlier, later, units);
|
||
const remainingMillis = later - cursor;
|
||
const lowerOrderUnits = units.filter(
|
||
(u) => ["hours", "minutes", "seconds", "milliseconds"].indexOf(u) >= 0
|
||
);
|
||
if (lowerOrderUnits.length === 0) {
|
||
if (highWater < later) {
|
||
highWater = cursor.plus({ [lowestOrder]: 1 });
|
||
}
|
||
if (highWater !== cursor) {
|
||
results[lowestOrder] = (results[lowestOrder] || 0) + remainingMillis / (highWater - cursor);
|
||
}
|
||
}
|
||
const duration = Duration.fromObject(results, opts);
|
||
if (lowerOrderUnits.length > 0) {
|
||
return Duration.fromMillis(remainingMillis, opts).shiftTo(...lowerOrderUnits).plus(duration);
|
||
} else {
|
||
return duration;
|
||
}
|
||
}
|
||
var numberingSystems = {
|
||
arab: "[\u0660-\u0669]",
|
||
arabext: "[\u06F0-\u06F9]",
|
||
bali: "[\u1B50-\u1B59]",
|
||
beng: "[\u09E6-\u09EF]",
|
||
deva: "[\u0966-\u096F]",
|
||
fullwide: "[\uFF10-\uFF19]",
|
||
gujr: "[\u0AE6-\u0AEF]",
|
||
hanidec: "[\u3007|\u4E00|\u4E8C|\u4E09|\u56DB|\u4E94|\u516D|\u4E03|\u516B|\u4E5D]",
|
||
khmr: "[\u17E0-\u17E9]",
|
||
knda: "[\u0CE6-\u0CEF]",
|
||
laoo: "[\u0ED0-\u0ED9]",
|
||
limb: "[\u1946-\u194F]",
|
||
mlym: "[\u0D66-\u0D6F]",
|
||
mong: "[\u1810-\u1819]",
|
||
mymr: "[\u1040-\u1049]",
|
||
orya: "[\u0B66-\u0B6F]",
|
||
tamldec: "[\u0BE6-\u0BEF]",
|
||
telu: "[\u0C66-\u0C6F]",
|
||
thai: "[\u0E50-\u0E59]",
|
||
tibt: "[\u0F20-\u0F29]",
|
||
latn: "\\d"
|
||
};
|
||
var numberingSystemsUTF16 = {
|
||
arab: [1632, 1641],
|
||
arabext: [1776, 1785],
|
||
bali: [6992, 7001],
|
||
beng: [2534, 2543],
|
||
deva: [2406, 2415],
|
||
fullwide: [65296, 65303],
|
||
gujr: [2790, 2799],
|
||
khmr: [6112, 6121],
|
||
knda: [3302, 3311],
|
||
laoo: [3792, 3801],
|
||
limb: [6470, 6479],
|
||
mlym: [3430, 3439],
|
||
mong: [6160, 6169],
|
||
mymr: [4160, 4169],
|
||
orya: [2918, 2927],
|
||
tamldec: [3046, 3055],
|
||
telu: [3174, 3183],
|
||
thai: [3664, 3673],
|
||
tibt: [3872, 3881]
|
||
};
|
||
var hanidecChars = numberingSystems.hanidec.replace(/[\[|\]]/g, "").split("");
|
||
function parseDigits(str) {
|
||
let value = parseInt(str, 10);
|
||
if (isNaN(value)) {
|
||
value = "";
|
||
for (let i = 0; i < str.length; i++) {
|
||
const code = str.charCodeAt(i);
|
||
if (str[i].search(numberingSystems.hanidec) !== -1) {
|
||
value += hanidecChars.indexOf(str[i]);
|
||
} else {
|
||
for (const key in numberingSystemsUTF16) {
|
||
const [min, max] = numberingSystemsUTF16[key];
|
||
if (code >= min && code <= max) {
|
||
value += code - min;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return parseInt(value, 10);
|
||
} else {
|
||
return value;
|
||
}
|
||
}
|
||
function digitRegex({ numberingSystem }, append = "") {
|
||
return new RegExp(`${numberingSystems[numberingSystem || "latn"]}${append}`);
|
||
}
|
||
var MISSING_FTP = "missing Intl.DateTimeFormat.formatToParts support";
|
||
function intUnit(regex, post = (i) => i) {
|
||
return { regex, deser: ([s2]) => post(parseDigits(s2)) };
|
||
}
|
||
var NBSP = String.fromCharCode(160);
|
||
var spaceOrNBSP = `[ ${NBSP}]`;
|
||
var spaceOrNBSPRegExp = new RegExp(spaceOrNBSP, "g");
|
||
function fixListRegex(s2) {
|
||
return s2.replace(/\./g, "\\.?").replace(spaceOrNBSPRegExp, spaceOrNBSP);
|
||
}
|
||
function stripInsensitivities(s2) {
|
||
return s2.replace(/\./g, "").replace(spaceOrNBSPRegExp, " ").toLowerCase();
|
||
}
|
||
function oneOf(strings, startIndex) {
|
||
if (strings === null) {
|
||
return null;
|
||
} else {
|
||
return {
|
||
regex: RegExp(strings.map(fixListRegex).join("|")),
|
||
deser: ([s2]) => strings.findIndex((i) => stripInsensitivities(s2) === stripInsensitivities(i)) + startIndex
|
||
};
|
||
}
|
||
}
|
||
function offset(regex, groups) {
|
||
return { regex, deser: ([, h, m]) => signedOffset(h, m), groups };
|
||
}
|
||
function simple(regex) {
|
||
return { regex, deser: ([s2]) => s2 };
|
||
}
|
||
function escapeToken(value) {
|
||
return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
|
||
}
|
||
function unitForToken(token, loc) {
|
||
const one = digitRegex(loc), two = digitRegex(loc, "{2}"), three = digitRegex(loc, "{3}"), four = digitRegex(loc, "{4}"), six = digitRegex(loc, "{6}"), oneOrTwo = digitRegex(loc, "{1,2}"), oneToThree = digitRegex(loc, "{1,3}"), oneToSix = digitRegex(loc, "{1,6}"), oneToNine = digitRegex(loc, "{1,9}"), twoToFour = digitRegex(loc, "{2,4}"), fourToSix = digitRegex(loc, "{4,6}"), literal = (t) => ({ regex: RegExp(escapeToken(t.val)), deser: ([s2]) => s2, literal: true }), unitate = (t) => {
|
||
if (token.literal) {
|
||
return literal(t);
|
||
}
|
||
switch (t.val) {
|
||
case "G":
|
||
return oneOf(loc.eras("short", false), 0);
|
||
case "GG":
|
||
return oneOf(loc.eras("long", false), 0);
|
||
case "y":
|
||
return intUnit(oneToSix);
|
||
case "yy":
|
||
return intUnit(twoToFour, untruncateYear);
|
||
case "yyyy":
|
||
return intUnit(four);
|
||
case "yyyyy":
|
||
return intUnit(fourToSix);
|
||
case "yyyyyy":
|
||
return intUnit(six);
|
||
case "M":
|
||
return intUnit(oneOrTwo);
|
||
case "MM":
|
||
return intUnit(two);
|
||
case "MMM":
|
||
return oneOf(loc.months("short", true, false), 1);
|
||
case "MMMM":
|
||
return oneOf(loc.months("long", true, false), 1);
|
||
case "L":
|
||
return intUnit(oneOrTwo);
|
||
case "LL":
|
||
return intUnit(two);
|
||
case "LLL":
|
||
return oneOf(loc.months("short", false, false), 1);
|
||
case "LLLL":
|
||
return oneOf(loc.months("long", false, false), 1);
|
||
case "d":
|
||
return intUnit(oneOrTwo);
|
||
case "dd":
|
||
return intUnit(two);
|
||
case "o":
|
||
return intUnit(oneToThree);
|
||
case "ooo":
|
||
return intUnit(three);
|
||
case "HH":
|
||
return intUnit(two);
|
||
case "H":
|
||
return intUnit(oneOrTwo);
|
||
case "hh":
|
||
return intUnit(two);
|
||
case "h":
|
||
return intUnit(oneOrTwo);
|
||
case "mm":
|
||
return intUnit(two);
|
||
case "m":
|
||
return intUnit(oneOrTwo);
|
||
case "q":
|
||
return intUnit(oneOrTwo);
|
||
case "qq":
|
||
return intUnit(two);
|
||
case "s":
|
||
return intUnit(oneOrTwo);
|
||
case "ss":
|
||
return intUnit(two);
|
||
case "S":
|
||
return intUnit(oneToThree);
|
||
case "SSS":
|
||
return intUnit(three);
|
||
case "u":
|
||
return simple(oneToNine);
|
||
case "uu":
|
||
return simple(oneOrTwo);
|
||
case "uuu":
|
||
return intUnit(one);
|
||
case "a":
|
||
return oneOf(loc.meridiems(), 0);
|
||
case "kkkk":
|
||
return intUnit(four);
|
||
case "kk":
|
||
return intUnit(twoToFour, untruncateYear);
|
||
case "W":
|
||
return intUnit(oneOrTwo);
|
||
case "WW":
|
||
return intUnit(two);
|
||
case "E":
|
||
case "c":
|
||
return intUnit(one);
|
||
case "EEE":
|
||
return oneOf(loc.weekdays("short", false, false), 1);
|
||
case "EEEE":
|
||
return oneOf(loc.weekdays("long", false, false), 1);
|
||
case "ccc":
|
||
return oneOf(loc.weekdays("short", true, false), 1);
|
||
case "cccc":
|
||
return oneOf(loc.weekdays("long", true, false), 1);
|
||
case "Z":
|
||
case "ZZ":
|
||
return offset(new RegExp(`([+-]${oneOrTwo.source})(?::(${two.source}))?`), 2);
|
||
case "ZZZ":
|
||
return offset(new RegExp(`([+-]${oneOrTwo.source})(${two.source})?`), 2);
|
||
case "z":
|
||
return simple(/[a-z_+-/]{1,256}?/i);
|
||
default:
|
||
return literal(t);
|
||
}
|
||
};
|
||
const unit = unitate(token) || {
|
||
invalidReason: MISSING_FTP
|
||
};
|
||
unit.token = token;
|
||
return unit;
|
||
}
|
||
var partTypeStyleToTokenVal = {
|
||
year: {
|
||
"2-digit": "yy",
|
||
numeric: "yyyyy"
|
||
},
|
||
month: {
|
||
numeric: "M",
|
||
"2-digit": "MM",
|
||
short: "MMM",
|
||
long: "MMMM"
|
||
},
|
||
day: {
|
||
numeric: "d",
|
||
"2-digit": "dd"
|
||
},
|
||
weekday: {
|
||
short: "EEE",
|
||
long: "EEEE"
|
||
},
|
||
dayperiod: "a",
|
||
dayPeriod: "a",
|
||
hour: {
|
||
numeric: "h",
|
||
"2-digit": "hh"
|
||
},
|
||
minute: {
|
||
numeric: "m",
|
||
"2-digit": "mm"
|
||
},
|
||
second: {
|
||
numeric: "s",
|
||
"2-digit": "ss"
|
||
},
|
||
timeZoneName: {
|
||
long: "ZZZZZ",
|
||
short: "ZZZ"
|
||
}
|
||
};
|
||
function tokenForPart(part, formatOpts) {
|
||
const { type, value } = part;
|
||
if (type === "literal") {
|
||
return {
|
||
literal: true,
|
||
val: value
|
||
};
|
||
}
|
||
const style = formatOpts[type];
|
||
let val = partTypeStyleToTokenVal[type];
|
||
if (typeof val === "object") {
|
||
val = val[style];
|
||
}
|
||
if (val) {
|
||
return {
|
||
literal: false,
|
||
val
|
||
};
|
||
}
|
||
return void 0;
|
||
}
|
||
function buildRegex(units) {
|
||
const re = units.map((u) => u.regex).reduce((f, r) => `${f}(${r.source})`, "");
|
||
return [`^${re}$`, units];
|
||
}
|
||
function match(input, regex, handlers) {
|
||
const matches = input.match(regex);
|
||
if (matches) {
|
||
const all = {};
|
||
let matchIndex = 1;
|
||
for (const i in handlers) {
|
||
if (hasOwnProperty(handlers, i)) {
|
||
const h = handlers[i], groups = h.groups ? h.groups + 1 : 1;
|
||
if (!h.literal && h.token) {
|
||
all[h.token.val[0]] = h.deser(matches.slice(matchIndex, matchIndex + groups));
|
||
}
|
||
matchIndex += groups;
|
||
}
|
||
}
|
||
return [matches, all];
|
||
} else {
|
||
return [matches, {}];
|
||
}
|
||
}
|
||
function dateTimeFromMatches(matches) {
|
||
const toField = (token) => {
|
||
switch (token) {
|
||
case "S":
|
||
return "millisecond";
|
||
case "s":
|
||
return "second";
|
||
case "m":
|
||
return "minute";
|
||
case "h":
|
||
case "H":
|
||
return "hour";
|
||
case "d":
|
||
return "day";
|
||
case "o":
|
||
return "ordinal";
|
||
case "L":
|
||
case "M":
|
||
return "month";
|
||
case "y":
|
||
return "year";
|
||
case "E":
|
||
case "c":
|
||
return "weekday";
|
||
case "W":
|
||
return "weekNumber";
|
||
case "k":
|
||
return "weekYear";
|
||
case "q":
|
||
return "quarter";
|
||
default:
|
||
return null;
|
||
}
|
||
};
|
||
let zone = null;
|
||
let specificOffset;
|
||
if (!isUndefined(matches.z)) {
|
||
zone = IANAZone.create(matches.z);
|
||
}
|
||
if (!isUndefined(matches.Z)) {
|
||
if (!zone) {
|
||
zone = new FixedOffsetZone(matches.Z);
|
||
}
|
||
specificOffset = matches.Z;
|
||
}
|
||
if (!isUndefined(matches.q)) {
|
||
matches.M = (matches.q - 1) * 3 + 1;
|
||
}
|
||
if (!isUndefined(matches.h)) {
|
||
if (matches.h < 12 && matches.a === 1) {
|
||
matches.h += 12;
|
||
} else if (matches.h === 12 && matches.a === 0) {
|
||
matches.h = 0;
|
||
}
|
||
}
|
||
if (matches.G === 0 && matches.y) {
|
||
matches.y = -matches.y;
|
||
}
|
||
if (!isUndefined(matches.u)) {
|
||
matches.S = parseMillis(matches.u);
|
||
}
|
||
const vals = Object.keys(matches).reduce((r, k) => {
|
||
const f = toField(k);
|
||
if (f) {
|
||
r[f] = matches[k];
|
||
}
|
||
return r;
|
||
}, {});
|
||
return [vals, zone, specificOffset];
|
||
}
|
||
var dummyDateTimeCache = null;
|
||
function getDummyDateTime() {
|
||
if (!dummyDateTimeCache) {
|
||
dummyDateTimeCache = DateTime.fromMillis(1555555555555);
|
||
}
|
||
return dummyDateTimeCache;
|
||
}
|
||
function maybeExpandMacroToken(token, locale) {
|
||
if (token.literal) {
|
||
return token;
|
||
}
|
||
const formatOpts = Formatter.macroTokenToFormatOpts(token.val);
|
||
const tokens = formatOptsToTokens(formatOpts, locale);
|
||
if (tokens == null || tokens.includes(void 0)) {
|
||
return token;
|
||
}
|
||
return tokens;
|
||
}
|
||
function expandMacroTokens(tokens, locale) {
|
||
return Array.prototype.concat(...tokens.map((t) => maybeExpandMacroToken(t, locale)));
|
||
}
|
||
function explainFromTokens(locale, input, format) {
|
||
const tokens = expandMacroTokens(Formatter.parseFormat(format), locale), units = tokens.map((t) => unitForToken(t, locale)), disqualifyingUnit = units.find((t) => t.invalidReason);
|
||
if (disqualifyingUnit) {
|
||
return { input, tokens, invalidReason: disqualifyingUnit.invalidReason };
|
||
} else {
|
||
const [regexString, handlers] = buildRegex(units), regex = RegExp(regexString, "i"), [rawMatches, matches] = match(input, regex, handlers), [result, zone, specificOffset] = matches ? dateTimeFromMatches(matches) : [null, null, void 0];
|
||
if (hasOwnProperty(matches, "a") && hasOwnProperty(matches, "H")) {
|
||
throw new ConflictingSpecificationError(
|
||
"Can't include meridiem when specifying 24-hour format"
|
||
);
|
||
}
|
||
return { input, tokens, regex, rawMatches, matches, result, zone, specificOffset };
|
||
}
|
||
}
|
||
function parseFromTokens(locale, input, format) {
|
||
const { result, zone, specificOffset, invalidReason } = explainFromTokens(locale, input, format);
|
||
return [result, zone, specificOffset, invalidReason];
|
||
}
|
||
function formatOptsToTokens(formatOpts, locale) {
|
||
if (!formatOpts) {
|
||
return null;
|
||
}
|
||
const formatter = Formatter.create(locale, formatOpts);
|
||
const parts = formatter.formatDateTimeParts(getDummyDateTime());
|
||
return parts.map((p) => tokenForPart(p, formatOpts));
|
||
}
|
||
var nonLeapLadder = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334];
|
||
var leapLadder = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335];
|
||
function unitOutOfRange(unit, value) {
|
||
return new Invalid(
|
||
"unit out of range",
|
||
`you specified ${value} (of type ${typeof value}) as a ${unit}, which is invalid`
|
||
);
|
||
}
|
||
function dayOfWeek(year, month, day) {
|
||
const d = new Date(Date.UTC(year, month - 1, day));
|
||
if (year < 100 && year >= 0) {
|
||
d.setUTCFullYear(d.getUTCFullYear() - 1900);
|
||
}
|
||
const js = d.getUTCDay();
|
||
return js === 0 ? 7 : js;
|
||
}
|
||
function computeOrdinal(year, month, day) {
|
||
return day + (isLeapYear(year) ? leapLadder : nonLeapLadder)[month - 1];
|
||
}
|
||
function uncomputeOrdinal(year, ordinal) {
|
||
const table = isLeapYear(year) ? leapLadder : nonLeapLadder, month0 = table.findIndex((i) => i < ordinal), day = ordinal - table[month0];
|
||
return { month: month0 + 1, day };
|
||
}
|
||
function gregorianToWeek(gregObj) {
|
||
const { year, month, day } = gregObj, ordinal = computeOrdinal(year, month, day), weekday = dayOfWeek(year, month, day);
|
||
let weekNumber = Math.floor((ordinal - weekday + 10) / 7), weekYear;
|
||
if (weekNumber < 1) {
|
||
weekYear = year - 1;
|
||
weekNumber = weeksInWeekYear(weekYear);
|
||
} else if (weekNumber > weeksInWeekYear(year)) {
|
||
weekYear = year + 1;
|
||
weekNumber = 1;
|
||
} else {
|
||
weekYear = year;
|
||
}
|
||
return { weekYear, weekNumber, weekday, ...timeObject(gregObj) };
|
||
}
|
||
function weekToGregorian(weekData) {
|
||
const { weekYear, weekNumber, weekday } = weekData, weekdayOfJan4 = dayOfWeek(weekYear, 1, 4), yearInDays = daysInYear(weekYear);
|
||
let ordinal = weekNumber * 7 + weekday - weekdayOfJan4 - 3, year;
|
||
if (ordinal < 1) {
|
||
year = weekYear - 1;
|
||
ordinal += daysInYear(year);
|
||
} else if (ordinal > yearInDays) {
|
||
year = weekYear + 1;
|
||
ordinal -= daysInYear(weekYear);
|
||
} else {
|
||
year = weekYear;
|
||
}
|
||
const { month, day } = uncomputeOrdinal(year, ordinal);
|
||
return { year, month, day, ...timeObject(weekData) };
|
||
}
|
||
function gregorianToOrdinal(gregData) {
|
||
const { year, month, day } = gregData;
|
||
const ordinal = computeOrdinal(year, month, day);
|
||
return { year, ordinal, ...timeObject(gregData) };
|
||
}
|
||
function ordinalToGregorian(ordinalData) {
|
||
const { year, ordinal } = ordinalData;
|
||
const { month, day } = uncomputeOrdinal(year, ordinal);
|
||
return { year, month, day, ...timeObject(ordinalData) };
|
||
}
|
||
function hasInvalidWeekData(obj) {
|
||
const validYear = isInteger(obj.weekYear), validWeek = integerBetween(obj.weekNumber, 1, weeksInWeekYear(obj.weekYear)), validWeekday = integerBetween(obj.weekday, 1, 7);
|
||
if (!validYear) {
|
||
return unitOutOfRange("weekYear", obj.weekYear);
|
||
} else if (!validWeek) {
|
||
return unitOutOfRange("week", obj.week);
|
||
} else if (!validWeekday) {
|
||
return unitOutOfRange("weekday", obj.weekday);
|
||
} else
|
||
return false;
|
||
}
|
||
function hasInvalidOrdinalData(obj) {
|
||
const validYear = isInteger(obj.year), validOrdinal = integerBetween(obj.ordinal, 1, daysInYear(obj.year));
|
||
if (!validYear) {
|
||
return unitOutOfRange("year", obj.year);
|
||
} else if (!validOrdinal) {
|
||
return unitOutOfRange("ordinal", obj.ordinal);
|
||
} else
|
||
return false;
|
||
}
|
||
function hasInvalidGregorianData(obj) {
|
||
const validYear = isInteger(obj.year), validMonth = integerBetween(obj.month, 1, 12), validDay = integerBetween(obj.day, 1, daysInMonth(obj.year, obj.month));
|
||
if (!validYear) {
|
||
return unitOutOfRange("year", obj.year);
|
||
} else if (!validMonth) {
|
||
return unitOutOfRange("month", obj.month);
|
||
} else if (!validDay) {
|
||
return unitOutOfRange("day", obj.day);
|
||
} else
|
||
return false;
|
||
}
|
||
function hasInvalidTimeData(obj) {
|
||
const { hour, minute, second, millisecond } = obj;
|
||
const validHour = integerBetween(hour, 0, 23) || hour === 24 && minute === 0 && second === 0 && millisecond === 0, validMinute = integerBetween(minute, 0, 59), validSecond = integerBetween(second, 0, 59), validMillisecond = integerBetween(millisecond, 0, 999);
|
||
if (!validHour) {
|
||
return unitOutOfRange("hour", hour);
|
||
} else if (!validMinute) {
|
||
return unitOutOfRange("minute", minute);
|
||
} else if (!validSecond) {
|
||
return unitOutOfRange("second", second);
|
||
} else if (!validMillisecond) {
|
||
return unitOutOfRange("millisecond", millisecond);
|
||
} else
|
||
return false;
|
||
}
|
||
var INVALID = "Invalid DateTime";
|
||
var MAX_DATE = 864e13;
|
||
function unsupportedZone(zone) {
|
||
return new Invalid("unsupported zone", `the zone "${zone.name}" is not supported`);
|
||
}
|
||
function possiblyCachedWeekData(dt) {
|
||
if (dt.weekData === null) {
|
||
dt.weekData = gregorianToWeek(dt.c);
|
||
}
|
||
return dt.weekData;
|
||
}
|
||
function clone(inst, alts) {
|
||
const current2 = {
|
||
ts: inst.ts,
|
||
zone: inst.zone,
|
||
c: inst.c,
|
||
o: inst.o,
|
||
loc: inst.loc,
|
||
invalid: inst.invalid
|
||
};
|
||
return new DateTime({ ...current2, ...alts, old: current2 });
|
||
}
|
||
function fixOffset(localTS, o, tz) {
|
||
let utcGuess = localTS - o * 60 * 1e3;
|
||
const o2 = tz.offset(utcGuess);
|
||
if (o === o2) {
|
||
return [utcGuess, o];
|
||
}
|
||
utcGuess -= (o2 - o) * 60 * 1e3;
|
||
const o3 = tz.offset(utcGuess);
|
||
if (o2 === o3) {
|
||
return [utcGuess, o2];
|
||
}
|
||
return [localTS - Math.min(o2, o3) * 60 * 1e3, Math.max(o2, o3)];
|
||
}
|
||
function tsToObj(ts, offset2) {
|
||
ts += offset2 * 60 * 1e3;
|
||
const d = new Date(ts);
|
||
return {
|
||
year: d.getUTCFullYear(),
|
||
month: d.getUTCMonth() + 1,
|
||
day: d.getUTCDate(),
|
||
hour: d.getUTCHours(),
|
||
minute: d.getUTCMinutes(),
|
||
second: d.getUTCSeconds(),
|
||
millisecond: d.getUTCMilliseconds()
|
||
};
|
||
}
|
||
function objToTS(obj, offset2, zone) {
|
||
return fixOffset(objToLocalTS(obj), offset2, zone);
|
||
}
|
||
function adjustTime(inst, dur) {
|
||
const oPre = inst.o, year = inst.c.year + Math.trunc(dur.years), month = inst.c.month + Math.trunc(dur.months) + Math.trunc(dur.quarters) * 3, c = {
|
||
...inst.c,
|
||
year,
|
||
month,
|
||
day: Math.min(inst.c.day, daysInMonth(year, month)) + Math.trunc(dur.days) + Math.trunc(dur.weeks) * 7
|
||
}, millisToAdd = Duration.fromObject({
|
||
years: dur.years - Math.trunc(dur.years),
|
||
quarters: dur.quarters - Math.trunc(dur.quarters),
|
||
months: dur.months - Math.trunc(dur.months),
|
||
weeks: dur.weeks - Math.trunc(dur.weeks),
|
||
days: dur.days - Math.trunc(dur.days),
|
||
hours: dur.hours,
|
||
minutes: dur.minutes,
|
||
seconds: dur.seconds,
|
||
milliseconds: dur.milliseconds
|
||
}).as("milliseconds"), localTS = objToLocalTS(c);
|
||
let [ts, o] = fixOffset(localTS, oPre, inst.zone);
|
||
if (millisToAdd !== 0) {
|
||
ts += millisToAdd;
|
||
o = inst.zone.offset(ts);
|
||
}
|
||
return { ts, o };
|
||
}
|
||
function parseDataToDateTime(parsed, parsedZone, opts, format, text, specificOffset) {
|
||
const { setZone, zone } = opts;
|
||
if (parsed && Object.keys(parsed).length !== 0) {
|
||
const interpretationZone = parsedZone || zone, inst = DateTime.fromObject(parsed, {
|
||
...opts,
|
||
zone: interpretationZone,
|
||
specificOffset
|
||
});
|
||
return setZone ? inst : inst.setZone(zone);
|
||
} else {
|
||
return DateTime.invalid(
|
||
new Invalid("unparsable", `the input "${text}" can't be parsed as ${format}`)
|
||
);
|
||
}
|
||
}
|
||
function toTechFormat(dt, format, allowZ = true) {
|
||
return dt.isValid ? Formatter.create(Locale.create("en-US"), {
|
||
allowZ,
|
||
forceSimple: true
|
||
}).formatDateTimeFromString(dt, format) : null;
|
||
}
|
||
function toISODate(o, extended) {
|
||
const longFormat = o.c.year > 9999 || o.c.year < 0;
|
||
let c = "";
|
||
if (longFormat && o.c.year >= 0)
|
||
c += "+";
|
||
c += padStart(o.c.year, longFormat ? 6 : 4);
|
||
if (extended) {
|
||
c += "-";
|
||
c += padStart(o.c.month);
|
||
c += "-";
|
||
c += padStart(o.c.day);
|
||
} else {
|
||
c += padStart(o.c.month);
|
||
c += padStart(o.c.day);
|
||
}
|
||
return c;
|
||
}
|
||
function toISOTime(o, extended, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone) {
|
||
let c = padStart(o.c.hour);
|
||
if (extended) {
|
||
c += ":";
|
||
c += padStart(o.c.minute);
|
||
if (o.c.second !== 0 || !suppressSeconds) {
|
||
c += ":";
|
||
}
|
||
} else {
|
||
c += padStart(o.c.minute);
|
||
}
|
||
if (o.c.second !== 0 || !suppressSeconds) {
|
||
c += padStart(o.c.second);
|
||
if (o.c.millisecond !== 0 || !suppressMilliseconds) {
|
||
c += ".";
|
||
c += padStart(o.c.millisecond, 3);
|
||
}
|
||
}
|
||
if (includeOffset) {
|
||
if (o.isOffsetFixed && o.offset === 0 && !extendedZone) {
|
||
c += "Z";
|
||
} else if (o.o < 0) {
|
||
c += "-";
|
||
c += padStart(Math.trunc(-o.o / 60));
|
||
c += ":";
|
||
c += padStart(Math.trunc(-o.o % 60));
|
||
} else {
|
||
c += "+";
|
||
c += padStart(Math.trunc(o.o / 60));
|
||
c += ":";
|
||
c += padStart(Math.trunc(o.o % 60));
|
||
}
|
||
}
|
||
if (extendedZone) {
|
||
c += "[" + o.zone.ianaName + "]";
|
||
}
|
||
return c;
|
||
}
|
||
var defaultUnitValues = {
|
||
month: 1,
|
||
day: 1,
|
||
hour: 0,
|
||
minute: 0,
|
||
second: 0,
|
||
millisecond: 0
|
||
};
|
||
var defaultWeekUnitValues = {
|
||
weekNumber: 1,
|
||
weekday: 1,
|
||
hour: 0,
|
||
minute: 0,
|
||
second: 0,
|
||
millisecond: 0
|
||
};
|
||
var defaultOrdinalUnitValues = {
|
||
ordinal: 1,
|
||
hour: 0,
|
||
minute: 0,
|
||
second: 0,
|
||
millisecond: 0
|
||
};
|
||
var orderedUnits = ["year", "month", "day", "hour", "minute", "second", "millisecond"];
|
||
var orderedWeekUnits = [
|
||
"weekYear",
|
||
"weekNumber",
|
||
"weekday",
|
||
"hour",
|
||
"minute",
|
||
"second",
|
||
"millisecond"
|
||
];
|
||
var orderedOrdinalUnits = ["year", "ordinal", "hour", "minute", "second", "millisecond"];
|
||
function normalizeUnit(unit) {
|
||
const normalized = {
|
||
year: "year",
|
||
years: "year",
|
||
month: "month",
|
||
months: "month",
|
||
day: "day",
|
||
days: "day",
|
||
hour: "hour",
|
||
hours: "hour",
|
||
minute: "minute",
|
||
minutes: "minute",
|
||
quarter: "quarter",
|
||
quarters: "quarter",
|
||
second: "second",
|
||
seconds: "second",
|
||
millisecond: "millisecond",
|
||
milliseconds: "millisecond",
|
||
weekday: "weekday",
|
||
weekdays: "weekday",
|
||
weeknumber: "weekNumber",
|
||
weeksnumber: "weekNumber",
|
||
weeknumbers: "weekNumber",
|
||
weekyear: "weekYear",
|
||
weekyears: "weekYear",
|
||
ordinal: "ordinal"
|
||
}[unit.toLowerCase()];
|
||
if (!normalized)
|
||
throw new InvalidUnitError(unit);
|
||
return normalized;
|
||
}
|
||
function quickDT(obj, opts) {
|
||
const zone = normalizeZone(opts.zone, Settings.defaultZone), loc = Locale.fromObject(opts), tsNow = Settings.now();
|
||
let ts, o;
|
||
if (!isUndefined(obj.year)) {
|
||
for (const u of orderedUnits) {
|
||
if (isUndefined(obj[u])) {
|
||
obj[u] = defaultUnitValues[u];
|
||
}
|
||
}
|
||
const invalid = hasInvalidGregorianData(obj) || hasInvalidTimeData(obj);
|
||
if (invalid) {
|
||
return DateTime.invalid(invalid);
|
||
}
|
||
const offsetProvis = zone.offset(tsNow);
|
||
[ts, o] = objToTS(obj, offsetProvis, zone);
|
||
} else {
|
||
ts = tsNow;
|
||
}
|
||
return new DateTime({ ts, zone, loc, o });
|
||
}
|
||
function diffRelative(start, end, opts) {
|
||
const round = isUndefined(opts.round) ? true : opts.round, format = (c, unit) => {
|
||
c = roundTo(c, round || opts.calendary ? 0 : 2, true);
|
||
const formatter = end.loc.clone(opts).relFormatter(opts);
|
||
return formatter.format(c, unit);
|
||
}, differ = (unit) => {
|
||
if (opts.calendary) {
|
||
if (!end.hasSame(start, unit)) {
|
||
return end.startOf(unit).diff(start.startOf(unit), unit).get(unit);
|
||
} else
|
||
return 0;
|
||
} else {
|
||
return end.diff(start, unit).get(unit);
|
||
}
|
||
};
|
||
if (opts.unit) {
|
||
return format(differ(opts.unit), opts.unit);
|
||
}
|
||
for (const unit of opts.units) {
|
||
const count = differ(unit);
|
||
if (Math.abs(count) >= 1) {
|
||
return format(count, unit);
|
||
}
|
||
}
|
||
return format(start > end ? -0 : 0, opts.units[opts.units.length - 1]);
|
||
}
|
||
function lastOpts(argList) {
|
||
let opts = {}, args;
|
||
if (argList.length > 0 && typeof argList[argList.length - 1] === "object") {
|
||
opts = argList[argList.length - 1];
|
||
args = Array.from(argList).slice(0, argList.length - 1);
|
||
} else {
|
||
args = Array.from(argList);
|
||
}
|
||
return [opts, args];
|
||
}
|
||
var DateTime = class {
|
||
/**
|
||
* @access private
|
||
*/
|
||
constructor(config) {
|
||
const zone = config.zone || Settings.defaultZone;
|
||
let invalid = config.invalid || (Number.isNaN(config.ts) ? new Invalid("invalid input") : null) || (!zone.isValid ? unsupportedZone(zone) : null);
|
||
this.ts = isUndefined(config.ts) ? Settings.now() : config.ts;
|
||
let c = null, o = null;
|
||
if (!invalid) {
|
||
const unchanged = config.old && config.old.ts === this.ts && config.old.zone.equals(zone);
|
||
if (unchanged) {
|
||
[c, o] = [config.old.c, config.old.o];
|
||
} else {
|
||
const ot = zone.offset(this.ts);
|
||
c = tsToObj(this.ts, ot);
|
||
invalid = Number.isNaN(c.year) ? new Invalid("invalid input") : null;
|
||
c = invalid ? null : c;
|
||
o = invalid ? null : ot;
|
||
}
|
||
}
|
||
this._zone = zone;
|
||
this.loc = config.loc || Locale.create();
|
||
this.invalid = invalid;
|
||
this.weekData = null;
|
||
this.c = c;
|
||
this.o = o;
|
||
this.isLuxonDateTime = true;
|
||
}
|
||
// CONSTRUCT
|
||
/**
|
||
* Create a DateTime for the current instant, in the system's time zone.
|
||
*
|
||
* Use Settings to override these default values if needed.
|
||
* @example DateTime.now().toISO() //~> now in the ISO format
|
||
* @return {DateTime}
|
||
*/
|
||
static now() {
|
||
return new DateTime({});
|
||
}
|
||
/**
|
||
* Create a local DateTime
|
||
* @param {number} [year] - The calendar year. If omitted (as in, call `local()` with no arguments), the current time will be used
|
||
* @param {number} [month=1] - The month, 1-indexed
|
||
* @param {number} [day=1] - The day of the month, 1-indexed
|
||
* @param {number} [hour=0] - The hour of the day, in 24-hour time
|
||
* @param {number} [minute=0] - The minute of the hour, meaning a number between 0 and 59
|
||
* @param {number} [second=0] - The second of the minute, meaning a number between 0 and 59
|
||
* @param {number} [millisecond=0] - The millisecond of the second, meaning a number between 0 and 999
|
||
* @example DateTime.local() //~> now
|
||
* @example DateTime.local({ zone: "America/New_York" }) //~> now, in US east coast time
|
||
* @example DateTime.local(2017) //~> 2017-01-01T00:00:00
|
||
* @example DateTime.local(2017, 3) //~> 2017-03-01T00:00:00
|
||
* @example DateTime.local(2017, 3, 12, { locale: "fr" }) //~> 2017-03-12T00:00:00, with a French locale
|
||
* @example DateTime.local(2017, 3, 12, 5) //~> 2017-03-12T05:00:00
|
||
* @example DateTime.local(2017, 3, 12, 5, { zone: "utc" }) //~> 2017-03-12T05:00:00, in UTC
|
||
* @example DateTime.local(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00
|
||
* @example DateTime.local(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10
|
||
* @example DateTime.local(2017, 3, 12, 5, 45, 10, 765) //~> 2017-03-12T05:45:10.765
|
||
* @return {DateTime}
|
||
*/
|
||
static local() {
|
||
const [opts, args] = lastOpts(arguments), [year, month, day, hour, minute, second, millisecond] = args;
|
||
return quickDT({ year, month, day, hour, minute, second, millisecond }, opts);
|
||
}
|
||
/**
|
||
* Create a DateTime in UTC
|
||
* @param {number} [year] - The calendar year. If omitted (as in, call `utc()` with no arguments), the current time will be used
|
||
* @param {number} [month=1] - The month, 1-indexed
|
||
* @param {number} [day=1] - The day of the month
|
||
* @param {number} [hour=0] - The hour of the day, in 24-hour time
|
||
* @param {number} [minute=0] - The minute of the hour, meaning a number between 0 and 59
|
||
* @param {number} [second=0] - The second of the minute, meaning a number between 0 and 59
|
||
* @param {number} [millisecond=0] - The millisecond of the second, meaning a number between 0 and 999
|
||
* @param {Object} options - configuration options for the DateTime
|
||
* @param {string} [options.locale] - a locale to set on the resulting DateTime instance
|
||
* @param {string} [options.outputCalendar] - the output calendar to set on the resulting DateTime instance
|
||
* @param {string} [options.numberingSystem] - the numbering system to set on the resulting DateTime instance
|
||
* @example DateTime.utc() //~> now
|
||
* @example DateTime.utc(2017) //~> 2017-01-01T00:00:00Z
|
||
* @example DateTime.utc(2017, 3) //~> 2017-03-01T00:00:00Z
|
||
* @example DateTime.utc(2017, 3, 12) //~> 2017-03-12T00:00:00Z
|
||
* @example DateTime.utc(2017, 3, 12, 5) //~> 2017-03-12T05:00:00Z
|
||
* @example DateTime.utc(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00Z
|
||
* @example DateTime.utc(2017, 3, 12, 5, 45, { locale: "fr" }) //~> 2017-03-12T05:45:00Z with a French locale
|
||
* @example DateTime.utc(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10Z
|
||
* @example DateTime.utc(2017, 3, 12, 5, 45, 10, 765, { locale: "fr" }) //~> 2017-03-12T05:45:10.765Z with a French locale
|
||
* @return {DateTime}
|
||
*/
|
||
static utc() {
|
||
const [opts, args] = lastOpts(arguments), [year, month, day, hour, minute, second, millisecond] = args;
|
||
opts.zone = FixedOffsetZone.utcInstance;
|
||
return quickDT({ year, month, day, hour, minute, second, millisecond }, opts);
|
||
}
|
||
/**
|
||
* Create a DateTime from a JavaScript Date object. Uses the default zone.
|
||
* @param {Date} date - a JavaScript Date object
|
||
* @param {Object} options - configuration options for the DateTime
|
||
* @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into
|
||
* @return {DateTime}
|
||
*/
|
||
static fromJSDate(date, options = {}) {
|
||
const ts = isDate(date) ? date.valueOf() : NaN;
|
||
if (Number.isNaN(ts)) {
|
||
return DateTime.invalid("invalid input");
|
||
}
|
||
const zoneToUse = normalizeZone(options.zone, Settings.defaultZone);
|
||
if (!zoneToUse.isValid) {
|
||
return DateTime.invalid(unsupportedZone(zoneToUse));
|
||
}
|
||
return new DateTime({
|
||
ts,
|
||
zone: zoneToUse,
|
||
loc: Locale.fromObject(options)
|
||
});
|
||
}
|
||
/**
|
||
* Create a DateTime from a number of milliseconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone.
|
||
* @param {number} milliseconds - a number of milliseconds since 1970 UTC
|
||
* @param {Object} options - configuration options for the DateTime
|
||
* @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into
|
||
* @param {string} [options.locale] - a locale to set on the resulting DateTime instance
|
||
* @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance
|
||
* @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance
|
||
* @return {DateTime}
|
||
*/
|
||
static fromMillis(milliseconds, options = {}) {
|
||
if (!isNumber(milliseconds)) {
|
||
throw new InvalidArgumentError(
|
||
`fromMillis requires a numerical input, but received a ${typeof milliseconds} with value ${milliseconds}`
|
||
);
|
||
} else if (milliseconds < -MAX_DATE || milliseconds > MAX_DATE) {
|
||
return DateTime.invalid("Timestamp out of range");
|
||
} else {
|
||
return new DateTime({
|
||
ts: milliseconds,
|
||
zone: normalizeZone(options.zone, Settings.defaultZone),
|
||
loc: Locale.fromObject(options)
|
||
});
|
||
}
|
||
}
|
||
/**
|
||
* Create a DateTime from a number of seconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone.
|
||
* @param {number} seconds - a number of seconds since 1970 UTC
|
||
* @param {Object} options - configuration options for the DateTime
|
||
* @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into
|
||
* @param {string} [options.locale] - a locale to set on the resulting DateTime instance
|
||
* @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance
|
||
* @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance
|
||
* @return {DateTime}
|
||
*/
|
||
static fromSeconds(seconds, options = {}) {
|
||
if (!isNumber(seconds)) {
|
||
throw new InvalidArgumentError("fromSeconds requires a numerical input");
|
||
} else {
|
||
return new DateTime({
|
||
ts: seconds * 1e3,
|
||
zone: normalizeZone(options.zone, Settings.defaultZone),
|
||
loc: Locale.fromObject(options)
|
||
});
|
||
}
|
||
}
|
||
/**
|
||
* Create a DateTime from a JavaScript object with keys like 'year' and 'hour' with reasonable defaults.
|
||
* @param {Object} obj - the object to create the DateTime from
|
||
* @param {number} obj.year - a year, such as 1987
|
||
* @param {number} obj.month - a month, 1-12
|
||
* @param {number} obj.day - a day of the month, 1-31, depending on the month
|
||
* @param {number} obj.ordinal - day of the year, 1-365 or 366
|
||
* @param {number} obj.weekYear - an ISO week year
|
||
* @param {number} obj.weekNumber - an ISO week number, between 1 and 52 or 53, depending on the year
|
||
* @param {number} obj.weekday - an ISO weekday, 1-7, where 1 is Monday and 7 is Sunday
|
||
* @param {number} obj.hour - hour of the day, 0-23
|
||
* @param {number} obj.minute - minute of the hour, 0-59
|
||
* @param {number} obj.second - second of the minute, 0-59
|
||
* @param {number} obj.millisecond - millisecond of the second, 0-999
|
||
* @param {Object} opts - options for creating this DateTime
|
||
* @param {string|Zone} [opts.zone='local'] - interpret the numbers in the context of a particular zone. Can take any value taken as the first argument to setZone()
|
||
* @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance
|
||
* @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
|
||
* @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance
|
||
* @example DateTime.fromObject({ year: 1982, month: 5, day: 25}).toISODate() //=> '1982-05-25'
|
||
* @example DateTime.fromObject({ year: 1982 }).toISODate() //=> '1982-01-01'
|
||
* @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }) //~> today at 10:26:06
|
||
* @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'utc' }),
|
||
* @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'local' })
|
||
* @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'America/New_York' })
|
||
* @example DateTime.fromObject({ weekYear: 2016, weekNumber: 2, weekday: 3 }).toISODate() //=> '2016-01-13'
|
||
* @return {DateTime}
|
||
*/
|
||
static fromObject(obj, opts = {}) {
|
||
obj = obj || {};
|
||
const zoneToUse = normalizeZone(opts.zone, Settings.defaultZone);
|
||
if (!zoneToUse.isValid) {
|
||
return DateTime.invalid(unsupportedZone(zoneToUse));
|
||
}
|
||
const tsNow = Settings.now(), offsetProvis = !isUndefined(opts.specificOffset) ? opts.specificOffset : zoneToUse.offset(tsNow), normalized = normalizeObject(obj, normalizeUnit), containsOrdinal = !isUndefined(normalized.ordinal), containsGregorYear = !isUndefined(normalized.year), containsGregorMD = !isUndefined(normalized.month) || !isUndefined(normalized.day), containsGregor = containsGregorYear || containsGregorMD, definiteWeekDef = normalized.weekYear || normalized.weekNumber, loc = Locale.fromObject(opts);
|
||
if ((containsGregor || containsOrdinal) && definiteWeekDef) {
|
||
throw new ConflictingSpecificationError(
|
||
"Can't mix weekYear/weekNumber units with year/month/day or ordinals"
|
||
);
|
||
}
|
||
if (containsGregorMD && containsOrdinal) {
|
||
throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day");
|
||
}
|
||
const useWeekData = definiteWeekDef || normalized.weekday && !containsGregor;
|
||
let units, defaultValues, objNow = tsToObj(tsNow, offsetProvis);
|
||
if (useWeekData) {
|
||
units = orderedWeekUnits;
|
||
defaultValues = defaultWeekUnitValues;
|
||
objNow = gregorianToWeek(objNow);
|
||
} else if (containsOrdinal) {
|
||
units = orderedOrdinalUnits;
|
||
defaultValues = defaultOrdinalUnitValues;
|
||
objNow = gregorianToOrdinal(objNow);
|
||
} else {
|
||
units = orderedUnits;
|
||
defaultValues = defaultUnitValues;
|
||
}
|
||
let foundFirst = false;
|
||
for (const u of units) {
|
||
const v = normalized[u];
|
||
if (!isUndefined(v)) {
|
||
foundFirst = true;
|
||
} else if (foundFirst) {
|
||
normalized[u] = defaultValues[u];
|
||
} else {
|
||
normalized[u] = objNow[u];
|
||
}
|
||
}
|
||
const higherOrderInvalid = useWeekData ? hasInvalidWeekData(normalized) : containsOrdinal ? hasInvalidOrdinalData(normalized) : hasInvalidGregorianData(normalized), invalid = higherOrderInvalid || hasInvalidTimeData(normalized);
|
||
if (invalid) {
|
||
return DateTime.invalid(invalid);
|
||
}
|
||
const gregorian = useWeekData ? weekToGregorian(normalized) : containsOrdinal ? ordinalToGregorian(normalized) : normalized, [tsFinal, offsetFinal] = objToTS(gregorian, offsetProvis, zoneToUse), inst = new DateTime({
|
||
ts: tsFinal,
|
||
zone: zoneToUse,
|
||
o: offsetFinal,
|
||
loc
|
||
});
|
||
if (normalized.weekday && containsGregor && obj.weekday !== inst.weekday) {
|
||
return DateTime.invalid(
|
||
"mismatched weekday",
|
||
`you can't specify both a weekday of ${normalized.weekday} and a date of ${inst.toISO()}`
|
||
);
|
||
}
|
||
return inst;
|
||
}
|
||
/**
|
||
* Create a DateTime from an ISO 8601 string
|
||
* @param {string} text - the ISO string
|
||
* @param {Object} opts - options to affect the creation
|
||
* @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the time to this zone
|
||
* @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one
|
||
* @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance
|
||
* @param {string} [opts.outputCalendar] - the output calendar to set on the resulting DateTime instance
|
||
* @param {string} [opts.numberingSystem] - the numbering system to set on the resulting DateTime instance
|
||
* @example DateTime.fromISO('2016-05-25T09:08:34.123')
|
||
* @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00')
|
||
* @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00', {setZone: true})
|
||
* @example DateTime.fromISO('2016-05-25T09:08:34.123', {zone: 'utc'})
|
||
* @example DateTime.fromISO('2016-W05-4')
|
||
* @return {DateTime}
|
||
*/
|
||
static fromISO(text, opts = {}) {
|
||
const [vals, parsedZone] = parseISODate(text);
|
||
return parseDataToDateTime(vals, parsedZone, opts, "ISO 8601", text);
|
||
}
|
||
/**
|
||
* Create a DateTime from an RFC 2822 string
|
||
* @param {string} text - the RFC 2822 string
|
||
* @param {Object} opts - options to affect the creation
|
||
* @param {string|Zone} [opts.zone='local'] - convert the time to this zone. Since the offset is always specified in the string itself, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in.
|
||
* @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one
|
||
* @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance
|
||
* @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
|
||
* @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance
|
||
* @example DateTime.fromRFC2822('25 Nov 2016 13:23:12 GMT')
|
||
* @example DateTime.fromRFC2822('Fri, 25 Nov 2016 13:23:12 +0600')
|
||
* @example DateTime.fromRFC2822('25 Nov 2016 13:23 Z')
|
||
* @return {DateTime}
|
||
*/
|
||
static fromRFC2822(text, opts = {}) {
|
||
const [vals, parsedZone] = parseRFC2822Date(text);
|
||
return parseDataToDateTime(vals, parsedZone, opts, "RFC 2822", text);
|
||
}
|
||
/**
|
||
* Create a DateTime from an HTTP header date
|
||
* @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1
|
||
* @param {string} text - the HTTP header date
|
||
* @param {Object} opts - options to affect the creation
|
||
* @param {string|Zone} [opts.zone='local'] - convert the time to this zone. Since HTTP dates are always in UTC, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in.
|
||
* @param {boolean} [opts.setZone=false] - override the zone with the fixed-offset zone specified in the string. For HTTP dates, this is always UTC, so this option is equivalent to setting the `zone` option to 'utc', but this option is included for consistency with similar methods.
|
||
* @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance
|
||
* @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
|
||
* @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance
|
||
* @example DateTime.fromHTTP('Sun, 06 Nov 1994 08:49:37 GMT')
|
||
* @example DateTime.fromHTTP('Sunday, 06-Nov-94 08:49:37 GMT')
|
||
* @example DateTime.fromHTTP('Sun Nov 6 08:49:37 1994')
|
||
* @return {DateTime}
|
||
*/
|
||
static fromHTTP(text, opts = {}) {
|
||
const [vals, parsedZone] = parseHTTPDate(text);
|
||
return parseDataToDateTime(vals, parsedZone, opts, "HTTP", opts);
|
||
}
|
||
/**
|
||
* Create a DateTime from an input string and format string.
|
||
* Defaults to en-US if no locale has been specified, regardless of the system's locale. For a table of tokens and their interpretations, see [here](https://moment.github.io/luxon/#/parsing?id=table-of-tokens).
|
||
* @param {string} text - the string to parse
|
||
* @param {string} fmt - the format the string is expected to be in (see the link below for the formats)
|
||
* @param {Object} opts - options to affect the creation
|
||
* @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone
|
||
* @param {boolean} [opts.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one
|
||
* @param {string} [opts.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale
|
||
* @param {string} opts.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system
|
||
* @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
|
||
* @return {DateTime}
|
||
*/
|
||
static fromFormat(text, fmt, opts = {}) {
|
||
if (isUndefined(text) || isUndefined(fmt)) {
|
||
throw new InvalidArgumentError("fromFormat requires an input string and a format");
|
||
}
|
||
const { locale = null, numberingSystem = null } = opts, localeToUse = Locale.fromOpts({
|
||
locale,
|
||
numberingSystem,
|
||
defaultToEN: true
|
||
}), [vals, parsedZone, specificOffset, invalid] = parseFromTokens(localeToUse, text, fmt);
|
||
if (invalid) {
|
||
return DateTime.invalid(invalid);
|
||
} else {
|
||
return parseDataToDateTime(vals, parsedZone, opts, `format ${fmt}`, text, specificOffset);
|
||
}
|
||
}
|
||
/**
|
||
* @deprecated use fromFormat instead
|
||
*/
|
||
static fromString(text, fmt, opts = {}) {
|
||
return DateTime.fromFormat(text, fmt, opts);
|
||
}
|
||
/**
|
||
* Create a DateTime from a SQL date, time, or datetime
|
||
* Defaults to en-US if no locale has been specified, regardless of the system's locale
|
||
* @param {string} text - the string to parse
|
||
* @param {Object} opts - options to affect the creation
|
||
* @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone
|
||
* @param {boolean} [opts.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one
|
||
* @param {string} [opts.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale
|
||
* @param {string} opts.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system
|
||
* @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
|
||
* @example DateTime.fromSQL('2017-05-15')
|
||
* @example DateTime.fromSQL('2017-05-15 09:12:34')
|
||
* @example DateTime.fromSQL('2017-05-15 09:12:34.342')
|
||
* @example DateTime.fromSQL('2017-05-15 09:12:34.342+06:00')
|
||
* @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles')
|
||
* @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles', { setZone: true })
|
||
* @example DateTime.fromSQL('2017-05-15 09:12:34.342', { zone: 'America/Los_Angeles' })
|
||
* @example DateTime.fromSQL('09:12:34.342')
|
||
* @return {DateTime}
|
||
*/
|
||
static fromSQL(text, opts = {}) {
|
||
const [vals, parsedZone] = parseSQL(text);
|
||
return parseDataToDateTime(vals, parsedZone, opts, "SQL", text);
|
||
}
|
||
/**
|
||
* Create an invalid DateTime.
|
||
* @param {DateTime} reason - simple string of why this DateTime is invalid. Should not contain parameters or anything else data-dependent
|
||
* @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information
|
||
* @return {DateTime}
|
||
*/
|
||
static invalid(reason, explanation = null) {
|
||
if (!reason) {
|
||
throw new InvalidArgumentError("need to specify a reason the DateTime is invalid");
|
||
}
|
||
const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation);
|
||
if (Settings.throwOnInvalid) {
|
||
throw new InvalidDateTimeError(invalid);
|
||
} else {
|
||
return new DateTime({ invalid });
|
||
}
|
||
}
|
||
/**
|
||
* Check if an object is an instance of DateTime. Works across context boundaries
|
||
* @param {object} o
|
||
* @return {boolean}
|
||
*/
|
||
static isDateTime(o) {
|
||
return o && o.isLuxonDateTime || false;
|
||
}
|
||
/**
|
||
* Produce the format string for a set of options
|
||
* @param formatOpts
|
||
* @param localeOpts
|
||
* @returns {string}
|
||
*/
|
||
static parseFormatForOpts(formatOpts, localeOpts = {}) {
|
||
const tokenList = formatOptsToTokens(formatOpts, Locale.fromObject(localeOpts));
|
||
return !tokenList ? null : tokenList.map((t) => t ? t.val : null).join("");
|
||
}
|
||
/**
|
||
* Produce the the fully expanded format token for the locale
|
||
* Does NOT quote characters, so quoted tokens will not round trip correctly
|
||
* @param fmt
|
||
* @param localeOpts
|
||
* @returns {string}
|
||
*/
|
||
static expandFormat(fmt, localeOpts = {}) {
|
||
const expanded = expandMacroTokens(Formatter.parseFormat(fmt), Locale.fromObject(localeOpts));
|
||
return expanded.map((t) => t.val).join("");
|
||
}
|
||
// INFO
|
||
/**
|
||
* Get the value of unit.
|
||
* @param {string} unit - a unit such as 'minute' or 'day'
|
||
* @example DateTime.local(2017, 7, 4).get('month'); //=> 7
|
||
* @example DateTime.local(2017, 7, 4).get('day'); //=> 4
|
||
* @return {number}
|
||
*/
|
||
get(unit) {
|
||
return this[unit];
|
||
}
|
||
/**
|
||
* Returns whether the DateTime is valid. Invalid DateTimes occur when:
|
||
* * The DateTime was created from invalid calendar information, such as the 13th month or February 30
|
||
* * The DateTime was created by an operation on another invalid date
|
||
* @type {boolean}
|
||
*/
|
||
get isValid() {
|
||
return this.invalid === null;
|
||
}
|
||
/**
|
||
* Returns an error code if this DateTime is invalid, or null if the DateTime is valid
|
||
* @type {string}
|
||
*/
|
||
get invalidReason() {
|
||
return this.invalid ? this.invalid.reason : null;
|
||
}
|
||
/**
|
||
* Returns an explanation of why this DateTime became invalid, or null if the DateTime is valid
|
||
* @type {string}
|
||
*/
|
||
get invalidExplanation() {
|
||
return this.invalid ? this.invalid.explanation : null;
|
||
}
|
||
/**
|
||
* Get the locale of a DateTime, such 'en-GB'. The locale is used when formatting the DateTime
|
||
*
|
||
* @type {string}
|
||
*/
|
||
get locale() {
|
||
return this.isValid ? this.loc.locale : null;
|
||
}
|
||
/**
|
||
* Get the numbering system of a DateTime, such 'beng'. The numbering system is used when formatting the DateTime
|
||
*
|
||
* @type {string}
|
||
*/
|
||
get numberingSystem() {
|
||
return this.isValid ? this.loc.numberingSystem : null;
|
||
}
|
||
/**
|
||
* Get the output calendar of a DateTime, such 'islamic'. The output calendar is used when formatting the DateTime
|
||
*
|
||
* @type {string}
|
||
*/
|
||
get outputCalendar() {
|
||
return this.isValid ? this.loc.outputCalendar : null;
|
||
}
|
||
/**
|
||
* Get the time zone associated with this DateTime.
|
||
* @type {Zone}
|
||
*/
|
||
get zone() {
|
||
return this._zone;
|
||
}
|
||
/**
|
||
* Get the name of the time zone.
|
||
* @type {string}
|
||
*/
|
||
get zoneName() {
|
||
return this.isValid ? this.zone.name : null;
|
||
}
|
||
/**
|
||
* Get the year
|
||
* @example DateTime.local(2017, 5, 25).year //=> 2017
|
||
* @type {number}
|
||
*/
|
||
get year() {
|
||
return this.isValid ? this.c.year : NaN;
|
||
}
|
||
/**
|
||
* Get the quarter
|
||
* @example DateTime.local(2017, 5, 25).quarter //=> 2
|
||
* @type {number}
|
||
*/
|
||
get quarter() {
|
||
return this.isValid ? Math.ceil(this.c.month / 3) : NaN;
|
||
}
|
||
/**
|
||
* Get the month (1-12).
|
||
* @example DateTime.local(2017, 5, 25).month //=> 5
|
||
* @type {number}
|
||
*/
|
||
get month() {
|
||
return this.isValid ? this.c.month : NaN;
|
||
}
|
||
/**
|
||
* Get the day of the month (1-30ish).
|
||
* @example DateTime.local(2017, 5, 25).day //=> 25
|
||
* @type {number}
|
||
*/
|
||
get day() {
|
||
return this.isValid ? this.c.day : NaN;
|
||
}
|
||
/**
|
||
* Get the hour of the day (0-23).
|
||
* @example DateTime.local(2017, 5, 25, 9).hour //=> 9
|
||
* @type {number}
|
||
*/
|
||
get hour() {
|
||
return this.isValid ? this.c.hour : NaN;
|
||
}
|
||
/**
|
||
* Get the minute of the hour (0-59).
|
||
* @example DateTime.local(2017, 5, 25, 9, 30).minute //=> 30
|
||
* @type {number}
|
||
*/
|
||
get minute() {
|
||
return this.isValid ? this.c.minute : NaN;
|
||
}
|
||
/**
|
||
* Get the second of the minute (0-59).
|
||
* @example DateTime.local(2017, 5, 25, 9, 30, 52).second //=> 52
|
||
* @type {number}
|
||
*/
|
||
get second() {
|
||
return this.isValid ? this.c.second : NaN;
|
||
}
|
||
/**
|
||
* Get the millisecond of the second (0-999).
|
||
* @example DateTime.local(2017, 5, 25, 9, 30, 52, 654).millisecond //=> 654
|
||
* @type {number}
|
||
*/
|
||
get millisecond() {
|
||
return this.isValid ? this.c.millisecond : NaN;
|
||
}
|
||
/**
|
||
* Get the week year
|
||
* @see https://en.wikipedia.org/wiki/ISO_week_date
|
||
* @example DateTime.local(2014, 12, 31).weekYear //=> 2015
|
||
* @type {number}
|
||
*/
|
||
get weekYear() {
|
||
return this.isValid ? possiblyCachedWeekData(this).weekYear : NaN;
|
||
}
|
||
/**
|
||
* Get the week number of the week year (1-52ish).
|
||
* @see https://en.wikipedia.org/wiki/ISO_week_date
|
||
* @example DateTime.local(2017, 5, 25).weekNumber //=> 21
|
||
* @type {number}
|
||
*/
|
||
get weekNumber() {
|
||
return this.isValid ? possiblyCachedWeekData(this).weekNumber : NaN;
|
||
}
|
||
/**
|
||
* Get the day of the week.
|
||
* 1 is Monday and 7 is Sunday
|
||
* @see https://en.wikipedia.org/wiki/ISO_week_date
|
||
* @example DateTime.local(2014, 11, 31).weekday //=> 4
|
||
* @type {number}
|
||
*/
|
||
get weekday() {
|
||
return this.isValid ? possiblyCachedWeekData(this).weekday : NaN;
|
||
}
|
||
/**
|
||
* Get the ordinal (meaning the day of the year)
|
||
* @example DateTime.local(2017, 5, 25).ordinal //=> 145
|
||
* @type {number|DateTime}
|
||
*/
|
||
get ordinal() {
|
||
return this.isValid ? gregorianToOrdinal(this.c).ordinal : NaN;
|
||
}
|
||
/**
|
||
* Get the human readable short month name, such as 'Oct'.
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @example DateTime.local(2017, 10, 30).monthShort //=> Oct
|
||
* @type {string}
|
||
*/
|
||
get monthShort() {
|
||
return this.isValid ? Info.months("short", { locObj: this.loc })[this.month - 1] : null;
|
||
}
|
||
/**
|
||
* Get the human readable long month name, such as 'October'.
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @example DateTime.local(2017, 10, 30).monthLong //=> October
|
||
* @type {string}
|
||
*/
|
||
get monthLong() {
|
||
return this.isValid ? Info.months("long", { locObj: this.loc })[this.month - 1] : null;
|
||
}
|
||
/**
|
||
* Get the human readable short weekday, such as 'Mon'.
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @example DateTime.local(2017, 10, 30).weekdayShort //=> Mon
|
||
* @type {string}
|
||
*/
|
||
get weekdayShort() {
|
||
return this.isValid ? Info.weekdays("short", { locObj: this.loc })[this.weekday - 1] : null;
|
||
}
|
||
/**
|
||
* Get the human readable long weekday, such as 'Monday'.
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @example DateTime.local(2017, 10, 30).weekdayLong //=> Monday
|
||
* @type {string}
|
||
*/
|
||
get weekdayLong() {
|
||
return this.isValid ? Info.weekdays("long", { locObj: this.loc })[this.weekday - 1] : null;
|
||
}
|
||
/**
|
||
* Get the UTC offset of this DateTime in minutes
|
||
* @example DateTime.now().offset //=> -240
|
||
* @example DateTime.utc().offset //=> 0
|
||
* @type {number}
|
||
*/
|
||
get offset() {
|
||
return this.isValid ? +this.o : NaN;
|
||
}
|
||
/**
|
||
* Get the short human name for the zone's current offset, for example "EST" or "EDT".
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @type {string}
|
||
*/
|
||
get offsetNameShort() {
|
||
if (this.isValid) {
|
||
return this.zone.offsetName(this.ts, {
|
||
format: "short",
|
||
locale: this.locale
|
||
});
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
/**
|
||
* Get the long human name for the zone's current offset, for example "Eastern Standard Time" or "Eastern Daylight Time".
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @type {string}
|
||
*/
|
||
get offsetNameLong() {
|
||
if (this.isValid) {
|
||
return this.zone.offsetName(this.ts, {
|
||
format: "long",
|
||
locale: this.locale
|
||
});
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
/**
|
||
* Get whether this zone's offset ever changes, as in a DST.
|
||
* @type {boolean}
|
||
*/
|
||
get isOffsetFixed() {
|
||
return this.isValid ? this.zone.isUniversal : null;
|
||
}
|
||
/**
|
||
* Get whether the DateTime is in a DST.
|
||
* @type {boolean}
|
||
*/
|
||
get isInDST() {
|
||
if (this.isOffsetFixed) {
|
||
return false;
|
||
} else {
|
||
return this.offset > this.set({ month: 1, day: 1 }).offset || this.offset > this.set({ month: 5 }).offset;
|
||
}
|
||
}
|
||
/**
|
||
* Returns true if this DateTime is in a leap year, false otherwise
|
||
* @example DateTime.local(2016).isInLeapYear //=> true
|
||
* @example DateTime.local(2013).isInLeapYear //=> false
|
||
* @type {boolean}
|
||
*/
|
||
get isInLeapYear() {
|
||
return isLeapYear(this.year);
|
||
}
|
||
/**
|
||
* Returns the number of days in this DateTime's month
|
||
* @example DateTime.local(2016, 2).daysInMonth //=> 29
|
||
* @example DateTime.local(2016, 3).daysInMonth //=> 31
|
||
* @type {number}
|
||
*/
|
||
get daysInMonth() {
|
||
return daysInMonth(this.year, this.month);
|
||
}
|
||
/**
|
||
* Returns the number of days in this DateTime's year
|
||
* @example DateTime.local(2016).daysInYear //=> 366
|
||
* @example DateTime.local(2013).daysInYear //=> 365
|
||
* @type {number}
|
||
*/
|
||
get daysInYear() {
|
||
return this.isValid ? daysInYear(this.year) : NaN;
|
||
}
|
||
/**
|
||
* Returns the number of weeks in this DateTime's year
|
||
* @see https://en.wikipedia.org/wiki/ISO_week_date
|
||
* @example DateTime.local(2004).weeksInWeekYear //=> 53
|
||
* @example DateTime.local(2013).weeksInWeekYear //=> 52
|
||
* @type {number}
|
||
*/
|
||
get weeksInWeekYear() {
|
||
return this.isValid ? weeksInWeekYear(this.weekYear) : NaN;
|
||
}
|
||
/**
|
||
* Returns the resolved Intl options for this DateTime.
|
||
* This is useful in understanding the behavior of formatting methods
|
||
* @param {Object} opts - the same options as toLocaleString
|
||
* @return {Object}
|
||
*/
|
||
resolvedLocaleOptions(opts = {}) {
|
||
const { locale, numberingSystem, calendar } = Formatter.create(
|
||
this.loc.clone(opts),
|
||
opts
|
||
).resolvedOptions(this);
|
||
return { locale, numberingSystem, outputCalendar: calendar };
|
||
}
|
||
// TRANSFORM
|
||
/**
|
||
* "Set" the DateTime's zone to UTC. Returns a newly-constructed DateTime.
|
||
*
|
||
* Equivalent to {@link DateTime#setZone}('utc')
|
||
* @param {number} [offset=0] - optionally, an offset from UTC in minutes
|
||
* @param {Object} [opts={}] - options to pass to `setZone()`
|
||
* @return {DateTime}
|
||
*/
|
||
toUTC(offset2 = 0, opts = {}) {
|
||
return this.setZone(FixedOffsetZone.instance(offset2), opts);
|
||
}
|
||
/**
|
||
* "Set" the DateTime's zone to the host's local zone. Returns a newly-constructed DateTime.
|
||
*
|
||
* Equivalent to `setZone('local')`
|
||
* @return {DateTime}
|
||
*/
|
||
toLocal() {
|
||
return this.setZone(Settings.defaultZone);
|
||
}
|
||
/**
|
||
* "Set" the DateTime's zone to specified zone. Returns a newly-constructed DateTime.
|
||
*
|
||
* By default, the setter keeps the underlying time the same (as in, the same timestamp), but the new instance will report different local times and consider DSTs when making computations, as with {@link DateTime#plus}. You may wish to use {@link DateTime#toLocal} and {@link DateTime#toUTC} which provide simple convenience wrappers for commonly used zones.
|
||
* @param {string|Zone} [zone='local'] - a zone identifier. As a string, that can be any IANA zone supported by the host environment, or a fixed-offset name of the form 'UTC+3', or the strings 'local' or 'utc'. You may also supply an instance of a {@link DateTime#Zone} class.
|
||
* @param {Object} opts - options
|
||
* @param {boolean} [opts.keepLocalTime=false] - If true, adjust the underlying time so that the local time stays the same, but in the target zone. You should rarely need this.
|
||
* @return {DateTime}
|
||
*/
|
||
setZone(zone, { keepLocalTime = false, keepCalendarTime = false } = {}) {
|
||
zone = normalizeZone(zone, Settings.defaultZone);
|
||
if (zone.equals(this.zone)) {
|
||
return this;
|
||
} else if (!zone.isValid) {
|
||
return DateTime.invalid(unsupportedZone(zone));
|
||
} else {
|
||
let newTS = this.ts;
|
||
if (keepLocalTime || keepCalendarTime) {
|
||
const offsetGuess = zone.offset(this.ts);
|
||
const asObj = this.toObject();
|
||
[newTS] = objToTS(asObj, offsetGuess, zone);
|
||
}
|
||
return clone(this, { ts: newTS, zone });
|
||
}
|
||
}
|
||
/**
|
||
* "Set" the locale, numberingSystem, or outputCalendar. Returns a newly-constructed DateTime.
|
||
* @param {Object} properties - the properties to set
|
||
* @example DateTime.local(2017, 5, 25).reconfigure({ locale: 'en-GB' })
|
||
* @return {DateTime}
|
||
*/
|
||
reconfigure({ locale, numberingSystem, outputCalendar } = {}) {
|
||
const loc = this.loc.clone({ locale, numberingSystem, outputCalendar });
|
||
return clone(this, { loc });
|
||
}
|
||
/**
|
||
* "Set" the locale. Returns a newly-constructed DateTime.
|
||
* Just a convenient alias for reconfigure({ locale })
|
||
* @example DateTime.local(2017, 5, 25).setLocale('en-GB')
|
||
* @return {DateTime}
|
||
*/
|
||
setLocale(locale) {
|
||
return this.reconfigure({ locale });
|
||
}
|
||
/**
|
||
* "Set" the values of specified units. Returns a newly-constructed DateTime.
|
||
* You can only set units with this method; for "setting" metadata, see {@link DateTime#reconfigure} and {@link DateTime#setZone}.
|
||
* @param {Object} values - a mapping of units to numbers
|
||
* @example dt.set({ year: 2017 })
|
||
* @example dt.set({ hour: 8, minute: 30 })
|
||
* @example dt.set({ weekday: 5 })
|
||
* @example dt.set({ year: 2005, ordinal: 234 })
|
||
* @return {DateTime}
|
||
*/
|
||
set(values) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const normalized = normalizeObject(values, normalizeUnit), settingWeekStuff = !isUndefined(normalized.weekYear) || !isUndefined(normalized.weekNumber) || !isUndefined(normalized.weekday), containsOrdinal = !isUndefined(normalized.ordinal), containsGregorYear = !isUndefined(normalized.year), containsGregorMD = !isUndefined(normalized.month) || !isUndefined(normalized.day), containsGregor = containsGregorYear || containsGregorMD, definiteWeekDef = normalized.weekYear || normalized.weekNumber;
|
||
if ((containsGregor || containsOrdinal) && definiteWeekDef) {
|
||
throw new ConflictingSpecificationError(
|
||
"Can't mix weekYear/weekNumber units with year/month/day or ordinals"
|
||
);
|
||
}
|
||
if (containsGregorMD && containsOrdinal) {
|
||
throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day");
|
||
}
|
||
let mixed;
|
||
if (settingWeekStuff) {
|
||
mixed = weekToGregorian({ ...gregorianToWeek(this.c), ...normalized });
|
||
} else if (!isUndefined(normalized.ordinal)) {
|
||
mixed = ordinalToGregorian({ ...gregorianToOrdinal(this.c), ...normalized });
|
||
} else {
|
||
mixed = { ...this.toObject(), ...normalized };
|
||
if (isUndefined(normalized.day)) {
|
||
mixed.day = Math.min(daysInMonth(mixed.year, mixed.month), mixed.day);
|
||
}
|
||
}
|
||
const [ts, o] = objToTS(mixed, this.o, this.zone);
|
||
return clone(this, { ts, o });
|
||
}
|
||
/**
|
||
* Add a period of time to this DateTime and return the resulting DateTime
|
||
*
|
||
* Adding hours, minutes, seconds, or milliseconds increases the timestamp by the right number of milliseconds. Adding days, months, or years shifts the calendar, accounting for DSTs and leap years along the way. Thus, `dt.plus({ hours: 24 })` may result in a different time than `dt.plus({ days: 1 })` if there's a DST shift in between.
|
||
* @param {Duration|Object|number} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()
|
||
* @example DateTime.now().plus(123) //~> in 123 milliseconds
|
||
* @example DateTime.now().plus({ minutes: 15 }) //~> in 15 minutes
|
||
* @example DateTime.now().plus({ days: 1 }) //~> this time tomorrow
|
||
* @example DateTime.now().plus({ days: -1 }) //~> this time yesterday
|
||
* @example DateTime.now().plus({ hours: 3, minutes: 13 }) //~> in 3 hr, 13 min
|
||
* @example DateTime.now().plus(Duration.fromObject({ hours: 3, minutes: 13 })) //~> in 3 hr, 13 min
|
||
* @return {DateTime}
|
||
*/
|
||
plus(duration) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const dur = Duration.fromDurationLike(duration);
|
||
return clone(this, adjustTime(this, dur));
|
||
}
|
||
/**
|
||
* Subtract a period of time to this DateTime and return the resulting DateTime
|
||
* See {@link DateTime#plus}
|
||
* @param {Duration|Object|number} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()
|
||
@return {DateTime}
|
||
*/
|
||
minus(duration) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const dur = Duration.fromDurationLike(duration).negate();
|
||
return clone(this, adjustTime(this, dur));
|
||
}
|
||
/**
|
||
* "Set" this DateTime to the beginning of a unit of time.
|
||
* @param {string} unit - The unit to go to the beginning of. Can be 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', or 'millisecond'.
|
||
* @example DateTime.local(2014, 3, 3).startOf('month').toISODate(); //=> '2014-03-01'
|
||
* @example DateTime.local(2014, 3, 3).startOf('year').toISODate(); //=> '2014-01-01'
|
||
* @example DateTime.local(2014, 3, 3).startOf('week').toISODate(); //=> '2014-03-03', weeks always start on Mondays
|
||
* @example DateTime.local(2014, 3, 3, 5, 30).startOf('day').toISOTime(); //=> '00:00.000-05:00'
|
||
* @example DateTime.local(2014, 3, 3, 5, 30).startOf('hour').toISOTime(); //=> '05:00:00.000-05:00'
|
||
* @return {DateTime}
|
||
*/
|
||
startOf(unit) {
|
||
if (!this.isValid)
|
||
return this;
|
||
const o = {}, normalizedUnit = Duration.normalizeUnit(unit);
|
||
switch (normalizedUnit) {
|
||
case "years":
|
||
o.month = 1;
|
||
case "quarters":
|
||
case "months":
|
||
o.day = 1;
|
||
case "weeks":
|
||
case "days":
|
||
o.hour = 0;
|
||
case "hours":
|
||
o.minute = 0;
|
||
case "minutes":
|
||
o.second = 0;
|
||
case "seconds":
|
||
o.millisecond = 0;
|
||
break;
|
||
}
|
||
if (normalizedUnit === "weeks") {
|
||
o.weekday = 1;
|
||
}
|
||
if (normalizedUnit === "quarters") {
|
||
const q = Math.ceil(this.month / 3);
|
||
o.month = (q - 1) * 3 + 1;
|
||
}
|
||
return this.set(o);
|
||
}
|
||
/**
|
||
* "Set" this DateTime to the end (meaning the last millisecond) of a unit of time
|
||
* @param {string} unit - The unit to go to the end of. Can be 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', or 'millisecond'.
|
||
* @example DateTime.local(2014, 3, 3).endOf('month').toISO(); //=> '2014-03-31T23:59:59.999-05:00'
|
||
* @example DateTime.local(2014, 3, 3).endOf('year').toISO(); //=> '2014-12-31T23:59:59.999-05:00'
|
||
* @example DateTime.local(2014, 3, 3).endOf('week').toISO(); // => '2014-03-09T23:59:59.999-05:00', weeks start on Mondays
|
||
* @example DateTime.local(2014, 3, 3, 5, 30).endOf('day').toISO(); //=> '2014-03-03T23:59:59.999-05:00'
|
||
* @example DateTime.local(2014, 3, 3, 5, 30).endOf('hour').toISO(); //=> '2014-03-03T05:59:59.999-05:00'
|
||
* @return {DateTime}
|
||
*/
|
||
endOf(unit) {
|
||
return this.isValid ? this.plus({ [unit]: 1 }).startOf(unit).minus(1) : this;
|
||
}
|
||
// OUTPUT
|
||
/**
|
||
* Returns a string representation of this DateTime formatted according to the specified format string.
|
||
* **You may not want this.** See {@link DateTime#toLocaleString} for a more flexible formatting tool. For a table of tokens and their interpretations, see [here](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).
|
||
* Defaults to en-US if no locale has been specified, regardless of the system's locale.
|
||
* @param {string} fmt - the format string
|
||
* @param {Object} opts - opts to override the configuration options on this DateTime
|
||
* @example DateTime.now().toFormat('yyyy LLL dd') //=> '2017 Apr 22'
|
||
* @example DateTime.now().setLocale('fr').toFormat('yyyy LLL dd') //=> '2017 avr. 22'
|
||
* @example DateTime.now().toFormat('yyyy LLL dd', { locale: "fr" }) //=> '2017 avr. 22'
|
||
* @example DateTime.now().toFormat("HH 'hours and' mm 'minutes'") //=> '20 hours and 55 minutes'
|
||
* @return {string}
|
||
*/
|
||
toFormat(fmt, opts = {}) {
|
||
return this.isValid ? Formatter.create(this.loc.redefaultToEN(opts)).formatDateTimeFromString(this, fmt) : INVALID;
|
||
}
|
||
/**
|
||
* Returns a localized string representing this date. Accepts the same options as the Intl.DateTimeFormat constructor and any presets defined by Luxon, such as `DateTime.DATE_FULL` or `DateTime.TIME_SIMPLE`.
|
||
* The exact behavior of this method is browser-specific, but in general it will return an appropriate representation
|
||
* of the DateTime in the assigned locale.
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat
|
||
* @param formatOpts {Object} - Intl.DateTimeFormat constructor options and configuration options
|
||
* @param {Object} opts - opts to override the configuration options on this DateTime
|
||
* @example DateTime.now().toLocaleString(); //=> 4/20/2017
|
||
* @example DateTime.now().setLocale('en-gb').toLocaleString(); //=> '20/04/2017'
|
||
* @example DateTime.now().toLocaleString(DateTime.DATE_FULL); //=> 'April 20, 2017'
|
||
* @example DateTime.now().toLocaleString(DateTime.DATE_FULL, { locale: 'fr' }); //=> '28 août 2022'
|
||
* @example DateTime.now().toLocaleString(DateTime.TIME_SIMPLE); //=> '11:32 AM'
|
||
* @example DateTime.now().toLocaleString(DateTime.DATETIME_SHORT); //=> '4/20/2017, 11:32 AM'
|
||
* @example DateTime.now().toLocaleString({ weekday: 'long', month: 'long', day: '2-digit' }); //=> 'Thursday, April 20'
|
||
* @example DateTime.now().toLocaleString({ weekday: 'short', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' }); //=> 'Thu, Apr 20, 11:27 AM'
|
||
* @example DateTime.now().toLocaleString({ hour: '2-digit', minute: '2-digit', hourCycle: 'h23' }); //=> '11:32'
|
||
* @return {string}
|
||
*/
|
||
toLocaleString(formatOpts = DATE_SHORT, opts = {}) {
|
||
return this.isValid ? Formatter.create(this.loc.clone(opts), formatOpts).formatDateTime(this) : INVALID;
|
||
}
|
||
/**
|
||
* Returns an array of format "parts", meaning individual tokens along with metadata. This is allows callers to post-process individual sections of the formatted output.
|
||
* Defaults to the system's locale if no locale has been specified
|
||
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat/formatToParts
|
||
* @param opts {Object} - Intl.DateTimeFormat constructor options, same as `toLocaleString`.
|
||
* @example DateTime.now().toLocaleParts(); //=> [
|
||
* //=> { type: 'day', value: '25' },
|
||
* //=> { type: 'literal', value: '/' },
|
||
* //=> { type: 'month', value: '05' },
|
||
* //=> { type: 'literal', value: '/' },
|
||
* //=> { type: 'year', value: '1982' }
|
||
* //=> ]
|
||
*/
|
||
toLocaleParts(opts = {}) {
|
||
return this.isValid ? Formatter.create(this.loc.clone(opts), opts).formatDateTimeParts(this) : [];
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of this DateTime
|
||
* @param {Object} opts - options
|
||
* @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0
|
||
* @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0
|
||
* @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
|
||
* @param {boolean} [opts.extendedZone=false] - add the time zone format extension
|
||
* @param {string} [opts.format='extended'] - choose between the basic and extended format
|
||
* @example DateTime.utc(1983, 5, 25).toISO() //=> '1982-05-25T00:00:00.000Z'
|
||
* @example DateTime.now().toISO() //=> '2017-04-22T20:47:05.335-04:00'
|
||
* @example DateTime.now().toISO({ includeOffset: false }) //=> '2017-04-22T20:47:05.335'
|
||
* @example DateTime.now().toISO({ format: 'basic' }) //=> '20170422T204705.335-0400'
|
||
* @return {string}
|
||
*/
|
||
toISO({
|
||
format = "extended",
|
||
suppressSeconds = false,
|
||
suppressMilliseconds = false,
|
||
includeOffset = true,
|
||
extendedZone = false
|
||
} = {}) {
|
||
if (!this.isValid) {
|
||
return null;
|
||
}
|
||
const ext = format === "extended";
|
||
let c = toISODate(this, ext);
|
||
c += "T";
|
||
c += toISOTime(this, ext, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone);
|
||
return c;
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of this DateTime's date component
|
||
* @param {Object} opts - options
|
||
* @param {string} [opts.format='extended'] - choose between the basic and extended format
|
||
* @example DateTime.utc(1982, 5, 25).toISODate() //=> '1982-05-25'
|
||
* @example DateTime.utc(1982, 5, 25).toISODate({ format: 'basic' }) //=> '19820525'
|
||
* @return {string}
|
||
*/
|
||
toISODate({ format = "extended" } = {}) {
|
||
if (!this.isValid) {
|
||
return null;
|
||
}
|
||
return toISODate(this, format === "extended");
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of this DateTime's week date
|
||
* @example DateTime.utc(1982, 5, 25).toISOWeekDate() //=> '1982-W21-2'
|
||
* @return {string}
|
||
*/
|
||
toISOWeekDate() {
|
||
return toTechFormat(this, "kkkk-'W'WW-c");
|
||
}
|
||
/**
|
||
* Returns an ISO 8601-compliant string representation of this DateTime's time component
|
||
* @param {Object} opts - options
|
||
* @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0
|
||
* @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0
|
||
* @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
|
||
* @param {boolean} [opts.extendedZone=true] - add the time zone format extension
|
||
* @param {boolean} [opts.includePrefix=false] - include the `T` prefix
|
||
* @param {string} [opts.format='extended'] - choose between the basic and extended format
|
||
* @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime() //=> '07:34:19.361Z'
|
||
* @example DateTime.utc().set({ hour: 7, minute: 34, seconds: 0, milliseconds: 0 }).toISOTime({ suppressSeconds: true }) //=> '07:34Z'
|
||
* @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime({ format: 'basic' }) //=> '073419.361Z'
|
||
* @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime({ includePrefix: true }) //=> 'T07:34:19.361Z'
|
||
* @return {string}
|
||
*/
|
||
toISOTime({
|
||
suppressMilliseconds = false,
|
||
suppressSeconds = false,
|
||
includeOffset = true,
|
||
includePrefix = false,
|
||
extendedZone = false,
|
||
format = "extended"
|
||
} = {}) {
|
||
if (!this.isValid) {
|
||
return null;
|
||
}
|
||
let c = includePrefix ? "T" : "";
|
||
return c + toISOTime(
|
||
this,
|
||
format === "extended",
|
||
suppressSeconds,
|
||
suppressMilliseconds,
|
||
includeOffset,
|
||
extendedZone
|
||
);
|
||
}
|
||
/**
|
||
* Returns an RFC 2822-compatible string representation of this DateTime
|
||
* @example DateTime.utc(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 +0000'
|
||
* @example DateTime.local(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 -0400'
|
||
* @return {string}
|
||
*/
|
||
toRFC2822() {
|
||
return toTechFormat(this, "EEE, dd LLL yyyy HH:mm:ss ZZZ", false);
|
||
}
|
||
/**
|
||
* Returns a string representation of this DateTime appropriate for use in HTTP headers. The output is always expressed in GMT.
|
||
* Specifically, the string conforms to RFC 1123.
|
||
* @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1
|
||
* @example DateTime.utc(2014, 7, 13).toHTTP() //=> 'Sun, 13 Jul 2014 00:00:00 GMT'
|
||
* @example DateTime.utc(2014, 7, 13, 19).toHTTP() //=> 'Sun, 13 Jul 2014 19:00:00 GMT'
|
||
* @return {string}
|
||
*/
|
||
toHTTP() {
|
||
return toTechFormat(this.toUTC(), "EEE, dd LLL yyyy HH:mm:ss 'GMT'");
|
||
}
|
||
/**
|
||
* Returns a string representation of this DateTime appropriate for use in SQL Date
|
||
* @example DateTime.utc(2014, 7, 13).toSQLDate() //=> '2014-07-13'
|
||
* @return {string}
|
||
*/
|
||
toSQLDate() {
|
||
if (!this.isValid) {
|
||
return null;
|
||
}
|
||
return toISODate(this, true);
|
||
}
|
||
/**
|
||
* Returns a string representation of this DateTime appropriate for use in SQL Time
|
||
* @param {Object} opts - options
|
||
* @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overrides includeOffset.
|
||
* @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
|
||
* @param {boolean} [opts.includeOffsetSpace=true] - include the space between the time and the offset, such as '05:15:16.345 -04:00'
|
||
* @example DateTime.utc().toSQL() //=> '05:15:16.345'
|
||
* @example DateTime.now().toSQL() //=> '05:15:16.345 -04:00'
|
||
* @example DateTime.now().toSQL({ includeOffset: false }) //=> '05:15:16.345'
|
||
* @example DateTime.now().toSQL({ includeZone: false }) //=> '05:15:16.345 America/New_York'
|
||
* @return {string}
|
||
*/
|
||
toSQLTime({ includeOffset = true, includeZone = false, includeOffsetSpace = true } = {}) {
|
||
let fmt = "HH:mm:ss.SSS";
|
||
if (includeZone || includeOffset) {
|
||
if (includeOffsetSpace) {
|
||
fmt += " ";
|
||
}
|
||
if (includeZone) {
|
||
fmt += "z";
|
||
} else if (includeOffset) {
|
||
fmt += "ZZ";
|
||
}
|
||
}
|
||
return toTechFormat(this, fmt, true);
|
||
}
|
||
/**
|
||
* Returns a string representation of this DateTime appropriate for use in SQL DateTime
|
||
* @param {Object} opts - options
|
||
* @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overrides includeOffset.
|
||
* @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
|
||
* @param {boolean} [opts.includeOffsetSpace=true] - include the space between the time and the offset, such as '05:15:16.345 -04:00'
|
||
* @example DateTime.utc(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 Z'
|
||
* @example DateTime.local(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 -04:00'
|
||
* @example DateTime.local(2014, 7, 13).toSQL({ includeOffset: false }) //=> '2014-07-13 00:00:00.000'
|
||
* @example DateTime.local(2014, 7, 13).toSQL({ includeZone: true }) //=> '2014-07-13 00:00:00.000 America/New_York'
|
||
* @return {string}
|
||
*/
|
||
toSQL(opts = {}) {
|
||
if (!this.isValid) {
|
||
return null;
|
||
}
|
||
return `${this.toSQLDate()} ${this.toSQLTime(opts)}`;
|
||
}
|
||
/**
|
||
* Returns a string representation of this DateTime appropriate for debugging
|
||
* @return {string}
|
||
*/
|
||
toString() {
|
||
return this.isValid ? this.toISO() : INVALID;
|
||
}
|
||
/**
|
||
* Returns the epoch milliseconds of this DateTime. Alias of {@link DateTime#toMillis}
|
||
* @return {number}
|
||
*/
|
||
valueOf() {
|
||
return this.toMillis();
|
||
}
|
||
/**
|
||
* Returns the epoch milliseconds of this DateTime.
|
||
* @return {number}
|
||
*/
|
||
toMillis() {
|
||
return this.isValid ? this.ts : NaN;
|
||
}
|
||
/**
|
||
* Returns the epoch seconds of this DateTime.
|
||
* @return {number}
|
||
*/
|
||
toSeconds() {
|
||
return this.isValid ? this.ts / 1e3 : NaN;
|
||
}
|
||
/**
|
||
* Returns the epoch seconds (as a whole number) of this DateTime.
|
||
* @return {number}
|
||
*/
|
||
toUnixInteger() {
|
||
return this.isValid ? Math.floor(this.ts / 1e3) : NaN;
|
||
}
|
||
/**
|
||
* Returns an ISO 8601 representation of this DateTime appropriate for use in JSON.
|
||
* @return {string}
|
||
*/
|
||
toJSON() {
|
||
return this.toISO();
|
||
}
|
||
/**
|
||
* Returns a BSON serializable equivalent to this DateTime.
|
||
* @return {Date}
|
||
*/
|
||
toBSON() {
|
||
return this.toJSDate();
|
||
}
|
||
/**
|
||
* Returns a JavaScript object with this DateTime's year, month, day, and so on.
|
||
* @param opts - options for generating the object
|
||
* @param {boolean} [opts.includeConfig=false] - include configuration attributes in the output
|
||
* @example DateTime.now().toObject() //=> { year: 2017, month: 4, day: 22, hour: 20, minute: 49, second: 42, millisecond: 268 }
|
||
* @return {Object}
|
||
*/
|
||
toObject(opts = {}) {
|
||
if (!this.isValid)
|
||
return {};
|
||
const base = { ...this.c };
|
||
if (opts.includeConfig) {
|
||
base.outputCalendar = this.outputCalendar;
|
||
base.numberingSystem = this.loc.numberingSystem;
|
||
base.locale = this.loc.locale;
|
||
}
|
||
return base;
|
||
}
|
||
/**
|
||
* Returns a JavaScript Date equivalent to this DateTime.
|
||
* @return {Date}
|
||
*/
|
||
toJSDate() {
|
||
return new Date(this.isValid ? this.ts : NaN);
|
||
}
|
||
// COMPARE
|
||
/**
|
||
* Return the difference between two DateTimes as a Duration.
|
||
* @param {DateTime} otherDateTime - the DateTime to compare this one to
|
||
* @param {string|string[]} [unit=['milliseconds']] - the unit or array of units (such as 'hours' or 'days') to include in the duration.
|
||
* @param {Object} opts - options that affect the creation of the Duration
|
||
* @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use
|
||
* @example
|
||
* var i1 = DateTime.fromISO('1982-05-25T09:45'),
|
||
* i2 = DateTime.fromISO('1983-10-14T10:30');
|
||
* i2.diff(i1).toObject() //=> { milliseconds: 43807500000 }
|
||
* i2.diff(i1, 'hours').toObject() //=> { hours: 12168.75 }
|
||
* i2.diff(i1, ['months', 'days']).toObject() //=> { months: 16, days: 19.03125 }
|
||
* i2.diff(i1, ['months', 'days', 'hours']).toObject() //=> { months: 16, days: 19, hours: 0.75 }
|
||
* @return {Duration}
|
||
*/
|
||
diff(otherDateTime, unit = "milliseconds", opts = {}) {
|
||
if (!this.isValid || !otherDateTime.isValid) {
|
||
return Duration.invalid("created by diffing an invalid DateTime");
|
||
}
|
||
const durOpts = { locale: this.locale, numberingSystem: this.numberingSystem, ...opts };
|
||
const units = maybeArray(unit).map(Duration.normalizeUnit), otherIsLater = otherDateTime.valueOf() > this.valueOf(), earlier = otherIsLater ? this : otherDateTime, later = otherIsLater ? otherDateTime : this, diffed = diff(earlier, later, units, durOpts);
|
||
return otherIsLater ? diffed.negate() : diffed;
|
||
}
|
||
/**
|
||
* Return the difference between this DateTime and right now.
|
||
* See {@link DateTime#diff}
|
||
* @param {string|string[]} [unit=['milliseconds']] - the unit or units units (such as 'hours' or 'days') to include in the duration
|
||
* @param {Object} opts - options that affect the creation of the Duration
|
||
* @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use
|
||
* @return {Duration}
|
||
*/
|
||
diffNow(unit = "milliseconds", opts = {}) {
|
||
return this.diff(DateTime.now(), unit, opts);
|
||
}
|
||
/**
|
||
* Return an Interval spanning between this DateTime and another DateTime
|
||
* @param {DateTime} otherDateTime - the other end point of the Interval
|
||
* @return {Interval}
|
||
*/
|
||
until(otherDateTime) {
|
||
return this.isValid ? Interval.fromDateTimes(this, otherDateTime) : this;
|
||
}
|
||
/**
|
||
* Return whether this DateTime is in the same unit of time as another DateTime.
|
||
* Higher-order units must also be identical for this function to return `true`.
|
||
* Note that time zones are **ignored** in this comparison, which compares the **local** calendar time. Use {@link DateTime#setZone} to convert one of the dates if needed.
|
||
* @param {DateTime} otherDateTime - the other DateTime
|
||
* @param {string} unit - the unit of time to check sameness on
|
||
* @example DateTime.now().hasSame(otherDT, 'day'); //~> true if otherDT is in the same current calendar day
|
||
* @return {boolean}
|
||
*/
|
||
hasSame(otherDateTime, unit) {
|
||
if (!this.isValid)
|
||
return false;
|
||
const inputMs = otherDateTime.valueOf();
|
||
const adjustedToZone = this.setZone(otherDateTime.zone, { keepLocalTime: true });
|
||
return adjustedToZone.startOf(unit) <= inputMs && inputMs <= adjustedToZone.endOf(unit);
|
||
}
|
||
/**
|
||
* Equality check
|
||
* Two DateTimes are equal if and only if they represent the same millisecond, have the same zone and location, and are both valid.
|
||
* To compare just the millisecond values, use `+dt1 === +dt2`.
|
||
* @param {DateTime} other - the other DateTime
|
||
* @return {boolean}
|
||
*/
|
||
equals(other) {
|
||
return this.isValid && other.isValid && this.valueOf() === other.valueOf() && this.zone.equals(other.zone) && this.loc.equals(other.loc);
|
||
}
|
||
/**
|
||
* Returns a string representation of a this time relative to now, such as "in two days". Can only internationalize if your
|
||
* platform supports Intl.RelativeTimeFormat. Rounds down by default.
|
||
* @param {Object} options - options that affect the output
|
||
* @param {DateTime} [options.base=DateTime.now()] - the DateTime to use as the basis to which this time is compared. Defaults to now.
|
||
* @param {string} [options.style="long"] - the style of units, must be "long", "short", or "narrow"
|
||
* @param {string|string[]} options.unit - use a specific unit or array of units; if omitted, or an array, the method will pick the best unit. Use an array or one of "years", "quarters", "months", "weeks", "days", "hours", "minutes", or "seconds"
|
||
* @param {boolean} [options.round=true] - whether to round the numbers in the output.
|
||
* @param {number} [options.padding=0] - padding in milliseconds. This allows you to round up the result if it fits inside the threshold. Don't use in combination with {round: false} because the decimal output will include the padding.
|
||
* @param {string} options.locale - override the locale of this DateTime
|
||
* @param {string} options.numberingSystem - override the numberingSystem of this DateTime. The Intl system may choose not to honor this
|
||
* @example DateTime.now().plus({ days: 1 }).toRelative() //=> "in 1 day"
|
||
* @example DateTime.now().setLocale("es").toRelative({ days: 1 }) //=> "dentro de 1 día"
|
||
* @example DateTime.now().plus({ days: 1 }).toRelative({ locale: "fr" }) //=> "dans 23 heures"
|
||
* @example DateTime.now().minus({ days: 2 }).toRelative() //=> "2 days ago"
|
||
* @example DateTime.now().minus({ days: 2 }).toRelative({ unit: "hours" }) //=> "48 hours ago"
|
||
* @example DateTime.now().minus({ hours: 36 }).toRelative({ round: false }) //=> "1.5 days ago"
|
||
*/
|
||
toRelative(options = {}) {
|
||
if (!this.isValid)
|
||
return null;
|
||
const base = options.base || DateTime.fromObject({}, { zone: this.zone }), padding = options.padding ? this < base ? -options.padding : options.padding : 0;
|
||
let units = ["years", "months", "days", "hours", "minutes", "seconds"];
|
||
let unit = options.unit;
|
||
if (Array.isArray(options.unit)) {
|
||
units = options.unit;
|
||
unit = void 0;
|
||
}
|
||
return diffRelative(base, this.plus(padding), {
|
||
...options,
|
||
numeric: "always",
|
||
units,
|
||
unit
|
||
});
|
||
}
|
||
/**
|
||
* Returns a string representation of this date relative to today, such as "yesterday" or "next month".
|
||
* Only internationalizes on platforms that supports Intl.RelativeTimeFormat.
|
||
* @param {Object} options - options that affect the output
|
||
* @param {DateTime} [options.base=DateTime.now()] - the DateTime to use as the basis to which this time is compared. Defaults to now.
|
||
* @param {string} options.locale - override the locale of this DateTime
|
||
* @param {string} options.unit - use a specific unit; if omitted, the method will pick the unit. Use one of "years", "quarters", "months", "weeks", or "days"
|
||
* @param {string} options.numberingSystem - override the numberingSystem of this DateTime. The Intl system may choose not to honor this
|
||
* @example DateTime.now().plus({ days: 1 }).toRelativeCalendar() //=> "tomorrow"
|
||
* @example DateTime.now().setLocale("es").plus({ days: 1 }).toRelative() //=> ""mañana"
|
||
* @example DateTime.now().plus({ days: 1 }).toRelativeCalendar({ locale: "fr" }) //=> "demain"
|
||
* @example DateTime.now().minus({ days: 2 }).toRelativeCalendar() //=> "2 days ago"
|
||
*/
|
||
toRelativeCalendar(options = {}) {
|
||
if (!this.isValid)
|
||
return null;
|
||
return diffRelative(options.base || DateTime.fromObject({}, { zone: this.zone }), this, {
|
||
...options,
|
||
numeric: "auto",
|
||
units: ["years", "months", "days"],
|
||
calendary: true
|
||
});
|
||
}
|
||
/**
|
||
* Return the min of several date times
|
||
* @param {...DateTime} dateTimes - the DateTimes from which to choose the minimum
|
||
* @return {DateTime} the min DateTime, or undefined if called with no argument
|
||
*/
|
||
static min(...dateTimes) {
|
||
if (!dateTimes.every(DateTime.isDateTime)) {
|
||
throw new InvalidArgumentError("min requires all arguments be DateTimes");
|
||
}
|
||
return bestBy(dateTimes, (i) => i.valueOf(), Math.min);
|
||
}
|
||
/**
|
||
* Return the max of several date times
|
||
* @param {...DateTime} dateTimes - the DateTimes from which to choose the maximum
|
||
* @return {DateTime} the max DateTime, or undefined if called with no argument
|
||
*/
|
||
static max(...dateTimes) {
|
||
if (!dateTimes.every(DateTime.isDateTime)) {
|
||
throw new InvalidArgumentError("max requires all arguments be DateTimes");
|
||
}
|
||
return bestBy(dateTimes, (i) => i.valueOf(), Math.max);
|
||
}
|
||
// MISC
|
||
/**
|
||
* Explain how a string would be parsed by fromFormat()
|
||
* @param {string} text - the string to parse
|
||
* @param {string} fmt - the format the string is expected to be in (see description)
|
||
* @param {Object} options - options taken by fromFormat()
|
||
* @return {Object}
|
||
*/
|
||
static fromFormatExplain(text, fmt, options = {}) {
|
||
const { locale = null, numberingSystem = null } = options, localeToUse = Locale.fromOpts({
|
||
locale,
|
||
numberingSystem,
|
||
defaultToEN: true
|
||
});
|
||
return explainFromTokens(localeToUse, text, fmt);
|
||
}
|
||
/**
|
||
* @deprecated use fromFormatExplain instead
|
||
*/
|
||
static fromStringExplain(text, fmt, options = {}) {
|
||
return DateTime.fromFormatExplain(text, fmt, options);
|
||
}
|
||
// FORMAT PRESETS
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 10/14/1983
|
||
* @type {Object}
|
||
*/
|
||
static get DATE_SHORT() {
|
||
return DATE_SHORT;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Oct 14, 1983'
|
||
* @type {Object}
|
||
*/
|
||
static get DATE_MED() {
|
||
return DATE_MED;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Fri, Oct 14, 1983'
|
||
* @type {Object}
|
||
*/
|
||
static get DATE_MED_WITH_WEEKDAY() {
|
||
return DATE_MED_WITH_WEEKDAY;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'October 14, 1983'
|
||
* @type {Object}
|
||
*/
|
||
static get DATE_FULL() {
|
||
return DATE_FULL;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Tuesday, October 14, 1983'
|
||
* @type {Object}
|
||
*/
|
||
static get DATE_HUGE() {
|
||
return DATE_HUGE;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30 AM'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_SIMPLE() {
|
||
return TIME_SIMPLE;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30:23 AM'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_WITH_SECONDS() {
|
||
return TIME_WITH_SECONDS;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30:23 AM EDT'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_WITH_SHORT_OFFSET() {
|
||
return TIME_WITH_SHORT_OFFSET;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30:23 AM Eastern Daylight Time'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_WITH_LONG_OFFSET() {
|
||
return TIME_WITH_LONG_OFFSET;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30', always 24-hour.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_24_SIMPLE() {
|
||
return TIME_24_SIMPLE;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30:23', always 24-hour.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_24_WITH_SECONDS() {
|
||
return TIME_24_WITH_SECONDS;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30:23 EDT', always 24-hour.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_24_WITH_SHORT_OFFSET() {
|
||
return TIME_24_WITH_SHORT_OFFSET;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '09:30:23 Eastern Daylight Time', always 24-hour.
|
||
* @type {Object}
|
||
*/
|
||
static get TIME_24_WITH_LONG_OFFSET() {
|
||
return TIME_24_WITH_LONG_OFFSET;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '10/14/1983, 9:30 AM'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_SHORT() {
|
||
return DATETIME_SHORT;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like '10/14/1983, 9:30:33 AM'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_SHORT_WITH_SECONDS() {
|
||
return DATETIME_SHORT_WITH_SECONDS;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Oct 14, 1983, 9:30 AM'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_MED() {
|
||
return DATETIME_MED;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Oct 14, 1983, 9:30:33 AM'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_MED_WITH_SECONDS() {
|
||
return DATETIME_MED_WITH_SECONDS;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Fri, 14 Oct 1983, 9:30 AM'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_MED_WITH_WEEKDAY() {
|
||
return DATETIME_MED_WITH_WEEKDAY;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'October 14, 1983, 9:30 AM EDT'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_FULL() {
|
||
return DATETIME_FULL;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'October 14, 1983, 9:30:33 AM EDT'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_FULL_WITH_SECONDS() {
|
||
return DATETIME_FULL_WITH_SECONDS;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Friday, October 14, 1983, 9:30 AM Eastern Daylight Time'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_HUGE() {
|
||
return DATETIME_HUGE;
|
||
}
|
||
/**
|
||
* {@link DateTime#toLocaleString} format like 'Friday, October 14, 1983, 9:30:33 AM Eastern Daylight Time'. Only 12-hour if the locale is.
|
||
* @type {Object}
|
||
*/
|
||
static get DATETIME_HUGE_WITH_SECONDS() {
|
||
return DATETIME_HUGE_WITH_SECONDS;
|
||
}
|
||
};
|
||
function friendlyDateTime(dateTimeish) {
|
||
if (DateTime.isDateTime(dateTimeish)) {
|
||
return dateTimeish;
|
||
} else if (dateTimeish && dateTimeish.valueOf && isNumber(dateTimeish.valueOf())) {
|
||
return DateTime.fromJSDate(dateTimeish);
|
||
} else if (dateTimeish && typeof dateTimeish === "object") {
|
||
return DateTime.fromObject(dateTimeish);
|
||
} else {
|
||
throw new InvalidArgumentError(
|
||
`Unknown datetime argument: ${dateTimeish}, of type ${typeof dateTimeish}`
|
||
);
|
||
}
|
||
}
|
||
var DEFAULT_QUERY_SETTINGS = {
|
||
renderNullAs: "\\-",
|
||
taskCompletionTracking: false,
|
||
taskCompletionUseEmojiShorthand: false,
|
||
taskCompletionText: "completion",
|
||
taskCompletionDateFormat: "yyyy-MM-dd",
|
||
recursiveSubTaskCompletion: false,
|
||
warnOnEmptyResult: true,
|
||
refreshEnabled: true,
|
||
refreshInterval: 2500,
|
||
defaultDateFormat: "MMMM dd, yyyy",
|
||
defaultDateTimeFormat: "h:mm a - MMMM dd, yyyy",
|
||
maxRecursiveRenderDepth: 4,
|
||
tableIdColumnName: "File",
|
||
tableGroupColumnName: "Group",
|
||
showResultCount: true
|
||
};
|
||
var DEFAULT_EXPORT_SETTINGS = {
|
||
allowHtml: true
|
||
};
|
||
({
|
||
...DEFAULT_QUERY_SETTINGS,
|
||
...DEFAULT_EXPORT_SETTINGS,
|
||
...{
|
||
inlineQueryPrefix: "=",
|
||
inlineJsQueryPrefix: "$=",
|
||
inlineQueriesInCodeblocks: true,
|
||
enableInlineDataview: true,
|
||
enableDataviewJs: false,
|
||
enableInlineDataviewJs: false,
|
||
prettyRenderInlineFields: true,
|
||
dataviewJsKeyword: "dataviewjs"
|
||
}
|
||
});
|
||
var Success = class {
|
||
constructor(value) {
|
||
this.value = value;
|
||
this.successful = true;
|
||
}
|
||
map(f) {
|
||
return new Success(f(this.value));
|
||
}
|
||
flatMap(f) {
|
||
return f(this.value);
|
||
}
|
||
mapErr(f) {
|
||
return this;
|
||
}
|
||
bimap(succ, _fail) {
|
||
return this.map(succ);
|
||
}
|
||
orElse(_value) {
|
||
return this.value;
|
||
}
|
||
cast() {
|
||
return this;
|
||
}
|
||
orElseThrow(_message) {
|
||
return this.value;
|
||
}
|
||
};
|
||
var Failure = class {
|
||
constructor(error) {
|
||
this.error = error;
|
||
this.successful = false;
|
||
}
|
||
map(_f) {
|
||
return this;
|
||
}
|
||
flatMap(_f) {
|
||
return this;
|
||
}
|
||
mapErr(f) {
|
||
return new Failure(f(this.error));
|
||
}
|
||
bimap(_succ, fail) {
|
||
return this.mapErr(fail);
|
||
}
|
||
orElse(value) {
|
||
return value;
|
||
}
|
||
cast() {
|
||
return this;
|
||
}
|
||
orElseThrow(message) {
|
||
if (message)
|
||
throw new Error(message(this.error));
|
||
else
|
||
throw new Error("" + this.error);
|
||
}
|
||
};
|
||
var Result;
|
||
(function(Result2) {
|
||
function success(value) {
|
||
return new Success(value);
|
||
}
|
||
Result2.success = success;
|
||
function failure(error) {
|
||
return new Failure(error);
|
||
}
|
||
Result2.failure = failure;
|
||
function flatMap2(first, second, f) {
|
||
if (first.successful) {
|
||
if (second.successful)
|
||
return f(first.value, second.value);
|
||
else
|
||
return failure(second.error);
|
||
} else {
|
||
return failure(first.error);
|
||
}
|
||
}
|
||
Result2.flatMap2 = flatMap2;
|
||
function map2(first, second, f) {
|
||
return flatMap2(first, second, (a, b) => success(f(a, b)));
|
||
}
|
||
Result2.map2 = map2;
|
||
})(Result || (Result = {}));
|
||
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
||
var parsimmon_umd_min = { exports: {} };
|
||
(function(module3, exports2) {
|
||
!function(n2, t) {
|
||
module3.exports = t();
|
||
}("undefined" != typeof self ? self : commonjsGlobal, function() {
|
||
return function(n2) {
|
||
var t = {};
|
||
function r(e) {
|
||
if (t[e])
|
||
return t[e].exports;
|
||
var u = t[e] = { i: e, l: false, exports: {} };
|
||
return n2[e].call(u.exports, u, u.exports, r), u.l = true, u.exports;
|
||
}
|
||
return r.m = n2, r.c = t, r.d = function(n3, t2, e) {
|
||
r.o(n3, t2) || Object.defineProperty(n3, t2, { configurable: false, enumerable: true, get: e });
|
||
}, r.r = function(n3) {
|
||
Object.defineProperty(n3, "__esModule", { value: true });
|
||
}, r.n = function(n3) {
|
||
var t2 = n3 && n3.__esModule ? function() {
|
||
return n3.default;
|
||
} : function() {
|
||
return n3;
|
||
};
|
||
return r.d(t2, "a", t2), t2;
|
||
}, r.o = function(n3, t2) {
|
||
return Object.prototype.hasOwnProperty.call(n3, t2);
|
||
}, r.p = "", r(r.s = 0);
|
||
}([function(n2, t, r) {
|
||
function e(n3) {
|
||
if (!(this instanceof e))
|
||
return new e(n3);
|
||
this._ = n3;
|
||
}
|
||
var u = e.prototype;
|
||
function o(n3, t2) {
|
||
for (var r2 = 0; r2 < n3; r2++)
|
||
t2(r2);
|
||
}
|
||
function i(n3, t2, r2) {
|
||
return function(n4, t3) {
|
||
o(t3.length, function(r3) {
|
||
n4(t3[r3], r3, t3);
|
||
});
|
||
}(function(r3, e2, u2) {
|
||
t2 = n3(t2, r3, e2, u2);
|
||
}, r2), t2;
|
||
}
|
||
function a(n3, t2) {
|
||
return i(function(t3, r2, e2, u2) {
|
||
return t3.concat([n3(r2, e2, u2)]);
|
||
}, [], t2);
|
||
}
|
||
function f(n3, t2) {
|
||
var r2 = { v: 0, buf: t2 };
|
||
return o(n3, function() {
|
||
var n4;
|
||
r2 = { v: r2.v << 1 | (n4 = r2.buf, n4[0] >> 7), buf: function(n5) {
|
||
var t3 = i(function(n6, t4, r3, e2) {
|
||
return n6.concat(r3 === e2.length - 1 ? Buffer.from([t4, 0]).readUInt16BE(0) : e2.readUInt16BE(r3));
|
||
}, [], n5);
|
||
return Buffer.from(a(function(n6) {
|
||
return (n6 << 1 & 65535) >> 8;
|
||
}, t3));
|
||
}(r2.buf) };
|
||
}), r2;
|
||
}
|
||
function c() {
|
||
return "undefined" != typeof Buffer;
|
||
}
|
||
function s2() {
|
||
if (!c())
|
||
throw new Error("Buffer global does not exist; please use webpack if you need to parse Buffers in the browser.");
|
||
}
|
||
function l2(n3) {
|
||
s2();
|
||
var t2 = i(function(n4, t3) {
|
||
return n4 + t3;
|
||
}, 0, n3);
|
||
if (t2 % 8 != 0)
|
||
throw new Error("The bits [" + n3.join(", ") + "] add up to " + t2 + " which is not an even number of bytes; the total should be divisible by 8");
|
||
var r2, u2 = t2 / 8, o2 = (r2 = function(n4) {
|
||
return n4 > 48;
|
||
}, i(function(n4, t3) {
|
||
return n4 || (r2(t3) ? t3 : n4);
|
||
}, null, n3));
|
||
if (o2)
|
||
throw new Error(o2 + " bit range requested exceeds 48 bit (6 byte) Number max.");
|
||
return new e(function(t3, r3) {
|
||
var e2 = u2 + r3;
|
||
return e2 > t3.length ? x(r3, u2.toString() + " bytes") : b(e2, i(function(n4, t4) {
|
||
var r4 = f(t4, n4.buf);
|
||
return { coll: n4.coll.concat(r4.v), buf: r4.buf };
|
||
}, { coll: [], buf: t3.slice(r3, e2) }, n3).coll);
|
||
});
|
||
}
|
||
function h(n3, t2) {
|
||
return new e(function(r2, e2) {
|
||
return s2(), e2 + t2 > r2.length ? x(e2, t2 + " bytes for " + n3) : b(e2 + t2, r2.slice(e2, e2 + t2));
|
||
});
|
||
}
|
||
function p(n3, t2) {
|
||
if ("number" != typeof (r2 = t2) || Math.floor(r2) !== r2 || t2 < 0 || t2 > 6)
|
||
throw new Error(n3 + " requires integer length in range [0, 6].");
|
||
var r2;
|
||
}
|
||
function d(n3) {
|
||
return p("uintBE", n3), h("uintBE(" + n3 + ")", n3).map(function(t2) {
|
||
return t2.readUIntBE(0, n3);
|
||
});
|
||
}
|
||
function v(n3) {
|
||
return p("uintLE", n3), h("uintLE(" + n3 + ")", n3).map(function(t2) {
|
||
return t2.readUIntLE(0, n3);
|
||
});
|
||
}
|
||
function g(n3) {
|
||
return p("intBE", n3), h("intBE(" + n3 + ")", n3).map(function(t2) {
|
||
return t2.readIntBE(0, n3);
|
||
});
|
||
}
|
||
function m(n3) {
|
||
return p("intLE", n3), h("intLE(" + n3 + ")", n3).map(function(t2) {
|
||
return t2.readIntLE(0, n3);
|
||
});
|
||
}
|
||
function y(n3) {
|
||
return n3 instanceof e;
|
||
}
|
||
function E(n3) {
|
||
return "[object Array]" === {}.toString.call(n3);
|
||
}
|
||
function w(n3) {
|
||
return c() && Buffer.isBuffer(n3);
|
||
}
|
||
function b(n3, t2) {
|
||
return { status: true, index: n3, value: t2, furthest: -1, expected: [] };
|
||
}
|
||
function x(n3, t2) {
|
||
return E(t2) || (t2 = [t2]), { status: false, index: -1, value: null, furthest: n3, expected: t2 };
|
||
}
|
||
function B(n3, t2) {
|
||
if (!t2)
|
||
return n3;
|
||
if (n3.furthest > t2.furthest)
|
||
return n3;
|
||
var r2 = n3.furthest === t2.furthest ? function(n4, t3) {
|
||
if (function() {
|
||
if (void 0 !== e._supportsSet)
|
||
return e._supportsSet;
|
||
var n5 = "undefined" != typeof Set;
|
||
return e._supportsSet = n5, n5;
|
||
}() && Array.from) {
|
||
for (var r3 = new Set(n4), u2 = 0; u2 < t3.length; u2++)
|
||
r3.add(t3[u2]);
|
||
var o2 = Array.from(r3);
|
||
return o2.sort(), o2;
|
||
}
|
||
for (var i2 = {}, a2 = 0; a2 < n4.length; a2++)
|
||
i2[n4[a2]] = true;
|
||
for (var f2 = 0; f2 < t3.length; f2++)
|
||
i2[t3[f2]] = true;
|
||
var c2 = [];
|
||
for (var s3 in i2)
|
||
({}).hasOwnProperty.call(i2, s3) && c2.push(s3);
|
||
return c2.sort(), c2;
|
||
}(n3.expected, t2.expected) : t2.expected;
|
||
return { status: n3.status, index: n3.index, value: n3.value, furthest: t2.furthest, expected: r2 };
|
||
}
|
||
var j = {};
|
||
function S(n3, t2) {
|
||
if (w(n3))
|
||
return { offset: t2, line: -1, column: -1 };
|
||
n3 in j || (j[n3] = {});
|
||
for (var r2 = j[n3], e2 = 0, u2 = 0, o2 = 0, i2 = t2; i2 >= 0; ) {
|
||
if (i2 in r2) {
|
||
e2 = r2[i2].line, 0 === o2 && (o2 = r2[i2].lineStart);
|
||
break;
|
||
}
|
||
("\n" === n3.charAt(i2) || "\r" === n3.charAt(i2) && "\n" !== n3.charAt(i2 + 1)) && (u2++, 0 === o2 && (o2 = i2 + 1)), i2--;
|
||
}
|
||
var a2 = e2 + u2, f2 = t2 - o2;
|
||
return r2[t2] = { line: a2, lineStart: o2 }, { offset: t2, line: a2 + 1, column: f2 + 1 };
|
||
}
|
||
function _3(n3) {
|
||
if (!y(n3))
|
||
throw new Error("not a parser: " + n3);
|
||
}
|
||
function L(n3, t2) {
|
||
return "string" == typeof n3 ? n3.charAt(t2) : n3[t2];
|
||
}
|
||
function O(n3) {
|
||
if ("number" != typeof n3)
|
||
throw new Error("not a number: " + n3);
|
||
}
|
||
function k(n3) {
|
||
if ("function" != typeof n3)
|
||
throw new Error("not a function: " + n3);
|
||
}
|
||
function P(n3) {
|
||
if ("string" != typeof n3)
|
||
throw new Error("not a string: " + n3);
|
||
}
|
||
var q = 2, A = 3, I = 8, F = 5 * I, M = 4 * I, z = " ";
|
||
function R(n3, t2) {
|
||
return new Array(t2 + 1).join(n3);
|
||
}
|
||
function U(n3, t2, r2) {
|
||
var e2 = t2 - n3.length;
|
||
return e2 <= 0 ? n3 : R(r2, e2) + n3;
|
||
}
|
||
function W(n3, t2, r2, e2) {
|
||
return { from: n3 - t2 > 0 ? n3 - t2 : 0, to: n3 + r2 > e2 ? e2 : n3 + r2 };
|
||
}
|
||
function D(n3, t2) {
|
||
var r2, e2, u2, o2, f2, c2 = t2.index, s3 = c2.offset, l3 = 1;
|
||
if (s3 === n3.length)
|
||
return "Got the end of the input";
|
||
if (w(n3)) {
|
||
var h2 = s3 - s3 % I, p2 = s3 - h2, d2 = W(h2, F, M + I, n3.length), v2 = a(function(n4) {
|
||
return a(function(n5) {
|
||
return U(n5.toString(16), 2, "0");
|
||
}, n4);
|
||
}, function(n4, t3) {
|
||
var r3 = n4.length, e3 = [], u3 = 0;
|
||
if (r3 <= t3)
|
||
return [n4.slice()];
|
||
for (var o3 = 0; o3 < r3; o3++)
|
||
e3[u3] || e3.push([]), e3[u3].push(n4[o3]), (o3 + 1) % t3 == 0 && u3++;
|
||
return e3;
|
||
}(n3.slice(d2.from, d2.to).toJSON().data, I));
|
||
o2 = function(n4) {
|
||
return 0 === n4.from && 1 === n4.to ? { from: n4.from, to: n4.to } : { from: n4.from / I, to: Math.floor(n4.to / I) };
|
||
}(d2), e2 = h2 / I, r2 = 3 * p2, p2 >= 4 && (r2 += 1), l3 = 2, u2 = a(function(n4) {
|
||
return n4.length <= 4 ? n4.join(" ") : n4.slice(0, 4).join(" ") + " " + n4.slice(4).join(" ");
|
||
}, v2), (f2 = (8 * (o2.to > 0 ? o2.to - 1 : o2.to)).toString(16).length) < 2 && (f2 = 2);
|
||
} else {
|
||
var g2 = n3.split(/\r\n|[\n\r\u2028\u2029]/);
|
||
r2 = c2.column - 1, e2 = c2.line - 1, o2 = W(e2, q, A, g2.length), u2 = g2.slice(o2.from, o2.to), f2 = o2.to.toString().length;
|
||
}
|
||
var m2 = e2 - o2.from;
|
||
return w(n3) && (f2 = (8 * (o2.to > 0 ? o2.to - 1 : o2.to)).toString(16).length) < 2 && (f2 = 2), i(function(t3, e3, u3) {
|
||
var i2, a2 = u3 === m2, c3 = a2 ? "> " : z;
|
||
return i2 = w(n3) ? U((8 * (o2.from + u3)).toString(16), f2, "0") : U((o2.from + u3 + 1).toString(), f2, " "), [].concat(t3, [c3 + i2 + " | " + e3], a2 ? [z + R(" ", f2) + " | " + U("", r2, " ") + R("^", l3)] : []);
|
||
}, [], u2).join("\n");
|
||
}
|
||
function N(n3, t2) {
|
||
return ["\n", "-- PARSING FAILED " + R("-", 50), "\n\n", D(n3, t2), "\n\n", (r2 = t2.expected, 1 === r2.length ? "Expected:\n\n" + r2[0] : "Expected one of the following: \n\n" + r2.join(", ")), "\n"].join("");
|
||
var r2;
|
||
}
|
||
function G(n3) {
|
||
return void 0 !== n3.flags ? n3.flags : [n3.global ? "g" : "", n3.ignoreCase ? "i" : "", n3.multiline ? "m" : "", n3.unicode ? "u" : "", n3.sticky ? "y" : ""].join("");
|
||
}
|
||
function C() {
|
||
for (var n3 = [].slice.call(arguments), t2 = n3.length, r2 = 0; r2 < t2; r2 += 1)
|
||
_3(n3[r2]);
|
||
return e(function(r3, e2) {
|
||
for (var u2, o2 = new Array(t2), i2 = 0; i2 < t2; i2 += 1) {
|
||
if (!(u2 = B(n3[i2]._(r3, e2), u2)).status)
|
||
return u2;
|
||
o2[i2] = u2.value, e2 = u2.index;
|
||
}
|
||
return B(b(e2, o2), u2);
|
||
});
|
||
}
|
||
function J() {
|
||
var n3 = [].slice.call(arguments);
|
||
if (0 === n3.length)
|
||
throw new Error("seqMap needs at least one argument");
|
||
var t2 = n3.pop();
|
||
return k(t2), C.apply(null, n3).map(function(n4) {
|
||
return t2.apply(null, n4);
|
||
});
|
||
}
|
||
function T() {
|
||
var n3 = [].slice.call(arguments), t2 = n3.length;
|
||
if (0 === t2)
|
||
return Y("zero alternates");
|
||
for (var r2 = 0; r2 < t2; r2 += 1)
|
||
_3(n3[r2]);
|
||
return e(function(t3, r3) {
|
||
for (var e2, u2 = 0; u2 < n3.length; u2 += 1)
|
||
if ((e2 = B(n3[u2]._(t3, r3), e2)).status)
|
||
return e2;
|
||
return e2;
|
||
});
|
||
}
|
||
function V(n3, t2) {
|
||
return H(n3, t2).or(X([]));
|
||
}
|
||
function H(n3, t2) {
|
||
return _3(n3), _3(t2), J(n3, t2.then(n3).many(), function(n4, t3) {
|
||
return [n4].concat(t3);
|
||
});
|
||
}
|
||
function K(n3) {
|
||
P(n3);
|
||
var t2 = "'" + n3 + "'";
|
||
return e(function(r2, e2) {
|
||
var u2 = e2 + n3.length, o2 = r2.slice(e2, u2);
|
||
return o2 === n3 ? b(u2, o2) : x(e2, t2);
|
||
});
|
||
}
|
||
function Q(n3, t2) {
|
||
!function(n4) {
|
||
if (!(n4 instanceof RegExp))
|
||
throw new Error("not a regexp: " + n4);
|
||
for (var t3 = G(n4), r3 = 0; r3 < t3.length; r3++) {
|
||
var e2 = t3.charAt(r3);
|
||
if ("i" !== e2 && "m" !== e2 && "u" !== e2 && "s" !== e2)
|
||
throw new Error('unsupported regexp flag "' + e2 + '": ' + n4);
|
||
}
|
||
}(n3), arguments.length >= 2 ? O(t2) : t2 = 0;
|
||
var r2 = function(n4) {
|
||
return RegExp("^(?:" + n4.source + ")", G(n4));
|
||
}(n3), u2 = "" + n3;
|
||
return e(function(n4, e2) {
|
||
var o2 = r2.exec(n4.slice(e2));
|
||
if (o2) {
|
||
if (0 <= t2 && t2 <= o2.length) {
|
||
var i2 = o2[0], a2 = o2[t2];
|
||
return b(e2 + i2.length, a2);
|
||
}
|
||
return x(e2, "valid match group (0 to " + o2.length + ") in " + u2);
|
||
}
|
||
return x(e2, u2);
|
||
});
|
||
}
|
||
function X(n3) {
|
||
return e(function(t2, r2) {
|
||
return b(r2, n3);
|
||
});
|
||
}
|
||
function Y(n3) {
|
||
return e(function(t2, r2) {
|
||
return x(r2, n3);
|
||
});
|
||
}
|
||
function Z(n3) {
|
||
if (y(n3))
|
||
return e(function(t2, r2) {
|
||
var e2 = n3._(t2, r2);
|
||
return e2.index = r2, e2.value = "", e2;
|
||
});
|
||
if ("string" == typeof n3)
|
||
return Z(K(n3));
|
||
if (n3 instanceof RegExp)
|
||
return Z(Q(n3));
|
||
throw new Error("not a string, regexp, or parser: " + n3);
|
||
}
|
||
function $2(n3) {
|
||
return _3(n3), e(function(t2, r2) {
|
||
var e2 = n3._(t2, r2), u2 = t2.slice(r2, e2.index);
|
||
return e2.status ? x(r2, 'not "' + u2 + '"') : b(r2, null);
|
||
});
|
||
}
|
||
function nn(n3) {
|
||
return k(n3), e(function(t2, r2) {
|
||
var e2 = L(t2, r2);
|
||
return r2 < t2.length && n3(e2) ? b(r2 + 1, e2) : x(r2, "a character/byte matching " + n3);
|
||
});
|
||
}
|
||
function tn(n3, t2) {
|
||
arguments.length < 2 && (t2 = n3, n3 = void 0);
|
||
var r2 = e(function(n4, e2) {
|
||
return r2._ = t2()._, r2._(n4, e2);
|
||
});
|
||
return n3 ? r2.desc(n3) : r2;
|
||
}
|
||
function rn() {
|
||
return Y("fantasy-land/empty");
|
||
}
|
||
u.parse = function(n3) {
|
||
if ("string" != typeof n3 && !w(n3))
|
||
throw new Error(".parse must be called with a string or Buffer as its argument");
|
||
var t2, r2 = this.skip(an)._(n3, 0);
|
||
return t2 = r2.status ? { status: true, value: r2.value } : { status: false, index: S(n3, r2.furthest), expected: r2.expected }, delete j[n3], t2;
|
||
}, u.tryParse = function(n3) {
|
||
var t2 = this.parse(n3);
|
||
if (t2.status)
|
||
return t2.value;
|
||
var r2 = N(n3, t2), e2 = new Error(r2);
|
||
throw e2.type = "ParsimmonError", e2.result = t2, e2;
|
||
}, u.assert = function(n3, t2) {
|
||
return this.chain(function(r2) {
|
||
return n3(r2) ? X(r2) : Y(t2);
|
||
});
|
||
}, u.or = function(n3) {
|
||
return T(this, n3);
|
||
}, u.trim = function(n3) {
|
||
return this.wrap(n3, n3);
|
||
}, u.wrap = function(n3, t2) {
|
||
return J(n3, this, t2, function(n4, t3) {
|
||
return t3;
|
||
});
|
||
}, u.thru = function(n3) {
|
||
return n3(this);
|
||
}, u.then = function(n3) {
|
||
return _3(n3), C(this, n3).map(function(n4) {
|
||
return n4[1];
|
||
});
|
||
}, u.many = function() {
|
||
var n3 = this;
|
||
return e(function(t2, r2) {
|
||
for (var e2 = [], u2 = void 0; ; ) {
|
||
if (!(u2 = B(n3._(t2, r2), u2)).status)
|
||
return B(b(r2, e2), u2);
|
||
if (r2 === u2.index)
|
||
throw new Error("infinite loop detected in .many() parser --- calling .many() on a parser which can accept zero characters is usually the cause");
|
||
r2 = u2.index, e2.push(u2.value);
|
||
}
|
||
});
|
||
}, u.tieWith = function(n3) {
|
||
return P(n3), this.map(function(t2) {
|
||
if (function(n4) {
|
||
if (!E(n4))
|
||
throw new Error("not an array: " + n4);
|
||
}(t2), t2.length) {
|
||
P(t2[0]);
|
||
for (var r2 = t2[0], e2 = 1; e2 < t2.length; e2++)
|
||
P(t2[e2]), r2 += n3 + t2[e2];
|
||
return r2;
|
||
}
|
||
return "";
|
||
});
|
||
}, u.tie = function() {
|
||
return this.tieWith("");
|
||
}, u.times = function(n3, t2) {
|
||
var r2 = this;
|
||
return arguments.length < 2 && (t2 = n3), O(n3), O(t2), e(function(e2, u2) {
|
||
for (var o2 = [], i2 = void 0, a2 = void 0, f2 = 0; f2 < n3; f2 += 1) {
|
||
if (a2 = B(i2 = r2._(e2, u2), a2), !i2.status)
|
||
return a2;
|
||
u2 = i2.index, o2.push(i2.value);
|
||
}
|
||
for (; f2 < t2 && (a2 = B(i2 = r2._(e2, u2), a2), i2.status); f2 += 1)
|
||
u2 = i2.index, o2.push(i2.value);
|
||
return B(b(u2, o2), a2);
|
||
});
|
||
}, u.result = function(n3) {
|
||
return this.map(function() {
|
||
return n3;
|
||
});
|
||
}, u.atMost = function(n3) {
|
||
return this.times(0, n3);
|
||
}, u.atLeast = function(n3) {
|
||
return J(this.times(n3), this.many(), function(n4, t2) {
|
||
return n4.concat(t2);
|
||
});
|
||
}, u.map = function(n3) {
|
||
k(n3);
|
||
var t2 = this;
|
||
return e(function(r2, e2) {
|
||
var u2 = t2._(r2, e2);
|
||
return u2.status ? B(b(u2.index, n3(u2.value)), u2) : u2;
|
||
});
|
||
}, u.contramap = function(n3) {
|
||
k(n3);
|
||
var t2 = this;
|
||
return e(function(r2, e2) {
|
||
var u2 = t2.parse(n3(r2.slice(e2)));
|
||
return u2.status ? b(e2 + r2.length, u2.value) : u2;
|
||
});
|
||
}, u.promap = function(n3, t2) {
|
||
return k(n3), k(t2), this.contramap(n3).map(t2);
|
||
}, u.skip = function(n3) {
|
||
return C(this, n3).map(function(n4) {
|
||
return n4[0];
|
||
});
|
||
}, u.mark = function() {
|
||
return J(en, this, en, function(n3, t2, r2) {
|
||
return { start: n3, value: t2, end: r2 };
|
||
});
|
||
}, u.node = function(n3) {
|
||
return J(en, this, en, function(t2, r2, e2) {
|
||
return { name: n3, value: r2, start: t2, end: e2 };
|
||
});
|
||
}, u.sepBy = function(n3) {
|
||
return V(this, n3);
|
||
}, u.sepBy1 = function(n3) {
|
||
return H(this, n3);
|
||
}, u.lookahead = function(n3) {
|
||
return this.skip(Z(n3));
|
||
}, u.notFollowedBy = function(n3) {
|
||
return this.skip($2(n3));
|
||
}, u.desc = function(n3) {
|
||
E(n3) || (n3 = [n3]);
|
||
var t2 = this;
|
||
return e(function(r2, e2) {
|
||
var u2 = t2._(r2, e2);
|
||
return u2.status || (u2.expected = n3), u2;
|
||
});
|
||
}, u.fallback = function(n3) {
|
||
return this.or(X(n3));
|
||
}, u.ap = function(n3) {
|
||
return J(n3, this, function(n4, t2) {
|
||
return n4(t2);
|
||
});
|
||
}, u.chain = function(n3) {
|
||
var t2 = this;
|
||
return e(function(r2, e2) {
|
||
var u2 = t2._(r2, e2);
|
||
return u2.status ? B(n3(u2.value)._(r2, u2.index), u2) : u2;
|
||
});
|
||
}, u.concat = u.or, u.empty = rn, u.of = X, u["fantasy-land/ap"] = u.ap, u["fantasy-land/chain"] = u.chain, u["fantasy-land/concat"] = u.concat, u["fantasy-land/empty"] = u.empty, u["fantasy-land/of"] = u.of, u["fantasy-land/map"] = u.map;
|
||
var en = e(function(n3, t2) {
|
||
return b(t2, S(n3, t2));
|
||
}), un = e(function(n3, t2) {
|
||
return t2 >= n3.length ? x(t2, "any character/byte") : b(t2 + 1, L(n3, t2));
|
||
}), on = e(function(n3, t2) {
|
||
return b(n3.length, n3.slice(t2));
|
||
}), an = e(function(n3, t2) {
|
||
return t2 < n3.length ? x(t2, "EOF") : b(t2, null);
|
||
}), fn = Q(/[0-9]/).desc("a digit"), cn = Q(/[0-9]*/).desc("optional digits"), sn = Q(/[a-z]/i).desc("a letter"), ln = Q(/[a-z]*/i).desc("optional letters"), hn = Q(/\s*/).desc("optional whitespace"), pn = Q(/\s+/).desc("whitespace"), dn = K("\r"), vn = K("\n"), gn = K("\r\n"), mn = T(gn, vn, dn).desc("newline"), yn = T(mn, an);
|
||
e.all = on, e.alt = T, e.any = un, e.cr = dn, e.createLanguage = function(n3) {
|
||
var t2 = {};
|
||
for (var r2 in n3)
|
||
({}).hasOwnProperty.call(n3, r2) && function(r3) {
|
||
t2[r3] = tn(function() {
|
||
return n3[r3](t2);
|
||
});
|
||
}(r2);
|
||
return t2;
|
||
}, e.crlf = gn, e.custom = function(n3) {
|
||
return e(n3(b, x));
|
||
}, e.digit = fn, e.digits = cn, e.empty = rn, e.end = yn, e.eof = an, e.fail = Y, e.formatError = N, e.index = en, e.isParser = y, e.lazy = tn, e.letter = sn, e.letters = ln, e.lf = vn, e.lookahead = Z, e.makeFailure = x, e.makeSuccess = b, e.newline = mn, e.noneOf = function(n3) {
|
||
return nn(function(t2) {
|
||
return n3.indexOf(t2) < 0;
|
||
}).desc("none of '" + n3 + "'");
|
||
}, e.notFollowedBy = $2, e.of = X, e.oneOf = function(n3) {
|
||
for (var t2 = n3.split(""), r2 = 0; r2 < t2.length; r2++)
|
||
t2[r2] = "'" + t2[r2] + "'";
|
||
return nn(function(t3) {
|
||
return n3.indexOf(t3) >= 0;
|
||
}).desc(t2);
|
||
}, e.optWhitespace = hn, e.Parser = e, e.range = function(n3, t2) {
|
||
return nn(function(r2) {
|
||
return n3 <= r2 && r2 <= t2;
|
||
}).desc(n3 + "-" + t2);
|
||
}, e.regex = Q, e.regexp = Q, e.sepBy = V, e.sepBy1 = H, e.seq = C, e.seqMap = J, e.seqObj = function() {
|
||
for (var n3, t2 = {}, r2 = 0, u2 = (n3 = arguments, Array.prototype.slice.call(n3)), o2 = u2.length, i2 = 0; i2 < o2; i2 += 1) {
|
||
var a2 = u2[i2];
|
||
if (!y(a2)) {
|
||
if (E(a2) && 2 === a2.length && "string" == typeof a2[0] && y(a2[1])) {
|
||
var f2 = a2[0];
|
||
if (Object.prototype.hasOwnProperty.call(t2, f2))
|
||
throw new Error("seqObj: duplicate key " + f2);
|
||
t2[f2] = true, r2++;
|
||
continue;
|
||
}
|
||
throw new Error("seqObj arguments must be parsers or [string, parser] array pairs.");
|
||
}
|
||
}
|
||
if (0 === r2)
|
||
throw new Error("seqObj expects at least one named parser, found zero");
|
||
return e(function(n4, t3) {
|
||
for (var r3, e2 = {}, i3 = 0; i3 < o2; i3 += 1) {
|
||
var a3, f3;
|
||
if (E(u2[i3]) ? (a3 = u2[i3][0], f3 = u2[i3][1]) : (a3 = null, f3 = u2[i3]), !(r3 = B(f3._(n4, t3), r3)).status)
|
||
return r3;
|
||
a3 && (e2[a3] = r3.value), t3 = r3.index;
|
||
}
|
||
return B(b(t3, e2), r3);
|
||
});
|
||
}, e.string = K, e.succeed = X, e.takeWhile = function(n3) {
|
||
return k(n3), e(function(t2, r2) {
|
||
for (var e2 = r2; e2 < t2.length && n3(L(t2, e2)); )
|
||
e2++;
|
||
return b(e2, t2.slice(r2, e2));
|
||
});
|
||
}, e.test = nn, e.whitespace = pn, e["fantasy-land/empty"] = rn, e["fantasy-land/of"] = X, e.Binary = { bitSeq: l2, bitSeqObj: function(n3) {
|
||
s2();
|
||
var t2 = {}, r2 = 0, e2 = a(function(n4) {
|
||
if (E(n4)) {
|
||
var e3 = n4;
|
||
if (2 !== e3.length)
|
||
throw new Error("[" + e3.join(", ") + "] should be length 2, got length " + e3.length);
|
||
if (P(e3[0]), O(e3[1]), Object.prototype.hasOwnProperty.call(t2, e3[0]))
|
||
throw new Error("duplicate key in bitSeqObj: " + e3[0]);
|
||
return t2[e3[0]] = true, r2++, e3;
|
||
}
|
||
return O(n4), [null, n4];
|
||
}, n3);
|
||
if (r2 < 1)
|
||
throw new Error("bitSeqObj expects at least one named pair, got [" + n3.join(", ") + "]");
|
||
var u2 = a(function(n4) {
|
||
return n4[0];
|
||
}, e2);
|
||
return l2(a(function(n4) {
|
||
return n4[1];
|
||
}, e2)).map(function(n4) {
|
||
return i(function(n5, t3) {
|
||
return null !== t3[0] && (n5[t3[0]] = t3[1]), n5;
|
||
}, {}, a(function(t3, r3) {
|
||
return [t3, n4[r3]];
|
||
}, u2));
|
||
});
|
||
}, byte: function(n3) {
|
||
if (s2(), O(n3), n3 > 255)
|
||
throw new Error("Value specified to byte constructor (" + n3 + "=0x" + n3.toString(16) + ") is larger in value than a single byte.");
|
||
var t2 = (n3 > 15 ? "0x" : "0x0") + n3.toString(16);
|
||
return e(function(r2, e2) {
|
||
var u2 = L(r2, e2);
|
||
return u2 === n3 ? b(e2 + 1, u2) : x(e2, t2);
|
||
});
|
||
}, buffer: function(n3) {
|
||
return h("buffer", n3).map(function(n4) {
|
||
return Buffer.from(n4);
|
||
});
|
||
}, encodedString: function(n3, t2) {
|
||
return h("string", t2).map(function(t3) {
|
||
return t3.toString(n3);
|
||
});
|
||
}, uintBE: d, uint8BE: d(1), uint16BE: d(2), uint32BE: d(4), uintLE: v, uint8LE: v(1), uint16LE: v(2), uint32LE: v(4), intBE: g, int8BE: g(1), int16BE: g(2), int32BE: g(4), intLE: m, int8LE: m(1), int16LE: m(2), int32LE: m(4), floatBE: h("floatBE", 4).map(function(n3) {
|
||
return n3.readFloatBE(0);
|
||
}), floatLE: h("floatLE", 4).map(function(n3) {
|
||
return n3.readFloatLE(0);
|
||
}), doubleBE: h("doubleBE", 8).map(function(n3) {
|
||
return n3.readDoubleBE(0);
|
||
}), doubleLE: h("doubleLE", 8).map(function(n3) {
|
||
return n3.readDoubleLE(0);
|
||
}) }, n2.exports = e;
|
||
}]);
|
||
});
|
||
})(parsimmon_umd_min);
|
||
var emojiRegex = () => {
|
||
return /(?:[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC3\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDD-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF6](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7C\uDE80-\uDE86\uDE90-\uDEAC\uDEB0-\uDEBA\uDEC0-\uDEC2\uDED0-\uDED9\uDEE0-\uDEE7]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?))/g;
|
||
};
|
||
function normalizeDuration(dur) {
|
||
if (dur === void 0 || dur === null)
|
||
return dur;
|
||
return dur.shiftToAll().normalize();
|
||
}
|
||
function getFileTitle(path) {
|
||
if (path.includes("/"))
|
||
path = path.substring(path.lastIndexOf("/") + 1);
|
||
if (path.endsWith(".md"))
|
||
path = path.substring(0, path.length - 3);
|
||
return path;
|
||
}
|
||
parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.regex(new RegExp(emojiRegex(), "")), parsimmon_umd_min.exports.regex(/[0-9\p{Letter}_-]+/u).map((str) => str.toLocaleLowerCase()), parsimmon_umd_min.exports.whitespace.map((_3) => "-"), parsimmon_umd_min.exports.any.map((_3) => "")).many().map((result) => result.join(""));
|
||
var HEADER_CANONICALIZER = parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.regex(new RegExp(emojiRegex(), "")), parsimmon_umd_min.exports.regex(/[0-9\p{Letter}_-]+/u), parsimmon_umd_min.exports.whitespace.map((_3) => " "), parsimmon_umd_min.exports.any.map((_3) => " ")).many().map((result) => {
|
||
return result.join("").split(/\s+/).join(" ").trim();
|
||
});
|
||
function normalizeHeaderForLink(header) {
|
||
return HEADER_CANONICALIZER.tryParse(header);
|
||
}
|
||
function renderMinimalDuration(dur) {
|
||
dur = normalizeDuration(dur);
|
||
dur = Duration.fromObject(Object.fromEntries(Object.entries(dur.toObject()).filter(([, quantity]) => quantity > 0)));
|
||
return dur.toHuman();
|
||
}
|
||
var Values;
|
||
(function(Values2) {
|
||
function toString(field, setting = DEFAULT_QUERY_SETTINGS, recursive = false) {
|
||
let wrapped = wrapValue(field);
|
||
if (!wrapped)
|
||
return setting.renderNullAs;
|
||
switch (wrapped.type) {
|
||
case "null":
|
||
return setting.renderNullAs;
|
||
case "string":
|
||
return wrapped.value;
|
||
case "number":
|
||
case "boolean":
|
||
return "" + wrapped.value;
|
||
case "html":
|
||
return wrapped.value.outerHTML;
|
||
case "widget":
|
||
return wrapped.value.markdown();
|
||
case "link":
|
||
return wrapped.value.markdown();
|
||
case "function":
|
||
return "<function>";
|
||
case "array":
|
||
let result = "";
|
||
if (recursive)
|
||
result += "[";
|
||
result += wrapped.value.map((f) => toString(f, setting, true)).join(", ");
|
||
if (recursive)
|
||
result += "]";
|
||
return result;
|
||
case "object":
|
||
return "{ " + Object.entries(wrapped.value).map((e) => e[0] + ": " + toString(e[1], setting, true)).join(", ") + " }";
|
||
case "date":
|
||
if (wrapped.value.second == 0 && wrapped.value.hour == 0 && wrapped.value.minute == 0) {
|
||
return wrapped.value.toFormat(setting.defaultDateFormat);
|
||
}
|
||
return wrapped.value.toFormat(setting.defaultDateTimeFormat);
|
||
case "duration":
|
||
return renderMinimalDuration(wrapped.value);
|
||
}
|
||
}
|
||
Values2.toString = toString;
|
||
function wrapValue(val) {
|
||
if (isNull(val))
|
||
return { type: "null", value: val };
|
||
else if (isNumber2(val))
|
||
return { type: "number", value: val };
|
||
else if (isString2(val))
|
||
return { type: "string", value: val };
|
||
else if (isBoolean(val))
|
||
return { type: "boolean", value: val };
|
||
else if (isDuration(val))
|
||
return { type: "duration", value: val };
|
||
else if (isDate2(val))
|
||
return { type: "date", value: val };
|
||
else if (isWidget(val))
|
||
return { type: "widget", value: val };
|
||
else if (isArray(val))
|
||
return { type: "array", value: val };
|
||
else if (isLink(val))
|
||
return { type: "link", value: val };
|
||
else if (isFunction(val))
|
||
return { type: "function", value: val };
|
||
else if (isHtml(val))
|
||
return { type: "html", value: val };
|
||
else if (isObject(val))
|
||
return { type: "object", value: val };
|
||
else
|
||
return void 0;
|
||
}
|
||
Values2.wrapValue = wrapValue;
|
||
function mapLeaves(val, func) {
|
||
if (isObject(val)) {
|
||
let result = {};
|
||
for (let [key, value] of Object.entries(val))
|
||
result[key] = mapLeaves(value, func);
|
||
return result;
|
||
} else if (isArray(val)) {
|
||
let result = [];
|
||
for (let value of val)
|
||
result.push(mapLeaves(value, func));
|
||
return result;
|
||
} else {
|
||
return func(val);
|
||
}
|
||
}
|
||
Values2.mapLeaves = mapLeaves;
|
||
function compareValue(val1, val2, linkNormalizer) {
|
||
var _a, _b;
|
||
if (val1 === void 0)
|
||
val1 = null;
|
||
if (val2 === void 0)
|
||
val2 = null;
|
||
if (val1 === null && val2 === null)
|
||
return 0;
|
||
else if (val1 === null)
|
||
return -1;
|
||
else if (val2 === null)
|
||
return 1;
|
||
let wrap1 = wrapValue(val1);
|
||
let wrap2 = wrapValue(val2);
|
||
if (wrap1 === void 0 && wrap2 === void 0)
|
||
return 0;
|
||
else if (wrap1 === void 0)
|
||
return -1;
|
||
else if (wrap2 === void 0)
|
||
return 1;
|
||
if (wrap1.type != wrap2.type)
|
||
return wrap1.type.localeCompare(wrap2.type);
|
||
if (wrap1.value === wrap2.value)
|
||
return 0;
|
||
switch (wrap1.type) {
|
||
case "string":
|
||
return wrap1.value.localeCompare(wrap2.value);
|
||
case "number":
|
||
if (wrap1.value < wrap2.value)
|
||
return -1;
|
||
else if (wrap1.value == wrap2.value)
|
||
return 0;
|
||
return 1;
|
||
case "null":
|
||
return 0;
|
||
case "boolean":
|
||
if (wrap1.value == wrap2.value)
|
||
return 0;
|
||
else
|
||
return wrap1.value ? 1 : -1;
|
||
case "link":
|
||
let link1 = wrap1.value;
|
||
let link2 = wrap2.value;
|
||
let normalize = linkNormalizer !== null && linkNormalizer !== void 0 ? linkNormalizer : (x) => x;
|
||
let pathCompare = normalize(link1.path).localeCompare(normalize(link2.path));
|
||
if (pathCompare != 0)
|
||
return pathCompare;
|
||
let typeCompare = link1.type.localeCompare(link2.type);
|
||
if (typeCompare != 0)
|
||
return typeCompare;
|
||
if (link1.subpath && !link2.subpath)
|
||
return 1;
|
||
if (!link1.subpath && link2.subpath)
|
||
return -1;
|
||
if (!link1.subpath && !link2.subpath)
|
||
return 0;
|
||
return ((_a = link1.subpath) !== null && _a !== void 0 ? _a : "").localeCompare((_b = link2.subpath) !== null && _b !== void 0 ? _b : "");
|
||
case "date":
|
||
return wrap1.value < wrap2.value ? -1 : wrap1.value.equals(wrap2.value) ? 0 : 1;
|
||
case "duration":
|
||
return wrap1.value < wrap2.value ? -1 : wrap1.value.equals(wrap2.value) ? 0 : 1;
|
||
case "array":
|
||
let f1 = wrap1.value;
|
||
let f2 = wrap2.value;
|
||
for (let index = 0; index < Math.min(f1.length, f2.length); index++) {
|
||
let comp = compareValue(f1[index], f2[index]);
|
||
if (comp != 0)
|
||
return comp;
|
||
}
|
||
return f1.length - f2.length;
|
||
case "object":
|
||
let o1 = wrap1.value;
|
||
let o2 = wrap2.value;
|
||
let k1 = Array.from(Object.keys(o1));
|
||
let k2 = Array.from(Object.keys(o2));
|
||
k1.sort();
|
||
k2.sort();
|
||
let keyCompare = compareValue(k1, k2);
|
||
if (keyCompare != 0)
|
||
return keyCompare;
|
||
for (let key of k1) {
|
||
let comp = compareValue(o1[key], o2[key]);
|
||
if (comp != 0)
|
||
return comp;
|
||
}
|
||
return 0;
|
||
case "widget":
|
||
case "html":
|
||
case "function":
|
||
return 0;
|
||
}
|
||
}
|
||
Values2.compareValue = compareValue;
|
||
function typeOf(val) {
|
||
var _a;
|
||
return (_a = wrapValue(val)) === null || _a === void 0 ? void 0 : _a.type;
|
||
}
|
||
Values2.typeOf = typeOf;
|
||
function isTruthy(field) {
|
||
let wrapped = wrapValue(field);
|
||
if (!wrapped)
|
||
return false;
|
||
switch (wrapped.type) {
|
||
case "number":
|
||
return wrapped.value != 0;
|
||
case "string":
|
||
return wrapped.value.length > 0;
|
||
case "boolean":
|
||
return wrapped.value;
|
||
case "link":
|
||
return !!wrapped.value.path;
|
||
case "date":
|
||
return wrapped.value.toMillis() != 0;
|
||
case "duration":
|
||
return wrapped.value.as("seconds") != 0;
|
||
case "object":
|
||
return Object.keys(wrapped.value).length > 0;
|
||
case "array":
|
||
return wrapped.value.length > 0;
|
||
case "null":
|
||
return false;
|
||
case "html":
|
||
case "widget":
|
||
case "function":
|
||
return true;
|
||
}
|
||
}
|
||
Values2.isTruthy = isTruthy;
|
||
function deepCopy(field) {
|
||
if (field === null || field === void 0)
|
||
return field;
|
||
if (Values2.isArray(field)) {
|
||
return [].concat(field.map((v) => deepCopy(v)));
|
||
} else if (Values2.isObject(field)) {
|
||
let result = {};
|
||
for (let [key, value] of Object.entries(field))
|
||
result[key] = deepCopy(value);
|
||
return result;
|
||
} else {
|
||
return field;
|
||
}
|
||
}
|
||
Values2.deepCopy = deepCopy;
|
||
function isString2(val) {
|
||
return typeof val == "string";
|
||
}
|
||
Values2.isString = isString2;
|
||
function isNumber2(val) {
|
||
return typeof val == "number";
|
||
}
|
||
Values2.isNumber = isNumber2;
|
||
function isDate2(val) {
|
||
return val instanceof DateTime;
|
||
}
|
||
Values2.isDate = isDate2;
|
||
function isDuration(val) {
|
||
return val instanceof Duration;
|
||
}
|
||
Values2.isDuration = isDuration;
|
||
function isNull(val) {
|
||
return val === null || val === void 0;
|
||
}
|
||
Values2.isNull = isNull;
|
||
function isArray(val) {
|
||
return Array.isArray(val);
|
||
}
|
||
Values2.isArray = isArray;
|
||
function isBoolean(val) {
|
||
return typeof val === "boolean";
|
||
}
|
||
Values2.isBoolean = isBoolean;
|
||
function isLink(val) {
|
||
return val instanceof Link2;
|
||
}
|
||
Values2.isLink = isLink;
|
||
function isWidget(val) {
|
||
return val instanceof Widget;
|
||
}
|
||
Values2.isWidget = isWidget;
|
||
function isHtml(val) {
|
||
if (typeof HTMLElement !== "undefined") {
|
||
return val instanceof HTMLElement;
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
Values2.isHtml = isHtml;
|
||
function isObject(val) {
|
||
return typeof val == "object" && !isHtml(val) && !isWidget(val) && !isArray(val) && !isDuration(val) && !isDate2(val) && !isLink(val) && val !== void 0 && !isNull(val);
|
||
}
|
||
Values2.isObject = isObject;
|
||
function isFunction(val) {
|
||
return typeof val == "function";
|
||
}
|
||
Values2.isFunction = isFunction;
|
||
})(Values || (Values = {}));
|
||
var Groupings;
|
||
(function(Groupings2) {
|
||
function isElementGroup(entry) {
|
||
return Values.isObject(entry) && Object.keys(entry).length == 2 && "key" in entry && "rows" in entry;
|
||
}
|
||
Groupings2.isElementGroup = isElementGroup;
|
||
function isGrouping(entry) {
|
||
for (let element of entry)
|
||
if (!isElementGroup(element))
|
||
return false;
|
||
return true;
|
||
}
|
||
Groupings2.isGrouping = isGrouping;
|
||
function count(elements) {
|
||
if (isGrouping(elements)) {
|
||
let result = 0;
|
||
for (let subgroup of elements)
|
||
result += count(subgroup.rows);
|
||
return result;
|
||
} else {
|
||
return elements.length;
|
||
}
|
||
}
|
||
Groupings2.count = count;
|
||
})(Groupings || (Groupings = {}));
|
||
var Link2 = class {
|
||
constructor(fields) {
|
||
Object.assign(this, fields);
|
||
}
|
||
/** Create a link to a specific file. */
|
||
static file(path, embed = false, display) {
|
||
return new Link2({
|
||
path,
|
||
embed,
|
||
display,
|
||
subpath: void 0,
|
||
type: "file"
|
||
});
|
||
}
|
||
static infer(linkpath, embed = false, display) {
|
||
if (linkpath.includes("#^")) {
|
||
let split = linkpath.split("#^");
|
||
return Link2.block(split[0], split[1], embed, display);
|
||
} else if (linkpath.includes("#")) {
|
||
let split = linkpath.split("#");
|
||
return Link2.header(split[0], split[1], embed, display);
|
||
} else
|
||
return Link2.file(linkpath, embed, display);
|
||
}
|
||
/** Create a link to a specific file and header in that file. */
|
||
static header(path, header, embed, display) {
|
||
return new Link2({
|
||
path,
|
||
embed,
|
||
display,
|
||
subpath: normalizeHeaderForLink(header),
|
||
type: "header"
|
||
});
|
||
}
|
||
/** Create a link to a specific file and block in that file. */
|
||
static block(path, blockId, embed, display) {
|
||
return new Link2({
|
||
path,
|
||
embed,
|
||
display,
|
||
subpath: blockId,
|
||
type: "block"
|
||
});
|
||
}
|
||
static fromObject(object) {
|
||
return new Link2(object);
|
||
}
|
||
/** Checks for link equality (i.e., that the links are pointing to the same exact location). */
|
||
equals(other) {
|
||
if (other == void 0 || other == null)
|
||
return false;
|
||
return this.path == other.path && this.type == other.type && this.subpath == other.subpath;
|
||
}
|
||
/** Convert this link to it's markdown representation. */
|
||
toString() {
|
||
return this.markdown();
|
||
}
|
||
/** Convert this link to a raw object which is serialization-friendly. */
|
||
toObject() {
|
||
return { path: this.path, type: this.type, subpath: this.subpath, display: this.display, embed: this.embed };
|
||
}
|
||
/** Update this link with a new path. */
|
||
//@ts-ignore; error appeared after updating Obsidian to 0.15.4; it also updated other packages but didn't say which
|
||
withPath(path) {
|
||
return new Link2(Object.assign({}, this, { path }));
|
||
}
|
||
/** Return a new link which points to the same location but with a new display value. */
|
||
withDisplay(display) {
|
||
return new Link2(Object.assign({}, this, { display }));
|
||
}
|
||
/** Convert a file link into a link to a specific header. */
|
||
withHeader(header) {
|
||
return Link2.header(this.path, header, this.embed, this.display);
|
||
}
|
||
/** Convert any link into a link to its file. */
|
||
toFile() {
|
||
return Link2.file(this.path, this.embed, this.display);
|
||
}
|
||
/** Convert this link into an embedded link. */
|
||
toEmbed() {
|
||
if (this.embed) {
|
||
return this;
|
||
} else {
|
||
let link = new Link2(this);
|
||
link.embed = true;
|
||
return link;
|
||
}
|
||
}
|
||
/** Convert this link into a non-embedded link. */
|
||
fromEmbed() {
|
||
if (!this.embed) {
|
||
return this;
|
||
} else {
|
||
let link = new Link2(this);
|
||
link.embed = false;
|
||
return link;
|
||
}
|
||
}
|
||
/** Convert this link to markdown so it can be rendered. */
|
||
markdown() {
|
||
let result = (this.embed ? "!" : "") + "[[" + this.obsidianLink();
|
||
if (this.display) {
|
||
result += "|" + this.display;
|
||
} else {
|
||
result += "|" + getFileTitle(this.path);
|
||
if (this.type == "header" || this.type == "block")
|
||
result += " > " + this.subpath;
|
||
}
|
||
result += "]]";
|
||
return result;
|
||
}
|
||
/** Convert the inner part of the link to something that Obsidian can open / understand. */
|
||
obsidianLink() {
|
||
var _a, _b;
|
||
const escaped = this.path.replace("|", "\\|");
|
||
if (this.type == "header")
|
||
return escaped + "#" + ((_a = this.subpath) === null || _a === void 0 ? void 0 : _a.replace("|", "\\|"));
|
||
if (this.type == "block")
|
||
return escaped + "#^" + ((_b = this.subpath) === null || _b === void 0 ? void 0 : _b.replace("|", "\\|"));
|
||
else
|
||
return escaped;
|
||
}
|
||
/** The stripped name of the file this link points to. */
|
||
fileName() {
|
||
return getFileTitle(this.path).replace(".md", "");
|
||
}
|
||
};
|
||
var Widget = class {
|
||
constructor($widget) {
|
||
this.$widget = $widget;
|
||
}
|
||
};
|
||
var ListPairWidget = class extends Widget {
|
||
constructor(key, value) {
|
||
super("dataview:list-pair");
|
||
this.key = key;
|
||
this.value = value;
|
||
}
|
||
markdown() {
|
||
return `${Values.toString(this.key)}: ${Values.toString(this.value)}`;
|
||
}
|
||
};
|
||
var ExternalLinkWidget = class extends Widget {
|
||
constructor(url, display) {
|
||
super("dataview:external-link");
|
||
this.url = url;
|
||
this.display = display;
|
||
}
|
||
markdown() {
|
||
var _a;
|
||
return `[${(_a = this.display) !== null && _a !== void 0 ? _a : this.url}](${this.url})`;
|
||
}
|
||
};
|
||
var Widgets;
|
||
(function(Widgets2) {
|
||
function listPair(key, value) {
|
||
return new ListPairWidget(key, value);
|
||
}
|
||
Widgets2.listPair = listPair;
|
||
function externalLink(url, display) {
|
||
return new ExternalLinkWidget(url, display);
|
||
}
|
||
Widgets2.externalLink = externalLink;
|
||
function isListPair(widget) {
|
||
return widget.$widget === "dataview:list-pair";
|
||
}
|
||
Widgets2.isListPair = isListPair;
|
||
function isExternalLink(widget) {
|
||
return widget.$widget === "dataview:external-link";
|
||
}
|
||
Widgets2.isExternalLink = isExternalLink;
|
||
function isBuiltin(widget) {
|
||
return isListPair(widget) || isExternalLink(widget);
|
||
}
|
||
Widgets2.isBuiltin = isBuiltin;
|
||
})(Widgets || (Widgets = {}));
|
||
var Fields;
|
||
(function(Fields2) {
|
||
function variable(name) {
|
||
return { type: "variable", name };
|
||
}
|
||
Fields2.variable = variable;
|
||
function literal(value) {
|
||
return { type: "literal", value };
|
||
}
|
||
Fields2.literal = literal;
|
||
function binaryOp(left, op, right) {
|
||
return { type: "binaryop", left, op, right };
|
||
}
|
||
Fields2.binaryOp = binaryOp;
|
||
function index(obj, index2) {
|
||
return { type: "index", object: obj, index: index2 };
|
||
}
|
||
Fields2.index = index;
|
||
function indexVariable(name) {
|
||
let parts = name.split(".");
|
||
let result = Fields2.variable(parts[0]);
|
||
for (let index2 = 1; index2 < parts.length; index2++) {
|
||
result = Fields2.index(result, Fields2.literal(parts[index2]));
|
||
}
|
||
return result;
|
||
}
|
||
Fields2.indexVariable = indexVariable;
|
||
function lambda(args, value) {
|
||
return { type: "lambda", arguments: args, value };
|
||
}
|
||
Fields2.lambda = lambda;
|
||
function func(func2, args) {
|
||
return { type: "function", func: func2, arguments: args };
|
||
}
|
||
Fields2.func = func;
|
||
function list(values) {
|
||
return { type: "list", values };
|
||
}
|
||
Fields2.list = list;
|
||
function object(values) {
|
||
return { type: "object", values };
|
||
}
|
||
Fields2.object = object;
|
||
function negate(child) {
|
||
return { type: "negated", child };
|
||
}
|
||
Fields2.negate = negate;
|
||
function isCompareOp(op) {
|
||
return op == "<=" || op == "<" || op == ">" || op == ">=" || op == "!=" || op == "=";
|
||
}
|
||
Fields2.isCompareOp = isCompareOp;
|
||
Fields2.NULL = Fields2.literal(null);
|
||
})(Fields || (Fields = {}));
|
||
var Sources;
|
||
(function(Sources2) {
|
||
function tag(tag2) {
|
||
return { type: "tag", tag: tag2 };
|
||
}
|
||
Sources2.tag = tag;
|
||
function csv(path) {
|
||
return { type: "csv", path };
|
||
}
|
||
Sources2.csv = csv;
|
||
function folder(prefix2) {
|
||
return { type: "folder", folder: prefix2 };
|
||
}
|
||
Sources2.folder = folder;
|
||
function link(file, incoming) {
|
||
return { type: "link", file, direction: incoming ? "incoming" : "outgoing" };
|
||
}
|
||
Sources2.link = link;
|
||
function binaryOp(left, op, right) {
|
||
return { type: "binaryop", left, op, right };
|
||
}
|
||
Sources2.binaryOp = binaryOp;
|
||
function and(left, right) {
|
||
return { type: "binaryop", left, op: "&", right };
|
||
}
|
||
Sources2.and = and;
|
||
function or(left, right) {
|
||
return { type: "binaryop", left, op: "|", right };
|
||
}
|
||
Sources2.or = or;
|
||
function negate(child) {
|
||
return { type: "negate", child };
|
||
}
|
||
Sources2.negate = negate;
|
||
function empty() {
|
||
return { type: "empty" };
|
||
}
|
||
Sources2.empty = empty;
|
||
})(Sources || (Sources = {}));
|
||
var EMOJI_REGEX = new RegExp(emojiRegex(), "");
|
||
var DURATION_TYPES = {
|
||
year: Duration.fromObject({ years: 1 }),
|
||
years: Duration.fromObject({ years: 1 }),
|
||
yr: Duration.fromObject({ years: 1 }),
|
||
yrs: Duration.fromObject({ years: 1 }),
|
||
month: Duration.fromObject({ months: 1 }),
|
||
months: Duration.fromObject({ months: 1 }),
|
||
mo: Duration.fromObject({ months: 1 }),
|
||
mos: Duration.fromObject({ months: 1 }),
|
||
week: Duration.fromObject({ weeks: 1 }),
|
||
weeks: Duration.fromObject({ weeks: 1 }),
|
||
wk: Duration.fromObject({ weeks: 1 }),
|
||
wks: Duration.fromObject({ weeks: 1 }),
|
||
w: Duration.fromObject({ weeks: 1 }),
|
||
day: Duration.fromObject({ days: 1 }),
|
||
days: Duration.fromObject({ days: 1 }),
|
||
d: Duration.fromObject({ days: 1 }),
|
||
hour: Duration.fromObject({ hours: 1 }),
|
||
hours: Duration.fromObject({ hours: 1 }),
|
||
hr: Duration.fromObject({ hours: 1 }),
|
||
hrs: Duration.fromObject({ hours: 1 }),
|
||
h: Duration.fromObject({ hours: 1 }),
|
||
minute: Duration.fromObject({ minutes: 1 }),
|
||
minutes: Duration.fromObject({ minutes: 1 }),
|
||
min: Duration.fromObject({ minutes: 1 }),
|
||
mins: Duration.fromObject({ minutes: 1 }),
|
||
m: Duration.fromObject({ minutes: 1 }),
|
||
second: Duration.fromObject({ seconds: 1 }),
|
||
seconds: Duration.fromObject({ seconds: 1 }),
|
||
sec: Duration.fromObject({ seconds: 1 }),
|
||
secs: Duration.fromObject({ seconds: 1 }),
|
||
s: Duration.fromObject({ seconds: 1 })
|
||
};
|
||
var DATE_SHORTHANDS = {
|
||
now: () => DateTime.local(),
|
||
today: () => DateTime.local().startOf("day"),
|
||
yesterday: () => DateTime.local().startOf("day").minus(Duration.fromObject({ days: 1 })),
|
||
tomorrow: () => DateTime.local().startOf("day").plus(Duration.fromObject({ days: 1 })),
|
||
sow: () => DateTime.local().startOf("week"),
|
||
"start-of-week": () => DateTime.local().startOf("week"),
|
||
eow: () => DateTime.local().endOf("week"),
|
||
"end-of-week": () => DateTime.local().endOf("week"),
|
||
soy: () => DateTime.local().startOf("year"),
|
||
"start-of-year": () => DateTime.local().startOf("year"),
|
||
eoy: () => DateTime.local().endOf("year"),
|
||
"end-of-year": () => DateTime.local().endOf("year"),
|
||
som: () => DateTime.local().startOf("month"),
|
||
"start-of-month": () => DateTime.local().startOf("month"),
|
||
eom: () => DateTime.local().endOf("month"),
|
||
"end-of-month": () => DateTime.local().endOf("month")
|
||
};
|
||
var KEYWORDS = ["FROM", "WHERE", "LIMIT", "GROUP", "FLATTEN"];
|
||
function splitOnUnescapedPipe(link) {
|
||
let pipe = -1;
|
||
while ((pipe = link.indexOf("|", pipe + 1)) >= 0) {
|
||
if (pipe > 0 && link[pipe - 1] == "\\")
|
||
continue;
|
||
return [link.substring(0, pipe).replace(/\\\|/g, "|"), link.substring(pipe + 1)];
|
||
}
|
||
return [link.replace(/\\\|/g, "|"), void 0];
|
||
}
|
||
function parseInnerLink(rawlink) {
|
||
let [link, display] = splitOnUnescapedPipe(rawlink);
|
||
return Link2.infer(link, false, display);
|
||
}
|
||
function createBinaryParser(child, sep, combine) {
|
||
return parsimmon_umd_min.exports.seqMap(child, parsimmon_umd_min.exports.seq(parsimmon_umd_min.exports.optWhitespace, sep, parsimmon_umd_min.exports.optWhitespace, child).many(), (first, rest) => {
|
||
if (rest.length == 0)
|
||
return first;
|
||
let node = combine(first, rest[0][1], rest[0][3]);
|
||
for (let index = 1; index < rest.length; index++) {
|
||
node = combine(node, rest[index][1], rest[index][3]);
|
||
}
|
||
return node;
|
||
});
|
||
}
|
||
function chainOpt(base, ...funcs) {
|
||
return parsimmon_umd_min.exports.custom((success, failure) => {
|
||
return (input, i) => {
|
||
let result = base._(input, i);
|
||
if (!result.status)
|
||
return result;
|
||
for (let func of funcs) {
|
||
let next = func(result.value)._(input, result.index);
|
||
if (!next.status)
|
||
return result;
|
||
result = next;
|
||
}
|
||
return result;
|
||
};
|
||
});
|
||
}
|
||
var EXPRESSION = parsimmon_umd_min.exports.createLanguage({
|
||
// A floating point number; the decimal point is optional.
|
||
number: (q) => parsimmon_umd_min.exports.regexp(/-?[0-9]+(\.[0-9]+)?/).map((str) => Number.parseFloat(str)).desc("number"),
|
||
// A quote-surrounded string which supports escape characters ('\').
|
||
string: (q) => parsimmon_umd_min.exports.string('"').then(parsimmon_umd_min.exports.alt(q.escapeCharacter, parsimmon_umd_min.exports.noneOf('"\\')).atLeast(0).map((chars) => chars.join(""))).skip(parsimmon_umd_min.exports.string('"')).desc("string"),
|
||
escapeCharacter: (_3) => parsimmon_umd_min.exports.string("\\").then(parsimmon_umd_min.exports.any).map((escaped) => {
|
||
if (escaped === '"')
|
||
return '"';
|
||
if (escaped === "\\")
|
||
return "\\";
|
||
else
|
||
return "\\" + escaped;
|
||
}),
|
||
// A boolean true/false value.
|
||
bool: (_3) => parsimmon_umd_min.exports.regexp(/true|false|True|False/).map((str) => str.toLowerCase() == "true").desc("boolean ('true' or 'false')"),
|
||
// A tag of the form '#stuff/hello-there'.
|
||
tag: (_3) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("#"), parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.regexp(/[^\u2000-\u206F\u2E00-\u2E7F'!"#$%&()*+,.:;<=>?@^`{|}~\[\]\\\s]/).desc("text")).many(), (start, rest) => start + rest.join("")).desc("tag ('#hello/stuff')"),
|
||
// A variable identifier, which is alphanumeric and must start with a letter or... emoji.
|
||
identifier: (_3) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.regexp(/\p{Letter}/u), parsimmon_umd_min.exports.regexp(EMOJI_REGEX).desc("text")), parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.regexp(/[0-9\p{Letter}_-]/u), parsimmon_umd_min.exports.regexp(EMOJI_REGEX).desc("text")).many(), (first, rest) => first + rest.join("")).desc("variable identifier"),
|
||
// An Obsidian link of the form [[<link>]].
|
||
link: (_3) => parsimmon_umd_min.exports.regexp(/\[\[([^\[\]]*?)\]\]/u, 1).map((linkInner) => parseInnerLink(linkInner)).desc("file link"),
|
||
// An embeddable link which can start with '!'. This overlaps with the normal negation operator, so it is only
|
||
// provided for metadata parsing.
|
||
embedLink: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("!").atMost(1), q.link, (p, l2) => {
|
||
if (p.length > 0)
|
||
l2.embed = true;
|
||
return l2;
|
||
}).desc("file link"),
|
||
// Binary plus or minus operator.
|
||
binaryPlusMinus: (_3) => parsimmon_umd_min.exports.regexp(/\+|-/).map((str) => str).desc("'+' or '-'"),
|
||
// Binary times or divide operator.
|
||
binaryMulDiv: (_3) => parsimmon_umd_min.exports.regexp(/\*|\/|%/).map((str) => str).desc("'*' or '/' or '%'"),
|
||
// Binary comparison operator.
|
||
binaryCompareOp: (_3) => parsimmon_umd_min.exports.regexp(/>=|<=|!=|>|<|=/).map((str) => str).desc("'>=' or '<=' or '!=' or '=' or '>' or '<'"),
|
||
// Binary boolean combination operator.
|
||
binaryBooleanOp: (_3) => parsimmon_umd_min.exports.regexp(/and|or|&|\|/i).map((str) => {
|
||
if (str.toLowerCase() == "and")
|
||
return "&";
|
||
else if (str.toLowerCase() == "or")
|
||
return "|";
|
||
else
|
||
return str;
|
||
}).desc("'and' or 'or'"),
|
||
// A date which can be YYYY-MM[-DDTHH:mm:ss].
|
||
rootDate: (_3) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/\d{4}/), parsimmon_umd_min.exports.string("-"), parsimmon_umd_min.exports.regexp(/\d{2}/), (year, _4, month) => {
|
||
return DateTime.fromObject({ year: Number.parseInt(year), month: Number.parseInt(month) });
|
||
}).desc("date in format YYYY-MM[-DDTHH-MM-SS.MS]"),
|
||
dateShorthand: (_3) => parsimmon_umd_min.exports.alt(...Object.keys(DATE_SHORTHANDS).sort((a, b) => b.length - a.length).map(parsimmon_umd_min.exports.string)),
|
||
date: (q) => chainOpt(q.rootDate, (ym) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("-"), parsimmon_umd_min.exports.regexp(/\d{2}/), (_3, day) => ym.set({ day: Number.parseInt(day) })), (ymd) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("T"), parsimmon_umd_min.exports.regexp(/\d{2}/), (_3, hour) => ymd.set({ hour: Number.parseInt(hour) })), (ymdh) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string(":"), parsimmon_umd_min.exports.regexp(/\d{2}/), (_3, minute) => ymdh.set({ minute: Number.parseInt(minute) })), (ymdhm) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string(":"), parsimmon_umd_min.exports.regexp(/\d{2}/), (_3, second) => ymdhm.set({ second: Number.parseInt(second) })), (ymdhms) => parsimmon_umd_min.exports.alt(
|
||
parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("."), parsimmon_umd_min.exports.regexp(/\d{3}/), (_3, millisecond) => ymdhms.set({ millisecond: Number.parseInt(millisecond) })),
|
||
parsimmon_umd_min.exports.succeed(ymdhms)
|
||
// pass
|
||
), (dt) => parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("+").or(parsimmon_umd_min.exports.string("-")), parsimmon_umd_min.exports.regexp(/\d{1,2}(:\d{2})?/), (pm, hr) => dt.setZone("UTC" + pm + hr, { keepLocalTime: true })), parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("Z"), () => dt.setZone("utc", { keepLocalTime: true })), parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("["), parsimmon_umd_min.exports.regexp(/[0-9A-Za-z+-\/]+/u), parsimmon_umd_min.exports.string("]"), (_a, zone, _b) => dt.setZone(zone, { keepLocalTime: true })))).assert((dt) => dt.isValid, "valid date").desc("date in format YYYY-MM[-DDTHH-MM-SS.MS]"),
|
||
// A date, plus various shorthand times of day it could be.
|
||
datePlus: (q) => parsimmon_umd_min.exports.alt(q.dateShorthand.map((d) => DATE_SHORTHANDS[d]()), q.date).desc("date in format YYYY-MM[-DDTHH-MM-SS.MS] or in shorthand"),
|
||
// A duration of time.
|
||
durationType: (_3) => parsimmon_umd_min.exports.alt(...Object.keys(DURATION_TYPES).sort((a, b) => b.length - a.length).map(parsimmon_umd_min.exports.string)),
|
||
duration: (q) => parsimmon_umd_min.exports.seqMap(q.number, parsimmon_umd_min.exports.optWhitespace, q.durationType, (count, _3, t) => DURATION_TYPES[t].mapUnits((x) => x * count)).sepBy1(parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace).or(parsimmon_umd_min.exports.optWhitespace)).map((durations) => durations.reduce((p, c) => p.plus(c))).desc("duration like 4hr2min"),
|
||
// A raw null value.
|
||
rawNull: (_3) => parsimmon_umd_min.exports.string("null"),
|
||
// Source parsing.
|
||
tagSource: (q) => q.tag.map((tag) => Sources.tag(tag)),
|
||
csvSource: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("csv(").skip(parsimmon_umd_min.exports.optWhitespace), q.string, parsimmon_umd_min.exports.string(")"), (_1, path, _22) => Sources.csv(path)),
|
||
linkIncomingSource: (q) => q.link.map((link) => Sources.link(link.path, true)),
|
||
linkOutgoingSource: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("outgoing(").skip(parsimmon_umd_min.exports.optWhitespace), q.link, parsimmon_umd_min.exports.string(")"), (_1, link, _22) => Sources.link(link.path, false)),
|
||
folderSource: (q) => q.string.map((str) => Sources.folder(str)),
|
||
parensSource: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("("), parsimmon_umd_min.exports.optWhitespace, q.source, parsimmon_umd_min.exports.optWhitespace, parsimmon_umd_min.exports.string(")"), (_1, _22, field, _3, _4) => field),
|
||
negateSource: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.string("-"), parsimmon_umd_min.exports.string("!")), q.atomSource, (_3, source) => Sources.negate(source)),
|
||
atomSource: (q) => parsimmon_umd_min.exports.alt(q.parensSource, q.negateSource, q.linkOutgoingSource, q.linkIncomingSource, q.folderSource, q.tagSource, q.csvSource),
|
||
binaryOpSource: (q) => createBinaryParser(q.atomSource, q.binaryBooleanOp.map((s2) => s2), Sources.binaryOp),
|
||
source: (q) => q.binaryOpSource,
|
||
// Field parsing.
|
||
variableField: (q) => q.identifier.chain((r) => {
|
||
if (KEYWORDS.includes(r.toUpperCase())) {
|
||
return parsimmon_umd_min.exports.fail("Variable fields cannot be a keyword (" + KEYWORDS.join(" or ") + ")");
|
||
} else {
|
||
return parsimmon_umd_min.exports.succeed(Fields.variable(r));
|
||
}
|
||
}).desc("variable"),
|
||
numberField: (q) => q.number.map((val) => Fields.literal(val)).desc("number"),
|
||
stringField: (q) => q.string.map((val) => Fields.literal(val)).desc("string"),
|
||
boolField: (q) => q.bool.map((val) => Fields.literal(val)).desc("boolean"),
|
||
dateField: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("date("), parsimmon_umd_min.exports.optWhitespace, q.datePlus, parsimmon_umd_min.exports.optWhitespace, parsimmon_umd_min.exports.string(")"), (prefix2, _1, date, _22, postfix) => Fields.literal(date)).desc("date"),
|
||
durationField: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("dur("), parsimmon_umd_min.exports.optWhitespace, q.duration, parsimmon_umd_min.exports.optWhitespace, parsimmon_umd_min.exports.string(")"), (prefix2, _1, dur, _22, postfix) => Fields.literal(dur)).desc("duration"),
|
||
nullField: (q) => q.rawNull.map((_3) => Fields.NULL),
|
||
linkField: (q) => q.link.map((f) => Fields.literal(f)),
|
||
listField: (q) => q.field.sepBy(parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace)).wrap(parsimmon_umd_min.exports.string("[").skip(parsimmon_umd_min.exports.optWhitespace), parsimmon_umd_min.exports.optWhitespace.then(parsimmon_umd_min.exports.string("]"))).map((l2) => Fields.list(l2)).desc("list ('[1, 2, 3]')"),
|
||
objectField: (q) => parsimmon_umd_min.exports.seqMap(q.identifier.or(q.string), parsimmon_umd_min.exports.string(":").trim(parsimmon_umd_min.exports.optWhitespace), q.field, (name, _sep, value) => {
|
||
return { name, value };
|
||
}).sepBy(parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace)).wrap(parsimmon_umd_min.exports.string("{").skip(parsimmon_umd_min.exports.optWhitespace), parsimmon_umd_min.exports.optWhitespace.then(parsimmon_umd_min.exports.string("}"))).map((vals) => {
|
||
let res = {};
|
||
for (let entry of vals)
|
||
res[entry.name] = entry.value;
|
||
return Fields.object(res);
|
||
}).desc("object ('{ a: 1, b: 2 }')"),
|
||
atomInlineField: (q) => parsimmon_umd_min.exports.alt(q.date, q.duration.map((d) => normalizeDuration(d)), q.string, q.tag, q.embedLink, q.bool, q.number, q.rawNull),
|
||
inlineFieldList: (q) => q.atomInlineField.sepBy(parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace).lookahead(q.atomInlineField)),
|
||
inlineField: (q) => parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.seqMap(q.atomInlineField, parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace), q.inlineFieldList, (f, _s, l2) => [f].concat(l2)), q.atomInlineField),
|
||
atomField: (q) => parsimmon_umd_min.exports.alt(
|
||
// Place embed links above negated fields as they are the special parser case '![[thing]]' and are generally unambigious.
|
||
q.embedLink.map((l2) => Fields.literal(l2)),
|
||
q.negatedField,
|
||
q.linkField,
|
||
q.listField,
|
||
q.objectField,
|
||
q.lambdaField,
|
||
q.parensField,
|
||
q.boolField,
|
||
q.numberField,
|
||
q.stringField,
|
||
q.dateField,
|
||
q.durationField,
|
||
q.nullField,
|
||
q.variableField
|
||
),
|
||
indexField: (q) => parsimmon_umd_min.exports.seqMap(q.atomField, parsimmon_umd_min.exports.alt(q.dotPostfix, q.indexPostfix, q.functionPostfix).many(), (obj, postfixes) => {
|
||
let result = obj;
|
||
for (let post of postfixes) {
|
||
switch (post.type) {
|
||
case "dot":
|
||
result = Fields.index(result, Fields.literal(post.field));
|
||
break;
|
||
case "index":
|
||
result = Fields.index(result, post.field);
|
||
break;
|
||
case "function":
|
||
result = Fields.func(result, post.fields);
|
||
break;
|
||
}
|
||
}
|
||
return result;
|
||
}),
|
||
negatedField: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("!"), q.indexField, (_3, field) => Fields.negate(field)).desc("negated field"),
|
||
parensField: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("("), parsimmon_umd_min.exports.optWhitespace, q.field, parsimmon_umd_min.exports.optWhitespace, parsimmon_umd_min.exports.string(")"), (_1, _22, field, _3, _4) => field),
|
||
lambdaField: (q) => parsimmon_umd_min.exports.seqMap(q.identifier.sepBy(parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace)).wrap(parsimmon_umd_min.exports.string("(").trim(parsimmon_umd_min.exports.optWhitespace), parsimmon_umd_min.exports.string(")").trim(parsimmon_umd_min.exports.optWhitespace)), parsimmon_umd_min.exports.string("=>").trim(parsimmon_umd_min.exports.optWhitespace), q.field, (ident, _ignore, value) => {
|
||
return { type: "lambda", arguments: ident, value };
|
||
}),
|
||
dotPostfix: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("."), q.identifier, (_3, field) => {
|
||
return { type: "dot", field };
|
||
}),
|
||
indexPostfix: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("["), parsimmon_umd_min.exports.optWhitespace, q.field, parsimmon_umd_min.exports.optWhitespace, parsimmon_umd_min.exports.string("]"), (_3, _22, field, _32, _4) => {
|
||
return { type: "index", field };
|
||
}),
|
||
functionPostfix: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.string("("), parsimmon_umd_min.exports.optWhitespace, q.field.sepBy(parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace)), parsimmon_umd_min.exports.optWhitespace, parsimmon_umd_min.exports.string(")"), (_3, _1, fields, _22, _32) => {
|
||
return { type: "function", fields };
|
||
}),
|
||
// The precedence hierarchy of operators - multiply/divide, add/subtract, compare, and then boolean operations.
|
||
binaryMulDivField: (q) => createBinaryParser(q.indexField, q.binaryMulDiv, Fields.binaryOp),
|
||
binaryPlusMinusField: (q) => createBinaryParser(q.binaryMulDivField, q.binaryPlusMinus, Fields.binaryOp),
|
||
binaryCompareField: (q) => createBinaryParser(q.binaryPlusMinusField, q.binaryCompareOp, Fields.binaryOp),
|
||
binaryBooleanField: (q) => createBinaryParser(q.binaryCompareField, q.binaryBooleanOp, Fields.binaryOp),
|
||
binaryOpField: (q) => q.binaryBooleanField,
|
||
field: (q) => q.binaryOpField
|
||
});
|
||
function parseField(text) {
|
||
try {
|
||
return Result.success(EXPRESSION.field.tryParse(text));
|
||
} catch (error) {
|
||
return Result.failure("" + error);
|
||
}
|
||
}
|
||
var QueryFields;
|
||
(function(QueryFields2) {
|
||
function named(name, field) {
|
||
return { name, field };
|
||
}
|
||
QueryFields2.named = named;
|
||
function sortBy(field, dir) {
|
||
return { field, direction: dir };
|
||
}
|
||
QueryFields2.sortBy = sortBy;
|
||
})(QueryFields || (QueryFields = {}));
|
||
function captureRaw(base) {
|
||
return parsimmon_umd_min.exports.custom((success, failure) => {
|
||
return (input, i) => {
|
||
let result = base._(input, i);
|
||
if (!result.status)
|
||
return result;
|
||
return Object.assign({}, result, { value: [result.value, input.substring(i, result.index)] });
|
||
};
|
||
});
|
||
}
|
||
function stripNewlines(text) {
|
||
return text.split(/[\r\n]+/).map((t) => t.trim()).join("");
|
||
}
|
||
var QUERY_LANGUAGE = parsimmon_umd_min.exports.createLanguage({
|
||
// Simple atom parsing, like words, identifiers, numbers.
|
||
queryType: (q) => parsimmon_umd_min.exports.alt(parsimmon_umd_min.exports.regexp(/TABLE|LIST|TASK|CALENDAR/i)).map((str) => str.toLowerCase()).desc("query type ('TABLE', 'LIST', 'TASK', or 'CALENDAR')"),
|
||
explicitNamedField: (q) => parsimmon_umd_min.exports.seqMap(EXPRESSION.field.skip(parsimmon_umd_min.exports.whitespace), parsimmon_umd_min.exports.regexp(/AS/i).skip(parsimmon_umd_min.exports.whitespace), EXPRESSION.identifier.or(EXPRESSION.string), (field, _as, ident) => QueryFields.named(ident, field)),
|
||
namedField: (q) => parsimmon_umd_min.exports.alt(q.explicitNamedField, captureRaw(EXPRESSION.field).map(([value, text]) => QueryFields.named(stripNewlines(text), value))),
|
||
sortField: (q) => parsimmon_umd_min.exports.seqMap(EXPRESSION.field.skip(parsimmon_umd_min.exports.optWhitespace), parsimmon_umd_min.exports.regexp(/ASCENDING|DESCENDING|ASC|DESC/i).atMost(1), (field, dir) => {
|
||
let direction = dir.length == 0 ? "ascending" : dir[0].toLowerCase();
|
||
if (direction == "desc")
|
||
direction = "descending";
|
||
if (direction == "asc")
|
||
direction = "ascending";
|
||
return {
|
||
field,
|
||
direction
|
||
};
|
||
}),
|
||
headerClause: (q) => q.queryType.skip(parsimmon_umd_min.exports.whitespace).chain((qtype) => {
|
||
switch (qtype) {
|
||
case "table":
|
||
return parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/WITHOUT\s+ID/i).skip(parsimmon_umd_min.exports.optWhitespace).atMost(1), parsimmon_umd_min.exports.sepBy(q.namedField, parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace)), (withoutId, fields) => {
|
||
return { type: "table", fields, showId: withoutId.length == 0 };
|
||
});
|
||
case "list":
|
||
return parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/WITHOUT\s+ID/i).skip(parsimmon_umd_min.exports.optWhitespace).atMost(1), EXPRESSION.field.atMost(1), (withoutId, format) => {
|
||
return {
|
||
type: "list",
|
||
format: format.length == 1 ? format[0] : void 0,
|
||
showId: withoutId.length == 0
|
||
};
|
||
});
|
||
case "task":
|
||
return parsimmon_umd_min.exports.succeed({ type: "task" });
|
||
case "calendar":
|
||
return parsimmon_umd_min.exports.seqMap(q.namedField, (field) => {
|
||
return {
|
||
type: "calendar",
|
||
showId: true,
|
||
field
|
||
};
|
||
});
|
||
default:
|
||
return parsimmon_umd_min.exports.fail(`Unrecognized query type '${qtype}'`);
|
||
}
|
||
}).desc("TABLE or LIST or TASK or CALENDAR"),
|
||
fromClause: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/FROM/i), parsimmon_umd_min.exports.whitespace, EXPRESSION.source, (_1, _22, source) => source),
|
||
whereClause: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/WHERE/i), parsimmon_umd_min.exports.whitespace, EXPRESSION.field, (where, _3, field) => {
|
||
return { type: "where", clause: field };
|
||
}).desc("WHERE <expression>"),
|
||
sortByClause: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/SORT/i), parsimmon_umd_min.exports.whitespace, q.sortField.sepBy1(parsimmon_umd_min.exports.string(",").trim(parsimmon_umd_min.exports.optWhitespace)), (sort, _1, fields) => {
|
||
return { type: "sort", fields };
|
||
}).desc("SORT field [ASC/DESC]"),
|
||
limitClause: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/LIMIT/i), parsimmon_umd_min.exports.whitespace, EXPRESSION.field, (limit, _1, field) => {
|
||
return { type: "limit", amount: field };
|
||
}).desc("LIMIT <value>"),
|
||
flattenClause: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/FLATTEN/i).skip(parsimmon_umd_min.exports.whitespace), q.namedField, (_3, field) => {
|
||
return { type: "flatten", field };
|
||
}).desc("FLATTEN <value> [AS <name>]"),
|
||
groupByClause: (q) => parsimmon_umd_min.exports.seqMap(parsimmon_umd_min.exports.regexp(/GROUP BY/i).skip(parsimmon_umd_min.exports.whitespace), q.namedField, (_3, field) => {
|
||
return { type: "group", field };
|
||
}).desc("GROUP BY <value> [AS <name>]"),
|
||
// Full query parsing.
|
||
clause: (q) => parsimmon_umd_min.exports.alt(q.fromClause, q.whereClause, q.sortByClause, q.limitClause, q.groupByClause, q.flattenClause),
|
||
query: (q) => parsimmon_umd_min.exports.seqMap(q.headerClause.trim(parsimmon_umd_min.exports.optWhitespace), q.fromClause.trim(parsimmon_umd_min.exports.optWhitespace).atMost(1), q.clause.trim(parsimmon_umd_min.exports.optWhitespace).many(), (header, from, clauses) => {
|
||
return {
|
||
header,
|
||
source: from.length == 0 ? Sources.folder("") : from[0],
|
||
operations: clauses,
|
||
settings: DEFAULT_QUERY_SETTINGS
|
||
};
|
||
})
|
||
});
|
||
var getAPI3 = (app2) => {
|
||
var _a;
|
||
if (app2)
|
||
return (_a = app2.plugins.plugins.dataview) === null || _a === void 0 ? void 0 : _a.api;
|
||
else
|
||
return window.DataviewAPI;
|
||
};
|
||
var isPluginEnabled = (app2) => app2.plugins.enabledPlugins.has("dataview");
|
||
exports.DATE_SHORTHANDS = DATE_SHORTHANDS;
|
||
exports.DURATION_TYPES = DURATION_TYPES;
|
||
exports.EXPRESSION = EXPRESSION;
|
||
exports.KEYWORDS = KEYWORDS;
|
||
exports.QUERY_LANGUAGE = QUERY_LANGUAGE;
|
||
exports.getAPI = getAPI3;
|
||
exports.isPluginEnabled = isPluginEnabled;
|
||
exports.parseField = parseField;
|
||
}
|
||
});
|
||
|
||
// node_modules/react/cjs/react.development.js
|
||
var require_react_development = __commonJS({
|
||
"node_modules/react/cjs/react.development.js"(exports, module2) {
|
||
"use strict";
|
||
if (true) {
|
||
(function() {
|
||
"use strict";
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
|
||
}
|
||
var ReactVersion = "18.2.0";
|
||
var REACT_ELEMENT_TYPE = Symbol.for("react.element");
|
||
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
||
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
||
var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
|
||
var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
||
var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
|
||
var REACT_CONTEXT_TYPE = Symbol.for("react.context");
|
||
var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
|
||
var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
|
||
var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
|
||
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
||
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
||
function getIteratorFn(maybeIterable) {
|
||
if (maybeIterable === null || typeof maybeIterable !== "object") {
|
||
return null;
|
||
}
|
||
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
||
if (typeof maybeIterator === "function") {
|
||
return maybeIterator;
|
||
}
|
||
return null;
|
||
}
|
||
var ReactCurrentDispatcher = {
|
||
/**
|
||
* @internal
|
||
* @type {ReactComponent}
|
||
*/
|
||
current: null
|
||
};
|
||
var ReactCurrentBatchConfig = {
|
||
transition: null
|
||
};
|
||
var ReactCurrentActQueue = {
|
||
current: null,
|
||
// Used to reproduce behavior of `batchedUpdates` in legacy mode.
|
||
isBatchingLegacy: false,
|
||
didScheduleLegacyUpdate: false
|
||
};
|
||
var ReactCurrentOwner = {
|
||
/**
|
||
* @internal
|
||
* @type {ReactComponent}
|
||
*/
|
||
current: null
|
||
};
|
||
var ReactDebugCurrentFrame = {};
|
||
var currentExtraStackFrame = null;
|
||
function setExtraStackFrame(stack) {
|
||
{
|
||
currentExtraStackFrame = stack;
|
||
}
|
||
}
|
||
{
|
||
ReactDebugCurrentFrame.setExtraStackFrame = function(stack) {
|
||
{
|
||
currentExtraStackFrame = stack;
|
||
}
|
||
};
|
||
ReactDebugCurrentFrame.getCurrentStack = null;
|
||
ReactDebugCurrentFrame.getStackAddendum = function() {
|
||
var stack = "";
|
||
if (currentExtraStackFrame) {
|
||
stack += currentExtraStackFrame;
|
||
}
|
||
var impl = ReactDebugCurrentFrame.getCurrentStack;
|
||
if (impl) {
|
||
stack += impl() || "";
|
||
}
|
||
return stack;
|
||
};
|
||
}
|
||
var enableScopeAPI = false;
|
||
var enableCacheElement = false;
|
||
var enableTransitionTracing = false;
|
||
var enableLegacyHidden = false;
|
||
var enableDebugTracing = false;
|
||
var ReactSharedInternals = {
|
||
ReactCurrentDispatcher,
|
||
ReactCurrentBatchConfig,
|
||
ReactCurrentOwner
|
||
};
|
||
{
|
||
ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
|
||
ReactSharedInternals.ReactCurrentActQueue = ReactCurrentActQueue;
|
||
}
|
||
function warn(format) {
|
||
{
|
||
{
|
||
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||
args[_key - 1] = arguments[_key];
|
||
}
|
||
printWarning("warn", format, args);
|
||
}
|
||
}
|
||
}
|
||
function error(format) {
|
||
{
|
||
{
|
||
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
||
args[_key2 - 1] = arguments[_key2];
|
||
}
|
||
printWarning("error", format, args);
|
||
}
|
||
}
|
||
}
|
||
function printWarning(level, format, args) {
|
||
{
|
||
var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
var stack = ReactDebugCurrentFrame2.getStackAddendum();
|
||
if (stack !== "") {
|
||
format += "%s";
|
||
args = args.concat([stack]);
|
||
}
|
||
var argsWithFormat = args.map(function(item) {
|
||
return String(item);
|
||
});
|
||
argsWithFormat.unshift("Warning: " + format);
|
||
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
||
}
|
||
}
|
||
var didWarnStateUpdateForUnmountedComponent = {};
|
||
function warnNoop(publicInstance, callerName) {
|
||
{
|
||
var _constructor = publicInstance.constructor;
|
||
var componentName = _constructor && (_constructor.displayName || _constructor.name) || "ReactClass";
|
||
var warningKey = componentName + "." + callerName;
|
||
if (didWarnStateUpdateForUnmountedComponent[warningKey]) {
|
||
return;
|
||
}
|
||
error("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", callerName, componentName);
|
||
didWarnStateUpdateForUnmountedComponent[warningKey] = true;
|
||
}
|
||
}
|
||
var ReactNoopUpdateQueue = {
|
||
/**
|
||
* Checks whether or not this composite component is mounted.
|
||
* @param {ReactClass} publicInstance The instance we want to test.
|
||
* @return {boolean} True if mounted, false otherwise.
|
||
* @protected
|
||
* @final
|
||
*/
|
||
isMounted: function(publicInstance) {
|
||
return false;
|
||
},
|
||
/**
|
||
* Forces an update. This should only be invoked when it is known with
|
||
* certainty that we are **not** in a DOM transaction.
|
||
*
|
||
* You may want to call this when you know that some deeper aspect of the
|
||
* component's state has changed but `setState` was not called.
|
||
*
|
||
* This will not invoke `shouldComponentUpdate`, but it will invoke
|
||
* `componentWillUpdate` and `componentDidUpdate`.
|
||
*
|
||
* @param {ReactClass} publicInstance The instance that should rerender.
|
||
* @param {?function} callback Called after component is updated.
|
||
* @param {?string} callerName name of the calling function in the public API.
|
||
* @internal
|
||
*/
|
||
enqueueForceUpdate: function(publicInstance, callback, callerName) {
|
||
warnNoop(publicInstance, "forceUpdate");
|
||
},
|
||
/**
|
||
* Replaces all of the state. Always use this or `setState` to mutate state.
|
||
* You should treat `this.state` as immutable.
|
||
*
|
||
* There is no guarantee that `this.state` will be immediately updated, so
|
||
* accessing `this.state` after calling this method may return the old value.
|
||
*
|
||
* @param {ReactClass} publicInstance The instance that should rerender.
|
||
* @param {object} completeState Next state.
|
||
* @param {?function} callback Called after component is updated.
|
||
* @param {?string} callerName name of the calling function in the public API.
|
||
* @internal
|
||
*/
|
||
enqueueReplaceState: function(publicInstance, completeState, callback, callerName) {
|
||
warnNoop(publicInstance, "replaceState");
|
||
},
|
||
/**
|
||
* Sets a subset of the state. This only exists because _pendingState is
|
||
* internal. This provides a merging strategy that is not available to deep
|
||
* properties which is confusing. TODO: Expose pendingState or don't use it
|
||
* during the merge.
|
||
*
|
||
* @param {ReactClass} publicInstance The instance that should rerender.
|
||
* @param {object} partialState Next partial state to be merged with state.
|
||
* @param {?function} callback Called after component is updated.
|
||
* @param {?string} Name of the calling function in the public API.
|
||
* @internal
|
||
*/
|
||
enqueueSetState: function(publicInstance, partialState, callback, callerName) {
|
||
warnNoop(publicInstance, "setState");
|
||
}
|
||
};
|
||
var assign = Object.assign;
|
||
var emptyObject = {};
|
||
{
|
||
Object.freeze(emptyObject);
|
||
}
|
||
function Component2(props, context, updater) {
|
||
this.props = props;
|
||
this.context = context;
|
||
this.refs = emptyObject;
|
||
this.updater = updater || ReactNoopUpdateQueue;
|
||
}
|
||
Component2.prototype.isReactComponent = {};
|
||
Component2.prototype.setState = function(partialState, callback) {
|
||
if (typeof partialState !== "object" && typeof partialState !== "function" && partialState != null) {
|
||
throw new Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");
|
||
}
|
||
this.updater.enqueueSetState(this, partialState, callback, "setState");
|
||
};
|
||
Component2.prototype.forceUpdate = function(callback) {
|
||
this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
|
||
};
|
||
{
|
||
var deprecatedAPIs = {
|
||
isMounted: ["isMounted", "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."],
|
||
replaceState: ["replaceState", "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."]
|
||
};
|
||
var defineDeprecationWarning = function(methodName, info) {
|
||
Object.defineProperty(Component2.prototype, methodName, {
|
||
get: function() {
|
||
warn("%s(...) is deprecated in plain JavaScript React classes. %s", info[0], info[1]);
|
||
return void 0;
|
||
}
|
||
});
|
||
};
|
||
for (var fnName in deprecatedAPIs) {
|
||
if (deprecatedAPIs.hasOwnProperty(fnName)) {
|
||
defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
|
||
}
|
||
}
|
||
}
|
||
function ComponentDummy() {
|
||
}
|
||
ComponentDummy.prototype = Component2.prototype;
|
||
function PureComponent(props, context, updater) {
|
||
this.props = props;
|
||
this.context = context;
|
||
this.refs = emptyObject;
|
||
this.updater = updater || ReactNoopUpdateQueue;
|
||
}
|
||
var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
|
||
pureComponentPrototype.constructor = PureComponent;
|
||
assign(pureComponentPrototype, Component2.prototype);
|
||
pureComponentPrototype.isPureReactComponent = true;
|
||
function createRef() {
|
||
var refObject = {
|
||
current: null
|
||
};
|
||
{
|
||
Object.seal(refObject);
|
||
}
|
||
return refObject;
|
||
}
|
||
var isArrayImpl = Array.isArray;
|
||
function isArray(a) {
|
||
return isArrayImpl(a);
|
||
}
|
||
function typeName(value) {
|
||
{
|
||
var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
|
||
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
||
return type;
|
||
}
|
||
}
|
||
function willCoercionThrow(value) {
|
||
{
|
||
try {
|
||
testStringCoercion(value);
|
||
return false;
|
||
} catch (e) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
function testStringCoercion(value) {
|
||
return "" + value;
|
||
}
|
||
function checkKeyStringCoercion(value) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
function getWrappedName(outerType, innerType, wrapperName) {
|
||
var displayName = outerType.displayName;
|
||
if (displayName) {
|
||
return displayName;
|
||
}
|
||
var functionName = innerType.displayName || innerType.name || "";
|
||
return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
|
||
}
|
||
function getContextName(type) {
|
||
return type.displayName || "Context";
|
||
}
|
||
function getComponentNameFromType(type) {
|
||
if (type == null) {
|
||
return null;
|
||
}
|
||
{
|
||
if (typeof type.tag === "number") {
|
||
error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
if (typeof type === "function") {
|
||
return type.displayName || type.name || null;
|
||
}
|
||
if (typeof type === "string") {
|
||
return type;
|
||
}
|
||
switch (type) {
|
||
case REACT_FRAGMENT_TYPE:
|
||
return "Fragment";
|
||
case REACT_PORTAL_TYPE:
|
||
return "Portal";
|
||
case REACT_PROFILER_TYPE:
|
||
return "Profiler";
|
||
case REACT_STRICT_MODE_TYPE:
|
||
return "StrictMode";
|
||
case REACT_SUSPENSE_TYPE:
|
||
return "Suspense";
|
||
case REACT_SUSPENSE_LIST_TYPE:
|
||
return "SuspenseList";
|
||
}
|
||
if (typeof type === "object") {
|
||
switch (type.$$typeof) {
|
||
case REACT_CONTEXT_TYPE:
|
||
var context = type;
|
||
return getContextName(context) + ".Consumer";
|
||
case REACT_PROVIDER_TYPE:
|
||
var provider = type;
|
||
return getContextName(provider._context) + ".Provider";
|
||
case REACT_FORWARD_REF_TYPE:
|
||
return getWrappedName(type, type.render, "ForwardRef");
|
||
case REACT_MEMO_TYPE:
|
||
var outerName = type.displayName || null;
|
||
if (outerName !== null) {
|
||
return outerName;
|
||
}
|
||
return getComponentNameFromType(type.type) || "Memo";
|
||
case REACT_LAZY_TYPE: {
|
||
var lazyComponent = type;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
try {
|
||
return getComponentNameFromType(init(payload));
|
||
} catch (x) {
|
||
return null;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
||
var RESERVED_PROPS = {
|
||
key: true,
|
||
ref: true,
|
||
__self: true,
|
||
__source: true
|
||
};
|
||
var specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs;
|
||
{
|
||
didWarnAboutStringRefs = {};
|
||
}
|
||
function hasValidRef(config) {
|
||
{
|
||
if (hasOwnProperty.call(config, "ref")) {
|
||
var getter = Object.getOwnPropertyDescriptor(config, "ref").get;
|
||
if (getter && getter.isReactWarning) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
return config.ref !== void 0;
|
||
}
|
||
function hasValidKey(config) {
|
||
{
|
||
if (hasOwnProperty.call(config, "key")) {
|
||
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
||
if (getter && getter.isReactWarning) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
return config.key !== void 0;
|
||
}
|
||
function defineKeyPropWarningGetter(props, displayName) {
|
||
var warnAboutAccessingKey = function() {
|
||
{
|
||
if (!specialPropKeyWarningShown) {
|
||
specialPropKeyWarningShown = true;
|
||
error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
|
||
}
|
||
}
|
||
};
|
||
warnAboutAccessingKey.isReactWarning = true;
|
||
Object.defineProperty(props, "key", {
|
||
get: warnAboutAccessingKey,
|
||
configurable: true
|
||
});
|
||
}
|
||
function defineRefPropWarningGetter(props, displayName) {
|
||
var warnAboutAccessingRef = function() {
|
||
{
|
||
if (!specialPropRefWarningShown) {
|
||
specialPropRefWarningShown = true;
|
||
error("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
|
||
}
|
||
}
|
||
};
|
||
warnAboutAccessingRef.isReactWarning = true;
|
||
Object.defineProperty(props, "ref", {
|
||
get: warnAboutAccessingRef,
|
||
configurable: true
|
||
});
|
||
}
|
||
function warnIfStringRefCannotBeAutoConverted(config) {
|
||
{
|
||
if (typeof config.ref === "string" && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {
|
||
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
|
||
if (!didWarnAboutStringRefs[componentName]) {
|
||
error('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', componentName, config.ref);
|
||
didWarnAboutStringRefs[componentName] = true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var ReactElement = function(type, key, ref, self2, source, owner, props) {
|
||
var element = {
|
||
// This tag allows us to uniquely identify this as a React Element
|
||
$$typeof: REACT_ELEMENT_TYPE,
|
||
// Built-in properties that belong on the element
|
||
type,
|
||
key,
|
||
ref,
|
||
props,
|
||
// Record the component responsible for creating this element.
|
||
_owner: owner
|
||
};
|
||
{
|
||
element._store = {};
|
||
Object.defineProperty(element._store, "validated", {
|
||
configurable: false,
|
||
enumerable: false,
|
||
writable: true,
|
||
value: false
|
||
});
|
||
Object.defineProperty(element, "_self", {
|
||
configurable: false,
|
||
enumerable: false,
|
||
writable: false,
|
||
value: self2
|
||
});
|
||
Object.defineProperty(element, "_source", {
|
||
configurable: false,
|
||
enumerable: false,
|
||
writable: false,
|
||
value: source
|
||
});
|
||
if (Object.freeze) {
|
||
Object.freeze(element.props);
|
||
Object.freeze(element);
|
||
}
|
||
}
|
||
return element;
|
||
};
|
||
function createElement(type, config, children) {
|
||
var propName;
|
||
var props = {};
|
||
var key = null;
|
||
var ref = null;
|
||
var self2 = null;
|
||
var source = null;
|
||
if (config != null) {
|
||
if (hasValidRef(config)) {
|
||
ref = config.ref;
|
||
{
|
||
warnIfStringRefCannotBeAutoConverted(config);
|
||
}
|
||
}
|
||
if (hasValidKey(config)) {
|
||
{
|
||
checkKeyStringCoercion(config.key);
|
||
}
|
||
key = "" + config.key;
|
||
}
|
||
self2 = config.__self === void 0 ? null : config.__self;
|
||
source = config.__source === void 0 ? null : config.__source;
|
||
for (propName in config) {
|
||
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
||
props[propName] = config[propName];
|
||
}
|
||
}
|
||
}
|
||
var childrenLength = arguments.length - 2;
|
||
if (childrenLength === 1) {
|
||
props.children = children;
|
||
} else if (childrenLength > 1) {
|
||
var childArray = Array(childrenLength);
|
||
for (var i = 0; i < childrenLength; i++) {
|
||
childArray[i] = arguments[i + 2];
|
||
}
|
||
{
|
||
if (Object.freeze) {
|
||
Object.freeze(childArray);
|
||
}
|
||
}
|
||
props.children = childArray;
|
||
}
|
||
if (type && type.defaultProps) {
|
||
var defaultProps = type.defaultProps;
|
||
for (propName in defaultProps) {
|
||
if (props[propName] === void 0) {
|
||
props[propName] = defaultProps[propName];
|
||
}
|
||
}
|
||
}
|
||
{
|
||
if (key || ref) {
|
||
var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type;
|
||
if (key) {
|
||
defineKeyPropWarningGetter(props, displayName);
|
||
}
|
||
if (ref) {
|
||
defineRefPropWarningGetter(props, displayName);
|
||
}
|
||
}
|
||
}
|
||
return ReactElement(type, key, ref, self2, source, ReactCurrentOwner.current, props);
|
||
}
|
||
function cloneAndReplaceKey(oldElement, newKey) {
|
||
var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
|
||
return newElement;
|
||
}
|
||
function cloneElement(element, config, children) {
|
||
if (element === null || element === void 0) {
|
||
throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + element + ".");
|
||
}
|
||
var propName;
|
||
var props = assign({}, element.props);
|
||
var key = element.key;
|
||
var ref = element.ref;
|
||
var self2 = element._self;
|
||
var source = element._source;
|
||
var owner = element._owner;
|
||
if (config != null) {
|
||
if (hasValidRef(config)) {
|
||
ref = config.ref;
|
||
owner = ReactCurrentOwner.current;
|
||
}
|
||
if (hasValidKey(config)) {
|
||
{
|
||
checkKeyStringCoercion(config.key);
|
||
}
|
||
key = "" + config.key;
|
||
}
|
||
var defaultProps;
|
||
if (element.type && element.type.defaultProps) {
|
||
defaultProps = element.type.defaultProps;
|
||
}
|
||
for (propName in config) {
|
||
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
||
if (config[propName] === void 0 && defaultProps !== void 0) {
|
||
props[propName] = defaultProps[propName];
|
||
} else {
|
||
props[propName] = config[propName];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var childrenLength = arguments.length - 2;
|
||
if (childrenLength === 1) {
|
||
props.children = children;
|
||
} else if (childrenLength > 1) {
|
||
var childArray = Array(childrenLength);
|
||
for (var i = 0; i < childrenLength; i++) {
|
||
childArray[i] = arguments[i + 2];
|
||
}
|
||
props.children = childArray;
|
||
}
|
||
return ReactElement(element.type, key, ref, self2, source, owner, props);
|
||
}
|
||
function isValidElement(object) {
|
||
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
||
}
|
||
var SEPARATOR = ".";
|
||
var SUBSEPARATOR = ":";
|
||
function escape(key) {
|
||
var escapeRegex = /[=:]/g;
|
||
var escaperLookup = {
|
||
"=": "=0",
|
||
":": "=2"
|
||
};
|
||
var escapedString = key.replace(escapeRegex, function(match) {
|
||
return escaperLookup[match];
|
||
});
|
||
return "$" + escapedString;
|
||
}
|
||
var didWarnAboutMaps = false;
|
||
var userProvidedKeyEscapeRegex = /\/+/g;
|
||
function escapeUserProvidedKey(text) {
|
||
return text.replace(userProvidedKeyEscapeRegex, "$&/");
|
||
}
|
||
function getElementKey(element, index) {
|
||
if (typeof element === "object" && element !== null && element.key != null) {
|
||
{
|
||
checkKeyStringCoercion(element.key);
|
||
}
|
||
return escape("" + element.key);
|
||
}
|
||
return index.toString(36);
|
||
}
|
||
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
||
var type = typeof children;
|
||
if (type === "undefined" || type === "boolean") {
|
||
children = null;
|
||
}
|
||
var invokeCallback = false;
|
||
if (children === null) {
|
||
invokeCallback = true;
|
||
} else {
|
||
switch (type) {
|
||
case "string":
|
||
case "number":
|
||
invokeCallback = true;
|
||
break;
|
||
case "object":
|
||
switch (children.$$typeof) {
|
||
case REACT_ELEMENT_TYPE:
|
||
case REACT_PORTAL_TYPE:
|
||
invokeCallback = true;
|
||
}
|
||
}
|
||
}
|
||
if (invokeCallback) {
|
||
var _child = children;
|
||
var mappedChild = callback(_child);
|
||
var childKey = nameSoFar === "" ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;
|
||
if (isArray(mappedChild)) {
|
||
var escapedChildKey = "";
|
||
if (childKey != null) {
|
||
escapedChildKey = escapeUserProvidedKey(childKey) + "/";
|
||
}
|
||
mapIntoArray(mappedChild, array, escapedChildKey, "", function(c) {
|
||
return c;
|
||
});
|
||
} else if (mappedChild != null) {
|
||
if (isValidElement(mappedChild)) {
|
||
{
|
||
if (mappedChild.key && (!_child || _child.key !== mappedChild.key)) {
|
||
checkKeyStringCoercion(mappedChild.key);
|
||
}
|
||
}
|
||
mappedChild = cloneAndReplaceKey(
|
||
mappedChild,
|
||
// Keep both the (mapped) and old keys if they differ, just as
|
||
// traverseAllChildren used to do for objects as children
|
||
escapedPrefix + // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key
|
||
(mappedChild.key && (!_child || _child.key !== mappedChild.key) ? (
|
||
// $FlowFixMe Flow incorrectly thinks existing element's key can be a number
|
||
// eslint-disable-next-line react-internal/safe-string-coercion
|
||
escapeUserProvidedKey("" + mappedChild.key) + "/"
|
||
) : "") + childKey
|
||
);
|
||
}
|
||
array.push(mappedChild);
|
||
}
|
||
return 1;
|
||
}
|
||
var child;
|
||
var nextName;
|
||
var subtreeCount = 0;
|
||
var nextNamePrefix = nameSoFar === "" ? SEPARATOR : nameSoFar + SUBSEPARATOR;
|
||
if (isArray(children)) {
|
||
for (var i = 0; i < children.length; i++) {
|
||
child = children[i];
|
||
nextName = nextNamePrefix + getElementKey(child, i);
|
||
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
||
}
|
||
} else {
|
||
var iteratorFn = getIteratorFn(children);
|
||
if (typeof iteratorFn === "function") {
|
||
var iterableChildren = children;
|
||
{
|
||
if (iteratorFn === iterableChildren.entries) {
|
||
if (!didWarnAboutMaps) {
|
||
warn("Using Maps as children is not supported. Use an array of keyed ReactElements instead.");
|
||
}
|
||
didWarnAboutMaps = true;
|
||
}
|
||
}
|
||
var iterator = iteratorFn.call(iterableChildren);
|
||
var step;
|
||
var ii = 0;
|
||
while (!(step = iterator.next()).done) {
|
||
child = step.value;
|
||
nextName = nextNamePrefix + getElementKey(child, ii++);
|
||
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
||
}
|
||
} else if (type === "object") {
|
||
var childrenString = String(children);
|
||
throw new Error("Objects are not valid as a React child (found: " + (childrenString === "[object Object]" ? "object with keys {" + Object.keys(children).join(", ") + "}" : childrenString) + "). If you meant to render a collection of children, use an array instead.");
|
||
}
|
||
}
|
||
return subtreeCount;
|
||
}
|
||
function mapChildren(children, func, context) {
|
||
if (children == null) {
|
||
return children;
|
||
}
|
||
var result = [];
|
||
var count = 0;
|
||
mapIntoArray(children, result, "", "", function(child) {
|
||
return func.call(context, child, count++);
|
||
});
|
||
return result;
|
||
}
|
||
function countChildren(children) {
|
||
var n = 0;
|
||
mapChildren(children, function() {
|
||
n++;
|
||
});
|
||
return n;
|
||
}
|
||
function forEachChildren(children, forEachFunc, forEachContext) {
|
||
mapChildren(children, function() {
|
||
forEachFunc.apply(this, arguments);
|
||
}, forEachContext);
|
||
}
|
||
function toArray(children) {
|
||
return mapChildren(children, function(child) {
|
||
return child;
|
||
}) || [];
|
||
}
|
||
function onlyChild(children) {
|
||
if (!isValidElement(children)) {
|
||
throw new Error("React.Children.only expected to receive a single React element child.");
|
||
}
|
||
return children;
|
||
}
|
||
function createContext(defaultValue) {
|
||
var context = {
|
||
$$typeof: REACT_CONTEXT_TYPE,
|
||
// As a workaround to support multiple concurrent renderers, we categorize
|
||
// some renderers as primary and others as secondary. We only expect
|
||
// there to be two concurrent renderers at most: React Native (primary) and
|
||
// Fabric (secondary); React DOM (primary) and React ART (secondary).
|
||
// Secondary renderers store their context values on separate fields.
|
||
_currentValue: defaultValue,
|
||
_currentValue2: defaultValue,
|
||
// Used to track how many concurrent renderers this context currently
|
||
// supports within in a single renderer. Such as parallel server rendering.
|
||
_threadCount: 0,
|
||
// These are circular
|
||
Provider: null,
|
||
Consumer: null,
|
||
// Add these to use same hidden class in VM as ServerContext
|
||
_defaultValue: null,
|
||
_globalName: null
|
||
};
|
||
context.Provider = {
|
||
$$typeof: REACT_PROVIDER_TYPE,
|
||
_context: context
|
||
};
|
||
var hasWarnedAboutUsingNestedContextConsumers = false;
|
||
var hasWarnedAboutUsingConsumerProvider = false;
|
||
var hasWarnedAboutDisplayNameOnConsumer = false;
|
||
{
|
||
var Consumer = {
|
||
$$typeof: REACT_CONTEXT_TYPE,
|
||
_context: context
|
||
};
|
||
Object.defineProperties(Consumer, {
|
||
Provider: {
|
||
get: function() {
|
||
if (!hasWarnedAboutUsingConsumerProvider) {
|
||
hasWarnedAboutUsingConsumerProvider = true;
|
||
error("Rendering <Context.Consumer.Provider> is not supported and will be removed in a future major release. Did you mean to render <Context.Provider> instead?");
|
||
}
|
||
return context.Provider;
|
||
},
|
||
set: function(_Provider) {
|
||
context.Provider = _Provider;
|
||
}
|
||
},
|
||
_currentValue: {
|
||
get: function() {
|
||
return context._currentValue;
|
||
},
|
||
set: function(_currentValue) {
|
||
context._currentValue = _currentValue;
|
||
}
|
||
},
|
||
_currentValue2: {
|
||
get: function() {
|
||
return context._currentValue2;
|
||
},
|
||
set: function(_currentValue2) {
|
||
context._currentValue2 = _currentValue2;
|
||
}
|
||
},
|
||
_threadCount: {
|
||
get: function() {
|
||
return context._threadCount;
|
||
},
|
||
set: function(_threadCount) {
|
||
context._threadCount = _threadCount;
|
||
}
|
||
},
|
||
Consumer: {
|
||
get: function() {
|
||
if (!hasWarnedAboutUsingNestedContextConsumers) {
|
||
hasWarnedAboutUsingNestedContextConsumers = true;
|
||
error("Rendering <Context.Consumer.Consumer> is not supported and will be removed in a future major release. Did you mean to render <Context.Consumer> instead?");
|
||
}
|
||
return context.Consumer;
|
||
}
|
||
},
|
||
displayName: {
|
||
get: function() {
|
||
return context.displayName;
|
||
},
|
||
set: function(displayName) {
|
||
if (!hasWarnedAboutDisplayNameOnConsumer) {
|
||
warn("Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = '%s'.", displayName);
|
||
hasWarnedAboutDisplayNameOnConsumer = true;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
context.Consumer = Consumer;
|
||
}
|
||
{
|
||
context._currentRenderer = null;
|
||
context._currentRenderer2 = null;
|
||
}
|
||
return context;
|
||
}
|
||
var Uninitialized = -1;
|
||
var Pending = 0;
|
||
var Resolved = 1;
|
||
var Rejected = 2;
|
||
function lazyInitializer(payload) {
|
||
if (payload._status === Uninitialized) {
|
||
var ctor = payload._result;
|
||
var thenable = ctor();
|
||
thenable.then(function(moduleObject2) {
|
||
if (payload._status === Pending || payload._status === Uninitialized) {
|
||
var resolved = payload;
|
||
resolved._status = Resolved;
|
||
resolved._result = moduleObject2;
|
||
}
|
||
}, function(error2) {
|
||
if (payload._status === Pending || payload._status === Uninitialized) {
|
||
var rejected = payload;
|
||
rejected._status = Rejected;
|
||
rejected._result = error2;
|
||
}
|
||
});
|
||
if (payload._status === Uninitialized) {
|
||
var pending = payload;
|
||
pending._status = Pending;
|
||
pending._result = thenable;
|
||
}
|
||
}
|
||
if (payload._status === Resolved) {
|
||
var moduleObject = payload._result;
|
||
{
|
||
if (moduleObject === void 0) {
|
||
error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?", moduleObject);
|
||
}
|
||
}
|
||
{
|
||
if (!("default" in moduleObject)) {
|
||
error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))", moduleObject);
|
||
}
|
||
}
|
||
return moduleObject.default;
|
||
} else {
|
||
throw payload._result;
|
||
}
|
||
}
|
||
function lazy(ctor) {
|
||
var payload = {
|
||
// We use these fields to store the result.
|
||
_status: Uninitialized,
|
||
_result: ctor
|
||
};
|
||
var lazyType = {
|
||
$$typeof: REACT_LAZY_TYPE,
|
||
_payload: payload,
|
||
_init: lazyInitializer
|
||
};
|
||
{
|
||
var defaultProps;
|
||
var propTypes;
|
||
Object.defineProperties(lazyType, {
|
||
defaultProps: {
|
||
configurable: true,
|
||
get: function() {
|
||
return defaultProps;
|
||
},
|
||
set: function(newDefaultProps) {
|
||
error("React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.");
|
||
defaultProps = newDefaultProps;
|
||
Object.defineProperty(lazyType, "defaultProps", {
|
||
enumerable: true
|
||
});
|
||
}
|
||
},
|
||
propTypes: {
|
||
configurable: true,
|
||
get: function() {
|
||
return propTypes;
|
||
},
|
||
set: function(newPropTypes) {
|
||
error("React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.");
|
||
propTypes = newPropTypes;
|
||
Object.defineProperty(lazyType, "propTypes", {
|
||
enumerable: true
|
||
});
|
||
}
|
||
}
|
||
});
|
||
}
|
||
return lazyType;
|
||
}
|
||
function forwardRef2(render) {
|
||
{
|
||
if (render != null && render.$$typeof === REACT_MEMO_TYPE) {
|
||
error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).");
|
||
} else if (typeof render !== "function") {
|
||
error("forwardRef requires a render function but was given %s.", render === null ? "null" : typeof render);
|
||
} else {
|
||
if (render.length !== 0 && render.length !== 2) {
|
||
error("forwardRef render functions accept exactly two parameters: props and ref. %s", render.length === 1 ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined.");
|
||
}
|
||
}
|
||
if (render != null) {
|
||
if (render.defaultProps != null || render.propTypes != null) {
|
||
error("forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?");
|
||
}
|
||
}
|
||
}
|
||
var elementType = {
|
||
$$typeof: REACT_FORWARD_REF_TYPE,
|
||
render
|
||
};
|
||
{
|
||
var ownName;
|
||
Object.defineProperty(elementType, "displayName", {
|
||
enumerable: false,
|
||
configurable: true,
|
||
get: function() {
|
||
return ownName;
|
||
},
|
||
set: function(name) {
|
||
ownName = name;
|
||
if (!render.name && !render.displayName) {
|
||
render.displayName = name;
|
||
}
|
||
}
|
||
});
|
||
}
|
||
return elementType;
|
||
}
|
||
var REACT_MODULE_REFERENCE;
|
||
{
|
||
REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
|
||
}
|
||
function isValidElementType(type) {
|
||
if (typeof type === "string" || typeof type === "function") {
|
||
return true;
|
||
}
|
||
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
|
||
return true;
|
||
}
|
||
if (typeof type === "object" && type !== null) {
|
||
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
||
// types supported by any Flight configuration anywhere since
|
||
// we don't know which Flight build this will end up being used
|
||
// with.
|
||
type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== void 0) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function memo(type, compare) {
|
||
{
|
||
if (!isValidElementType(type)) {
|
||
error("memo: The first argument must be a component. Instead received: %s", type === null ? "null" : typeof type);
|
||
}
|
||
}
|
||
var elementType = {
|
||
$$typeof: REACT_MEMO_TYPE,
|
||
type,
|
||
compare: compare === void 0 ? null : compare
|
||
};
|
||
{
|
||
var ownName;
|
||
Object.defineProperty(elementType, "displayName", {
|
||
enumerable: false,
|
||
configurable: true,
|
||
get: function() {
|
||
return ownName;
|
||
},
|
||
set: function(name) {
|
||
ownName = name;
|
||
if (!type.name && !type.displayName) {
|
||
type.displayName = name;
|
||
}
|
||
}
|
||
});
|
||
}
|
||
return elementType;
|
||
}
|
||
function resolveDispatcher() {
|
||
var dispatcher = ReactCurrentDispatcher.current;
|
||
{
|
||
if (dispatcher === null) {
|
||
error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.");
|
||
}
|
||
}
|
||
return dispatcher;
|
||
}
|
||
function useContext(Context) {
|
||
var dispatcher = resolveDispatcher();
|
||
{
|
||
if (Context._context !== void 0) {
|
||
var realContext = Context._context;
|
||
if (realContext.Consumer === Context) {
|
||
error("Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?");
|
||
} else if (realContext.Provider === Context) {
|
||
error("Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?");
|
||
}
|
||
}
|
||
}
|
||
return dispatcher.useContext(Context);
|
||
}
|
||
function useState2(initialState) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useState(initialState);
|
||
}
|
||
function useReducer(reducer, initialArg, init) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useReducer(reducer, initialArg, init);
|
||
}
|
||
function useRef3(initialValue) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useRef(initialValue);
|
||
}
|
||
function useEffect(create2, deps) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useEffect(create2, deps);
|
||
}
|
||
function useInsertionEffect(create2, deps) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useInsertionEffect(create2, deps);
|
||
}
|
||
function useLayoutEffect2(create2, deps) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useLayoutEffect(create2, deps);
|
||
}
|
||
function useCallback(callback, deps) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useCallback(callback, deps);
|
||
}
|
||
function useMemo2(create2, deps) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useMemo(create2, deps);
|
||
}
|
||
function useImperativeHandle(ref, create2, deps) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useImperativeHandle(ref, create2, deps);
|
||
}
|
||
function useDebugValue2(value, formatterFn) {
|
||
{
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useDebugValue(value, formatterFn);
|
||
}
|
||
}
|
||
function useTransition() {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useTransition();
|
||
}
|
||
function useDeferredValue(value) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useDeferredValue(value);
|
||
}
|
||
function useId() {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useId();
|
||
}
|
||
function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
||
var dispatcher = resolveDispatcher();
|
||
return dispatcher.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
|
||
}
|
||
var disabledDepth = 0;
|
||
var prevLog;
|
||
var prevInfo;
|
||
var prevWarn;
|
||
var prevError;
|
||
var prevGroup;
|
||
var prevGroupCollapsed;
|
||
var prevGroupEnd;
|
||
function disabledLog() {
|
||
}
|
||
disabledLog.__reactDisabledLog = true;
|
||
function disableLogs() {
|
||
{
|
||
if (disabledDepth === 0) {
|
||
prevLog = console.log;
|
||
prevInfo = console.info;
|
||
prevWarn = console.warn;
|
||
prevError = console.error;
|
||
prevGroup = console.group;
|
||
prevGroupCollapsed = console.groupCollapsed;
|
||
prevGroupEnd = console.groupEnd;
|
||
var props = {
|
||
configurable: true,
|
||
enumerable: true,
|
||
value: disabledLog,
|
||
writable: true
|
||
};
|
||
Object.defineProperties(console, {
|
||
info: props,
|
||
log: props,
|
||
warn: props,
|
||
error: props,
|
||
group: props,
|
||
groupCollapsed: props,
|
||
groupEnd: props
|
||
});
|
||
}
|
||
disabledDepth++;
|
||
}
|
||
}
|
||
function reenableLogs() {
|
||
{
|
||
disabledDepth--;
|
||
if (disabledDepth === 0) {
|
||
var props = {
|
||
configurable: true,
|
||
enumerable: true,
|
||
writable: true
|
||
};
|
||
Object.defineProperties(console, {
|
||
log: assign({}, props, {
|
||
value: prevLog
|
||
}),
|
||
info: assign({}, props, {
|
||
value: prevInfo
|
||
}),
|
||
warn: assign({}, props, {
|
||
value: prevWarn
|
||
}),
|
||
error: assign({}, props, {
|
||
value: prevError
|
||
}),
|
||
group: assign({}, props, {
|
||
value: prevGroup
|
||
}),
|
||
groupCollapsed: assign({}, props, {
|
||
value: prevGroupCollapsed
|
||
}),
|
||
groupEnd: assign({}, props, {
|
||
value: prevGroupEnd
|
||
})
|
||
});
|
||
}
|
||
if (disabledDepth < 0) {
|
||
error("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
}
|
||
var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
|
||
var prefix2;
|
||
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
||
{
|
||
if (prefix2 === void 0) {
|
||
try {
|
||
throw Error();
|
||
} catch (x) {
|
||
var match = x.stack.trim().match(/\n( *(at )?)/);
|
||
prefix2 = match && match[1] || "";
|
||
}
|
||
}
|
||
return "\n" + prefix2 + name;
|
||
}
|
||
}
|
||
var reentry = false;
|
||
var componentFrameCache;
|
||
{
|
||
var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
|
||
componentFrameCache = new PossiblyWeakMap();
|
||
}
|
||
function describeNativeComponentFrame(fn, construct) {
|
||
if (!fn || reentry) {
|
||
return "";
|
||
}
|
||
{
|
||
var frame = componentFrameCache.get(fn);
|
||
if (frame !== void 0) {
|
||
return frame;
|
||
}
|
||
}
|
||
var control;
|
||
reentry = true;
|
||
var previousPrepareStackTrace = Error.prepareStackTrace;
|
||
Error.prepareStackTrace = void 0;
|
||
var previousDispatcher;
|
||
{
|
||
previousDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = null;
|
||
disableLogs();
|
||
}
|
||
try {
|
||
if (construct) {
|
||
var Fake = function() {
|
||
throw Error();
|
||
};
|
||
Object.defineProperty(Fake.prototype, "props", {
|
||
set: function() {
|
||
throw Error();
|
||
}
|
||
});
|
||
if (typeof Reflect === "object" && Reflect.construct) {
|
||
try {
|
||
Reflect.construct(Fake, []);
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
Reflect.construct(fn, [], Fake);
|
||
} else {
|
||
try {
|
||
Fake.call();
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
fn.call(Fake.prototype);
|
||
}
|
||
} else {
|
||
try {
|
||
throw Error();
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
fn();
|
||
}
|
||
} catch (sample) {
|
||
if (sample && control && typeof sample.stack === "string") {
|
||
var sampleLines = sample.stack.split("\n");
|
||
var controlLines = control.stack.split("\n");
|
||
var s = sampleLines.length - 1;
|
||
var c = controlLines.length - 1;
|
||
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
||
c--;
|
||
}
|
||
for (; s >= 1 && c >= 0; s--, c--) {
|
||
if (sampleLines[s] !== controlLines[c]) {
|
||
if (s !== 1 || c !== 1) {
|
||
do {
|
||
s--;
|
||
c--;
|
||
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
||
var _frame = "\n" + sampleLines[s].replace(" at new ", " at ");
|
||
if (fn.displayName && _frame.includes("<anonymous>")) {
|
||
_frame = _frame.replace("<anonymous>", fn.displayName);
|
||
}
|
||
{
|
||
if (typeof fn === "function") {
|
||
componentFrameCache.set(fn, _frame);
|
||
}
|
||
}
|
||
return _frame;
|
||
}
|
||
} while (s >= 1 && c >= 0);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
} finally {
|
||
reentry = false;
|
||
{
|
||
ReactCurrentDispatcher$1.current = previousDispatcher;
|
||
reenableLogs();
|
||
}
|
||
Error.prepareStackTrace = previousPrepareStackTrace;
|
||
}
|
||
var name = fn ? fn.displayName || fn.name : "";
|
||
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
|
||
{
|
||
if (typeof fn === "function") {
|
||
componentFrameCache.set(fn, syntheticFrame);
|
||
}
|
||
}
|
||
return syntheticFrame;
|
||
}
|
||
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
||
{
|
||
return describeNativeComponentFrame(fn, false);
|
||
}
|
||
}
|
||
function shouldConstruct(Component3) {
|
||
var prototype = Component3.prototype;
|
||
return !!(prototype && prototype.isReactComponent);
|
||
}
|
||
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
||
if (type == null) {
|
||
return "";
|
||
}
|
||
if (typeof type === "function") {
|
||
{
|
||
return describeNativeComponentFrame(type, shouldConstruct(type));
|
||
}
|
||
}
|
||
if (typeof type === "string") {
|
||
return describeBuiltInComponentFrame(type);
|
||
}
|
||
switch (type) {
|
||
case REACT_SUSPENSE_TYPE:
|
||
return describeBuiltInComponentFrame("Suspense");
|
||
case REACT_SUSPENSE_LIST_TYPE:
|
||
return describeBuiltInComponentFrame("SuspenseList");
|
||
}
|
||
if (typeof type === "object") {
|
||
switch (type.$$typeof) {
|
||
case REACT_FORWARD_REF_TYPE:
|
||
return describeFunctionComponentFrame(type.render);
|
||
case REACT_MEMO_TYPE:
|
||
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
||
case REACT_LAZY_TYPE: {
|
||
var lazyComponent = type;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
try {
|
||
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
||
} catch (x) {
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return "";
|
||
}
|
||
var loggedTypeFailures = {};
|
||
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
function setCurrentlyValidatingElement(element) {
|
||
{
|
||
if (element) {
|
||
var owner = element._owner;
|
||
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
||
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
||
} else {
|
||
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
||
}
|
||
}
|
||
}
|
||
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
||
{
|
||
var has2 = Function.call.bind(hasOwnProperty);
|
||
for (var typeSpecName in typeSpecs) {
|
||
if (has2(typeSpecs, typeSpecName)) {
|
||
var error$1 = void 0;
|
||
try {
|
||
if (typeof typeSpecs[typeSpecName] !== "function") {
|
||
var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
||
err.name = "Invariant Violation";
|
||
throw err;
|
||
}
|
||
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
||
} catch (ex) {
|
||
error$1 = ex;
|
||
}
|
||
if (error$1 && !(error$1 instanceof Error)) {
|
||
setCurrentlyValidatingElement(element);
|
||
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1);
|
||
setCurrentlyValidatingElement(null);
|
||
}
|
||
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
||
loggedTypeFailures[error$1.message] = true;
|
||
setCurrentlyValidatingElement(element);
|
||
error("Failed %s type: %s", location, error$1.message);
|
||
setCurrentlyValidatingElement(null);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function setCurrentlyValidatingElement$1(element) {
|
||
{
|
||
if (element) {
|
||
var owner = element._owner;
|
||
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
||
setExtraStackFrame(stack);
|
||
} else {
|
||
setExtraStackFrame(null);
|
||
}
|
||
}
|
||
}
|
||
var propTypesMisspellWarningShown;
|
||
{
|
||
propTypesMisspellWarningShown = false;
|
||
}
|
||
function getDeclarationErrorAddendum() {
|
||
if (ReactCurrentOwner.current) {
|
||
var name = getComponentNameFromType(ReactCurrentOwner.current.type);
|
||
if (name) {
|
||
return "\n\nCheck the render method of `" + name + "`.";
|
||
}
|
||
}
|
||
return "";
|
||
}
|
||
function getSourceInfoErrorAddendum(source) {
|
||
if (source !== void 0) {
|
||
var fileName = source.fileName.replace(/^.*[\\\/]/, "");
|
||
var lineNumber = source.lineNumber;
|
||
return "\n\nCheck your code at " + fileName + ":" + lineNumber + ".";
|
||
}
|
||
return "";
|
||
}
|
||
function getSourceInfoErrorAddendumForProps(elementProps) {
|
||
if (elementProps !== null && elementProps !== void 0) {
|
||
return getSourceInfoErrorAddendum(elementProps.__source);
|
||
}
|
||
return "";
|
||
}
|
||
var ownerHasKeyUseWarning = {};
|
||
function getCurrentComponentErrorInfo(parentType) {
|
||
var info = getDeclarationErrorAddendum();
|
||
if (!info) {
|
||
var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name;
|
||
if (parentName) {
|
||
info = "\n\nCheck the top-level render call using <" + parentName + ">.";
|
||
}
|
||
}
|
||
return info;
|
||
}
|
||
function validateExplicitKey(element, parentType) {
|
||
if (!element._store || element._store.validated || element.key != null) {
|
||
return;
|
||
}
|
||
element._store.validated = true;
|
||
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
||
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
|
||
return;
|
||
}
|
||
ownerHasKeyUseWarning[currentComponentErrorInfo] = true;
|
||
var childOwner = "";
|
||
if (element && element._owner && element._owner !== ReactCurrentOwner.current) {
|
||
childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
|
||
}
|
||
{
|
||
setCurrentlyValidatingElement$1(element);
|
||
error('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
|
||
setCurrentlyValidatingElement$1(null);
|
||
}
|
||
}
|
||
function validateChildKeys(node, parentType) {
|
||
if (typeof node !== "object") {
|
||
return;
|
||
}
|
||
if (isArray(node)) {
|
||
for (var i = 0; i < node.length; i++) {
|
||
var child = node[i];
|
||
if (isValidElement(child)) {
|
||
validateExplicitKey(child, parentType);
|
||
}
|
||
}
|
||
} else if (isValidElement(node)) {
|
||
if (node._store) {
|
||
node._store.validated = true;
|
||
}
|
||
} else if (node) {
|
||
var iteratorFn = getIteratorFn(node);
|
||
if (typeof iteratorFn === "function") {
|
||
if (iteratorFn !== node.entries) {
|
||
var iterator = iteratorFn.call(node);
|
||
var step;
|
||
while (!(step = iterator.next()).done) {
|
||
if (isValidElement(step.value)) {
|
||
validateExplicitKey(step.value, parentType);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function validatePropTypes(element) {
|
||
{
|
||
var type = element.type;
|
||
if (type === null || type === void 0 || typeof type === "string") {
|
||
return;
|
||
}
|
||
var propTypes;
|
||
if (typeof type === "function") {
|
||
propTypes = type.propTypes;
|
||
} else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.
|
||
// Inner props are checked in the reconciler.
|
||
type.$$typeof === REACT_MEMO_TYPE)) {
|
||
propTypes = type.propTypes;
|
||
} else {
|
||
return;
|
||
}
|
||
if (propTypes) {
|
||
var name = getComponentNameFromType(type);
|
||
checkPropTypes(propTypes, element.props, "prop", name, element);
|
||
} else if (type.PropTypes !== void 0 && !propTypesMisspellWarningShown) {
|
||
propTypesMisspellWarningShown = true;
|
||
var _name = getComponentNameFromType(type);
|
||
error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", _name || "Unknown");
|
||
}
|
||
if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) {
|
||
error("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
||
}
|
||
}
|
||
}
|
||
function validateFragmentProps(fragment) {
|
||
{
|
||
var keys = Object.keys(fragment.props);
|
||
for (var i = 0; i < keys.length; i++) {
|
||
var key = keys[i];
|
||
if (key !== "children" && key !== "key") {
|
||
setCurrentlyValidatingElement$1(fragment);
|
||
error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", key);
|
||
setCurrentlyValidatingElement$1(null);
|
||
break;
|
||
}
|
||
}
|
||
if (fragment.ref !== null) {
|
||
setCurrentlyValidatingElement$1(fragment);
|
||
error("Invalid attribute `ref` supplied to `React.Fragment`.");
|
||
setCurrentlyValidatingElement$1(null);
|
||
}
|
||
}
|
||
}
|
||
function createElementWithValidation(type, props, children) {
|
||
var validType = isValidElementType(type);
|
||
if (!validType) {
|
||
var info = "";
|
||
if (type === void 0 || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
|
||
info += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";
|
||
}
|
||
var sourceInfo = getSourceInfoErrorAddendumForProps(props);
|
||
if (sourceInfo) {
|
||
info += sourceInfo;
|
||
} else {
|
||
info += getDeclarationErrorAddendum();
|
||
}
|
||
var typeString;
|
||
if (type === null) {
|
||
typeString = "null";
|
||
} else if (isArray(type)) {
|
||
typeString = "array";
|
||
} else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) {
|
||
typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
|
||
info = " Did you accidentally export a JSX literal instead of a component?";
|
||
} else {
|
||
typeString = typeof type;
|
||
}
|
||
{
|
||
error("React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", typeString, info);
|
||
}
|
||
}
|
||
var element = createElement.apply(this, arguments);
|
||
if (element == null) {
|
||
return element;
|
||
}
|
||
if (validType) {
|
||
for (var i = 2; i < arguments.length; i++) {
|
||
validateChildKeys(arguments[i], type);
|
||
}
|
||
}
|
||
if (type === REACT_FRAGMENT_TYPE) {
|
||
validateFragmentProps(element);
|
||
} else {
|
||
validatePropTypes(element);
|
||
}
|
||
return element;
|
||
}
|
||
var didWarnAboutDeprecatedCreateFactory = false;
|
||
function createFactoryWithValidation(type) {
|
||
var validatedFactory = createElementWithValidation.bind(null, type);
|
||
validatedFactory.type = type;
|
||
{
|
||
if (!didWarnAboutDeprecatedCreateFactory) {
|
||
didWarnAboutDeprecatedCreateFactory = true;
|
||
warn("React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.");
|
||
}
|
||
Object.defineProperty(validatedFactory, "type", {
|
||
enumerable: false,
|
||
get: function() {
|
||
warn("Factory.type is deprecated. Access the class directly before passing it to createFactory.");
|
||
Object.defineProperty(this, "type", {
|
||
value: type
|
||
});
|
||
return type;
|
||
}
|
||
});
|
||
}
|
||
return validatedFactory;
|
||
}
|
||
function cloneElementWithValidation(element, props, children) {
|
||
var newElement = cloneElement.apply(this, arguments);
|
||
for (var i = 2; i < arguments.length; i++) {
|
||
validateChildKeys(arguments[i], newElement.type);
|
||
}
|
||
validatePropTypes(newElement);
|
||
return newElement;
|
||
}
|
||
function startTransition(scope, options) {
|
||
var prevTransition = ReactCurrentBatchConfig.transition;
|
||
ReactCurrentBatchConfig.transition = {};
|
||
var currentTransition = ReactCurrentBatchConfig.transition;
|
||
{
|
||
ReactCurrentBatchConfig.transition._updatedFibers = /* @__PURE__ */ new Set();
|
||
}
|
||
try {
|
||
scope();
|
||
} finally {
|
||
ReactCurrentBatchConfig.transition = prevTransition;
|
||
{
|
||
if (prevTransition === null && currentTransition._updatedFibers) {
|
||
var updatedFibersCount = currentTransition._updatedFibers.size;
|
||
if (updatedFibersCount > 10) {
|
||
warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.");
|
||
}
|
||
currentTransition._updatedFibers.clear();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var didWarnAboutMessageChannel = false;
|
||
var enqueueTaskImpl = null;
|
||
function enqueueTask(task) {
|
||
if (enqueueTaskImpl === null) {
|
||
try {
|
||
var requireString = ("require" + Math.random()).slice(0, 7);
|
||
var nodeRequire = module2 && module2[requireString];
|
||
enqueueTaskImpl = nodeRequire.call(module2, "timers").setImmediate;
|
||
} catch (_err) {
|
||
enqueueTaskImpl = function(callback) {
|
||
{
|
||
if (didWarnAboutMessageChannel === false) {
|
||
didWarnAboutMessageChannel = true;
|
||
if (typeof MessageChannel === "undefined") {
|
||
error("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.");
|
||
}
|
||
}
|
||
}
|
||
var channel = new MessageChannel();
|
||
channel.port1.onmessage = callback;
|
||
channel.port2.postMessage(void 0);
|
||
};
|
||
}
|
||
}
|
||
return enqueueTaskImpl(task);
|
||
}
|
||
var actScopeDepth = 0;
|
||
var didWarnNoAwaitAct = false;
|
||
function act(callback) {
|
||
{
|
||
var prevActScopeDepth = actScopeDepth;
|
||
actScopeDepth++;
|
||
if (ReactCurrentActQueue.current === null) {
|
||
ReactCurrentActQueue.current = [];
|
||
}
|
||
var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;
|
||
var result;
|
||
try {
|
||
ReactCurrentActQueue.isBatchingLegacy = true;
|
||
result = callback();
|
||
if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {
|
||
var queue = ReactCurrentActQueue.current;
|
||
if (queue !== null) {
|
||
ReactCurrentActQueue.didScheduleLegacyUpdate = false;
|
||
flushActQueue(queue);
|
||
}
|
||
}
|
||
} catch (error2) {
|
||
popActScope(prevActScopeDepth);
|
||
throw error2;
|
||
} finally {
|
||
ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;
|
||
}
|
||
if (result !== null && typeof result === "object" && typeof result.then === "function") {
|
||
var thenableResult = result;
|
||
var wasAwaited = false;
|
||
var thenable = {
|
||
then: function(resolve, reject) {
|
||
wasAwaited = true;
|
||
thenableResult.then(function(returnValue2) {
|
||
popActScope(prevActScopeDepth);
|
||
if (actScopeDepth === 0) {
|
||
recursivelyFlushAsyncActWork(returnValue2, resolve, reject);
|
||
} else {
|
||
resolve(returnValue2);
|
||
}
|
||
}, function(error2) {
|
||
popActScope(prevActScopeDepth);
|
||
reject(error2);
|
||
});
|
||
}
|
||
};
|
||
{
|
||
if (!didWarnNoAwaitAct && typeof Promise !== "undefined") {
|
||
Promise.resolve().then(function() {
|
||
}).then(function() {
|
||
if (!wasAwaited) {
|
||
didWarnNoAwaitAct = true;
|
||
error("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);");
|
||
}
|
||
});
|
||
}
|
||
}
|
||
return thenable;
|
||
} else {
|
||
var returnValue = result;
|
||
popActScope(prevActScopeDepth);
|
||
if (actScopeDepth === 0) {
|
||
var _queue = ReactCurrentActQueue.current;
|
||
if (_queue !== null) {
|
||
flushActQueue(_queue);
|
||
ReactCurrentActQueue.current = null;
|
||
}
|
||
var _thenable = {
|
||
then: function(resolve, reject) {
|
||
if (ReactCurrentActQueue.current === null) {
|
||
ReactCurrentActQueue.current = [];
|
||
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
|
||
} else {
|
||
resolve(returnValue);
|
||
}
|
||
}
|
||
};
|
||
return _thenable;
|
||
} else {
|
||
var _thenable2 = {
|
||
then: function(resolve, reject) {
|
||
resolve(returnValue);
|
||
}
|
||
};
|
||
return _thenable2;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function popActScope(prevActScopeDepth) {
|
||
{
|
||
if (prevActScopeDepth !== actScopeDepth - 1) {
|
||
error("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. ");
|
||
}
|
||
actScopeDepth = prevActScopeDepth;
|
||
}
|
||
}
|
||
function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
|
||
{
|
||
var queue = ReactCurrentActQueue.current;
|
||
if (queue !== null) {
|
||
try {
|
||
flushActQueue(queue);
|
||
enqueueTask(function() {
|
||
if (queue.length === 0) {
|
||
ReactCurrentActQueue.current = null;
|
||
resolve(returnValue);
|
||
} else {
|
||
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
|
||
}
|
||
});
|
||
} catch (error2) {
|
||
reject(error2);
|
||
}
|
||
} else {
|
||
resolve(returnValue);
|
||
}
|
||
}
|
||
}
|
||
var isFlushing = false;
|
||
function flushActQueue(queue) {
|
||
{
|
||
if (!isFlushing) {
|
||
isFlushing = true;
|
||
var i = 0;
|
||
try {
|
||
for (; i < queue.length; i++) {
|
||
var callback = queue[i];
|
||
do {
|
||
callback = callback(true);
|
||
} while (callback !== null);
|
||
}
|
||
queue.length = 0;
|
||
} catch (error2) {
|
||
queue = queue.slice(i + 1);
|
||
throw error2;
|
||
} finally {
|
||
isFlushing = false;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var createElement$1 = createElementWithValidation;
|
||
var cloneElement$1 = cloneElementWithValidation;
|
||
var createFactory = createFactoryWithValidation;
|
||
var Children = {
|
||
map: mapChildren,
|
||
forEach: forEachChildren,
|
||
count: countChildren,
|
||
toArray,
|
||
only: onlyChild
|
||
};
|
||
exports.Children = Children;
|
||
exports.Component = Component2;
|
||
exports.Fragment = REACT_FRAGMENT_TYPE;
|
||
exports.Profiler = REACT_PROFILER_TYPE;
|
||
exports.PureComponent = PureComponent;
|
||
exports.StrictMode = REACT_STRICT_MODE_TYPE;
|
||
exports.Suspense = REACT_SUSPENSE_TYPE;
|
||
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
|
||
exports.cloneElement = cloneElement$1;
|
||
exports.createContext = createContext;
|
||
exports.createElement = createElement$1;
|
||
exports.createFactory = createFactory;
|
||
exports.createRef = createRef;
|
||
exports.forwardRef = forwardRef2;
|
||
exports.isValidElement = isValidElement;
|
||
exports.lazy = lazy;
|
||
exports.memo = memo;
|
||
exports.startTransition = startTransition;
|
||
exports.unstable_act = act;
|
||
exports.useCallback = useCallback;
|
||
exports.useContext = useContext;
|
||
exports.useDebugValue = useDebugValue2;
|
||
exports.useDeferredValue = useDeferredValue;
|
||
exports.useEffect = useEffect;
|
||
exports.useId = useId;
|
||
exports.useImperativeHandle = useImperativeHandle;
|
||
exports.useInsertionEffect = useInsertionEffect;
|
||
exports.useLayoutEffect = useLayoutEffect2;
|
||
exports.useMemo = useMemo2;
|
||
exports.useReducer = useReducer;
|
||
exports.useRef = useRef3;
|
||
exports.useState = useState2;
|
||
exports.useSyncExternalStore = useSyncExternalStore;
|
||
exports.useTransition = useTransition;
|
||
exports.version = ReactVersion;
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
||
}
|
||
})();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/react/index.js
|
||
var require_react = __commonJS({
|
||
"node_modules/react/index.js"(exports, module2) {
|
||
"use strict";
|
||
if (false) {
|
||
module2.exports = null;
|
||
} else {
|
||
module2.exports = require_react_development();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js
|
||
var require_use_sync_external_store_shim_development = __commonJS({
|
||
"node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js"(exports) {
|
||
"use strict";
|
||
if (true) {
|
||
(function() {
|
||
"use strict";
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
|
||
}
|
||
var React3 = require_react();
|
||
var ReactSharedInternals = React3.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
||
function error(format) {
|
||
{
|
||
{
|
||
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
||
args[_key2 - 1] = arguments[_key2];
|
||
}
|
||
printWarning("error", format, args);
|
||
}
|
||
}
|
||
}
|
||
function printWarning(level, format, args) {
|
||
{
|
||
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
var stack = ReactDebugCurrentFrame.getStackAddendum();
|
||
if (stack !== "") {
|
||
format += "%s";
|
||
args = args.concat([stack]);
|
||
}
|
||
var argsWithFormat = args.map(function(item) {
|
||
return String(item);
|
||
});
|
||
argsWithFormat.unshift("Warning: " + format);
|
||
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
||
}
|
||
}
|
||
function is2(x, y) {
|
||
return x === y && (x !== 0 || 1 / x === 1 / y) || x !== x && y !== y;
|
||
}
|
||
var objectIs = typeof Object.is === "function" ? Object.is : is2;
|
||
var useState2 = React3.useState, useEffect = React3.useEffect, useLayoutEffect2 = React3.useLayoutEffect, useDebugValue2 = React3.useDebugValue;
|
||
var didWarnOld18Alpha = false;
|
||
var didWarnUncachedGetSnapshot = false;
|
||
function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
||
{
|
||
if (!didWarnOld18Alpha) {
|
||
if (React3.startTransition !== void 0) {
|
||
didWarnOld18Alpha = true;
|
||
error("You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release.");
|
||
}
|
||
}
|
||
}
|
||
var value = getSnapshot();
|
||
{
|
||
if (!didWarnUncachedGetSnapshot) {
|
||
var cachedValue = getSnapshot();
|
||
if (!objectIs(value, cachedValue)) {
|
||
error("The result of getSnapshot should be cached to avoid an infinite loop");
|
||
didWarnUncachedGetSnapshot = true;
|
||
}
|
||
}
|
||
}
|
||
var _useState = useState2({
|
||
inst: {
|
||
value,
|
||
getSnapshot
|
||
}
|
||
}), inst = _useState[0].inst, forceUpdate = _useState[1];
|
||
useLayoutEffect2(function() {
|
||
inst.value = value;
|
||
inst.getSnapshot = getSnapshot;
|
||
if (checkIfSnapshotChanged(inst)) {
|
||
forceUpdate({
|
||
inst
|
||
});
|
||
}
|
||
}, [subscribe, value, getSnapshot]);
|
||
useEffect(function() {
|
||
if (checkIfSnapshotChanged(inst)) {
|
||
forceUpdate({
|
||
inst
|
||
});
|
||
}
|
||
var handleStoreChange = function() {
|
||
if (checkIfSnapshotChanged(inst)) {
|
||
forceUpdate({
|
||
inst
|
||
});
|
||
}
|
||
};
|
||
return subscribe(handleStoreChange);
|
||
}, [subscribe]);
|
||
useDebugValue2(value);
|
||
return value;
|
||
}
|
||
function checkIfSnapshotChanged(inst) {
|
||
var latestGetSnapshot = inst.getSnapshot;
|
||
var prevValue = inst.value;
|
||
try {
|
||
var nextValue = latestGetSnapshot();
|
||
return !objectIs(prevValue, nextValue);
|
||
} catch (error2) {
|
||
return true;
|
||
}
|
||
}
|
||
function useSyncExternalStore$1(subscribe, getSnapshot, getServerSnapshot) {
|
||
return getSnapshot();
|
||
}
|
||
var canUseDOM = !!(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined");
|
||
var isServerEnvironment = !canUseDOM;
|
||
var shim = isServerEnvironment ? useSyncExternalStore$1 : useSyncExternalStore;
|
||
var useSyncExternalStore$2 = React3.useSyncExternalStore !== void 0 ? React3.useSyncExternalStore : shim;
|
||
exports.useSyncExternalStore = useSyncExternalStore$2;
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
||
}
|
||
})();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/use-sync-external-store/shim/index.js
|
||
var require_shim = __commonJS({
|
||
"node_modules/use-sync-external-store/shim/index.js"(exports, module2) {
|
||
"use strict";
|
||
if (false) {
|
||
module2.exports = null;
|
||
} else {
|
||
module2.exports = require_use_sync_external_store_shim_development();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js
|
||
var require_with_selector_development = __commonJS({
|
||
"node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js"(exports) {
|
||
"use strict";
|
||
if (true) {
|
||
(function() {
|
||
"use strict";
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
|
||
}
|
||
var React3 = require_react();
|
||
var shim = require_shim();
|
||
function is2(x, y) {
|
||
return x === y && (x !== 0 || 1 / x === 1 / y) || x !== x && y !== y;
|
||
}
|
||
var objectIs = typeof Object.is === "function" ? Object.is : is2;
|
||
var useSyncExternalStore = shim.useSyncExternalStore;
|
||
var useRef3 = React3.useRef, useEffect = React3.useEffect, useMemo2 = React3.useMemo, useDebugValue2 = React3.useDebugValue;
|
||
function useSyncExternalStoreWithSelector2(subscribe, getSnapshot, getServerSnapshot, selector, isEqual) {
|
||
var instRef = useRef3(null);
|
||
var inst;
|
||
if (instRef.current === null) {
|
||
inst = {
|
||
hasValue: false,
|
||
value: null
|
||
};
|
||
instRef.current = inst;
|
||
} else {
|
||
inst = instRef.current;
|
||
}
|
||
var _useMemo = useMemo2(function() {
|
||
var hasMemo = false;
|
||
var memoizedSnapshot;
|
||
var memoizedSelection;
|
||
var memoizedSelector = function(nextSnapshot) {
|
||
if (!hasMemo) {
|
||
hasMemo = true;
|
||
memoizedSnapshot = nextSnapshot;
|
||
var _nextSelection = selector(nextSnapshot);
|
||
if (isEqual !== void 0) {
|
||
if (inst.hasValue) {
|
||
var currentSelection = inst.value;
|
||
if (isEqual(currentSelection, _nextSelection)) {
|
||
memoizedSelection = currentSelection;
|
||
return currentSelection;
|
||
}
|
||
}
|
||
}
|
||
memoizedSelection = _nextSelection;
|
||
return _nextSelection;
|
||
}
|
||
var prevSnapshot = memoizedSnapshot;
|
||
var prevSelection = memoizedSelection;
|
||
if (objectIs(prevSnapshot, nextSnapshot)) {
|
||
return prevSelection;
|
||
}
|
||
var nextSelection = selector(nextSnapshot);
|
||
if (isEqual !== void 0 && isEqual(prevSelection, nextSelection)) {
|
||
return prevSelection;
|
||
}
|
||
memoizedSnapshot = nextSnapshot;
|
||
memoizedSelection = nextSelection;
|
||
return nextSelection;
|
||
};
|
||
var maybeGetServerSnapshot = getServerSnapshot === void 0 ? null : getServerSnapshot;
|
||
var getSnapshotWithSelector = function() {
|
||
return memoizedSelector(getSnapshot());
|
||
};
|
||
var getServerSnapshotWithSelector = maybeGetServerSnapshot === null ? void 0 : function() {
|
||
return memoizedSelector(maybeGetServerSnapshot());
|
||
};
|
||
return [getSnapshotWithSelector, getServerSnapshotWithSelector];
|
||
}, [getSnapshot, getServerSnapshot, selector, isEqual]), getSelection = _useMemo[0], getServerSelection = _useMemo[1];
|
||
var value = useSyncExternalStore(subscribe, getSelection, getServerSelection);
|
||
useEffect(function() {
|
||
inst.hasValue = true;
|
||
inst.value = value;
|
||
}, [value]);
|
||
useDebugValue2(value);
|
||
return value;
|
||
}
|
||
exports.useSyncExternalStoreWithSelector = useSyncExternalStoreWithSelector2;
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
||
}
|
||
})();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/use-sync-external-store/shim/with-selector.js
|
||
var require_with_selector = __commonJS({
|
||
"node_modules/use-sync-external-store/shim/with-selector.js"(exports, module2) {
|
||
"use strict";
|
||
if (false) {
|
||
module2.exports = null;
|
||
} else {
|
||
module2.exports = require_with_selector_development();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/lodash/lodash.js
|
||
var require_lodash = __commonJS({
|
||
"node_modules/lodash/lodash.js"(exports, module2) {
|
||
(function() {
|
||
var undefined2;
|
||
var VERSION = "4.17.21";
|
||
var LARGE_ARRAY_SIZE = 200;
|
||
var CORE_ERROR_TEXT = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", FUNC_ERROR_TEXT = "Expected a function", INVALID_TEMPL_VAR_ERROR_TEXT = "Invalid `variable` option passed into `_.template`";
|
||
var HASH_UNDEFINED = "__lodash_hash_undefined__";
|
||
var MAX_MEMOIZE_SIZE = 500;
|
||
var PLACEHOLDER = "__lodash_placeholder__";
|
||
var CLONE_DEEP_FLAG = 1, CLONE_FLAT_FLAG = 2, CLONE_SYMBOLS_FLAG = 4;
|
||
var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2;
|
||
var WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_BOUND_FLAG = 4, WRAP_CURRY_FLAG = 8, WRAP_CURRY_RIGHT_FLAG = 16, WRAP_PARTIAL_FLAG = 32, WRAP_PARTIAL_RIGHT_FLAG = 64, WRAP_ARY_FLAG = 128, WRAP_REARG_FLAG = 256, WRAP_FLIP_FLAG = 512;
|
||
var DEFAULT_TRUNC_LENGTH = 30, DEFAULT_TRUNC_OMISSION = "...";
|
||
var HOT_COUNT = 800, HOT_SPAN = 16;
|
||
var LAZY_FILTER_FLAG = 1, LAZY_MAP_FLAG = 2, LAZY_WHILE_FLAG = 3;
|
||
var INFINITY = 1 / 0, MAX_SAFE_INTEGER = 9007199254740991, MAX_INTEGER = 17976931348623157e292, NAN = 0 / 0;
|
||
var MAX_ARRAY_LENGTH = 4294967295, MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;
|
||
var wrapFlags = [
|
||
["ary", WRAP_ARY_FLAG],
|
||
["bind", WRAP_BIND_FLAG],
|
||
["bindKey", WRAP_BIND_KEY_FLAG],
|
||
["curry", WRAP_CURRY_FLAG],
|
||
["curryRight", WRAP_CURRY_RIGHT_FLAG],
|
||
["flip", WRAP_FLIP_FLAG],
|
||
["partial", WRAP_PARTIAL_FLAG],
|
||
["partialRight", WRAP_PARTIAL_RIGHT_FLAG],
|
||
["rearg", WRAP_REARG_FLAG]
|
||
];
|
||
var argsTag = "[object Arguments]", arrayTag = "[object Array]", asyncTag = "[object AsyncFunction]", boolTag = "[object Boolean]", dateTag = "[object Date]", domExcTag = "[object DOMException]", errorTag = "[object Error]", funcTag = "[object Function]", genTag = "[object GeneratorFunction]", mapTag = "[object Map]", numberTag = "[object Number]", nullTag = "[object Null]", objectTag = "[object Object]", promiseTag = "[object Promise]", proxyTag = "[object Proxy]", regexpTag = "[object RegExp]", setTag = "[object Set]", stringTag = "[object String]", symbolTag = "[object Symbol]", undefinedTag = "[object Undefined]", weakMapTag = "[object WeakMap]", weakSetTag = "[object WeakSet]";
|
||
var arrayBufferTag = "[object ArrayBuffer]", dataViewTag = "[object DataView]", float32Tag = "[object Float32Array]", float64Tag = "[object Float64Array]", int8Tag = "[object Int8Array]", int16Tag = "[object Int16Array]", int32Tag = "[object Int32Array]", uint8Tag = "[object Uint8Array]", uint8ClampedTag = "[object Uint8ClampedArray]", uint16Tag = "[object Uint16Array]", uint32Tag = "[object Uint32Array]";
|
||
var reEmptyStringLeading = /\b__p \+= '';/g, reEmptyStringMiddle = /\b(__p \+=) '' \+/g, reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g;
|
||
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g, reUnescapedHtml = /[&<>"']/g, reHasEscapedHtml = RegExp(reEscapedHtml.source), reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
|
||
var reEscape = /<%-([\s\S]+?)%>/g, reEvaluate = /<%([\s\S]+?)%>/g, reInterpolate = /<%=([\s\S]+?)%>/g;
|
||
var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/, rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
|
||
var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, reHasRegExpChar = RegExp(reRegExpChar.source);
|
||
var reTrimStart = /^\s+/;
|
||
var reWhitespace = /\s/;
|
||
var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/, reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, reSplitDetails = /,? & /;
|
||
var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
|
||
var reForbiddenIdentifierChars = /[()=,{}\[\]\/\s]/;
|
||
var reEscapeChar = /\\(\\)?/g;
|
||
var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g;
|
||
var reFlags = /\w*$/;
|
||
var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
|
||
var reIsBinary = /^0b[01]+$/i;
|
||
var reIsHostCtor = /^\[object .+?Constructor\]$/;
|
||
var reIsOctal = /^0o[0-7]+$/i;
|
||
var reIsUint = /^(?:0|[1-9]\d*)$/;
|
||
var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g;
|
||
var reNoMatch = /($^)/;
|
||
var reUnescapedString = /['\n\r\u2028\u2029\\]/g;
|
||
var rsAstralRange = "\\ud800-\\udfff", rsComboMarksRange = "\\u0300-\\u036f", reComboHalfMarksRange = "\\ufe20-\\ufe2f", rsComboSymbolsRange = "\\u20d0-\\u20ff", rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, rsDingbatRange = "\\u2700-\\u27bf", rsLowerRange = "a-z\\xdf-\\xf6\\xf8-\\xff", rsMathOpRange = "\\xac\\xb1\\xd7\\xf7", rsNonCharRange = "\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf", rsPunctuationRange = "\\u2000-\\u206f", rsSpaceRange = " \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000", rsUpperRange = "A-Z\\xc0-\\xd6\\xd8-\\xde", rsVarRange = "\\ufe0e\\ufe0f", rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange;
|
||
var rsApos = "['\u2019]", rsAstral = "[" + rsAstralRange + "]", rsBreak = "[" + rsBreakRange + "]", rsCombo = "[" + rsComboRange + "]", rsDigits = "\\d+", rsDingbat = "[" + rsDingbatRange + "]", rsLower = "[" + rsLowerRange + "]", rsMisc = "[^" + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + "]", rsFitz = "\\ud83c[\\udffb-\\udfff]", rsModifier = "(?:" + rsCombo + "|" + rsFitz + ")", rsNonAstral = "[^" + rsAstralRange + "]", rsRegional = "(?:\\ud83c[\\udde6-\\uddff]){2}", rsSurrPair = "[\\ud800-\\udbff][\\udc00-\\udfff]", rsUpper = "[" + rsUpperRange + "]", rsZWJ = "\\u200d";
|
||
var rsMiscLower = "(?:" + rsLower + "|" + rsMisc + ")", rsMiscUpper = "(?:" + rsUpper + "|" + rsMisc + ")", rsOptContrLower = "(?:" + rsApos + "(?:d|ll|m|re|s|t|ve))?", rsOptContrUpper = "(?:" + rsApos + "(?:D|LL|M|RE|S|T|VE))?", reOptMod = rsModifier + "?", rsOptVar = "[" + rsVarRange + "]?", rsOptJoin = "(?:" + rsZWJ + "(?:" + [rsNonAstral, rsRegional, rsSurrPair].join("|") + ")" + rsOptVar + reOptMod + ")*", rsOrdLower = "\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])", rsOrdUpper = "\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])", rsSeq = rsOptVar + reOptMod + rsOptJoin, rsEmoji = "(?:" + [rsDingbat, rsRegional, rsSurrPair].join("|") + ")" + rsSeq, rsSymbol = "(?:" + [rsNonAstral + rsCombo + "?", rsCombo, rsRegional, rsSurrPair, rsAstral].join("|") + ")";
|
||
var reApos = RegExp(rsApos, "g");
|
||
var reComboMark = RegExp(rsCombo, "g");
|
||
var reUnicode = RegExp(rsFitz + "(?=" + rsFitz + ")|" + rsSymbol + rsSeq, "g");
|
||
var reUnicodeWord = RegExp([
|
||
rsUpper + "?" + rsLower + "+" + rsOptContrLower + "(?=" + [rsBreak, rsUpper, "$"].join("|") + ")",
|
||
rsMiscUpper + "+" + rsOptContrUpper + "(?=" + [rsBreak, rsUpper + rsMiscLower, "$"].join("|") + ")",
|
||
rsUpper + "?" + rsMiscLower + "+" + rsOptContrLower,
|
||
rsUpper + "+" + rsOptContrUpper,
|
||
rsOrdUpper,
|
||
rsOrdLower,
|
||
rsDigits,
|
||
rsEmoji
|
||
].join("|"), "g");
|
||
var reHasUnicode = RegExp("[" + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + "]");
|
||
var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;
|
||
var contextProps = [
|
||
"Array",
|
||
"Buffer",
|
||
"DataView",
|
||
"Date",
|
||
"Error",
|
||
"Float32Array",
|
||
"Float64Array",
|
||
"Function",
|
||
"Int8Array",
|
||
"Int16Array",
|
||
"Int32Array",
|
||
"Map",
|
||
"Math",
|
||
"Object",
|
||
"Promise",
|
||
"RegExp",
|
||
"Set",
|
||
"String",
|
||
"Symbol",
|
||
"TypeError",
|
||
"Uint8Array",
|
||
"Uint8ClampedArray",
|
||
"Uint16Array",
|
||
"Uint32Array",
|
||
"WeakMap",
|
||
"_",
|
||
"clearTimeout",
|
||
"isFinite",
|
||
"parseInt",
|
||
"setTimeout"
|
||
];
|
||
var templateCounter = -1;
|
||
var typedArrayTags = {};
|
||
typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
|
||
typedArrayTags[argsTag] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;
|
||
var cloneableTags = {};
|
||
cloneableTags[argsTag] = cloneableTags[arrayTag] = cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = cloneableTags[boolTag] = cloneableTags[dateTag] = cloneableTags[float32Tag] = cloneableTags[float64Tag] = cloneableTags[int8Tag] = cloneableTags[int16Tag] = cloneableTags[int32Tag] = cloneableTags[mapTag] = cloneableTags[numberTag] = cloneableTags[objectTag] = cloneableTags[regexpTag] = cloneableTags[setTag] = cloneableTags[stringTag] = cloneableTags[symbolTag] = cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;
|
||
cloneableTags[errorTag] = cloneableTags[funcTag] = cloneableTags[weakMapTag] = false;
|
||
var deburredLetters = {
|
||
// Latin-1 Supplement block.
|
||
"\xC0": "A",
|
||
"\xC1": "A",
|
||
"\xC2": "A",
|
||
"\xC3": "A",
|
||
"\xC4": "A",
|
||
"\xC5": "A",
|
||
"\xE0": "a",
|
||
"\xE1": "a",
|
||
"\xE2": "a",
|
||
"\xE3": "a",
|
||
"\xE4": "a",
|
||
"\xE5": "a",
|
||
"\xC7": "C",
|
||
"\xE7": "c",
|
||
"\xD0": "D",
|
||
"\xF0": "d",
|
||
"\xC8": "E",
|
||
"\xC9": "E",
|
||
"\xCA": "E",
|
||
"\xCB": "E",
|
||
"\xE8": "e",
|
||
"\xE9": "e",
|
||
"\xEA": "e",
|
||
"\xEB": "e",
|
||
"\xCC": "I",
|
||
"\xCD": "I",
|
||
"\xCE": "I",
|
||
"\xCF": "I",
|
||
"\xEC": "i",
|
||
"\xED": "i",
|
||
"\xEE": "i",
|
||
"\xEF": "i",
|
||
"\xD1": "N",
|
||
"\xF1": "n",
|
||
"\xD2": "O",
|
||
"\xD3": "O",
|
||
"\xD4": "O",
|
||
"\xD5": "O",
|
||
"\xD6": "O",
|
||
"\xD8": "O",
|
||
"\xF2": "o",
|
||
"\xF3": "o",
|
||
"\xF4": "o",
|
||
"\xF5": "o",
|
||
"\xF6": "o",
|
||
"\xF8": "o",
|
||
"\xD9": "U",
|
||
"\xDA": "U",
|
||
"\xDB": "U",
|
||
"\xDC": "U",
|
||
"\xF9": "u",
|
||
"\xFA": "u",
|
||
"\xFB": "u",
|
||
"\xFC": "u",
|
||
"\xDD": "Y",
|
||
"\xFD": "y",
|
||
"\xFF": "y",
|
||
"\xC6": "Ae",
|
||
"\xE6": "ae",
|
||
"\xDE": "Th",
|
||
"\xFE": "th",
|
||
"\xDF": "ss",
|
||
// Latin Extended-A block.
|
||
"\u0100": "A",
|
||
"\u0102": "A",
|
||
"\u0104": "A",
|
||
"\u0101": "a",
|
||
"\u0103": "a",
|
||
"\u0105": "a",
|
||
"\u0106": "C",
|
||
"\u0108": "C",
|
||
"\u010A": "C",
|
||
"\u010C": "C",
|
||
"\u0107": "c",
|
||
"\u0109": "c",
|
||
"\u010B": "c",
|
||
"\u010D": "c",
|
||
"\u010E": "D",
|
||
"\u0110": "D",
|
||
"\u010F": "d",
|
||
"\u0111": "d",
|
||
"\u0112": "E",
|
||
"\u0114": "E",
|
||
"\u0116": "E",
|
||
"\u0118": "E",
|
||
"\u011A": "E",
|
||
"\u0113": "e",
|
||
"\u0115": "e",
|
||
"\u0117": "e",
|
||
"\u0119": "e",
|
||
"\u011B": "e",
|
||
"\u011C": "G",
|
||
"\u011E": "G",
|
||
"\u0120": "G",
|
||
"\u0122": "G",
|
||
"\u011D": "g",
|
||
"\u011F": "g",
|
||
"\u0121": "g",
|
||
"\u0123": "g",
|
||
"\u0124": "H",
|
||
"\u0126": "H",
|
||
"\u0125": "h",
|
||
"\u0127": "h",
|
||
"\u0128": "I",
|
||
"\u012A": "I",
|
||
"\u012C": "I",
|
||
"\u012E": "I",
|
||
"\u0130": "I",
|
||
"\u0129": "i",
|
||
"\u012B": "i",
|
||
"\u012D": "i",
|
||
"\u012F": "i",
|
||
"\u0131": "i",
|
||
"\u0134": "J",
|
||
"\u0135": "j",
|
||
"\u0136": "K",
|
||
"\u0137": "k",
|
||
"\u0138": "k",
|
||
"\u0139": "L",
|
||
"\u013B": "L",
|
||
"\u013D": "L",
|
||
"\u013F": "L",
|
||
"\u0141": "L",
|
||
"\u013A": "l",
|
||
"\u013C": "l",
|
||
"\u013E": "l",
|
||
"\u0140": "l",
|
||
"\u0142": "l",
|
||
"\u0143": "N",
|
||
"\u0145": "N",
|
||
"\u0147": "N",
|
||
"\u014A": "N",
|
||
"\u0144": "n",
|
||
"\u0146": "n",
|
||
"\u0148": "n",
|
||
"\u014B": "n",
|
||
"\u014C": "O",
|
||
"\u014E": "O",
|
||
"\u0150": "O",
|
||
"\u014D": "o",
|
||
"\u014F": "o",
|
||
"\u0151": "o",
|
||
"\u0154": "R",
|
||
"\u0156": "R",
|
||
"\u0158": "R",
|
||
"\u0155": "r",
|
||
"\u0157": "r",
|
||
"\u0159": "r",
|
||
"\u015A": "S",
|
||
"\u015C": "S",
|
||
"\u015E": "S",
|
||
"\u0160": "S",
|
||
"\u015B": "s",
|
||
"\u015D": "s",
|
||
"\u015F": "s",
|
||
"\u0161": "s",
|
||
"\u0162": "T",
|
||
"\u0164": "T",
|
||
"\u0166": "T",
|
||
"\u0163": "t",
|
||
"\u0165": "t",
|
||
"\u0167": "t",
|
||
"\u0168": "U",
|
||
"\u016A": "U",
|
||
"\u016C": "U",
|
||
"\u016E": "U",
|
||
"\u0170": "U",
|
||
"\u0172": "U",
|
||
"\u0169": "u",
|
||
"\u016B": "u",
|
||
"\u016D": "u",
|
||
"\u016F": "u",
|
||
"\u0171": "u",
|
||
"\u0173": "u",
|
||
"\u0174": "W",
|
||
"\u0175": "w",
|
||
"\u0176": "Y",
|
||
"\u0177": "y",
|
||
"\u0178": "Y",
|
||
"\u0179": "Z",
|
||
"\u017B": "Z",
|
||
"\u017D": "Z",
|
||
"\u017A": "z",
|
||
"\u017C": "z",
|
||
"\u017E": "z",
|
||
"\u0132": "IJ",
|
||
"\u0133": "ij",
|
||
"\u0152": "Oe",
|
||
"\u0153": "oe",
|
||
"\u0149": "'n",
|
||
"\u017F": "s"
|
||
};
|
||
var htmlEscapes = {
|
||
"&": "&",
|
||
"<": "<",
|
||
">": ">",
|
||
'"': """,
|
||
"'": "'"
|
||
};
|
||
var htmlUnescapes = {
|
||
"&": "&",
|
||
"<": "<",
|
||
">": ">",
|
||
""": '"',
|
||
"'": "'"
|
||
};
|
||
var stringEscapes = {
|
||
"\\": "\\",
|
||
"'": "'",
|
||
"\n": "n",
|
||
"\r": "r",
|
||
"\u2028": "u2028",
|
||
"\u2029": "u2029"
|
||
};
|
||
var freeParseFloat = parseFloat, freeParseInt = parseInt;
|
||
var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
|
||
var freeSelf = typeof self == "object" && self && self.Object === Object && self;
|
||
var root = freeGlobal || freeSelf || Function("return this")();
|
||
var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
|
||
var freeModule = freeExports && typeof module2 == "object" && module2 && !module2.nodeType && module2;
|
||
var moduleExports = freeModule && freeModule.exports === freeExports;
|
||
var freeProcess = moduleExports && freeGlobal.process;
|
||
var nodeUtil = function() {
|
||
try {
|
||
var types = freeModule && freeModule.require && freeModule.require("util").types;
|
||
if (types) {
|
||
return types;
|
||
}
|
||
return freeProcess && freeProcess.binding && freeProcess.binding("util");
|
||
} catch (e) {
|
||
}
|
||
}();
|
||
var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer, nodeIsDate = nodeUtil && nodeUtil.isDate, nodeIsMap = nodeUtil && nodeUtil.isMap, nodeIsRegExp = nodeUtil && nodeUtil.isRegExp, nodeIsSet = nodeUtil && nodeUtil.isSet, nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
|
||
function apply(func, thisArg, args) {
|
||
switch (args.length) {
|
||
case 0:
|
||
return func.call(thisArg);
|
||
case 1:
|
||
return func.call(thisArg, args[0]);
|
||
case 2:
|
||
return func.call(thisArg, args[0], args[1]);
|
||
case 3:
|
||
return func.call(thisArg, args[0], args[1], args[2]);
|
||
}
|
||
return func.apply(thisArg, args);
|
||
}
|
||
function arrayAggregator(array, setter, iteratee, accumulator) {
|
||
var index = -1, length = array == null ? 0 : array.length;
|
||
while (++index < length) {
|
||
var value = array[index];
|
||
setter(accumulator, value, iteratee(value), array);
|
||
}
|
||
return accumulator;
|
||
}
|
||
function arrayEach(array, iteratee) {
|
||
var index = -1, length = array == null ? 0 : array.length;
|
||
while (++index < length) {
|
||
if (iteratee(array[index], index, array) === false) {
|
||
break;
|
||
}
|
||
}
|
||
return array;
|
||
}
|
||
function arrayEachRight(array, iteratee) {
|
||
var length = array == null ? 0 : array.length;
|
||
while (length--) {
|
||
if (iteratee(array[length], length, array) === false) {
|
||
break;
|
||
}
|
||
}
|
||
return array;
|
||
}
|
||
function arrayEvery(array, predicate) {
|
||
var index = -1, length = array == null ? 0 : array.length;
|
||
while (++index < length) {
|
||
if (!predicate(array[index], index, array)) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function arrayFilter(array, predicate) {
|
||
var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result = [];
|
||
while (++index < length) {
|
||
var value = array[index];
|
||
if (predicate(value, index, array)) {
|
||
result[resIndex++] = value;
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
function arrayIncludes(array, value) {
|
||
var length = array == null ? 0 : array.length;
|
||
return !!length && baseIndexOf(array, value, 0) > -1;
|
||
}
|
||
function arrayIncludesWith(array, value, comparator) {
|
||
var index = -1, length = array == null ? 0 : array.length;
|
||
while (++index < length) {
|
||
if (comparator(value, array[index])) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function arrayMap(array, iteratee) {
|
||
var index = -1, length = array == null ? 0 : array.length, result = Array(length);
|
||
while (++index < length) {
|
||
result[index] = iteratee(array[index], index, array);
|
||
}
|
||
return result;
|
||
}
|
||
function arrayPush(array, values) {
|
||
var index = -1, length = values.length, offset = array.length;
|
||
while (++index < length) {
|
||
array[offset + index] = values[index];
|
||
}
|
||
return array;
|
||
}
|
||
function arrayReduce(array, iteratee, accumulator, initAccum) {
|
||
var index = -1, length = array == null ? 0 : array.length;
|
||
if (initAccum && length) {
|
||
accumulator = array[++index];
|
||
}
|
||
while (++index < length) {
|
||
accumulator = iteratee(accumulator, array[index], index, array);
|
||
}
|
||
return accumulator;
|
||
}
|
||
function arrayReduceRight(array, iteratee, accumulator, initAccum) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (initAccum && length) {
|
||
accumulator = array[--length];
|
||
}
|
||
while (length--) {
|
||
accumulator = iteratee(accumulator, array[length], length, array);
|
||
}
|
||
return accumulator;
|
||
}
|
||
function arraySome(array, predicate) {
|
||
var index = -1, length = array == null ? 0 : array.length;
|
||
while (++index < length) {
|
||
if (predicate(array[index], index, array)) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
var asciiSize = baseProperty("length");
|
||
function asciiToArray(string) {
|
||
return string.split("");
|
||
}
|
||
function asciiWords(string) {
|
||
return string.match(reAsciiWord) || [];
|
||
}
|
||
function baseFindKey(collection, predicate, eachFunc) {
|
||
var result;
|
||
eachFunc(collection, function(value, key, collection2) {
|
||
if (predicate(value, key, collection2)) {
|
||
result = key;
|
||
return false;
|
||
}
|
||
});
|
||
return result;
|
||
}
|
||
function baseFindIndex(array, predicate, fromIndex, fromRight) {
|
||
var length = array.length, index = fromIndex + (fromRight ? 1 : -1);
|
||
while (fromRight ? index-- : ++index < length) {
|
||
if (predicate(array[index], index, array)) {
|
||
return index;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
function baseIndexOf(array, value, fromIndex) {
|
||
return value === value ? strictIndexOf(array, value, fromIndex) : baseFindIndex(array, baseIsNaN, fromIndex);
|
||
}
|
||
function baseIndexOfWith(array, value, fromIndex, comparator) {
|
||
var index = fromIndex - 1, length = array.length;
|
||
while (++index < length) {
|
||
if (comparator(array[index], value)) {
|
||
return index;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
function baseIsNaN(value) {
|
||
return value !== value;
|
||
}
|
||
function baseMean(array, iteratee) {
|
||
var length = array == null ? 0 : array.length;
|
||
return length ? baseSum(array, iteratee) / length : NAN;
|
||
}
|
||
function baseProperty(key) {
|
||
return function(object) {
|
||
return object == null ? undefined2 : object[key];
|
||
};
|
||
}
|
||
function basePropertyOf(object) {
|
||
return function(key) {
|
||
return object == null ? undefined2 : object[key];
|
||
};
|
||
}
|
||
function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) {
|
||
eachFunc(collection, function(value, index, collection2) {
|
||
accumulator = initAccum ? (initAccum = false, value) : iteratee(accumulator, value, index, collection2);
|
||
});
|
||
return accumulator;
|
||
}
|
||
function baseSortBy(array, comparer) {
|
||
var length = array.length;
|
||
array.sort(comparer);
|
||
while (length--) {
|
||
array[length] = array[length].value;
|
||
}
|
||
return array;
|
||
}
|
||
function baseSum(array, iteratee) {
|
||
var result, index = -1, length = array.length;
|
||
while (++index < length) {
|
||
var current2 = iteratee(array[index]);
|
||
if (current2 !== undefined2) {
|
||
result = result === undefined2 ? current2 : result + current2;
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
function baseTimes(n, iteratee) {
|
||
var index = -1, result = Array(n);
|
||
while (++index < n) {
|
||
result[index] = iteratee(index);
|
||
}
|
||
return result;
|
||
}
|
||
function baseToPairs(object, props) {
|
||
return arrayMap(props, function(key) {
|
||
return [key, object[key]];
|
||
});
|
||
}
|
||
function baseTrim(string) {
|
||
return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
|
||
}
|
||
function baseUnary(func) {
|
||
return function(value) {
|
||
return func(value);
|
||
};
|
||
}
|
||
function baseValues(object, props) {
|
||
return arrayMap(props, function(key) {
|
||
return object[key];
|
||
});
|
||
}
|
||
function cacheHas(cache, key) {
|
||
return cache.has(key);
|
||
}
|
||
function charsStartIndex(strSymbols, chrSymbols) {
|
||
var index = -1, length = strSymbols.length;
|
||
while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {
|
||
}
|
||
return index;
|
||
}
|
||
function charsEndIndex(strSymbols, chrSymbols) {
|
||
var index = strSymbols.length;
|
||
while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {
|
||
}
|
||
return index;
|
||
}
|
||
function countHolders(array, placeholder) {
|
||
var length = array.length, result = 0;
|
||
while (length--) {
|
||
if (array[length] === placeholder) {
|
||
++result;
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
var deburrLetter = basePropertyOf(deburredLetters);
|
||
var escapeHtmlChar = basePropertyOf(htmlEscapes);
|
||
function escapeStringChar(chr) {
|
||
return "\\" + stringEscapes[chr];
|
||
}
|
||
function getValue(object, key) {
|
||
return object == null ? undefined2 : object[key];
|
||
}
|
||
function hasUnicode(string) {
|
||
return reHasUnicode.test(string);
|
||
}
|
||
function hasUnicodeWord(string) {
|
||
return reHasUnicodeWord.test(string);
|
||
}
|
||
function iteratorToArray(iterator) {
|
||
var data, result = [];
|
||
while (!(data = iterator.next()).done) {
|
||
result.push(data.value);
|
||
}
|
||
return result;
|
||
}
|
||
function mapToArray(map) {
|
||
var index = -1, result = Array(map.size);
|
||
map.forEach(function(value, key) {
|
||
result[++index] = [key, value];
|
||
});
|
||
return result;
|
||
}
|
||
function overArg(func, transform) {
|
||
return function(arg) {
|
||
return func(transform(arg));
|
||
};
|
||
}
|
||
function replaceHolders(array, placeholder) {
|
||
var index = -1, length = array.length, resIndex = 0, result = [];
|
||
while (++index < length) {
|
||
var value = array[index];
|
||
if (value === placeholder || value === PLACEHOLDER) {
|
||
array[index] = PLACEHOLDER;
|
||
result[resIndex++] = index;
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
function setToArray(set2) {
|
||
var index = -1, result = Array(set2.size);
|
||
set2.forEach(function(value) {
|
||
result[++index] = value;
|
||
});
|
||
return result;
|
||
}
|
||
function setToPairs(set2) {
|
||
var index = -1, result = Array(set2.size);
|
||
set2.forEach(function(value) {
|
||
result[++index] = [value, value];
|
||
});
|
||
return result;
|
||
}
|
||
function strictIndexOf(array, value, fromIndex) {
|
||
var index = fromIndex - 1, length = array.length;
|
||
while (++index < length) {
|
||
if (array[index] === value) {
|
||
return index;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
function strictLastIndexOf(array, value, fromIndex) {
|
||
var index = fromIndex + 1;
|
||
while (index--) {
|
||
if (array[index] === value) {
|
||
return index;
|
||
}
|
||
}
|
||
return index;
|
||
}
|
||
function stringSize(string) {
|
||
return hasUnicode(string) ? unicodeSize(string) : asciiSize(string);
|
||
}
|
||
function stringToArray(string) {
|
||
return hasUnicode(string) ? unicodeToArray(string) : asciiToArray(string);
|
||
}
|
||
function trimmedEndIndex(string) {
|
||
var index = string.length;
|
||
while (index-- && reWhitespace.test(string.charAt(index))) {
|
||
}
|
||
return index;
|
||
}
|
||
var unescapeHtmlChar = basePropertyOf(htmlUnescapes);
|
||
function unicodeSize(string) {
|
||
var result = reUnicode.lastIndex = 0;
|
||
while (reUnicode.test(string)) {
|
||
++result;
|
||
}
|
||
return result;
|
||
}
|
||
function unicodeToArray(string) {
|
||
return string.match(reUnicode) || [];
|
||
}
|
||
function unicodeWords(string) {
|
||
return string.match(reUnicodeWord) || [];
|
||
}
|
||
var runInContext = function runInContext2(context) {
|
||
context = context == null ? root : _3.defaults(root.Object(), context, _3.pick(root, contextProps));
|
||
var Array2 = context.Array, Date2 = context.Date, Error2 = context.Error, Function2 = context.Function, Math2 = context.Math, Object2 = context.Object, RegExp2 = context.RegExp, String2 = context.String, TypeError2 = context.TypeError;
|
||
var arrayProto = Array2.prototype, funcProto = Function2.prototype, objectProto = Object2.prototype;
|
||
var coreJsData = context["__core-js_shared__"];
|
||
var funcToString = funcProto.toString;
|
||
var hasOwnProperty = objectProto.hasOwnProperty;
|
||
var idCounter = 0;
|
||
var maskSrcKey = function() {
|
||
var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || "");
|
||
return uid ? "Symbol(src)_1." + uid : "";
|
||
}();
|
||
var nativeObjectToString = objectProto.toString;
|
||
var objectCtorString2 = funcToString.call(Object2);
|
||
var oldDash = root._;
|
||
var reIsNative = RegExp2(
|
||
"^" + funcToString.call(hasOwnProperty).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
|
||
);
|
||
var Buffer2 = moduleExports ? context.Buffer : undefined2, Symbol2 = context.Symbol, Uint8Array2 = context.Uint8Array, allocUnsafe = Buffer2 ? Buffer2.allocUnsafe : undefined2, getPrototype = overArg(Object2.getPrototypeOf, Object2), objectCreate = Object2.create, propertyIsEnumerable = objectProto.propertyIsEnumerable, splice = arrayProto.splice, spreadableSymbol = Symbol2 ? Symbol2.isConcatSpreadable : undefined2, symIterator = Symbol2 ? Symbol2.iterator : undefined2, symToStringTag = Symbol2 ? Symbol2.toStringTag : undefined2;
|
||
var defineProperty = function() {
|
||
try {
|
||
var func = getNative(Object2, "defineProperty");
|
||
func({}, "", {});
|
||
return func;
|
||
} catch (e) {
|
||
}
|
||
}();
|
||
var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, ctxNow = Date2 && Date2.now !== root.Date.now && Date2.now, ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout;
|
||
var nativeCeil = Math2.ceil, nativeFloor = Math2.floor, nativeGetSymbols = Object2.getOwnPropertySymbols, nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : undefined2, nativeIsFinite = context.isFinite, nativeJoin = arrayProto.join, nativeKeys = overArg(Object2.keys, Object2), nativeMax = Math2.max, nativeMin = Math2.min, nativeNow = Date2.now, nativeParseInt = context.parseInt, nativeRandom = Math2.random, nativeReverse = arrayProto.reverse;
|
||
var DataView = getNative(context, "DataView"), Map2 = getNative(context, "Map"), Promise2 = getNative(context, "Promise"), Set2 = getNative(context, "Set"), WeakMap2 = getNative(context, "WeakMap"), nativeCreate = getNative(Object2, "create");
|
||
var metaMap = WeakMap2 && new WeakMap2();
|
||
var realNames = {};
|
||
var dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map2), promiseCtorString = toSource(Promise2), setCtorString = toSource(Set2), weakMapCtorString = toSource(WeakMap2);
|
||
var symbolProto = Symbol2 ? Symbol2.prototype : undefined2, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined2, symbolToString = symbolProto ? symbolProto.toString : undefined2;
|
||
function lodash(value) {
|
||
if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) {
|
||
if (value instanceof LodashWrapper) {
|
||
return value;
|
||
}
|
||
if (hasOwnProperty.call(value, "__wrapped__")) {
|
||
return wrapperClone(value);
|
||
}
|
||
}
|
||
return new LodashWrapper(value);
|
||
}
|
||
var baseCreate = function() {
|
||
function object() {
|
||
}
|
||
return function(proto) {
|
||
if (!isObject(proto)) {
|
||
return {};
|
||
}
|
||
if (objectCreate) {
|
||
return objectCreate(proto);
|
||
}
|
||
object.prototype = proto;
|
||
var result2 = new object();
|
||
object.prototype = undefined2;
|
||
return result2;
|
||
};
|
||
}();
|
||
function baseLodash() {
|
||
}
|
||
function LodashWrapper(value, chainAll) {
|
||
this.__wrapped__ = value;
|
||
this.__actions__ = [];
|
||
this.__chain__ = !!chainAll;
|
||
this.__index__ = 0;
|
||
this.__values__ = undefined2;
|
||
}
|
||
lodash.templateSettings = {
|
||
/**
|
||
* Used to detect `data` property values to be HTML-escaped.
|
||
*
|
||
* @memberOf _.templateSettings
|
||
* @type {RegExp}
|
||
*/
|
||
"escape": reEscape,
|
||
/**
|
||
* Used to detect code to be evaluated.
|
||
*
|
||
* @memberOf _.templateSettings
|
||
* @type {RegExp}
|
||
*/
|
||
"evaluate": reEvaluate,
|
||
/**
|
||
* Used to detect `data` property values to inject.
|
||
*
|
||
* @memberOf _.templateSettings
|
||
* @type {RegExp}
|
||
*/
|
||
"interpolate": reInterpolate,
|
||
/**
|
||
* Used to reference the data object in the template text.
|
||
*
|
||
* @memberOf _.templateSettings
|
||
* @type {string}
|
||
*/
|
||
"variable": "",
|
||
/**
|
||
* Used to import variables into the compiled template.
|
||
*
|
||
* @memberOf _.templateSettings
|
||
* @type {Object}
|
||
*/
|
||
"imports": {
|
||
/**
|
||
* A reference to the `lodash` function.
|
||
*
|
||
* @memberOf _.templateSettings.imports
|
||
* @type {Function}
|
||
*/
|
||
"_": lodash
|
||
}
|
||
};
|
||
lodash.prototype = baseLodash.prototype;
|
||
lodash.prototype.constructor = lodash;
|
||
LodashWrapper.prototype = baseCreate(baseLodash.prototype);
|
||
LodashWrapper.prototype.constructor = LodashWrapper;
|
||
function LazyWrapper(value) {
|
||
this.__wrapped__ = value;
|
||
this.__actions__ = [];
|
||
this.__dir__ = 1;
|
||
this.__filtered__ = false;
|
||
this.__iteratees__ = [];
|
||
this.__takeCount__ = MAX_ARRAY_LENGTH;
|
||
this.__views__ = [];
|
||
}
|
||
function lazyClone() {
|
||
var result2 = new LazyWrapper(this.__wrapped__);
|
||
result2.__actions__ = copyArray(this.__actions__);
|
||
result2.__dir__ = this.__dir__;
|
||
result2.__filtered__ = this.__filtered__;
|
||
result2.__iteratees__ = copyArray(this.__iteratees__);
|
||
result2.__takeCount__ = this.__takeCount__;
|
||
result2.__views__ = copyArray(this.__views__);
|
||
return result2;
|
||
}
|
||
function lazyReverse() {
|
||
if (this.__filtered__) {
|
||
var result2 = new LazyWrapper(this);
|
||
result2.__dir__ = -1;
|
||
result2.__filtered__ = true;
|
||
} else {
|
||
result2 = this.clone();
|
||
result2.__dir__ *= -1;
|
||
}
|
||
return result2;
|
||
}
|
||
function lazyValue() {
|
||
var array = this.__wrapped__.value(), dir = this.__dir__, isArr = isArray(array), isRight = dir < 0, arrLength = isArr ? array.length : 0, view = getView(0, arrLength, this.__views__), start = view.start, end = view.end, length = end - start, index = isRight ? end : start - 1, iteratees = this.__iteratees__, iterLength = iteratees.length, resIndex = 0, takeCount = nativeMin(length, this.__takeCount__);
|
||
if (!isArr || !isRight && arrLength == length && takeCount == length) {
|
||
return baseWrapperValue(array, this.__actions__);
|
||
}
|
||
var result2 = [];
|
||
outer:
|
||
while (length-- && resIndex < takeCount) {
|
||
index += dir;
|
||
var iterIndex = -1, value = array[index];
|
||
while (++iterIndex < iterLength) {
|
||
var data = iteratees[iterIndex], iteratee2 = data.iteratee, type = data.type, computed = iteratee2(value);
|
||
if (type == LAZY_MAP_FLAG) {
|
||
value = computed;
|
||
} else if (!computed) {
|
||
if (type == LAZY_FILTER_FLAG) {
|
||
continue outer;
|
||
} else {
|
||
break outer;
|
||
}
|
||
}
|
||
}
|
||
result2[resIndex++] = value;
|
||
}
|
||
return result2;
|
||
}
|
||
LazyWrapper.prototype = baseCreate(baseLodash.prototype);
|
||
LazyWrapper.prototype.constructor = LazyWrapper;
|
||
function Hash(entries) {
|
||
var index = -1, length = entries == null ? 0 : entries.length;
|
||
this.clear();
|
||
while (++index < length) {
|
||
var entry = entries[index];
|
||
this.set(entry[0], entry[1]);
|
||
}
|
||
}
|
||
function hashClear() {
|
||
this.__data__ = nativeCreate ? nativeCreate(null) : {};
|
||
this.size = 0;
|
||
}
|
||
function hashDelete(key) {
|
||
var result2 = this.has(key) && delete this.__data__[key];
|
||
this.size -= result2 ? 1 : 0;
|
||
return result2;
|
||
}
|
||
function hashGet(key) {
|
||
var data = this.__data__;
|
||
if (nativeCreate) {
|
||
var result2 = data[key];
|
||
return result2 === HASH_UNDEFINED ? undefined2 : result2;
|
||
}
|
||
return hasOwnProperty.call(data, key) ? data[key] : undefined2;
|
||
}
|
||
function hashHas(key) {
|
||
var data = this.__data__;
|
||
return nativeCreate ? data[key] !== undefined2 : hasOwnProperty.call(data, key);
|
||
}
|
||
function hashSet(key, value) {
|
||
var data = this.__data__;
|
||
this.size += this.has(key) ? 0 : 1;
|
||
data[key] = nativeCreate && value === undefined2 ? HASH_UNDEFINED : value;
|
||
return this;
|
||
}
|
||
Hash.prototype.clear = hashClear;
|
||
Hash.prototype["delete"] = hashDelete;
|
||
Hash.prototype.get = hashGet;
|
||
Hash.prototype.has = hashHas;
|
||
Hash.prototype.set = hashSet;
|
||
function ListCache(entries) {
|
||
var index = -1, length = entries == null ? 0 : entries.length;
|
||
this.clear();
|
||
while (++index < length) {
|
||
var entry = entries[index];
|
||
this.set(entry[0], entry[1]);
|
||
}
|
||
}
|
||
function listCacheClear() {
|
||
this.__data__ = [];
|
||
this.size = 0;
|
||
}
|
||
function listCacheDelete(key) {
|
||
var data = this.__data__, index = assocIndexOf(data, key);
|
||
if (index < 0) {
|
||
return false;
|
||
}
|
||
var lastIndex = data.length - 1;
|
||
if (index == lastIndex) {
|
||
data.pop();
|
||
} else {
|
||
splice.call(data, index, 1);
|
||
}
|
||
--this.size;
|
||
return true;
|
||
}
|
||
function listCacheGet(key) {
|
||
var data = this.__data__, index = assocIndexOf(data, key);
|
||
return index < 0 ? undefined2 : data[index][1];
|
||
}
|
||
function listCacheHas(key) {
|
||
return assocIndexOf(this.__data__, key) > -1;
|
||
}
|
||
function listCacheSet(key, value) {
|
||
var data = this.__data__, index = assocIndexOf(data, key);
|
||
if (index < 0) {
|
||
++this.size;
|
||
data.push([key, value]);
|
||
} else {
|
||
data[index][1] = value;
|
||
}
|
||
return this;
|
||
}
|
||
ListCache.prototype.clear = listCacheClear;
|
||
ListCache.prototype["delete"] = listCacheDelete;
|
||
ListCache.prototype.get = listCacheGet;
|
||
ListCache.prototype.has = listCacheHas;
|
||
ListCache.prototype.set = listCacheSet;
|
||
function MapCache(entries) {
|
||
var index = -1, length = entries == null ? 0 : entries.length;
|
||
this.clear();
|
||
while (++index < length) {
|
||
var entry = entries[index];
|
||
this.set(entry[0], entry[1]);
|
||
}
|
||
}
|
||
function mapCacheClear() {
|
||
this.size = 0;
|
||
this.__data__ = {
|
||
"hash": new Hash(),
|
||
"map": new (Map2 || ListCache)(),
|
||
"string": new Hash()
|
||
};
|
||
}
|
||
function mapCacheDelete(key) {
|
||
var result2 = getMapData(this, key)["delete"](key);
|
||
this.size -= result2 ? 1 : 0;
|
||
return result2;
|
||
}
|
||
function mapCacheGet(key) {
|
||
return getMapData(this, key).get(key);
|
||
}
|
||
function mapCacheHas(key) {
|
||
return getMapData(this, key).has(key);
|
||
}
|
||
function mapCacheSet(key, value) {
|
||
var data = getMapData(this, key), size2 = data.size;
|
||
data.set(key, value);
|
||
this.size += data.size == size2 ? 0 : 1;
|
||
return this;
|
||
}
|
||
MapCache.prototype.clear = mapCacheClear;
|
||
MapCache.prototype["delete"] = mapCacheDelete;
|
||
MapCache.prototype.get = mapCacheGet;
|
||
MapCache.prototype.has = mapCacheHas;
|
||
MapCache.prototype.set = mapCacheSet;
|
||
function SetCache(values2) {
|
||
var index = -1, length = values2 == null ? 0 : values2.length;
|
||
this.__data__ = new MapCache();
|
||
while (++index < length) {
|
||
this.add(values2[index]);
|
||
}
|
||
}
|
||
function setCacheAdd(value) {
|
||
this.__data__.set(value, HASH_UNDEFINED);
|
||
return this;
|
||
}
|
||
function setCacheHas(value) {
|
||
return this.__data__.has(value);
|
||
}
|
||
SetCache.prototype.add = SetCache.prototype.push = setCacheAdd;
|
||
SetCache.prototype.has = setCacheHas;
|
||
function Stack(entries) {
|
||
var data = this.__data__ = new ListCache(entries);
|
||
this.size = data.size;
|
||
}
|
||
function stackClear() {
|
||
this.__data__ = new ListCache();
|
||
this.size = 0;
|
||
}
|
||
function stackDelete(key) {
|
||
var data = this.__data__, result2 = data["delete"](key);
|
||
this.size = data.size;
|
||
return result2;
|
||
}
|
||
function stackGet(key) {
|
||
return this.__data__.get(key);
|
||
}
|
||
function stackHas(key) {
|
||
return this.__data__.has(key);
|
||
}
|
||
function stackSet(key, value) {
|
||
var data = this.__data__;
|
||
if (data instanceof ListCache) {
|
||
var pairs = data.__data__;
|
||
if (!Map2 || pairs.length < LARGE_ARRAY_SIZE - 1) {
|
||
pairs.push([key, value]);
|
||
this.size = ++data.size;
|
||
return this;
|
||
}
|
||
data = this.__data__ = new MapCache(pairs);
|
||
}
|
||
data.set(key, value);
|
||
this.size = data.size;
|
||
return this;
|
||
}
|
||
Stack.prototype.clear = stackClear;
|
||
Stack.prototype["delete"] = stackDelete;
|
||
Stack.prototype.get = stackGet;
|
||
Stack.prototype.has = stackHas;
|
||
Stack.prototype.set = stackSet;
|
||
function arrayLikeKeys(value, inherited) {
|
||
var isArr = isArray(value), isArg = !isArr && isArguments(value), isBuff = !isArr && !isArg && isBuffer(value), isType = !isArr && !isArg && !isBuff && isTypedArray(value), skipIndexes = isArr || isArg || isBuff || isType, result2 = skipIndexes ? baseTimes(value.length, String2) : [], length = result2.length;
|
||
for (var key in value) {
|
||
if ((inherited || hasOwnProperty.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
|
||
(key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
|
||
isBuff && (key == "offset" || key == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
|
||
isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || // Skip index properties.
|
||
isIndex(key, length)))) {
|
||
result2.push(key);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function arraySample(array) {
|
||
var length = array.length;
|
||
return length ? array[baseRandom(0, length - 1)] : undefined2;
|
||
}
|
||
function arraySampleSize(array, n) {
|
||
return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length));
|
||
}
|
||
function arrayShuffle(array) {
|
||
return shuffleSelf(copyArray(array));
|
||
}
|
||
function assignMergeValue(object, key, value) {
|
||
if (value !== undefined2 && !eq(object[key], value) || value === undefined2 && !(key in object)) {
|
||
baseAssignValue(object, key, value);
|
||
}
|
||
}
|
||
function assignValue(object, key, value) {
|
||
var objValue = object[key];
|
||
if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || value === undefined2 && !(key in object)) {
|
||
baseAssignValue(object, key, value);
|
||
}
|
||
}
|
||
function assocIndexOf(array, key) {
|
||
var length = array.length;
|
||
while (length--) {
|
||
if (eq(array[length][0], key)) {
|
||
return length;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
function baseAggregator(collection, setter, iteratee2, accumulator) {
|
||
baseEach(collection, function(value, key, collection2) {
|
||
setter(accumulator, value, iteratee2(value), collection2);
|
||
});
|
||
return accumulator;
|
||
}
|
||
function baseAssign(object, source) {
|
||
return object && copyObject(source, keys(source), object);
|
||
}
|
||
function baseAssignIn(object, source) {
|
||
return object && copyObject(source, keysIn(source), object);
|
||
}
|
||
function baseAssignValue(object, key, value) {
|
||
if (key == "__proto__" && defineProperty) {
|
||
defineProperty(object, key, {
|
||
"configurable": true,
|
||
"enumerable": true,
|
||
"value": value,
|
||
"writable": true
|
||
});
|
||
} else {
|
||
object[key] = value;
|
||
}
|
||
}
|
||
function baseAt(object, paths) {
|
||
var index = -1, length = paths.length, result2 = Array2(length), skip = object == null;
|
||
while (++index < length) {
|
||
result2[index] = skip ? undefined2 : get(object, paths[index]);
|
||
}
|
||
return result2;
|
||
}
|
||
function baseClamp(number, lower, upper) {
|
||
if (number === number) {
|
||
if (upper !== undefined2) {
|
||
number = number <= upper ? number : upper;
|
||
}
|
||
if (lower !== undefined2) {
|
||
number = number >= lower ? number : lower;
|
||
}
|
||
}
|
||
return number;
|
||
}
|
||
function baseClone(value, bitmask, customizer, key, object, stack) {
|
||
var result2, isDeep = bitmask & CLONE_DEEP_FLAG, isFlat = bitmask & CLONE_FLAT_FLAG, isFull = bitmask & CLONE_SYMBOLS_FLAG;
|
||
if (customizer) {
|
||
result2 = object ? customizer(value, key, object, stack) : customizer(value);
|
||
}
|
||
if (result2 !== undefined2) {
|
||
return result2;
|
||
}
|
||
if (!isObject(value)) {
|
||
return value;
|
||
}
|
||
var isArr = isArray(value);
|
||
if (isArr) {
|
||
result2 = initCloneArray(value);
|
||
if (!isDeep) {
|
||
return copyArray(value, result2);
|
||
}
|
||
} else {
|
||
var tag = getTag(value), isFunc = tag == funcTag || tag == genTag;
|
||
if (isBuffer(value)) {
|
||
return cloneBuffer(value, isDeep);
|
||
}
|
||
if (tag == objectTag || tag == argsTag || isFunc && !object) {
|
||
result2 = isFlat || isFunc ? {} : initCloneObject(value);
|
||
if (!isDeep) {
|
||
return isFlat ? copySymbolsIn(value, baseAssignIn(result2, value)) : copySymbols(value, baseAssign(result2, value));
|
||
}
|
||
} else {
|
||
if (!cloneableTags[tag]) {
|
||
return object ? value : {};
|
||
}
|
||
result2 = initCloneByTag(value, tag, isDeep);
|
||
}
|
||
}
|
||
stack || (stack = new Stack());
|
||
var stacked = stack.get(value);
|
||
if (stacked) {
|
||
return stacked;
|
||
}
|
||
stack.set(value, result2);
|
||
if (isSet2(value)) {
|
||
value.forEach(function(subValue) {
|
||
result2.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));
|
||
});
|
||
} else if (isMap2(value)) {
|
||
value.forEach(function(subValue, key2) {
|
||
result2.set(key2, baseClone(subValue, bitmask, customizer, key2, value, stack));
|
||
});
|
||
}
|
||
var keysFunc = isFull ? isFlat ? getAllKeysIn : getAllKeys : isFlat ? keysIn : keys;
|
||
var props = isArr ? undefined2 : keysFunc(value);
|
||
arrayEach(props || value, function(subValue, key2) {
|
||
if (props) {
|
||
key2 = subValue;
|
||
subValue = value[key2];
|
||
}
|
||
assignValue(result2, key2, baseClone(subValue, bitmask, customizer, key2, value, stack));
|
||
});
|
||
return result2;
|
||
}
|
||
function baseConforms(source) {
|
||
var props = keys(source);
|
||
return function(object) {
|
||
return baseConformsTo(object, source, props);
|
||
};
|
||
}
|
||
function baseConformsTo(object, source, props) {
|
||
var length = props.length;
|
||
if (object == null) {
|
||
return !length;
|
||
}
|
||
object = Object2(object);
|
||
while (length--) {
|
||
var key = props[length], predicate = source[key], value = object[key];
|
||
if (value === undefined2 && !(key in object) || !predicate(value)) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function baseDelay(func, wait, args) {
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
return setTimeout2(function() {
|
||
func.apply(undefined2, args);
|
||
}, wait);
|
||
}
|
||
function baseDifference(array, values2, iteratee2, comparator) {
|
||
var index = -1, includes2 = arrayIncludes, isCommon = true, length = array.length, result2 = [], valuesLength = values2.length;
|
||
if (!length) {
|
||
return result2;
|
||
}
|
||
if (iteratee2) {
|
||
values2 = arrayMap(values2, baseUnary(iteratee2));
|
||
}
|
||
if (comparator) {
|
||
includes2 = arrayIncludesWith;
|
||
isCommon = false;
|
||
} else if (values2.length >= LARGE_ARRAY_SIZE) {
|
||
includes2 = cacheHas;
|
||
isCommon = false;
|
||
values2 = new SetCache(values2);
|
||
}
|
||
outer:
|
||
while (++index < length) {
|
||
var value = array[index], computed = iteratee2 == null ? value : iteratee2(value);
|
||
value = comparator || value !== 0 ? value : 0;
|
||
if (isCommon && computed === computed) {
|
||
var valuesIndex = valuesLength;
|
||
while (valuesIndex--) {
|
||
if (values2[valuesIndex] === computed) {
|
||
continue outer;
|
||
}
|
||
}
|
||
result2.push(value);
|
||
} else if (!includes2(values2, computed, comparator)) {
|
||
result2.push(value);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
var baseEach = createBaseEach(baseForOwn);
|
||
var baseEachRight = createBaseEach(baseForOwnRight, true);
|
||
function baseEvery(collection, predicate) {
|
||
var result2 = true;
|
||
baseEach(collection, function(value, index, collection2) {
|
||
result2 = !!predicate(value, index, collection2);
|
||
return result2;
|
||
});
|
||
return result2;
|
||
}
|
||
function baseExtremum(array, iteratee2, comparator) {
|
||
var index = -1, length = array.length;
|
||
while (++index < length) {
|
||
var value = array[index], current2 = iteratee2(value);
|
||
if (current2 != null && (computed === undefined2 ? current2 === current2 && !isSymbol(current2) : comparator(current2, computed))) {
|
||
var computed = current2, result2 = value;
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function baseFill(array, value, start, end) {
|
||
var length = array.length;
|
||
start = toInteger(start);
|
||
if (start < 0) {
|
||
start = -start > length ? 0 : length + start;
|
||
}
|
||
end = end === undefined2 || end > length ? length : toInteger(end);
|
||
if (end < 0) {
|
||
end += length;
|
||
}
|
||
end = start > end ? 0 : toLength(end);
|
||
while (start < end) {
|
||
array[start++] = value;
|
||
}
|
||
return array;
|
||
}
|
||
function baseFilter(collection, predicate) {
|
||
var result2 = [];
|
||
baseEach(collection, function(value, index, collection2) {
|
||
if (predicate(value, index, collection2)) {
|
||
result2.push(value);
|
||
}
|
||
});
|
||
return result2;
|
||
}
|
||
function baseFlatten(array, depth, predicate, isStrict, result2) {
|
||
var index = -1, length = array.length;
|
||
predicate || (predicate = isFlattenable);
|
||
result2 || (result2 = []);
|
||
while (++index < length) {
|
||
var value = array[index];
|
||
if (depth > 0 && predicate(value)) {
|
||
if (depth > 1) {
|
||
baseFlatten(value, depth - 1, predicate, isStrict, result2);
|
||
} else {
|
||
arrayPush(result2, value);
|
||
}
|
||
} else if (!isStrict) {
|
||
result2[result2.length] = value;
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
var baseFor = createBaseFor();
|
||
var baseForRight = createBaseFor(true);
|
||
function baseForOwn(object, iteratee2) {
|
||
return object && baseFor(object, iteratee2, keys);
|
||
}
|
||
function baseForOwnRight(object, iteratee2) {
|
||
return object && baseForRight(object, iteratee2, keys);
|
||
}
|
||
function baseFunctions(object, props) {
|
||
return arrayFilter(props, function(key) {
|
||
return isFunction(object[key]);
|
||
});
|
||
}
|
||
function baseGet(object, path) {
|
||
path = castPath(path, object);
|
||
var index = 0, length = path.length;
|
||
while (object != null && index < length) {
|
||
object = object[toKey(path[index++])];
|
||
}
|
||
return index && index == length ? object : undefined2;
|
||
}
|
||
function baseGetAllKeys(object, keysFunc, symbolsFunc) {
|
||
var result2 = keysFunc(object);
|
||
return isArray(object) ? result2 : arrayPush(result2, symbolsFunc(object));
|
||
}
|
||
function baseGetTag(value) {
|
||
if (value == null) {
|
||
return value === undefined2 ? undefinedTag : nullTag;
|
||
}
|
||
return symToStringTag && symToStringTag in Object2(value) ? getRawTag(value) : objectToString(value);
|
||
}
|
||
function baseGt(value, other) {
|
||
return value > other;
|
||
}
|
||
function baseHas(object, key) {
|
||
return object != null && hasOwnProperty.call(object, key);
|
||
}
|
||
function baseHasIn(object, key) {
|
||
return object != null && key in Object2(object);
|
||
}
|
||
function baseInRange(number, start, end) {
|
||
return number >= nativeMin(start, end) && number < nativeMax(start, end);
|
||
}
|
||
function baseIntersection(arrays, iteratee2, comparator) {
|
||
var includes2 = comparator ? arrayIncludesWith : arrayIncludes, length = arrays[0].length, othLength = arrays.length, othIndex = othLength, caches = Array2(othLength), maxLength = Infinity, result2 = [];
|
||
while (othIndex--) {
|
||
var array = arrays[othIndex];
|
||
if (othIndex && iteratee2) {
|
||
array = arrayMap(array, baseUnary(iteratee2));
|
||
}
|
||
maxLength = nativeMin(array.length, maxLength);
|
||
caches[othIndex] = !comparator && (iteratee2 || length >= 120 && array.length >= 120) ? new SetCache(othIndex && array) : undefined2;
|
||
}
|
||
array = arrays[0];
|
||
var index = -1, seen = caches[0];
|
||
outer:
|
||
while (++index < length && result2.length < maxLength) {
|
||
var value = array[index], computed = iteratee2 ? iteratee2(value) : value;
|
||
value = comparator || value !== 0 ? value : 0;
|
||
if (!(seen ? cacheHas(seen, computed) : includes2(result2, computed, comparator))) {
|
||
othIndex = othLength;
|
||
while (--othIndex) {
|
||
var cache = caches[othIndex];
|
||
if (!(cache ? cacheHas(cache, computed) : includes2(arrays[othIndex], computed, comparator))) {
|
||
continue outer;
|
||
}
|
||
}
|
||
if (seen) {
|
||
seen.push(computed);
|
||
}
|
||
result2.push(value);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function baseInverter(object, setter, iteratee2, accumulator) {
|
||
baseForOwn(object, function(value, key, object2) {
|
||
setter(accumulator, iteratee2(value), key, object2);
|
||
});
|
||
return accumulator;
|
||
}
|
||
function baseInvoke(object, path, args) {
|
||
path = castPath(path, object);
|
||
object = parent(object, path);
|
||
var func = object == null ? object : object[toKey(last(path))];
|
||
return func == null ? undefined2 : apply(func, object, args);
|
||
}
|
||
function baseIsArguments(value) {
|
||
return isObjectLike(value) && baseGetTag(value) == argsTag;
|
||
}
|
||
function baseIsArrayBuffer(value) {
|
||
return isObjectLike(value) && baseGetTag(value) == arrayBufferTag;
|
||
}
|
||
function baseIsDate(value) {
|
||
return isObjectLike(value) && baseGetTag(value) == dateTag;
|
||
}
|
||
function baseIsEqual(value, other, bitmask, customizer, stack) {
|
||
if (value === other) {
|
||
return true;
|
||
}
|
||
if (value == null || other == null || !isObjectLike(value) && !isObjectLike(other)) {
|
||
return value !== value && other !== other;
|
||
}
|
||
return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);
|
||
}
|
||
function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
|
||
var objIsArr = isArray(object), othIsArr = isArray(other), objTag = objIsArr ? arrayTag : getTag(object), othTag = othIsArr ? arrayTag : getTag(other);
|
||
objTag = objTag == argsTag ? objectTag : objTag;
|
||
othTag = othTag == argsTag ? objectTag : othTag;
|
||
var objIsObj = objTag == objectTag, othIsObj = othTag == objectTag, isSameTag = objTag == othTag;
|
||
if (isSameTag && isBuffer(object)) {
|
||
if (!isBuffer(other)) {
|
||
return false;
|
||
}
|
||
objIsArr = true;
|
||
objIsObj = false;
|
||
}
|
||
if (isSameTag && !objIsObj) {
|
||
stack || (stack = new Stack());
|
||
return objIsArr || isTypedArray(object) ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);
|
||
}
|
||
if (!(bitmask & COMPARE_PARTIAL_FLAG)) {
|
||
var objIsWrapped = objIsObj && hasOwnProperty.call(object, "__wrapped__"), othIsWrapped = othIsObj && hasOwnProperty.call(other, "__wrapped__");
|
||
if (objIsWrapped || othIsWrapped) {
|
||
var objUnwrapped = objIsWrapped ? object.value() : object, othUnwrapped = othIsWrapped ? other.value() : other;
|
||
stack || (stack = new Stack());
|
||
return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);
|
||
}
|
||
}
|
||
if (!isSameTag) {
|
||
return false;
|
||
}
|
||
stack || (stack = new Stack());
|
||
return equalObjects(object, other, bitmask, customizer, equalFunc, stack);
|
||
}
|
||
function baseIsMap(value) {
|
||
return isObjectLike(value) && getTag(value) == mapTag;
|
||
}
|
||
function baseIsMatch(object, source, matchData, customizer) {
|
||
var index = matchData.length, length = index, noCustomizer = !customizer;
|
||
if (object == null) {
|
||
return !length;
|
||
}
|
||
object = Object2(object);
|
||
while (index--) {
|
||
var data = matchData[index];
|
||
if (noCustomizer && data[2] ? data[1] !== object[data[0]] : !(data[0] in object)) {
|
||
return false;
|
||
}
|
||
}
|
||
while (++index < length) {
|
||
data = matchData[index];
|
||
var key = data[0], objValue = object[key], srcValue = data[1];
|
||
if (noCustomizer && data[2]) {
|
||
if (objValue === undefined2 && !(key in object)) {
|
||
return false;
|
||
}
|
||
} else {
|
||
var stack = new Stack();
|
||
if (customizer) {
|
||
var result2 = customizer(objValue, srcValue, key, object, source, stack);
|
||
}
|
||
if (!(result2 === undefined2 ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) : result2)) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function baseIsNative(value) {
|
||
if (!isObject(value) || isMasked(value)) {
|
||
return false;
|
||
}
|
||
var pattern = isFunction(value) ? reIsNative : reIsHostCtor;
|
||
return pattern.test(toSource(value));
|
||
}
|
||
function baseIsRegExp(value) {
|
||
return isObjectLike(value) && baseGetTag(value) == regexpTag;
|
||
}
|
||
function baseIsSet(value) {
|
||
return isObjectLike(value) && getTag(value) == setTag;
|
||
}
|
||
function baseIsTypedArray(value) {
|
||
return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)];
|
||
}
|
||
function baseIteratee(value) {
|
||
if (typeof value == "function") {
|
||
return value;
|
||
}
|
||
if (value == null) {
|
||
return identity;
|
||
}
|
||
if (typeof value == "object") {
|
||
return isArray(value) ? baseMatchesProperty(value[0], value[1]) : baseMatches(value);
|
||
}
|
||
return property(value);
|
||
}
|
||
function baseKeys(object) {
|
||
if (!isPrototype(object)) {
|
||
return nativeKeys(object);
|
||
}
|
||
var result2 = [];
|
||
for (var key in Object2(object)) {
|
||
if (hasOwnProperty.call(object, key) && key != "constructor") {
|
||
result2.push(key);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function baseKeysIn(object) {
|
||
if (!isObject(object)) {
|
||
return nativeKeysIn(object);
|
||
}
|
||
var isProto = isPrototype(object), result2 = [];
|
||
for (var key in object) {
|
||
if (!(key == "constructor" && (isProto || !hasOwnProperty.call(object, key)))) {
|
||
result2.push(key);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function baseLt(value, other) {
|
||
return value < other;
|
||
}
|
||
function baseMap(collection, iteratee2) {
|
||
var index = -1, result2 = isArrayLike(collection) ? Array2(collection.length) : [];
|
||
baseEach(collection, function(value, key, collection2) {
|
||
result2[++index] = iteratee2(value, key, collection2);
|
||
});
|
||
return result2;
|
||
}
|
||
function baseMatches(source) {
|
||
var matchData = getMatchData(source);
|
||
if (matchData.length == 1 && matchData[0][2]) {
|
||
return matchesStrictComparable(matchData[0][0], matchData[0][1]);
|
||
}
|
||
return function(object) {
|
||
return object === source || baseIsMatch(object, source, matchData);
|
||
};
|
||
}
|
||
function baseMatchesProperty(path, srcValue) {
|
||
if (isKey(path) && isStrictComparable(srcValue)) {
|
||
return matchesStrictComparable(toKey(path), srcValue);
|
||
}
|
||
return function(object) {
|
||
var objValue = get(object, path);
|
||
return objValue === undefined2 && objValue === srcValue ? hasIn(object, path) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
|
||
};
|
||
}
|
||
function baseMerge(object, source, srcIndex, customizer, stack) {
|
||
if (object === source) {
|
||
return;
|
||
}
|
||
baseFor(source, function(srcValue, key) {
|
||
stack || (stack = new Stack());
|
||
if (isObject(srcValue)) {
|
||
baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);
|
||
} else {
|
||
var newValue = customizer ? customizer(safeGet(object, key), srcValue, key + "", object, source, stack) : undefined2;
|
||
if (newValue === undefined2) {
|
||
newValue = srcValue;
|
||
}
|
||
assignMergeValue(object, key, newValue);
|
||
}
|
||
}, keysIn);
|
||
}
|
||
function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {
|
||
var objValue = safeGet(object, key), srcValue = safeGet(source, key), stacked = stack.get(srcValue);
|
||
if (stacked) {
|
||
assignMergeValue(object, key, stacked);
|
||
return;
|
||
}
|
||
var newValue = customizer ? customizer(objValue, srcValue, key + "", object, source, stack) : undefined2;
|
||
var isCommon = newValue === undefined2;
|
||
if (isCommon) {
|
||
var isArr = isArray(srcValue), isBuff = !isArr && isBuffer(srcValue), isTyped = !isArr && !isBuff && isTypedArray(srcValue);
|
||
newValue = srcValue;
|
||
if (isArr || isBuff || isTyped) {
|
||
if (isArray(objValue)) {
|
||
newValue = objValue;
|
||
} else if (isArrayLikeObject(objValue)) {
|
||
newValue = copyArray(objValue);
|
||
} else if (isBuff) {
|
||
isCommon = false;
|
||
newValue = cloneBuffer(srcValue, true);
|
||
} else if (isTyped) {
|
||
isCommon = false;
|
||
newValue = cloneTypedArray(srcValue, true);
|
||
} else {
|
||
newValue = [];
|
||
}
|
||
} else if (isPlainObject2(srcValue) || isArguments(srcValue)) {
|
||
newValue = objValue;
|
||
if (isArguments(objValue)) {
|
||
newValue = toPlainObject(objValue);
|
||
} else if (!isObject(objValue) || isFunction(objValue)) {
|
||
newValue = initCloneObject(srcValue);
|
||
}
|
||
} else {
|
||
isCommon = false;
|
||
}
|
||
}
|
||
if (isCommon) {
|
||
stack.set(srcValue, newValue);
|
||
mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
|
||
stack["delete"](srcValue);
|
||
}
|
||
assignMergeValue(object, key, newValue);
|
||
}
|
||
function baseNth(array, n) {
|
||
var length = array.length;
|
||
if (!length) {
|
||
return;
|
||
}
|
||
n += n < 0 ? length : 0;
|
||
return isIndex(n, length) ? array[n] : undefined2;
|
||
}
|
||
function baseOrderBy(collection, iteratees, orders) {
|
||
if (iteratees.length) {
|
||
iteratees = arrayMap(iteratees, function(iteratee2) {
|
||
if (isArray(iteratee2)) {
|
||
return function(value) {
|
||
return baseGet(value, iteratee2.length === 1 ? iteratee2[0] : iteratee2);
|
||
};
|
||
}
|
||
return iteratee2;
|
||
});
|
||
} else {
|
||
iteratees = [identity];
|
||
}
|
||
var index = -1;
|
||
iteratees = arrayMap(iteratees, baseUnary(getIteratee()));
|
||
var result2 = baseMap(collection, function(value, key, collection2) {
|
||
var criteria = arrayMap(iteratees, function(iteratee2) {
|
||
return iteratee2(value);
|
||
});
|
||
return { "criteria": criteria, "index": ++index, "value": value };
|
||
});
|
||
return baseSortBy(result2, function(object, other) {
|
||
return compareMultiple(object, other, orders);
|
||
});
|
||
}
|
||
function basePick(object, paths) {
|
||
return basePickBy(object, paths, function(value, path) {
|
||
return hasIn(object, path);
|
||
});
|
||
}
|
||
function basePickBy(object, paths, predicate) {
|
||
var index = -1, length = paths.length, result2 = {};
|
||
while (++index < length) {
|
||
var path = paths[index], value = baseGet(object, path);
|
||
if (predicate(value, path)) {
|
||
baseSet(result2, castPath(path, object), value);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function basePropertyDeep(path) {
|
||
return function(object) {
|
||
return baseGet(object, path);
|
||
};
|
||
}
|
||
function basePullAll(array, values2, iteratee2, comparator) {
|
||
var indexOf2 = comparator ? baseIndexOfWith : baseIndexOf, index = -1, length = values2.length, seen = array;
|
||
if (array === values2) {
|
||
values2 = copyArray(values2);
|
||
}
|
||
if (iteratee2) {
|
||
seen = arrayMap(array, baseUnary(iteratee2));
|
||
}
|
||
while (++index < length) {
|
||
var fromIndex = 0, value = values2[index], computed = iteratee2 ? iteratee2(value) : value;
|
||
while ((fromIndex = indexOf2(seen, computed, fromIndex, comparator)) > -1) {
|
||
if (seen !== array) {
|
||
splice.call(seen, fromIndex, 1);
|
||
}
|
||
splice.call(array, fromIndex, 1);
|
||
}
|
||
}
|
||
return array;
|
||
}
|
||
function basePullAt(array, indexes) {
|
||
var length = array ? indexes.length : 0, lastIndex = length - 1;
|
||
while (length--) {
|
||
var index = indexes[length];
|
||
if (length == lastIndex || index !== previous) {
|
||
var previous = index;
|
||
if (isIndex(index)) {
|
||
splice.call(array, index, 1);
|
||
} else {
|
||
baseUnset(array, index);
|
||
}
|
||
}
|
||
}
|
||
return array;
|
||
}
|
||
function baseRandom(lower, upper) {
|
||
return lower + nativeFloor(nativeRandom() * (upper - lower + 1));
|
||
}
|
||
function baseRange(start, end, step, fromRight) {
|
||
var index = -1, length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), result2 = Array2(length);
|
||
while (length--) {
|
||
result2[fromRight ? length : ++index] = start;
|
||
start += step;
|
||
}
|
||
return result2;
|
||
}
|
||
function baseRepeat(string, n) {
|
||
var result2 = "";
|
||
if (!string || n < 1 || n > MAX_SAFE_INTEGER) {
|
||
return result2;
|
||
}
|
||
do {
|
||
if (n % 2) {
|
||
result2 += string;
|
||
}
|
||
n = nativeFloor(n / 2);
|
||
if (n) {
|
||
string += string;
|
||
}
|
||
} while (n);
|
||
return result2;
|
||
}
|
||
function baseRest(func, start) {
|
||
return setToString(overRest(func, start, identity), func + "");
|
||
}
|
||
function baseSample(collection) {
|
||
return arraySample(values(collection));
|
||
}
|
||
function baseSampleSize(collection, n) {
|
||
var array = values(collection);
|
||
return shuffleSelf(array, baseClamp(n, 0, array.length));
|
||
}
|
||
function baseSet(object, path, value, customizer) {
|
||
if (!isObject(object)) {
|
||
return object;
|
||
}
|
||
path = castPath(path, object);
|
||
var index = -1, length = path.length, lastIndex = length - 1, nested = object;
|
||
while (nested != null && ++index < length) {
|
||
var key = toKey(path[index]), newValue = value;
|
||
if (key === "__proto__" || key === "constructor" || key === "prototype") {
|
||
return object;
|
||
}
|
||
if (index != lastIndex) {
|
||
var objValue = nested[key];
|
||
newValue = customizer ? customizer(objValue, key, nested) : undefined2;
|
||
if (newValue === undefined2) {
|
||
newValue = isObject(objValue) ? objValue : isIndex(path[index + 1]) ? [] : {};
|
||
}
|
||
}
|
||
assignValue(nested, key, newValue);
|
||
nested = nested[key];
|
||
}
|
||
return object;
|
||
}
|
||
var baseSetData = !metaMap ? identity : function(func, data) {
|
||
metaMap.set(func, data);
|
||
return func;
|
||
};
|
||
var baseSetToString = !defineProperty ? identity : function(func, string) {
|
||
return defineProperty(func, "toString", {
|
||
"configurable": true,
|
||
"enumerable": false,
|
||
"value": constant(string),
|
||
"writable": true
|
||
});
|
||
};
|
||
function baseShuffle(collection) {
|
||
return shuffleSelf(values(collection));
|
||
}
|
||
function baseSlice(array, start, end) {
|
||
var index = -1, length = array.length;
|
||
if (start < 0) {
|
||
start = -start > length ? 0 : length + start;
|
||
}
|
||
end = end > length ? length : end;
|
||
if (end < 0) {
|
||
end += length;
|
||
}
|
||
length = start > end ? 0 : end - start >>> 0;
|
||
start >>>= 0;
|
||
var result2 = Array2(length);
|
||
while (++index < length) {
|
||
result2[index] = array[index + start];
|
||
}
|
||
return result2;
|
||
}
|
||
function baseSome(collection, predicate) {
|
||
var result2;
|
||
baseEach(collection, function(value, index, collection2) {
|
||
result2 = predicate(value, index, collection2);
|
||
return !result2;
|
||
});
|
||
return !!result2;
|
||
}
|
||
function baseSortedIndex(array, value, retHighest) {
|
||
var low = 0, high = array == null ? low : array.length;
|
||
if (typeof value == "number" && value === value && high <= HALF_MAX_ARRAY_LENGTH) {
|
||
while (low < high) {
|
||
var mid = low + high >>> 1, computed = array[mid];
|
||
if (computed !== null && !isSymbol(computed) && (retHighest ? computed <= value : computed < value)) {
|
||
low = mid + 1;
|
||
} else {
|
||
high = mid;
|
||
}
|
||
}
|
||
return high;
|
||
}
|
||
return baseSortedIndexBy(array, value, identity, retHighest);
|
||
}
|
||
function baseSortedIndexBy(array, value, iteratee2, retHighest) {
|
||
var low = 0, high = array == null ? 0 : array.length;
|
||
if (high === 0) {
|
||
return 0;
|
||
}
|
||
value = iteratee2(value);
|
||
var valIsNaN = value !== value, valIsNull = value === null, valIsSymbol = isSymbol(value), valIsUndefined = value === undefined2;
|
||
while (low < high) {
|
||
var mid = nativeFloor((low + high) / 2), computed = iteratee2(array[mid]), othIsDefined = computed !== undefined2, othIsNull = computed === null, othIsReflexive = computed === computed, othIsSymbol = isSymbol(computed);
|
||
if (valIsNaN) {
|
||
var setLow = retHighest || othIsReflexive;
|
||
} else if (valIsUndefined) {
|
||
setLow = othIsReflexive && (retHighest || othIsDefined);
|
||
} else if (valIsNull) {
|
||
setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull);
|
||
} else if (valIsSymbol) {
|
||
setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol);
|
||
} else if (othIsNull || othIsSymbol) {
|
||
setLow = false;
|
||
} else {
|
||
setLow = retHighest ? computed <= value : computed < value;
|
||
}
|
||
if (setLow) {
|
||
low = mid + 1;
|
||
} else {
|
||
high = mid;
|
||
}
|
||
}
|
||
return nativeMin(high, MAX_ARRAY_INDEX);
|
||
}
|
||
function baseSortedUniq(array, iteratee2) {
|
||
var index = -1, length = array.length, resIndex = 0, result2 = [];
|
||
while (++index < length) {
|
||
var value = array[index], computed = iteratee2 ? iteratee2(value) : value;
|
||
if (!index || !eq(computed, seen)) {
|
||
var seen = computed;
|
||
result2[resIndex++] = value === 0 ? 0 : value;
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function baseToNumber(value) {
|
||
if (typeof value == "number") {
|
||
return value;
|
||
}
|
||
if (isSymbol(value)) {
|
||
return NAN;
|
||
}
|
||
return +value;
|
||
}
|
||
function baseToString(value) {
|
||
if (typeof value == "string") {
|
||
return value;
|
||
}
|
||
if (isArray(value)) {
|
||
return arrayMap(value, baseToString) + "";
|
||
}
|
||
if (isSymbol(value)) {
|
||
return symbolToString ? symbolToString.call(value) : "";
|
||
}
|
||
var result2 = value + "";
|
||
return result2 == "0" && 1 / value == -INFINITY ? "-0" : result2;
|
||
}
|
||
function baseUniq(array, iteratee2, comparator) {
|
||
var index = -1, includes2 = arrayIncludes, length = array.length, isCommon = true, result2 = [], seen = result2;
|
||
if (comparator) {
|
||
isCommon = false;
|
||
includes2 = arrayIncludesWith;
|
||
} else if (length >= LARGE_ARRAY_SIZE) {
|
||
var set3 = iteratee2 ? null : createSet(array);
|
||
if (set3) {
|
||
return setToArray(set3);
|
||
}
|
||
isCommon = false;
|
||
includes2 = cacheHas;
|
||
seen = new SetCache();
|
||
} else {
|
||
seen = iteratee2 ? [] : result2;
|
||
}
|
||
outer:
|
||
while (++index < length) {
|
||
var value = array[index], computed = iteratee2 ? iteratee2(value) : value;
|
||
value = comparator || value !== 0 ? value : 0;
|
||
if (isCommon && computed === computed) {
|
||
var seenIndex = seen.length;
|
||
while (seenIndex--) {
|
||
if (seen[seenIndex] === computed) {
|
||
continue outer;
|
||
}
|
||
}
|
||
if (iteratee2) {
|
||
seen.push(computed);
|
||
}
|
||
result2.push(value);
|
||
} else if (!includes2(seen, computed, comparator)) {
|
||
if (seen !== result2) {
|
||
seen.push(computed);
|
||
}
|
||
result2.push(value);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function baseUnset(object, path) {
|
||
path = castPath(path, object);
|
||
object = parent(object, path);
|
||
return object == null || delete object[toKey(last(path))];
|
||
}
|
||
function baseUpdate(object, path, updater, customizer) {
|
||
return baseSet(object, path, updater(baseGet(object, path)), customizer);
|
||
}
|
||
function baseWhile(array, predicate, isDrop, fromRight) {
|
||
var length = array.length, index = fromRight ? length : -1;
|
||
while ((fromRight ? index-- : ++index < length) && predicate(array[index], index, array)) {
|
||
}
|
||
return isDrop ? baseSlice(array, fromRight ? 0 : index, fromRight ? index + 1 : length) : baseSlice(array, fromRight ? index + 1 : 0, fromRight ? length : index);
|
||
}
|
||
function baseWrapperValue(value, actions) {
|
||
var result2 = value;
|
||
if (result2 instanceof LazyWrapper) {
|
||
result2 = result2.value();
|
||
}
|
||
return arrayReduce(actions, function(result3, action) {
|
||
return action.func.apply(action.thisArg, arrayPush([result3], action.args));
|
||
}, result2);
|
||
}
|
||
function baseXor(arrays, iteratee2, comparator) {
|
||
var length = arrays.length;
|
||
if (length < 2) {
|
||
return length ? baseUniq(arrays[0]) : [];
|
||
}
|
||
var index = -1, result2 = Array2(length);
|
||
while (++index < length) {
|
||
var array = arrays[index], othIndex = -1;
|
||
while (++othIndex < length) {
|
||
if (othIndex != index) {
|
||
result2[index] = baseDifference(result2[index] || array, arrays[othIndex], iteratee2, comparator);
|
||
}
|
||
}
|
||
}
|
||
return baseUniq(baseFlatten(result2, 1), iteratee2, comparator);
|
||
}
|
||
function baseZipObject(props, values2, assignFunc) {
|
||
var index = -1, length = props.length, valsLength = values2.length, result2 = {};
|
||
while (++index < length) {
|
||
var value = index < valsLength ? values2[index] : undefined2;
|
||
assignFunc(result2, props[index], value);
|
||
}
|
||
return result2;
|
||
}
|
||
function castArrayLikeObject(value) {
|
||
return isArrayLikeObject(value) ? value : [];
|
||
}
|
||
function castFunction(value) {
|
||
return typeof value == "function" ? value : identity;
|
||
}
|
||
function castPath(value, object) {
|
||
if (isArray(value)) {
|
||
return value;
|
||
}
|
||
return isKey(value, object) ? [value] : stringToPath(toString(value));
|
||
}
|
||
var castRest = baseRest;
|
||
function castSlice(array, start, end) {
|
||
var length = array.length;
|
||
end = end === undefined2 ? length : end;
|
||
return !start && end >= length ? array : baseSlice(array, start, end);
|
||
}
|
||
var clearTimeout2 = ctxClearTimeout || function(id) {
|
||
return root.clearTimeout(id);
|
||
};
|
||
function cloneBuffer(buffer, isDeep) {
|
||
if (isDeep) {
|
||
return buffer.slice();
|
||
}
|
||
var length = buffer.length, result2 = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
|
||
buffer.copy(result2);
|
||
return result2;
|
||
}
|
||
function cloneArrayBuffer(arrayBuffer) {
|
||
var result2 = new arrayBuffer.constructor(arrayBuffer.byteLength);
|
||
new Uint8Array2(result2).set(new Uint8Array2(arrayBuffer));
|
||
return result2;
|
||
}
|
||
function cloneDataView(dataView, isDeep) {
|
||
var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;
|
||
return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
|
||
}
|
||
function cloneRegExp(regexp) {
|
||
var result2 = new regexp.constructor(regexp.source, reFlags.exec(regexp));
|
||
result2.lastIndex = regexp.lastIndex;
|
||
return result2;
|
||
}
|
||
function cloneSymbol(symbol) {
|
||
return symbolValueOf ? Object2(symbolValueOf.call(symbol)) : {};
|
||
}
|
||
function cloneTypedArray(typedArray, isDeep) {
|
||
var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;
|
||
return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
|
||
}
|
||
function compareAscending(value, other) {
|
||
if (value !== other) {
|
||
var valIsDefined = value !== undefined2, valIsNull = value === null, valIsReflexive = value === value, valIsSymbol = isSymbol(value);
|
||
var othIsDefined = other !== undefined2, othIsNull = other === null, othIsReflexive = other === other, othIsSymbol = isSymbol(other);
|
||
if (!othIsNull && !othIsSymbol && !valIsSymbol && value > other || valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol || valIsNull && othIsDefined && othIsReflexive || !valIsDefined && othIsReflexive || !valIsReflexive) {
|
||
return 1;
|
||
}
|
||
if (!valIsNull && !valIsSymbol && !othIsSymbol && value < other || othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol || othIsNull && valIsDefined && valIsReflexive || !othIsDefined && valIsReflexive || !othIsReflexive) {
|
||
return -1;
|
||
}
|
||
}
|
||
return 0;
|
||
}
|
||
function compareMultiple(object, other, orders) {
|
||
var index = -1, objCriteria = object.criteria, othCriteria = other.criteria, length = objCriteria.length, ordersLength = orders.length;
|
||
while (++index < length) {
|
||
var result2 = compareAscending(objCriteria[index], othCriteria[index]);
|
||
if (result2) {
|
||
if (index >= ordersLength) {
|
||
return result2;
|
||
}
|
||
var order = orders[index];
|
||
return result2 * (order == "desc" ? -1 : 1);
|
||
}
|
||
}
|
||
return object.index - other.index;
|
||
}
|
||
function composeArgs(args, partials, holders, isCurried) {
|
||
var argsIndex = -1, argsLength = args.length, holdersLength = holders.length, leftIndex = -1, leftLength = partials.length, rangeLength = nativeMax(argsLength - holdersLength, 0), result2 = Array2(leftLength + rangeLength), isUncurried = !isCurried;
|
||
while (++leftIndex < leftLength) {
|
||
result2[leftIndex] = partials[leftIndex];
|
||
}
|
||
while (++argsIndex < holdersLength) {
|
||
if (isUncurried || argsIndex < argsLength) {
|
||
result2[holders[argsIndex]] = args[argsIndex];
|
||
}
|
||
}
|
||
while (rangeLength--) {
|
||
result2[leftIndex++] = args[argsIndex++];
|
||
}
|
||
return result2;
|
||
}
|
||
function composeArgsRight(args, partials, holders, isCurried) {
|
||
var argsIndex = -1, argsLength = args.length, holdersIndex = -1, holdersLength = holders.length, rightIndex = -1, rightLength = partials.length, rangeLength = nativeMax(argsLength - holdersLength, 0), result2 = Array2(rangeLength + rightLength), isUncurried = !isCurried;
|
||
while (++argsIndex < rangeLength) {
|
||
result2[argsIndex] = args[argsIndex];
|
||
}
|
||
var offset = argsIndex;
|
||
while (++rightIndex < rightLength) {
|
||
result2[offset + rightIndex] = partials[rightIndex];
|
||
}
|
||
while (++holdersIndex < holdersLength) {
|
||
if (isUncurried || argsIndex < argsLength) {
|
||
result2[offset + holders[holdersIndex]] = args[argsIndex++];
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function copyArray(source, array) {
|
||
var index = -1, length = source.length;
|
||
array || (array = Array2(length));
|
||
while (++index < length) {
|
||
array[index] = source[index];
|
||
}
|
||
return array;
|
||
}
|
||
function copyObject(source, props, object, customizer) {
|
||
var isNew = !object;
|
||
object || (object = {});
|
||
var index = -1, length = props.length;
|
||
while (++index < length) {
|
||
var key = props[index];
|
||
var newValue = customizer ? customizer(object[key], source[key], key, object, source) : undefined2;
|
||
if (newValue === undefined2) {
|
||
newValue = source[key];
|
||
}
|
||
if (isNew) {
|
||
baseAssignValue(object, key, newValue);
|
||
} else {
|
||
assignValue(object, key, newValue);
|
||
}
|
||
}
|
||
return object;
|
||
}
|
||
function copySymbols(source, object) {
|
||
return copyObject(source, getSymbols(source), object);
|
||
}
|
||
function copySymbolsIn(source, object) {
|
||
return copyObject(source, getSymbolsIn(source), object);
|
||
}
|
||
function createAggregator(setter, initializer) {
|
||
return function(collection, iteratee2) {
|
||
var func = isArray(collection) ? arrayAggregator : baseAggregator, accumulator = initializer ? initializer() : {};
|
||
return func(collection, setter, getIteratee(iteratee2, 2), accumulator);
|
||
};
|
||
}
|
||
function createAssigner(assigner) {
|
||
return baseRest(function(object, sources) {
|
||
var index = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : undefined2, guard = length > 2 ? sources[2] : undefined2;
|
||
customizer = assigner.length > 3 && typeof customizer == "function" ? (length--, customizer) : undefined2;
|
||
if (guard && isIterateeCall(sources[0], sources[1], guard)) {
|
||
customizer = length < 3 ? undefined2 : customizer;
|
||
length = 1;
|
||
}
|
||
object = Object2(object);
|
||
while (++index < length) {
|
||
var source = sources[index];
|
||
if (source) {
|
||
assigner(object, source, index, customizer);
|
||
}
|
||
}
|
||
return object;
|
||
});
|
||
}
|
||
function createBaseEach(eachFunc, fromRight) {
|
||
return function(collection, iteratee2) {
|
||
if (collection == null) {
|
||
return collection;
|
||
}
|
||
if (!isArrayLike(collection)) {
|
||
return eachFunc(collection, iteratee2);
|
||
}
|
||
var length = collection.length, index = fromRight ? length : -1, iterable = Object2(collection);
|
||
while (fromRight ? index-- : ++index < length) {
|
||
if (iteratee2(iterable[index], index, iterable) === false) {
|
||
break;
|
||
}
|
||
}
|
||
return collection;
|
||
};
|
||
}
|
||
function createBaseFor(fromRight) {
|
||
return function(object, iteratee2, keysFunc) {
|
||
var index = -1, iterable = Object2(object), props = keysFunc(object), length = props.length;
|
||
while (length--) {
|
||
var key = props[fromRight ? length : ++index];
|
||
if (iteratee2(iterable[key], key, iterable) === false) {
|
||
break;
|
||
}
|
||
}
|
||
return object;
|
||
};
|
||
}
|
||
function createBind(func, bitmask, thisArg) {
|
||
var isBind = bitmask & WRAP_BIND_FLAG, Ctor = createCtor(func);
|
||
function wrapper() {
|
||
var fn = this && this !== root && this instanceof wrapper ? Ctor : func;
|
||
return fn.apply(isBind ? thisArg : this, arguments);
|
||
}
|
||
return wrapper;
|
||
}
|
||
function createCaseFirst(methodName) {
|
||
return function(string) {
|
||
string = toString(string);
|
||
var strSymbols = hasUnicode(string) ? stringToArray(string) : undefined2;
|
||
var chr = strSymbols ? strSymbols[0] : string.charAt(0);
|
||
var trailing = strSymbols ? castSlice(strSymbols, 1).join("") : string.slice(1);
|
||
return chr[methodName]() + trailing;
|
||
};
|
||
}
|
||
function createCompounder(callback) {
|
||
return function(string) {
|
||
return arrayReduce(words(deburr(string).replace(reApos, "")), callback, "");
|
||
};
|
||
}
|
||
function createCtor(Ctor) {
|
||
return function() {
|
||
var args = arguments;
|
||
switch (args.length) {
|
||
case 0:
|
||
return new Ctor();
|
||
case 1:
|
||
return new Ctor(args[0]);
|
||
case 2:
|
||
return new Ctor(args[0], args[1]);
|
||
case 3:
|
||
return new Ctor(args[0], args[1], args[2]);
|
||
case 4:
|
||
return new Ctor(args[0], args[1], args[2], args[3]);
|
||
case 5:
|
||
return new Ctor(args[0], args[1], args[2], args[3], args[4]);
|
||
case 6:
|
||
return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);
|
||
case 7:
|
||
return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
|
||
}
|
||
var thisBinding = baseCreate(Ctor.prototype), result2 = Ctor.apply(thisBinding, args);
|
||
return isObject(result2) ? result2 : thisBinding;
|
||
};
|
||
}
|
||
function createCurry(func, bitmask, arity) {
|
||
var Ctor = createCtor(func);
|
||
function wrapper() {
|
||
var length = arguments.length, args = Array2(length), index = length, placeholder = getHolder(wrapper);
|
||
while (index--) {
|
||
args[index] = arguments[index];
|
||
}
|
||
var holders = length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder ? [] : replaceHolders(args, placeholder);
|
||
length -= holders.length;
|
||
if (length < arity) {
|
||
return createRecurry(
|
||
func,
|
||
bitmask,
|
||
createHybrid,
|
||
wrapper.placeholder,
|
||
undefined2,
|
||
args,
|
||
holders,
|
||
undefined2,
|
||
undefined2,
|
||
arity - length
|
||
);
|
||
}
|
||
var fn = this && this !== root && this instanceof wrapper ? Ctor : func;
|
||
return apply(fn, this, args);
|
||
}
|
||
return wrapper;
|
||
}
|
||
function createFind(findIndexFunc) {
|
||
return function(collection, predicate, fromIndex) {
|
||
var iterable = Object2(collection);
|
||
if (!isArrayLike(collection)) {
|
||
var iteratee2 = getIteratee(predicate, 3);
|
||
collection = keys(collection);
|
||
predicate = function(key) {
|
||
return iteratee2(iterable[key], key, iterable);
|
||
};
|
||
}
|
||
var index = findIndexFunc(collection, predicate, fromIndex);
|
||
return index > -1 ? iterable[iteratee2 ? collection[index] : index] : undefined2;
|
||
};
|
||
}
|
||
function createFlow(fromRight) {
|
||
return flatRest(function(funcs) {
|
||
var length = funcs.length, index = length, prereq = LodashWrapper.prototype.thru;
|
||
if (fromRight) {
|
||
funcs.reverse();
|
||
}
|
||
while (index--) {
|
||
var func = funcs[index];
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
if (prereq && !wrapper && getFuncName(func) == "wrapper") {
|
||
var wrapper = new LodashWrapper([], true);
|
||
}
|
||
}
|
||
index = wrapper ? index : length;
|
||
while (++index < length) {
|
||
func = funcs[index];
|
||
var funcName = getFuncName(func), data = funcName == "wrapper" ? getData(func) : undefined2;
|
||
if (data && isLaziable(data[0]) && data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && !data[4].length && data[9] == 1) {
|
||
wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]);
|
||
} else {
|
||
wrapper = func.length == 1 && isLaziable(func) ? wrapper[funcName]() : wrapper.thru(func);
|
||
}
|
||
}
|
||
return function() {
|
||
var args = arguments, value = args[0];
|
||
if (wrapper && args.length == 1 && isArray(value)) {
|
||
return wrapper.plant(value).value();
|
||
}
|
||
var index2 = 0, result2 = length ? funcs[index2].apply(this, args) : value;
|
||
while (++index2 < length) {
|
||
result2 = funcs[index2].call(this, result2);
|
||
}
|
||
return result2;
|
||
};
|
||
});
|
||
}
|
||
function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary2, arity) {
|
||
var isAry = bitmask & WRAP_ARY_FLAG, isBind = bitmask & WRAP_BIND_FLAG, isBindKey = bitmask & WRAP_BIND_KEY_FLAG, isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), isFlip = bitmask & WRAP_FLIP_FLAG, Ctor = isBindKey ? undefined2 : createCtor(func);
|
||
function wrapper() {
|
||
var length = arguments.length, args = Array2(length), index = length;
|
||
while (index--) {
|
||
args[index] = arguments[index];
|
||
}
|
||
if (isCurried) {
|
||
var placeholder = getHolder(wrapper), holdersCount = countHolders(args, placeholder);
|
||
}
|
||
if (partials) {
|
||
args = composeArgs(args, partials, holders, isCurried);
|
||
}
|
||
if (partialsRight) {
|
||
args = composeArgsRight(args, partialsRight, holdersRight, isCurried);
|
||
}
|
||
length -= holdersCount;
|
||
if (isCurried && length < arity) {
|
||
var newHolders = replaceHolders(args, placeholder);
|
||
return createRecurry(
|
||
func,
|
||
bitmask,
|
||
createHybrid,
|
||
wrapper.placeholder,
|
||
thisArg,
|
||
args,
|
||
newHolders,
|
||
argPos,
|
||
ary2,
|
||
arity - length
|
||
);
|
||
}
|
||
var thisBinding = isBind ? thisArg : this, fn = isBindKey ? thisBinding[func] : func;
|
||
length = args.length;
|
||
if (argPos) {
|
||
args = reorder(args, argPos);
|
||
} else if (isFlip && length > 1) {
|
||
args.reverse();
|
||
}
|
||
if (isAry && ary2 < length) {
|
||
args.length = ary2;
|
||
}
|
||
if (this && this !== root && this instanceof wrapper) {
|
||
fn = Ctor || createCtor(fn);
|
||
}
|
||
return fn.apply(thisBinding, args);
|
||
}
|
||
return wrapper;
|
||
}
|
||
function createInverter(setter, toIteratee) {
|
||
return function(object, iteratee2) {
|
||
return baseInverter(object, setter, toIteratee(iteratee2), {});
|
||
};
|
||
}
|
||
function createMathOperation(operator, defaultValue) {
|
||
return function(value, other) {
|
||
var result2;
|
||
if (value === undefined2 && other === undefined2) {
|
||
return defaultValue;
|
||
}
|
||
if (value !== undefined2) {
|
||
result2 = value;
|
||
}
|
||
if (other !== undefined2) {
|
||
if (result2 === undefined2) {
|
||
return other;
|
||
}
|
||
if (typeof value == "string" || typeof other == "string") {
|
||
value = baseToString(value);
|
||
other = baseToString(other);
|
||
} else {
|
||
value = baseToNumber(value);
|
||
other = baseToNumber(other);
|
||
}
|
||
result2 = operator(value, other);
|
||
}
|
||
return result2;
|
||
};
|
||
}
|
||
function createOver(arrayFunc) {
|
||
return flatRest(function(iteratees) {
|
||
iteratees = arrayMap(iteratees, baseUnary(getIteratee()));
|
||
return baseRest(function(args) {
|
||
var thisArg = this;
|
||
return arrayFunc(iteratees, function(iteratee2) {
|
||
return apply(iteratee2, thisArg, args);
|
||
});
|
||
});
|
||
});
|
||
}
|
||
function createPadding(length, chars) {
|
||
chars = chars === undefined2 ? " " : baseToString(chars);
|
||
var charsLength = chars.length;
|
||
if (charsLength < 2) {
|
||
return charsLength ? baseRepeat(chars, length) : chars;
|
||
}
|
||
var result2 = baseRepeat(chars, nativeCeil(length / stringSize(chars)));
|
||
return hasUnicode(chars) ? castSlice(stringToArray(result2), 0, length).join("") : result2.slice(0, length);
|
||
}
|
||
function createPartial(func, bitmask, thisArg, partials) {
|
||
var isBind = bitmask & WRAP_BIND_FLAG, Ctor = createCtor(func);
|
||
function wrapper() {
|
||
var argsIndex = -1, argsLength = arguments.length, leftIndex = -1, leftLength = partials.length, args = Array2(leftLength + argsLength), fn = this && this !== root && this instanceof wrapper ? Ctor : func;
|
||
while (++leftIndex < leftLength) {
|
||
args[leftIndex] = partials[leftIndex];
|
||
}
|
||
while (argsLength--) {
|
||
args[leftIndex++] = arguments[++argsIndex];
|
||
}
|
||
return apply(fn, isBind ? thisArg : this, args);
|
||
}
|
||
return wrapper;
|
||
}
|
||
function createRange(fromRight) {
|
||
return function(start, end, step) {
|
||
if (step && typeof step != "number" && isIterateeCall(start, end, step)) {
|
||
end = step = undefined2;
|
||
}
|
||
start = toFinite(start);
|
||
if (end === undefined2) {
|
||
end = start;
|
||
start = 0;
|
||
} else {
|
||
end = toFinite(end);
|
||
}
|
||
step = step === undefined2 ? start < end ? 1 : -1 : toFinite(step);
|
||
return baseRange(start, end, step, fromRight);
|
||
};
|
||
}
|
||
function createRelationalOperation(operator) {
|
||
return function(value, other) {
|
||
if (!(typeof value == "string" && typeof other == "string")) {
|
||
value = toNumber(value);
|
||
other = toNumber(other);
|
||
}
|
||
return operator(value, other);
|
||
};
|
||
}
|
||
function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary2, arity) {
|
||
var isCurry = bitmask & WRAP_CURRY_FLAG, newHolders = isCurry ? holders : undefined2, newHoldersRight = isCurry ? undefined2 : holders, newPartials = isCurry ? partials : undefined2, newPartialsRight = isCurry ? undefined2 : partials;
|
||
bitmask |= isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG;
|
||
bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG);
|
||
if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) {
|
||
bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG);
|
||
}
|
||
var newData = [
|
||
func,
|
||
bitmask,
|
||
thisArg,
|
||
newPartials,
|
||
newHolders,
|
||
newPartialsRight,
|
||
newHoldersRight,
|
||
argPos,
|
||
ary2,
|
||
arity
|
||
];
|
||
var result2 = wrapFunc.apply(undefined2, newData);
|
||
if (isLaziable(func)) {
|
||
setData(result2, newData);
|
||
}
|
||
result2.placeholder = placeholder;
|
||
return setWrapToString(result2, func, bitmask);
|
||
}
|
||
function createRound(methodName) {
|
||
var func = Math2[methodName];
|
||
return function(number, precision) {
|
||
number = toNumber(number);
|
||
precision = precision == null ? 0 : nativeMin(toInteger(precision), 292);
|
||
if (precision && nativeIsFinite(number)) {
|
||
var pair = (toString(number) + "e").split("e"), value = func(pair[0] + "e" + (+pair[1] + precision));
|
||
pair = (toString(value) + "e").split("e");
|
||
return +(pair[0] + "e" + (+pair[1] - precision));
|
||
}
|
||
return func(number);
|
||
};
|
||
}
|
||
var createSet = !(Set2 && 1 / setToArray(new Set2([, -0]))[1] == INFINITY) ? noop2 : function(values2) {
|
||
return new Set2(values2);
|
||
};
|
||
function createToPairs(keysFunc) {
|
||
return function(object) {
|
||
var tag = getTag(object);
|
||
if (tag == mapTag) {
|
||
return mapToArray(object);
|
||
}
|
||
if (tag == setTag) {
|
||
return setToPairs(object);
|
||
}
|
||
return baseToPairs(object, keysFunc(object));
|
||
};
|
||
}
|
||
function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary2, arity) {
|
||
var isBindKey = bitmask & WRAP_BIND_KEY_FLAG;
|
||
if (!isBindKey && typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
var length = partials ? partials.length : 0;
|
||
if (!length) {
|
||
bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);
|
||
partials = holders = undefined2;
|
||
}
|
||
ary2 = ary2 === undefined2 ? ary2 : nativeMax(toInteger(ary2), 0);
|
||
arity = arity === undefined2 ? arity : toInteger(arity);
|
||
length -= holders ? holders.length : 0;
|
||
if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) {
|
||
var partialsRight = partials, holdersRight = holders;
|
||
partials = holders = undefined2;
|
||
}
|
||
var data = isBindKey ? undefined2 : getData(func);
|
||
var newData = [
|
||
func,
|
||
bitmask,
|
||
thisArg,
|
||
partials,
|
||
holders,
|
||
partialsRight,
|
||
holdersRight,
|
||
argPos,
|
||
ary2,
|
||
arity
|
||
];
|
||
if (data) {
|
||
mergeData(newData, data);
|
||
}
|
||
func = newData[0];
|
||
bitmask = newData[1];
|
||
thisArg = newData[2];
|
||
partials = newData[3];
|
||
holders = newData[4];
|
||
arity = newData[9] = newData[9] === undefined2 ? isBindKey ? 0 : func.length : nativeMax(newData[9] - length, 0);
|
||
if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) {
|
||
bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG);
|
||
}
|
||
if (!bitmask || bitmask == WRAP_BIND_FLAG) {
|
||
var result2 = createBind(func, bitmask, thisArg);
|
||
} else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) {
|
||
result2 = createCurry(func, bitmask, arity);
|
||
} else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) {
|
||
result2 = createPartial(func, bitmask, thisArg, partials);
|
||
} else {
|
||
result2 = createHybrid.apply(undefined2, newData);
|
||
}
|
||
var setter = data ? baseSetData : setData;
|
||
return setWrapToString(setter(result2, newData), func, bitmask);
|
||
}
|
||
function customDefaultsAssignIn(objValue, srcValue, key, object) {
|
||
if (objValue === undefined2 || eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key)) {
|
||
return srcValue;
|
||
}
|
||
return objValue;
|
||
}
|
||
function customDefaultsMerge(objValue, srcValue, key, object, source, stack) {
|
||
if (isObject(objValue) && isObject(srcValue)) {
|
||
stack.set(srcValue, objValue);
|
||
baseMerge(objValue, srcValue, undefined2, customDefaultsMerge, stack);
|
||
stack["delete"](srcValue);
|
||
}
|
||
return objValue;
|
||
}
|
||
function customOmitClone(value) {
|
||
return isPlainObject2(value) ? undefined2 : value;
|
||
}
|
||
function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
|
||
var isPartial = bitmask & COMPARE_PARTIAL_FLAG, arrLength = array.length, othLength = other.length;
|
||
if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
|
||
return false;
|
||
}
|
||
var arrStacked = stack.get(array);
|
||
var othStacked = stack.get(other);
|
||
if (arrStacked && othStacked) {
|
||
return arrStacked == other && othStacked == array;
|
||
}
|
||
var index = -1, result2 = true, seen = bitmask & COMPARE_UNORDERED_FLAG ? new SetCache() : undefined2;
|
||
stack.set(array, other);
|
||
stack.set(other, array);
|
||
while (++index < arrLength) {
|
||
var arrValue = array[index], othValue = other[index];
|
||
if (customizer) {
|
||
var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, other, stack);
|
||
}
|
||
if (compared !== undefined2) {
|
||
if (compared) {
|
||
continue;
|
||
}
|
||
result2 = false;
|
||
break;
|
||
}
|
||
if (seen) {
|
||
if (!arraySome(other, function(othValue2, othIndex) {
|
||
if (!cacheHas(seen, othIndex) && (arrValue === othValue2 || equalFunc(arrValue, othValue2, bitmask, customizer, stack))) {
|
||
return seen.push(othIndex);
|
||
}
|
||
})) {
|
||
result2 = false;
|
||
break;
|
||
}
|
||
} else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
|
||
result2 = false;
|
||
break;
|
||
}
|
||
}
|
||
stack["delete"](array);
|
||
stack["delete"](other);
|
||
return result2;
|
||
}
|
||
function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
|
||
switch (tag) {
|
||
case dataViewTag:
|
||
if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) {
|
||
return false;
|
||
}
|
||
object = object.buffer;
|
||
other = other.buffer;
|
||
case arrayBufferTag:
|
||
if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array2(object), new Uint8Array2(other))) {
|
||
return false;
|
||
}
|
||
return true;
|
||
case boolTag:
|
||
case dateTag:
|
||
case numberTag:
|
||
return eq(+object, +other);
|
||
case errorTag:
|
||
return object.name == other.name && object.message == other.message;
|
||
case regexpTag:
|
||
case stringTag:
|
||
return object == other + "";
|
||
case mapTag:
|
||
var convert = mapToArray;
|
||
case setTag:
|
||
var isPartial = bitmask & COMPARE_PARTIAL_FLAG;
|
||
convert || (convert = setToArray);
|
||
if (object.size != other.size && !isPartial) {
|
||
return false;
|
||
}
|
||
var stacked = stack.get(object);
|
||
if (stacked) {
|
||
return stacked == other;
|
||
}
|
||
bitmask |= COMPARE_UNORDERED_FLAG;
|
||
stack.set(object, other);
|
||
var result2 = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);
|
||
stack["delete"](object);
|
||
return result2;
|
||
case symbolTag:
|
||
if (symbolValueOf) {
|
||
return symbolValueOf.call(object) == symbolValueOf.call(other);
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
|
||
var isPartial = bitmask & COMPARE_PARTIAL_FLAG, objProps = getAllKeys(object), objLength = objProps.length, othProps = getAllKeys(other), othLength = othProps.length;
|
||
if (objLength != othLength && !isPartial) {
|
||
return false;
|
||
}
|
||
var index = objLength;
|
||
while (index--) {
|
||
var key = objProps[index];
|
||
if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
|
||
return false;
|
||
}
|
||
}
|
||
var objStacked = stack.get(object);
|
||
var othStacked = stack.get(other);
|
||
if (objStacked && othStacked) {
|
||
return objStacked == other && othStacked == object;
|
||
}
|
||
var result2 = true;
|
||
stack.set(object, other);
|
||
stack.set(other, object);
|
||
var skipCtor = isPartial;
|
||
while (++index < objLength) {
|
||
key = objProps[index];
|
||
var objValue = object[key], othValue = other[key];
|
||
if (customizer) {
|
||
var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, other, stack);
|
||
}
|
||
if (!(compared === undefined2 ? objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack) : compared)) {
|
||
result2 = false;
|
||
break;
|
||
}
|
||
skipCtor || (skipCtor = key == "constructor");
|
||
}
|
||
if (result2 && !skipCtor) {
|
||
var objCtor = object.constructor, othCtor = other.constructor;
|
||
if (objCtor != othCtor && ("constructor" in object && "constructor" in other) && !(typeof objCtor == "function" && objCtor instanceof objCtor && typeof othCtor == "function" && othCtor instanceof othCtor)) {
|
||
result2 = false;
|
||
}
|
||
}
|
||
stack["delete"](object);
|
||
stack["delete"](other);
|
||
return result2;
|
||
}
|
||
function flatRest(func) {
|
||
return setToString(overRest(func, undefined2, flatten), func + "");
|
||
}
|
||
function getAllKeys(object) {
|
||
return baseGetAllKeys(object, keys, getSymbols);
|
||
}
|
||
function getAllKeysIn(object) {
|
||
return baseGetAllKeys(object, keysIn, getSymbolsIn);
|
||
}
|
||
var getData = !metaMap ? noop2 : function(func) {
|
||
return metaMap.get(func);
|
||
};
|
||
function getFuncName(func) {
|
||
var result2 = func.name + "", array = realNames[result2], length = hasOwnProperty.call(realNames, result2) ? array.length : 0;
|
||
while (length--) {
|
||
var data = array[length], otherFunc = data.func;
|
||
if (otherFunc == null || otherFunc == func) {
|
||
return data.name;
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function getHolder(func) {
|
||
var object = hasOwnProperty.call(lodash, "placeholder") ? lodash : func;
|
||
return object.placeholder;
|
||
}
|
||
function getIteratee() {
|
||
var result2 = lodash.iteratee || iteratee;
|
||
result2 = result2 === iteratee ? baseIteratee : result2;
|
||
return arguments.length ? result2(arguments[0], arguments[1]) : result2;
|
||
}
|
||
function getMapData(map2, key) {
|
||
var data = map2.__data__;
|
||
return isKeyable(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
|
||
}
|
||
function getMatchData(object) {
|
||
var result2 = keys(object), length = result2.length;
|
||
while (length--) {
|
||
var key = result2[length], value = object[key];
|
||
result2[length] = [key, value, isStrictComparable(value)];
|
||
}
|
||
return result2;
|
||
}
|
||
function getNative(object, key) {
|
||
var value = getValue(object, key);
|
||
return baseIsNative(value) ? value : undefined2;
|
||
}
|
||
function getRawTag(value) {
|
||
var isOwn = hasOwnProperty.call(value, symToStringTag), tag = value[symToStringTag];
|
||
try {
|
||
value[symToStringTag] = undefined2;
|
||
var unmasked = true;
|
||
} catch (e) {
|
||
}
|
||
var result2 = nativeObjectToString.call(value);
|
||
if (unmasked) {
|
||
if (isOwn) {
|
||
value[symToStringTag] = tag;
|
||
} else {
|
||
delete value[symToStringTag];
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
var getSymbols = !nativeGetSymbols ? stubArray : function(object) {
|
||
if (object == null) {
|
||
return [];
|
||
}
|
||
object = Object2(object);
|
||
return arrayFilter(nativeGetSymbols(object), function(symbol) {
|
||
return propertyIsEnumerable.call(object, symbol);
|
||
});
|
||
};
|
||
var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {
|
||
var result2 = [];
|
||
while (object) {
|
||
arrayPush(result2, getSymbols(object));
|
||
object = getPrototype(object);
|
||
}
|
||
return result2;
|
||
};
|
||
var getTag = baseGetTag;
|
||
if (DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag || Map2 && getTag(new Map2()) != mapTag || Promise2 && getTag(Promise2.resolve()) != promiseTag || Set2 && getTag(new Set2()) != setTag || WeakMap2 && getTag(new WeakMap2()) != weakMapTag) {
|
||
getTag = function(value) {
|
||
var result2 = baseGetTag(value), Ctor = result2 == objectTag ? value.constructor : undefined2, ctorString = Ctor ? toSource(Ctor) : "";
|
||
if (ctorString) {
|
||
switch (ctorString) {
|
||
case dataViewCtorString:
|
||
return dataViewTag;
|
||
case mapCtorString:
|
||
return mapTag;
|
||
case promiseCtorString:
|
||
return promiseTag;
|
||
case setCtorString:
|
||
return setTag;
|
||
case weakMapCtorString:
|
||
return weakMapTag;
|
||
}
|
||
}
|
||
return result2;
|
||
};
|
||
}
|
||
function getView(start, end, transforms) {
|
||
var index = -1, length = transforms.length;
|
||
while (++index < length) {
|
||
var data = transforms[index], size2 = data.size;
|
||
switch (data.type) {
|
||
case "drop":
|
||
start += size2;
|
||
break;
|
||
case "dropRight":
|
||
end -= size2;
|
||
break;
|
||
case "take":
|
||
end = nativeMin(end, start + size2);
|
||
break;
|
||
case "takeRight":
|
||
start = nativeMax(start, end - size2);
|
||
break;
|
||
}
|
||
}
|
||
return { "start": start, "end": end };
|
||
}
|
||
function getWrapDetails(source) {
|
||
var match = source.match(reWrapDetails);
|
||
return match ? match[1].split(reSplitDetails) : [];
|
||
}
|
||
function hasPath(object, path, hasFunc) {
|
||
path = castPath(path, object);
|
||
var index = -1, length = path.length, result2 = false;
|
||
while (++index < length) {
|
||
var key = toKey(path[index]);
|
||
if (!(result2 = object != null && hasFunc(object, key))) {
|
||
break;
|
||
}
|
||
object = object[key];
|
||
}
|
||
if (result2 || ++index != length) {
|
||
return result2;
|
||
}
|
||
length = object == null ? 0 : object.length;
|
||
return !!length && isLength(length) && isIndex(key, length) && (isArray(object) || isArguments(object));
|
||
}
|
||
function initCloneArray(array) {
|
||
var length = array.length, result2 = new array.constructor(length);
|
||
if (length && typeof array[0] == "string" && hasOwnProperty.call(array, "index")) {
|
||
result2.index = array.index;
|
||
result2.input = array.input;
|
||
}
|
||
return result2;
|
||
}
|
||
function initCloneObject(object) {
|
||
return typeof object.constructor == "function" && !isPrototype(object) ? baseCreate(getPrototype(object)) : {};
|
||
}
|
||
function initCloneByTag(object, tag, isDeep) {
|
||
var Ctor = object.constructor;
|
||
switch (tag) {
|
||
case arrayBufferTag:
|
||
return cloneArrayBuffer(object);
|
||
case boolTag:
|
||
case dateTag:
|
||
return new Ctor(+object);
|
||
case dataViewTag:
|
||
return cloneDataView(object, isDeep);
|
||
case float32Tag:
|
||
case float64Tag:
|
||
case int8Tag:
|
||
case int16Tag:
|
||
case int32Tag:
|
||
case uint8Tag:
|
||
case uint8ClampedTag:
|
||
case uint16Tag:
|
||
case uint32Tag:
|
||
return cloneTypedArray(object, isDeep);
|
||
case mapTag:
|
||
return new Ctor();
|
||
case numberTag:
|
||
case stringTag:
|
||
return new Ctor(object);
|
||
case regexpTag:
|
||
return cloneRegExp(object);
|
||
case setTag:
|
||
return new Ctor();
|
||
case symbolTag:
|
||
return cloneSymbol(object);
|
||
}
|
||
}
|
||
function insertWrapDetails(source, details) {
|
||
var length = details.length;
|
||
if (!length) {
|
||
return source;
|
||
}
|
||
var lastIndex = length - 1;
|
||
details[lastIndex] = (length > 1 ? "& " : "") + details[lastIndex];
|
||
details = details.join(length > 2 ? ", " : " ");
|
||
return source.replace(reWrapComment, "{\n/* [wrapped with " + details + "] */\n");
|
||
}
|
||
function isFlattenable(value) {
|
||
return isArray(value) || isArguments(value) || !!(spreadableSymbol && value && value[spreadableSymbol]);
|
||
}
|
||
function isIndex(value, length) {
|
||
var type = typeof value;
|
||
length = length == null ? MAX_SAFE_INTEGER : length;
|
||
return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
|
||
}
|
||
function isIterateeCall(value, index, object) {
|
||
if (!isObject(object)) {
|
||
return false;
|
||
}
|
||
var type = typeof index;
|
||
if (type == "number" ? isArrayLike(object) && isIndex(index, object.length) : type == "string" && index in object) {
|
||
return eq(object[index], value);
|
||
}
|
||
return false;
|
||
}
|
||
function isKey(value, object) {
|
||
if (isArray(value)) {
|
||
return false;
|
||
}
|
||
var type = typeof value;
|
||
if (type == "number" || type == "symbol" || type == "boolean" || value == null || isSymbol(value)) {
|
||
return true;
|
||
}
|
||
return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || object != null && value in Object2(object);
|
||
}
|
||
function isKeyable(value) {
|
||
var type = typeof value;
|
||
return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
|
||
}
|
||
function isLaziable(func) {
|
||
var funcName = getFuncName(func), other = lodash[funcName];
|
||
if (typeof other != "function" || !(funcName in LazyWrapper.prototype)) {
|
||
return false;
|
||
}
|
||
if (func === other) {
|
||
return true;
|
||
}
|
||
var data = getData(other);
|
||
return !!data && func === data[0];
|
||
}
|
||
function isMasked(func) {
|
||
return !!maskSrcKey && maskSrcKey in func;
|
||
}
|
||
var isMaskable = coreJsData ? isFunction : stubFalse;
|
||
function isPrototype(value) {
|
||
var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto;
|
||
return value === proto;
|
||
}
|
||
function isStrictComparable(value) {
|
||
return value === value && !isObject(value);
|
||
}
|
||
function matchesStrictComparable(key, srcValue) {
|
||
return function(object) {
|
||
if (object == null) {
|
||
return false;
|
||
}
|
||
return object[key] === srcValue && (srcValue !== undefined2 || key in Object2(object));
|
||
};
|
||
}
|
||
function memoizeCapped(func) {
|
||
var result2 = memoize(func, function(key) {
|
||
if (cache.size === MAX_MEMOIZE_SIZE) {
|
||
cache.clear();
|
||
}
|
||
return key;
|
||
});
|
||
var cache = result2.cache;
|
||
return result2;
|
||
}
|
||
function mergeData(data, source) {
|
||
var bitmask = data[1], srcBitmask = source[1], newBitmask = bitmask | srcBitmask, isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG);
|
||
var isCombo = srcBitmask == WRAP_ARY_FLAG && bitmask == WRAP_CURRY_FLAG || srcBitmask == WRAP_ARY_FLAG && bitmask == WRAP_REARG_FLAG && data[7].length <= source[8] || srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG) && source[7].length <= source[8] && bitmask == WRAP_CURRY_FLAG;
|
||
if (!(isCommon || isCombo)) {
|
||
return data;
|
||
}
|
||
if (srcBitmask & WRAP_BIND_FLAG) {
|
||
data[2] = source[2];
|
||
newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG;
|
||
}
|
||
var value = source[3];
|
||
if (value) {
|
||
var partials = data[3];
|
||
data[3] = partials ? composeArgs(partials, value, source[4]) : value;
|
||
data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4];
|
||
}
|
||
value = source[5];
|
||
if (value) {
|
||
partials = data[5];
|
||
data[5] = partials ? composeArgsRight(partials, value, source[6]) : value;
|
||
data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6];
|
||
}
|
||
value = source[7];
|
||
if (value) {
|
||
data[7] = value;
|
||
}
|
||
if (srcBitmask & WRAP_ARY_FLAG) {
|
||
data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]);
|
||
}
|
||
if (data[9] == null) {
|
||
data[9] = source[9];
|
||
}
|
||
data[0] = source[0];
|
||
data[1] = newBitmask;
|
||
return data;
|
||
}
|
||
function nativeKeysIn(object) {
|
||
var result2 = [];
|
||
if (object != null) {
|
||
for (var key in Object2(object)) {
|
||
result2.push(key);
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function objectToString(value) {
|
||
return nativeObjectToString.call(value);
|
||
}
|
||
function overRest(func, start, transform2) {
|
||
start = nativeMax(start === undefined2 ? func.length - 1 : start, 0);
|
||
return function() {
|
||
var args = arguments, index = -1, length = nativeMax(args.length - start, 0), array = Array2(length);
|
||
while (++index < length) {
|
||
array[index] = args[start + index];
|
||
}
|
||
index = -1;
|
||
var otherArgs = Array2(start + 1);
|
||
while (++index < start) {
|
||
otherArgs[index] = args[index];
|
||
}
|
||
otherArgs[start] = transform2(array);
|
||
return apply(func, this, otherArgs);
|
||
};
|
||
}
|
||
function parent(object, path) {
|
||
return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1));
|
||
}
|
||
function reorder(array, indexes) {
|
||
var arrLength = array.length, length = nativeMin(indexes.length, arrLength), oldArray = copyArray(array);
|
||
while (length--) {
|
||
var index = indexes[length];
|
||
array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined2;
|
||
}
|
||
return array;
|
||
}
|
||
function safeGet(object, key) {
|
||
if (key === "constructor" && typeof object[key] === "function") {
|
||
return;
|
||
}
|
||
if (key == "__proto__") {
|
||
return;
|
||
}
|
||
return object[key];
|
||
}
|
||
var setData = shortOut(baseSetData);
|
||
var setTimeout2 = ctxSetTimeout || function(func, wait) {
|
||
return root.setTimeout(func, wait);
|
||
};
|
||
var setToString = shortOut(baseSetToString);
|
||
function setWrapToString(wrapper, reference, bitmask) {
|
||
var source = reference + "";
|
||
return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask)));
|
||
}
|
||
function shortOut(func) {
|
||
var count = 0, lastCalled = 0;
|
||
return function() {
|
||
var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
|
||
lastCalled = stamp;
|
||
if (remaining > 0) {
|
||
if (++count >= HOT_COUNT) {
|
||
return arguments[0];
|
||
}
|
||
} else {
|
||
count = 0;
|
||
}
|
||
return func.apply(undefined2, arguments);
|
||
};
|
||
}
|
||
function shuffleSelf(array, size2) {
|
||
var index = -1, length = array.length, lastIndex = length - 1;
|
||
size2 = size2 === undefined2 ? length : size2;
|
||
while (++index < size2) {
|
||
var rand = baseRandom(index, lastIndex), value = array[rand];
|
||
array[rand] = array[index];
|
||
array[index] = value;
|
||
}
|
||
array.length = size2;
|
||
return array;
|
||
}
|
||
var stringToPath = memoizeCapped(function(string) {
|
||
var result2 = [];
|
||
if (string.charCodeAt(0) === 46) {
|
||
result2.push("");
|
||
}
|
||
string.replace(rePropName, function(match, number, quote, subString) {
|
||
result2.push(quote ? subString.replace(reEscapeChar, "$1") : number || match);
|
||
});
|
||
return result2;
|
||
});
|
||
function toKey(value) {
|
||
if (typeof value == "string" || isSymbol(value)) {
|
||
return value;
|
||
}
|
||
var result2 = value + "";
|
||
return result2 == "0" && 1 / value == -INFINITY ? "-0" : result2;
|
||
}
|
||
function toSource(func) {
|
||
if (func != null) {
|
||
try {
|
||
return funcToString.call(func);
|
||
} catch (e) {
|
||
}
|
||
try {
|
||
return func + "";
|
||
} catch (e) {
|
||
}
|
||
}
|
||
return "";
|
||
}
|
||
function updateWrapDetails(details, bitmask) {
|
||
arrayEach(wrapFlags, function(pair) {
|
||
var value = "_." + pair[0];
|
||
if (bitmask & pair[1] && !arrayIncludes(details, value)) {
|
||
details.push(value);
|
||
}
|
||
});
|
||
return details.sort();
|
||
}
|
||
function wrapperClone(wrapper) {
|
||
if (wrapper instanceof LazyWrapper) {
|
||
return wrapper.clone();
|
||
}
|
||
var result2 = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__);
|
||
result2.__actions__ = copyArray(wrapper.__actions__);
|
||
result2.__index__ = wrapper.__index__;
|
||
result2.__values__ = wrapper.__values__;
|
||
return result2;
|
||
}
|
||
function chunk(array, size2, guard) {
|
||
if (guard ? isIterateeCall(array, size2, guard) : size2 === undefined2) {
|
||
size2 = 1;
|
||
} else {
|
||
size2 = nativeMax(toInteger(size2), 0);
|
||
}
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length || size2 < 1) {
|
||
return [];
|
||
}
|
||
var index = 0, resIndex = 0, result2 = Array2(nativeCeil(length / size2));
|
||
while (index < length) {
|
||
result2[resIndex++] = baseSlice(array, index, index += size2);
|
||
}
|
||
return result2;
|
||
}
|
||
function compact(array) {
|
||
var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result2 = [];
|
||
while (++index < length) {
|
||
var value = array[index];
|
||
if (value) {
|
||
result2[resIndex++] = value;
|
||
}
|
||
}
|
||
return result2;
|
||
}
|
||
function concat() {
|
||
var length = arguments.length;
|
||
if (!length) {
|
||
return [];
|
||
}
|
||
var args = Array2(length - 1), array = arguments[0], index = length;
|
||
while (index--) {
|
||
args[index - 1] = arguments[index];
|
||
}
|
||
return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1));
|
||
}
|
||
var difference = baseRest(function(array, values2) {
|
||
return isArrayLikeObject(array) ? baseDifference(array, baseFlatten(values2, 1, isArrayLikeObject, true)) : [];
|
||
});
|
||
var differenceBy = baseRest(function(array, values2) {
|
||
var iteratee2 = last(values2);
|
||
if (isArrayLikeObject(iteratee2)) {
|
||
iteratee2 = undefined2;
|
||
}
|
||
return isArrayLikeObject(array) ? baseDifference(array, baseFlatten(values2, 1, isArrayLikeObject, true), getIteratee(iteratee2, 2)) : [];
|
||
});
|
||
var differenceWith = baseRest(function(array, values2) {
|
||
var comparator = last(values2);
|
||
if (isArrayLikeObject(comparator)) {
|
||
comparator = undefined2;
|
||
}
|
||
return isArrayLikeObject(array) ? baseDifference(array, baseFlatten(values2, 1, isArrayLikeObject, true), undefined2, comparator) : [];
|
||
});
|
||
function drop(array, n, guard) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return [];
|
||
}
|
||
n = guard || n === undefined2 ? 1 : toInteger(n);
|
||
return baseSlice(array, n < 0 ? 0 : n, length);
|
||
}
|
||
function dropRight(array, n, guard) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return [];
|
||
}
|
||
n = guard || n === undefined2 ? 1 : toInteger(n);
|
||
n = length - n;
|
||
return baseSlice(array, 0, n < 0 ? 0 : n);
|
||
}
|
||
function dropRightWhile(array, predicate) {
|
||
return array && array.length ? baseWhile(array, getIteratee(predicate, 3), true, true) : [];
|
||
}
|
||
function dropWhile(array, predicate) {
|
||
return array && array.length ? baseWhile(array, getIteratee(predicate, 3), true) : [];
|
||
}
|
||
function fill(array, value, start, end) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return [];
|
||
}
|
||
if (start && typeof start != "number" && isIterateeCall(array, value, start)) {
|
||
start = 0;
|
||
end = length;
|
||
}
|
||
return baseFill(array, value, start, end);
|
||
}
|
||
function findIndex(array, predicate, fromIndex) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return -1;
|
||
}
|
||
var index = fromIndex == null ? 0 : toInteger(fromIndex);
|
||
if (index < 0) {
|
||
index = nativeMax(length + index, 0);
|
||
}
|
||
return baseFindIndex(array, getIteratee(predicate, 3), index);
|
||
}
|
||
function findLastIndex(array, predicate, fromIndex) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return -1;
|
||
}
|
||
var index = length - 1;
|
||
if (fromIndex !== undefined2) {
|
||
index = toInteger(fromIndex);
|
||
index = fromIndex < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1);
|
||
}
|
||
return baseFindIndex(array, getIteratee(predicate, 3), index, true);
|
||
}
|
||
function flatten(array) {
|
||
var length = array == null ? 0 : array.length;
|
||
return length ? baseFlatten(array, 1) : [];
|
||
}
|
||
function flattenDeep(array) {
|
||
var length = array == null ? 0 : array.length;
|
||
return length ? baseFlatten(array, INFINITY) : [];
|
||
}
|
||
function flattenDepth(array, depth) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return [];
|
||
}
|
||
depth = depth === undefined2 ? 1 : toInteger(depth);
|
||
return baseFlatten(array, depth);
|
||
}
|
||
function fromPairs(pairs) {
|
||
var index = -1, length = pairs == null ? 0 : pairs.length, result2 = {};
|
||
while (++index < length) {
|
||
var pair = pairs[index];
|
||
result2[pair[0]] = pair[1];
|
||
}
|
||
return result2;
|
||
}
|
||
function head(array) {
|
||
return array && array.length ? array[0] : undefined2;
|
||
}
|
||
function indexOf(array, value, fromIndex) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return -1;
|
||
}
|
||
var index = fromIndex == null ? 0 : toInteger(fromIndex);
|
||
if (index < 0) {
|
||
index = nativeMax(length + index, 0);
|
||
}
|
||
return baseIndexOf(array, value, index);
|
||
}
|
||
function initial(array) {
|
||
var length = array == null ? 0 : array.length;
|
||
return length ? baseSlice(array, 0, -1) : [];
|
||
}
|
||
var intersection = baseRest(function(arrays) {
|
||
var mapped = arrayMap(arrays, castArrayLikeObject);
|
||
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped) : [];
|
||
});
|
||
var intersectionBy = baseRest(function(arrays) {
|
||
var iteratee2 = last(arrays), mapped = arrayMap(arrays, castArrayLikeObject);
|
||
if (iteratee2 === last(mapped)) {
|
||
iteratee2 = undefined2;
|
||
} else {
|
||
mapped.pop();
|
||
}
|
||
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped, getIteratee(iteratee2, 2)) : [];
|
||
});
|
||
var intersectionWith = baseRest(function(arrays) {
|
||
var comparator = last(arrays), mapped = arrayMap(arrays, castArrayLikeObject);
|
||
comparator = typeof comparator == "function" ? comparator : undefined2;
|
||
if (comparator) {
|
||
mapped.pop();
|
||
}
|
||
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped, undefined2, comparator) : [];
|
||
});
|
||
function join(array, separator) {
|
||
return array == null ? "" : nativeJoin.call(array, separator);
|
||
}
|
||
function last(array) {
|
||
var length = array == null ? 0 : array.length;
|
||
return length ? array[length - 1] : undefined2;
|
||
}
|
||
function lastIndexOf(array, value, fromIndex) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return -1;
|
||
}
|
||
var index = length;
|
||
if (fromIndex !== undefined2) {
|
||
index = toInteger(fromIndex);
|
||
index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1);
|
||
}
|
||
return value === value ? strictLastIndexOf(array, value, index) : baseFindIndex(array, baseIsNaN, index, true);
|
||
}
|
||
function nth(array, n) {
|
||
return array && array.length ? baseNth(array, toInteger(n)) : undefined2;
|
||
}
|
||
var pull = baseRest(pullAll);
|
||
function pullAll(array, values2) {
|
||
return array && array.length && values2 && values2.length ? basePullAll(array, values2) : array;
|
||
}
|
||
function pullAllBy(array, values2, iteratee2) {
|
||
return array && array.length && values2 && values2.length ? basePullAll(array, values2, getIteratee(iteratee2, 2)) : array;
|
||
}
|
||
function pullAllWith(array, values2, comparator) {
|
||
return array && array.length && values2 && values2.length ? basePullAll(array, values2, undefined2, comparator) : array;
|
||
}
|
||
var pullAt = flatRest(function(array, indexes) {
|
||
var length = array == null ? 0 : array.length, result2 = baseAt(array, indexes);
|
||
basePullAt(array, arrayMap(indexes, function(index) {
|
||
return isIndex(index, length) ? +index : index;
|
||
}).sort(compareAscending));
|
||
return result2;
|
||
});
|
||
function remove(array, predicate) {
|
||
var result2 = [];
|
||
if (!(array && array.length)) {
|
||
return result2;
|
||
}
|
||
var index = -1, indexes = [], length = array.length;
|
||
predicate = getIteratee(predicate, 3);
|
||
while (++index < length) {
|
||
var value = array[index];
|
||
if (predicate(value, index, array)) {
|
||
result2.push(value);
|
||
indexes.push(index);
|
||
}
|
||
}
|
||
basePullAt(array, indexes);
|
||
return result2;
|
||
}
|
||
function reverse(array) {
|
||
return array == null ? array : nativeReverse.call(array);
|
||
}
|
||
function slice(array, start, end) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return [];
|
||
}
|
||
if (end && typeof end != "number" && isIterateeCall(array, start, end)) {
|
||
start = 0;
|
||
end = length;
|
||
} else {
|
||
start = start == null ? 0 : toInteger(start);
|
||
end = end === undefined2 ? length : toInteger(end);
|
||
}
|
||
return baseSlice(array, start, end);
|
||
}
|
||
function sortedIndex(array, value) {
|
||
return baseSortedIndex(array, value);
|
||
}
|
||
function sortedIndexBy(array, value, iteratee2) {
|
||
return baseSortedIndexBy(array, value, getIteratee(iteratee2, 2));
|
||
}
|
||
function sortedIndexOf(array, value) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (length) {
|
||
var index = baseSortedIndex(array, value);
|
||
if (index < length && eq(array[index], value)) {
|
||
return index;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
function sortedLastIndex(array, value) {
|
||
return baseSortedIndex(array, value, true);
|
||
}
|
||
function sortedLastIndexBy(array, value, iteratee2) {
|
||
return baseSortedIndexBy(array, value, getIteratee(iteratee2, 2), true);
|
||
}
|
||
function sortedLastIndexOf(array, value) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (length) {
|
||
var index = baseSortedIndex(array, value, true) - 1;
|
||
if (eq(array[index], value)) {
|
||
return index;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
function sortedUniq(array) {
|
||
return array && array.length ? baseSortedUniq(array) : [];
|
||
}
|
||
function sortedUniqBy(array, iteratee2) {
|
||
return array && array.length ? baseSortedUniq(array, getIteratee(iteratee2, 2)) : [];
|
||
}
|
||
function tail(array) {
|
||
var length = array == null ? 0 : array.length;
|
||
return length ? baseSlice(array, 1, length) : [];
|
||
}
|
||
function take(array, n, guard) {
|
||
if (!(array && array.length)) {
|
||
return [];
|
||
}
|
||
n = guard || n === undefined2 ? 1 : toInteger(n);
|
||
return baseSlice(array, 0, n < 0 ? 0 : n);
|
||
}
|
||
function takeRight(array, n, guard) {
|
||
var length = array == null ? 0 : array.length;
|
||
if (!length) {
|
||
return [];
|
||
}
|
||
n = guard || n === undefined2 ? 1 : toInteger(n);
|
||
n = length - n;
|
||
return baseSlice(array, n < 0 ? 0 : n, length);
|
||
}
|
||
function takeRightWhile(array, predicate) {
|
||
return array && array.length ? baseWhile(array, getIteratee(predicate, 3), false, true) : [];
|
||
}
|
||
function takeWhile(array, predicate) {
|
||
return array && array.length ? baseWhile(array, getIteratee(predicate, 3)) : [];
|
||
}
|
||
var union = baseRest(function(arrays) {
|
||
return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true));
|
||
});
|
||
var unionBy = baseRest(function(arrays) {
|
||
var iteratee2 = last(arrays);
|
||
if (isArrayLikeObject(iteratee2)) {
|
||
iteratee2 = undefined2;
|
||
}
|
||
return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee2, 2));
|
||
});
|
||
var unionWith = baseRest(function(arrays) {
|
||
var comparator = last(arrays);
|
||
comparator = typeof comparator == "function" ? comparator : undefined2;
|
||
return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined2, comparator);
|
||
});
|
||
function uniq(array) {
|
||
return array && array.length ? baseUniq(array) : [];
|
||
}
|
||
function uniqBy(array, iteratee2) {
|
||
return array && array.length ? baseUniq(array, getIteratee(iteratee2, 2)) : [];
|
||
}
|
||
function uniqWith(array, comparator) {
|
||
comparator = typeof comparator == "function" ? comparator : undefined2;
|
||
return array && array.length ? baseUniq(array, undefined2, comparator) : [];
|
||
}
|
||
function unzip(array) {
|
||
if (!(array && array.length)) {
|
||
return [];
|
||
}
|
||
var length = 0;
|
||
array = arrayFilter(array, function(group) {
|
||
if (isArrayLikeObject(group)) {
|
||
length = nativeMax(group.length, length);
|
||
return true;
|
||
}
|
||
});
|
||
return baseTimes(length, function(index) {
|
||
return arrayMap(array, baseProperty(index));
|
||
});
|
||
}
|
||
function unzipWith(array, iteratee2) {
|
||
if (!(array && array.length)) {
|
||
return [];
|
||
}
|
||
var result2 = unzip(array);
|
||
if (iteratee2 == null) {
|
||
return result2;
|
||
}
|
||
return arrayMap(result2, function(group) {
|
||
return apply(iteratee2, undefined2, group);
|
||
});
|
||
}
|
||
var without = baseRest(function(array, values2) {
|
||
return isArrayLikeObject(array) ? baseDifference(array, values2) : [];
|
||
});
|
||
var xor = baseRest(function(arrays) {
|
||
return baseXor(arrayFilter(arrays, isArrayLikeObject));
|
||
});
|
||
var xorBy = baseRest(function(arrays) {
|
||
var iteratee2 = last(arrays);
|
||
if (isArrayLikeObject(iteratee2)) {
|
||
iteratee2 = undefined2;
|
||
}
|
||
return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee2, 2));
|
||
});
|
||
var xorWith = baseRest(function(arrays) {
|
||
var comparator = last(arrays);
|
||
comparator = typeof comparator == "function" ? comparator : undefined2;
|
||
return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined2, comparator);
|
||
});
|
||
var zip = baseRest(unzip);
|
||
function zipObject(props, values2) {
|
||
return baseZipObject(props || [], values2 || [], assignValue);
|
||
}
|
||
function zipObjectDeep(props, values2) {
|
||
return baseZipObject(props || [], values2 || [], baseSet);
|
||
}
|
||
var zipWith = baseRest(function(arrays) {
|
||
var length = arrays.length, iteratee2 = length > 1 ? arrays[length - 1] : undefined2;
|
||
iteratee2 = typeof iteratee2 == "function" ? (arrays.pop(), iteratee2) : undefined2;
|
||
return unzipWith(arrays, iteratee2);
|
||
});
|
||
function chain(value) {
|
||
var result2 = lodash(value);
|
||
result2.__chain__ = true;
|
||
return result2;
|
||
}
|
||
function tap(value, interceptor) {
|
||
interceptor(value);
|
||
return value;
|
||
}
|
||
function thru(value, interceptor) {
|
||
return interceptor(value);
|
||
}
|
||
var wrapperAt = flatRest(function(paths) {
|
||
var length = paths.length, start = length ? paths[0] : 0, value = this.__wrapped__, interceptor = function(object) {
|
||
return baseAt(object, paths);
|
||
};
|
||
if (length > 1 || this.__actions__.length || !(value instanceof LazyWrapper) || !isIndex(start)) {
|
||
return this.thru(interceptor);
|
||
}
|
||
value = value.slice(start, +start + (length ? 1 : 0));
|
||
value.__actions__.push({
|
||
"func": thru,
|
||
"args": [interceptor],
|
||
"thisArg": undefined2
|
||
});
|
||
return new LodashWrapper(value, this.__chain__).thru(function(array) {
|
||
if (length && !array.length) {
|
||
array.push(undefined2);
|
||
}
|
||
return array;
|
||
});
|
||
});
|
||
function wrapperChain() {
|
||
return chain(this);
|
||
}
|
||
function wrapperCommit() {
|
||
return new LodashWrapper(this.value(), this.__chain__);
|
||
}
|
||
function wrapperNext() {
|
||
if (this.__values__ === undefined2) {
|
||
this.__values__ = toArray(this.value());
|
||
}
|
||
var done = this.__index__ >= this.__values__.length, value = done ? undefined2 : this.__values__[this.__index__++];
|
||
return { "done": done, "value": value };
|
||
}
|
||
function wrapperToIterator() {
|
||
return this;
|
||
}
|
||
function wrapperPlant(value) {
|
||
var result2, parent2 = this;
|
||
while (parent2 instanceof baseLodash) {
|
||
var clone2 = wrapperClone(parent2);
|
||
clone2.__index__ = 0;
|
||
clone2.__values__ = undefined2;
|
||
if (result2) {
|
||
previous.__wrapped__ = clone2;
|
||
} else {
|
||
result2 = clone2;
|
||
}
|
||
var previous = clone2;
|
||
parent2 = parent2.__wrapped__;
|
||
}
|
||
previous.__wrapped__ = value;
|
||
return result2;
|
||
}
|
||
function wrapperReverse() {
|
||
var value = this.__wrapped__;
|
||
if (value instanceof LazyWrapper) {
|
||
var wrapped = value;
|
||
if (this.__actions__.length) {
|
||
wrapped = new LazyWrapper(this);
|
||
}
|
||
wrapped = wrapped.reverse();
|
||
wrapped.__actions__.push({
|
||
"func": thru,
|
||
"args": [reverse],
|
||
"thisArg": undefined2
|
||
});
|
||
return new LodashWrapper(wrapped, this.__chain__);
|
||
}
|
||
return this.thru(reverse);
|
||
}
|
||
function wrapperValue() {
|
||
return baseWrapperValue(this.__wrapped__, this.__actions__);
|
||
}
|
||
var countBy = createAggregator(function(result2, value, key) {
|
||
if (hasOwnProperty.call(result2, key)) {
|
||
++result2[key];
|
||
} else {
|
||
baseAssignValue(result2, key, 1);
|
||
}
|
||
});
|
||
function every(collection, predicate, guard) {
|
||
var func = isArray(collection) ? arrayEvery : baseEvery;
|
||
if (guard && isIterateeCall(collection, predicate, guard)) {
|
||
predicate = undefined2;
|
||
}
|
||
return func(collection, getIteratee(predicate, 3));
|
||
}
|
||
function filter(collection, predicate) {
|
||
var func = isArray(collection) ? arrayFilter : baseFilter;
|
||
return func(collection, getIteratee(predicate, 3));
|
||
}
|
||
var find = createFind(findIndex);
|
||
var findLast = createFind(findLastIndex);
|
||
function flatMap(collection, iteratee2) {
|
||
return baseFlatten(map(collection, iteratee2), 1);
|
||
}
|
||
function flatMapDeep(collection, iteratee2) {
|
||
return baseFlatten(map(collection, iteratee2), INFINITY);
|
||
}
|
||
function flatMapDepth(collection, iteratee2, depth) {
|
||
depth = depth === undefined2 ? 1 : toInteger(depth);
|
||
return baseFlatten(map(collection, iteratee2), depth);
|
||
}
|
||
function forEach(collection, iteratee2) {
|
||
var func = isArray(collection) ? arrayEach : baseEach;
|
||
return func(collection, getIteratee(iteratee2, 3));
|
||
}
|
||
function forEachRight(collection, iteratee2) {
|
||
var func = isArray(collection) ? arrayEachRight : baseEachRight;
|
||
return func(collection, getIteratee(iteratee2, 3));
|
||
}
|
||
var groupBy = createAggregator(function(result2, value, key) {
|
||
if (hasOwnProperty.call(result2, key)) {
|
||
result2[key].push(value);
|
||
} else {
|
||
baseAssignValue(result2, key, [value]);
|
||
}
|
||
});
|
||
function includes(collection, value, fromIndex, guard) {
|
||
collection = isArrayLike(collection) ? collection : values(collection);
|
||
fromIndex = fromIndex && !guard ? toInteger(fromIndex) : 0;
|
||
var length = collection.length;
|
||
if (fromIndex < 0) {
|
||
fromIndex = nativeMax(length + fromIndex, 0);
|
||
}
|
||
return isString(collection) ? fromIndex <= length && collection.indexOf(value, fromIndex) > -1 : !!length && baseIndexOf(collection, value, fromIndex) > -1;
|
||
}
|
||
var invokeMap = baseRest(function(collection, path, args) {
|
||
var index = -1, isFunc = typeof path == "function", result2 = isArrayLike(collection) ? Array2(collection.length) : [];
|
||
baseEach(collection, function(value) {
|
||
result2[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args);
|
||
});
|
||
return result2;
|
||
});
|
||
var keyBy = createAggregator(function(result2, value, key) {
|
||
baseAssignValue(result2, key, value);
|
||
});
|
||
function map(collection, iteratee2) {
|
||
var func = isArray(collection) ? arrayMap : baseMap;
|
||
return func(collection, getIteratee(iteratee2, 3));
|
||
}
|
||
function orderBy(collection, iteratees, orders, guard) {
|
||
if (collection == null) {
|
||
return [];
|
||
}
|
||
if (!isArray(iteratees)) {
|
||
iteratees = iteratees == null ? [] : [iteratees];
|
||
}
|
||
orders = guard ? undefined2 : orders;
|
||
if (!isArray(orders)) {
|
||
orders = orders == null ? [] : [orders];
|
||
}
|
||
return baseOrderBy(collection, iteratees, orders);
|
||
}
|
||
var partition = createAggregator(function(result2, value, key) {
|
||
result2[key ? 0 : 1].push(value);
|
||
}, function() {
|
||
return [[], []];
|
||
});
|
||
function reduce(collection, iteratee2, accumulator) {
|
||
var func = isArray(collection) ? arrayReduce : baseReduce, initAccum = arguments.length < 3;
|
||
return func(collection, getIteratee(iteratee2, 4), accumulator, initAccum, baseEach);
|
||
}
|
||
function reduceRight(collection, iteratee2, accumulator) {
|
||
var func = isArray(collection) ? arrayReduceRight : baseReduce, initAccum = arguments.length < 3;
|
||
return func(collection, getIteratee(iteratee2, 4), accumulator, initAccum, baseEachRight);
|
||
}
|
||
function reject(collection, predicate) {
|
||
var func = isArray(collection) ? arrayFilter : baseFilter;
|
||
return func(collection, negate(getIteratee(predicate, 3)));
|
||
}
|
||
function sample(collection) {
|
||
var func = isArray(collection) ? arraySample : baseSample;
|
||
return func(collection);
|
||
}
|
||
function sampleSize(collection, n, guard) {
|
||
if (guard ? isIterateeCall(collection, n, guard) : n === undefined2) {
|
||
n = 1;
|
||
} else {
|
||
n = toInteger(n);
|
||
}
|
||
var func = isArray(collection) ? arraySampleSize : baseSampleSize;
|
||
return func(collection, n);
|
||
}
|
||
function shuffle(collection) {
|
||
var func = isArray(collection) ? arrayShuffle : baseShuffle;
|
||
return func(collection);
|
||
}
|
||
function size(collection) {
|
||
if (collection == null) {
|
||
return 0;
|
||
}
|
||
if (isArrayLike(collection)) {
|
||
return isString(collection) ? stringSize(collection) : collection.length;
|
||
}
|
||
var tag = getTag(collection);
|
||
if (tag == mapTag || tag == setTag) {
|
||
return collection.size;
|
||
}
|
||
return baseKeys(collection).length;
|
||
}
|
||
function some(collection, predicate, guard) {
|
||
var func = isArray(collection) ? arraySome : baseSome;
|
||
if (guard && isIterateeCall(collection, predicate, guard)) {
|
||
predicate = undefined2;
|
||
}
|
||
return func(collection, getIteratee(predicate, 3));
|
||
}
|
||
var sortBy = baseRest(function(collection, iteratees) {
|
||
if (collection == null) {
|
||
return [];
|
||
}
|
||
var length = iteratees.length;
|
||
if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {
|
||
iteratees = [];
|
||
} else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {
|
||
iteratees = [iteratees[0]];
|
||
}
|
||
return baseOrderBy(collection, baseFlatten(iteratees, 1), []);
|
||
});
|
||
var now = ctxNow || function() {
|
||
return root.Date.now();
|
||
};
|
||
function after(n, func) {
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
n = toInteger(n);
|
||
return function() {
|
||
if (--n < 1) {
|
||
return func.apply(this, arguments);
|
||
}
|
||
};
|
||
}
|
||
function ary(func, n, guard) {
|
||
n = guard ? undefined2 : n;
|
||
n = func && n == null ? func.length : n;
|
||
return createWrap(func, WRAP_ARY_FLAG, undefined2, undefined2, undefined2, undefined2, n);
|
||
}
|
||
function before(n, func) {
|
||
var result2;
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
n = toInteger(n);
|
||
return function() {
|
||
if (--n > 0) {
|
||
result2 = func.apply(this, arguments);
|
||
}
|
||
if (n <= 1) {
|
||
func = undefined2;
|
||
}
|
||
return result2;
|
||
};
|
||
}
|
||
var bind = baseRest(function(func, thisArg, partials) {
|
||
var bitmask = WRAP_BIND_FLAG;
|
||
if (partials.length) {
|
||
var holders = replaceHolders(partials, getHolder(bind));
|
||
bitmask |= WRAP_PARTIAL_FLAG;
|
||
}
|
||
return createWrap(func, bitmask, thisArg, partials, holders);
|
||
});
|
||
var bindKey = baseRest(function(object, key, partials) {
|
||
var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG;
|
||
if (partials.length) {
|
||
var holders = replaceHolders(partials, getHolder(bindKey));
|
||
bitmask |= WRAP_PARTIAL_FLAG;
|
||
}
|
||
return createWrap(key, bitmask, object, partials, holders);
|
||
});
|
||
function curry(func, arity, guard) {
|
||
arity = guard ? undefined2 : arity;
|
||
var result2 = createWrap(func, WRAP_CURRY_FLAG, undefined2, undefined2, undefined2, undefined2, undefined2, arity);
|
||
result2.placeholder = curry.placeholder;
|
||
return result2;
|
||
}
|
||
function curryRight(func, arity, guard) {
|
||
arity = guard ? undefined2 : arity;
|
||
var result2 = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined2, undefined2, undefined2, undefined2, undefined2, arity);
|
||
result2.placeholder = curryRight.placeholder;
|
||
return result2;
|
||
}
|
||
function debounce(func, wait, options) {
|
||
var lastArgs, lastThis, maxWait, result2, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true;
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
wait = toNumber(wait) || 0;
|
||
if (isObject(options)) {
|
||
leading = !!options.leading;
|
||
maxing = "maxWait" in options;
|
||
maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
|
||
trailing = "trailing" in options ? !!options.trailing : trailing;
|
||
}
|
||
function invokeFunc(time) {
|
||
var args = lastArgs, thisArg = lastThis;
|
||
lastArgs = lastThis = undefined2;
|
||
lastInvokeTime = time;
|
||
result2 = func.apply(thisArg, args);
|
||
return result2;
|
||
}
|
||
function leadingEdge(time) {
|
||
lastInvokeTime = time;
|
||
timerId = setTimeout2(timerExpired, wait);
|
||
return leading ? invokeFunc(time) : result2;
|
||
}
|
||
function remainingWait(time) {
|
||
var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;
|
||
return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;
|
||
}
|
||
function shouldInvoke(time) {
|
||
var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;
|
||
return lastCallTime === undefined2 || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait;
|
||
}
|
||
function timerExpired() {
|
||
var time = now();
|
||
if (shouldInvoke(time)) {
|
||
return trailingEdge(time);
|
||
}
|
||
timerId = setTimeout2(timerExpired, remainingWait(time));
|
||
}
|
||
function trailingEdge(time) {
|
||
timerId = undefined2;
|
||
if (trailing && lastArgs) {
|
||
return invokeFunc(time);
|
||
}
|
||
lastArgs = lastThis = undefined2;
|
||
return result2;
|
||
}
|
||
function cancel() {
|
||
if (timerId !== undefined2) {
|
||
clearTimeout2(timerId);
|
||
}
|
||
lastInvokeTime = 0;
|
||
lastArgs = lastCallTime = lastThis = timerId = undefined2;
|
||
}
|
||
function flush() {
|
||
return timerId === undefined2 ? result2 : trailingEdge(now());
|
||
}
|
||
function debounced() {
|
||
var time = now(), isInvoking = shouldInvoke(time);
|
||
lastArgs = arguments;
|
||
lastThis = this;
|
||
lastCallTime = time;
|
||
if (isInvoking) {
|
||
if (timerId === undefined2) {
|
||
return leadingEdge(lastCallTime);
|
||
}
|
||
if (maxing) {
|
||
clearTimeout2(timerId);
|
||
timerId = setTimeout2(timerExpired, wait);
|
||
return invokeFunc(lastCallTime);
|
||
}
|
||
}
|
||
if (timerId === undefined2) {
|
||
timerId = setTimeout2(timerExpired, wait);
|
||
}
|
||
return result2;
|
||
}
|
||
debounced.cancel = cancel;
|
||
debounced.flush = flush;
|
||
return debounced;
|
||
}
|
||
var defer = baseRest(function(func, args) {
|
||
return baseDelay(func, 1, args);
|
||
});
|
||
var delay = baseRest(function(func, wait, args) {
|
||
return baseDelay(func, toNumber(wait) || 0, args);
|
||
});
|
||
function flip(func) {
|
||
return createWrap(func, WRAP_FLIP_FLAG);
|
||
}
|
||
function memoize(func, resolver) {
|
||
if (typeof func != "function" || resolver != null && typeof resolver != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
var memoized = function() {
|
||
var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache;
|
||
if (cache.has(key)) {
|
||
return cache.get(key);
|
||
}
|
||
var result2 = func.apply(this, args);
|
||
memoized.cache = cache.set(key, result2) || cache;
|
||
return result2;
|
||
};
|
||
memoized.cache = new (memoize.Cache || MapCache)();
|
||
return memoized;
|
||
}
|
||
memoize.Cache = MapCache;
|
||
function negate(predicate) {
|
||
if (typeof predicate != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
return function() {
|
||
var args = arguments;
|
||
switch (args.length) {
|
||
case 0:
|
||
return !predicate.call(this);
|
||
case 1:
|
||
return !predicate.call(this, args[0]);
|
||
case 2:
|
||
return !predicate.call(this, args[0], args[1]);
|
||
case 3:
|
||
return !predicate.call(this, args[0], args[1], args[2]);
|
||
}
|
||
return !predicate.apply(this, args);
|
||
};
|
||
}
|
||
function once(func) {
|
||
return before(2, func);
|
||
}
|
||
var overArgs = castRest(function(func, transforms) {
|
||
transforms = transforms.length == 1 && isArray(transforms[0]) ? arrayMap(transforms[0], baseUnary(getIteratee())) : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee()));
|
||
var funcsLength = transforms.length;
|
||
return baseRest(function(args) {
|
||
var index = -1, length = nativeMin(args.length, funcsLength);
|
||
while (++index < length) {
|
||
args[index] = transforms[index].call(this, args[index]);
|
||
}
|
||
return apply(func, this, args);
|
||
});
|
||
});
|
||
var partial = baseRest(function(func, partials) {
|
||
var holders = replaceHolders(partials, getHolder(partial));
|
||
return createWrap(func, WRAP_PARTIAL_FLAG, undefined2, partials, holders);
|
||
});
|
||
var partialRight = baseRest(function(func, partials) {
|
||
var holders = replaceHolders(partials, getHolder(partialRight));
|
||
return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined2, partials, holders);
|
||
});
|
||
var rearg = flatRest(function(func, indexes) {
|
||
return createWrap(func, WRAP_REARG_FLAG, undefined2, undefined2, undefined2, indexes);
|
||
});
|
||
function rest(func, start) {
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
start = start === undefined2 ? start : toInteger(start);
|
||
return baseRest(func, start);
|
||
}
|
||
function spread(func, start) {
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
start = start == null ? 0 : nativeMax(toInteger(start), 0);
|
||
return baseRest(function(args) {
|
||
var array = args[start], otherArgs = castSlice(args, 0, start);
|
||
if (array) {
|
||
arrayPush(otherArgs, array);
|
||
}
|
||
return apply(func, this, otherArgs);
|
||
});
|
||
}
|
||
function throttle(func, wait, options) {
|
||
var leading = true, trailing = true;
|
||
if (typeof func != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
if (isObject(options)) {
|
||
leading = "leading" in options ? !!options.leading : leading;
|
||
trailing = "trailing" in options ? !!options.trailing : trailing;
|
||
}
|
||
return debounce(func, wait, {
|
||
"leading": leading,
|
||
"maxWait": wait,
|
||
"trailing": trailing
|
||
});
|
||
}
|
||
function unary(func) {
|
||
return ary(func, 1);
|
||
}
|
||
function wrap(value, wrapper) {
|
||
return partial(castFunction(wrapper), value);
|
||
}
|
||
function castArray() {
|
||
if (!arguments.length) {
|
||
return [];
|
||
}
|
||
var value = arguments[0];
|
||
return isArray(value) ? value : [value];
|
||
}
|
||
function clone(value) {
|
||
return baseClone(value, CLONE_SYMBOLS_FLAG);
|
||
}
|
||
function cloneWith(value, customizer) {
|
||
customizer = typeof customizer == "function" ? customizer : undefined2;
|
||
return baseClone(value, CLONE_SYMBOLS_FLAG, customizer);
|
||
}
|
||
function cloneDeep(value) {
|
||
return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);
|
||
}
|
||
function cloneDeepWith(value, customizer) {
|
||
customizer = typeof customizer == "function" ? customizer : undefined2;
|
||
return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer);
|
||
}
|
||
function conformsTo(object, source) {
|
||
return source == null || baseConformsTo(object, source, keys(source));
|
||
}
|
||
function eq(value, other) {
|
||
return value === other || value !== value && other !== other;
|
||
}
|
||
var gt = createRelationalOperation(baseGt);
|
||
var gte = createRelationalOperation(function(value, other) {
|
||
return value >= other;
|
||
});
|
||
var isArguments = baseIsArguments(function() {
|
||
return arguments;
|
||
}()) ? baseIsArguments : function(value) {
|
||
return isObjectLike(value) && hasOwnProperty.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
|
||
};
|
||
var isArray = Array2.isArray;
|
||
var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer;
|
||
function isArrayLike(value) {
|
||
return value != null && isLength(value.length) && !isFunction(value);
|
||
}
|
||
function isArrayLikeObject(value) {
|
||
return isObjectLike(value) && isArrayLike(value);
|
||
}
|
||
function isBoolean(value) {
|
||
return value === true || value === false || isObjectLike(value) && baseGetTag(value) == boolTag;
|
||
}
|
||
var isBuffer = nativeIsBuffer || stubFalse;
|
||
var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate;
|
||
function isElement(value) {
|
||
return isObjectLike(value) && value.nodeType === 1 && !isPlainObject2(value);
|
||
}
|
||
function isEmpty(value) {
|
||
if (value == null) {
|
||
return true;
|
||
}
|
||
if (isArrayLike(value) && (isArray(value) || typeof value == "string" || typeof value.splice == "function" || isBuffer(value) || isTypedArray(value) || isArguments(value))) {
|
||
return !value.length;
|
||
}
|
||
var tag = getTag(value);
|
||
if (tag == mapTag || tag == setTag) {
|
||
return !value.size;
|
||
}
|
||
if (isPrototype(value)) {
|
||
return !baseKeys(value).length;
|
||
}
|
||
for (var key in value) {
|
||
if (hasOwnProperty.call(value, key)) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function isEqual(value, other) {
|
||
return baseIsEqual(value, other);
|
||
}
|
||
function isEqualWith(value, other, customizer) {
|
||
customizer = typeof customizer == "function" ? customizer : undefined2;
|
||
var result2 = customizer ? customizer(value, other) : undefined2;
|
||
return result2 === undefined2 ? baseIsEqual(value, other, undefined2, customizer) : !!result2;
|
||
}
|
||
function isError(value) {
|
||
if (!isObjectLike(value)) {
|
||
return false;
|
||
}
|
||
var tag = baseGetTag(value);
|
||
return tag == errorTag || tag == domExcTag || typeof value.message == "string" && typeof value.name == "string" && !isPlainObject2(value);
|
||
}
|
||
function isFinite2(value) {
|
||
return typeof value == "number" && nativeIsFinite(value);
|
||
}
|
||
function isFunction(value) {
|
||
if (!isObject(value)) {
|
||
return false;
|
||
}
|
||
var tag = baseGetTag(value);
|
||
return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
|
||
}
|
||
function isInteger(value) {
|
||
return typeof value == "number" && value == toInteger(value);
|
||
}
|
||
function isLength(value) {
|
||
return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
|
||
}
|
||
function isObject(value) {
|
||
var type = typeof value;
|
||
return value != null && (type == "object" || type == "function");
|
||
}
|
||
function isObjectLike(value) {
|
||
return value != null && typeof value == "object";
|
||
}
|
||
var isMap2 = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;
|
||
function isMatch(object, source) {
|
||
return object === source || baseIsMatch(object, source, getMatchData(source));
|
||
}
|
||
function isMatchWith(object, source, customizer) {
|
||
customizer = typeof customizer == "function" ? customizer : undefined2;
|
||
return baseIsMatch(object, source, getMatchData(source), customizer);
|
||
}
|
||
function isNaN2(value) {
|
||
return isNumber(value) && value != +value;
|
||
}
|
||
function isNative(value) {
|
||
if (isMaskable(value)) {
|
||
throw new Error2(CORE_ERROR_TEXT);
|
||
}
|
||
return baseIsNative(value);
|
||
}
|
||
function isNull(value) {
|
||
return value === null;
|
||
}
|
||
function isNil(value) {
|
||
return value == null;
|
||
}
|
||
function isNumber(value) {
|
||
return typeof value == "number" || isObjectLike(value) && baseGetTag(value) == numberTag;
|
||
}
|
||
function isPlainObject2(value) {
|
||
if (!isObjectLike(value) || baseGetTag(value) != objectTag) {
|
||
return false;
|
||
}
|
||
var proto = getPrototype(value);
|
||
if (proto === null) {
|
||
return true;
|
||
}
|
||
var Ctor = hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
||
return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString2;
|
||
}
|
||
var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;
|
||
function isSafeInteger(value) {
|
||
return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER;
|
||
}
|
||
var isSet2 = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;
|
||
function isString(value) {
|
||
return typeof value == "string" || !isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag;
|
||
}
|
||
function isSymbol(value) {
|
||
return typeof value == "symbol" || isObjectLike(value) && baseGetTag(value) == symbolTag;
|
||
}
|
||
var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
|
||
function isUndefined(value) {
|
||
return value === undefined2;
|
||
}
|
||
function isWeakMap(value) {
|
||
return isObjectLike(value) && getTag(value) == weakMapTag;
|
||
}
|
||
function isWeakSet(value) {
|
||
return isObjectLike(value) && baseGetTag(value) == weakSetTag;
|
||
}
|
||
var lt = createRelationalOperation(baseLt);
|
||
var lte = createRelationalOperation(function(value, other) {
|
||
return value <= other;
|
||
});
|
||
function toArray(value) {
|
||
if (!value) {
|
||
return [];
|
||
}
|
||
if (isArrayLike(value)) {
|
||
return isString(value) ? stringToArray(value) : copyArray(value);
|
||
}
|
||
if (symIterator && value[symIterator]) {
|
||
return iteratorToArray(value[symIterator]());
|
||
}
|
||
var tag = getTag(value), func = tag == mapTag ? mapToArray : tag == setTag ? setToArray : values;
|
||
return func(value);
|
||
}
|
||
function toFinite(value) {
|
||
if (!value) {
|
||
return value === 0 ? value : 0;
|
||
}
|
||
value = toNumber(value);
|
||
if (value === INFINITY || value === -INFINITY) {
|
||
var sign = value < 0 ? -1 : 1;
|
||
return sign * MAX_INTEGER;
|
||
}
|
||
return value === value ? value : 0;
|
||
}
|
||
function toInteger(value) {
|
||
var result2 = toFinite(value), remainder = result2 % 1;
|
||
return result2 === result2 ? remainder ? result2 - remainder : result2 : 0;
|
||
}
|
||
function toLength(value) {
|
||
return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0;
|
||
}
|
||
function toNumber(value) {
|
||
if (typeof value == "number") {
|
||
return value;
|
||
}
|
||
if (isSymbol(value)) {
|
||
return NAN;
|
||
}
|
||
if (isObject(value)) {
|
||
var other = typeof value.valueOf == "function" ? value.valueOf() : value;
|
||
value = isObject(other) ? other + "" : other;
|
||
}
|
||
if (typeof value != "string") {
|
||
return value === 0 ? value : +value;
|
||
}
|
||
value = baseTrim(value);
|
||
var isBinary = reIsBinary.test(value);
|
||
return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;
|
||
}
|
||
function toPlainObject(value) {
|
||
return copyObject(value, keysIn(value));
|
||
}
|
||
function toSafeInteger(value) {
|
||
return value ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER) : value === 0 ? value : 0;
|
||
}
|
||
function toString(value) {
|
||
return value == null ? "" : baseToString(value);
|
||
}
|
||
var assign = createAssigner(function(object, source) {
|
||
if (isPrototype(source) || isArrayLike(source)) {
|
||
copyObject(source, keys(source), object);
|
||
return;
|
||
}
|
||
for (var key in source) {
|
||
if (hasOwnProperty.call(source, key)) {
|
||
assignValue(object, key, source[key]);
|
||
}
|
||
}
|
||
});
|
||
var assignIn = createAssigner(function(object, source) {
|
||
copyObject(source, keysIn(source), object);
|
||
});
|
||
var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {
|
||
copyObject(source, keysIn(source), object, customizer);
|
||
});
|
||
var assignWith = createAssigner(function(object, source, srcIndex, customizer) {
|
||
copyObject(source, keys(source), object, customizer);
|
||
});
|
||
var at = flatRest(baseAt);
|
||
function create2(prototype, properties) {
|
||
var result2 = baseCreate(prototype);
|
||
return properties == null ? result2 : baseAssign(result2, properties);
|
||
}
|
||
var defaults = baseRest(function(object, sources) {
|
||
object = Object2(object);
|
||
var index = -1;
|
||
var length = sources.length;
|
||
var guard = length > 2 ? sources[2] : undefined2;
|
||
if (guard && isIterateeCall(sources[0], sources[1], guard)) {
|
||
length = 1;
|
||
}
|
||
while (++index < length) {
|
||
var source = sources[index];
|
||
var props = keysIn(source);
|
||
var propsIndex = -1;
|
||
var propsLength = props.length;
|
||
while (++propsIndex < propsLength) {
|
||
var key = props[propsIndex];
|
||
var value = object[key];
|
||
if (value === undefined2 || eq(value, objectProto[key]) && !hasOwnProperty.call(object, key)) {
|
||
object[key] = source[key];
|
||
}
|
||
}
|
||
}
|
||
return object;
|
||
});
|
||
var defaultsDeep = baseRest(function(args) {
|
||
args.push(undefined2, customDefaultsMerge);
|
||
return apply(mergeWith, undefined2, args);
|
||
});
|
||
function findKey(object, predicate) {
|
||
return baseFindKey(object, getIteratee(predicate, 3), baseForOwn);
|
||
}
|
||
function findLastKey(object, predicate) {
|
||
return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight);
|
||
}
|
||
function forIn(object, iteratee2) {
|
||
return object == null ? object : baseFor(object, getIteratee(iteratee2, 3), keysIn);
|
||
}
|
||
function forInRight(object, iteratee2) {
|
||
return object == null ? object : baseForRight(object, getIteratee(iteratee2, 3), keysIn);
|
||
}
|
||
function forOwn(object, iteratee2) {
|
||
return object && baseForOwn(object, getIteratee(iteratee2, 3));
|
||
}
|
||
function forOwnRight(object, iteratee2) {
|
||
return object && baseForOwnRight(object, getIteratee(iteratee2, 3));
|
||
}
|
||
function functions(object) {
|
||
return object == null ? [] : baseFunctions(object, keys(object));
|
||
}
|
||
function functionsIn(object) {
|
||
return object == null ? [] : baseFunctions(object, keysIn(object));
|
||
}
|
||
function get(object, path, defaultValue) {
|
||
var result2 = object == null ? undefined2 : baseGet(object, path);
|
||
return result2 === undefined2 ? defaultValue : result2;
|
||
}
|
||
function has2(object, path) {
|
||
return object != null && hasPath(object, path, baseHas);
|
||
}
|
||
function hasIn(object, path) {
|
||
return object != null && hasPath(object, path, baseHasIn);
|
||
}
|
||
var invert = createInverter(function(result2, value, key) {
|
||
if (value != null && typeof value.toString != "function") {
|
||
value = nativeObjectToString.call(value);
|
||
}
|
||
result2[value] = key;
|
||
}, constant(identity));
|
||
var invertBy = createInverter(function(result2, value, key) {
|
||
if (value != null && typeof value.toString != "function") {
|
||
value = nativeObjectToString.call(value);
|
||
}
|
||
if (hasOwnProperty.call(result2, value)) {
|
||
result2[value].push(key);
|
||
} else {
|
||
result2[value] = [key];
|
||
}
|
||
}, getIteratee);
|
||
var invoke = baseRest(baseInvoke);
|
||
function keys(object) {
|
||
return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
|
||
}
|
||
function keysIn(object) {
|
||
return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
|
||
}
|
||
function mapKeys(object, iteratee2) {
|
||
var result2 = {};
|
||
iteratee2 = getIteratee(iteratee2, 3);
|
||
baseForOwn(object, function(value, key, object2) {
|
||
baseAssignValue(result2, iteratee2(value, key, object2), value);
|
||
});
|
||
return result2;
|
||
}
|
||
function mapValues(object, iteratee2) {
|
||
var result2 = {};
|
||
iteratee2 = getIteratee(iteratee2, 3);
|
||
baseForOwn(object, function(value, key, object2) {
|
||
baseAssignValue(result2, key, iteratee2(value, key, object2));
|
||
});
|
||
return result2;
|
||
}
|
||
var merge = createAssigner(function(object, source, srcIndex) {
|
||
baseMerge(object, source, srcIndex);
|
||
});
|
||
var mergeWith = createAssigner(function(object, source, srcIndex, customizer) {
|
||
baseMerge(object, source, srcIndex, customizer);
|
||
});
|
||
var omit = flatRest(function(object, paths) {
|
||
var result2 = {};
|
||
if (object == null) {
|
||
return result2;
|
||
}
|
||
var isDeep = false;
|
||
paths = arrayMap(paths, function(path) {
|
||
path = castPath(path, object);
|
||
isDeep || (isDeep = path.length > 1);
|
||
return path;
|
||
});
|
||
copyObject(object, getAllKeysIn(object), result2);
|
||
if (isDeep) {
|
||
result2 = baseClone(result2, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone);
|
||
}
|
||
var length = paths.length;
|
||
while (length--) {
|
||
baseUnset(result2, paths[length]);
|
||
}
|
||
return result2;
|
||
});
|
||
function omitBy(object, predicate) {
|
||
return pickBy(object, negate(getIteratee(predicate)));
|
||
}
|
||
var pick = flatRest(function(object, paths) {
|
||
return object == null ? {} : basePick(object, paths);
|
||
});
|
||
function pickBy(object, predicate) {
|
||
if (object == null) {
|
||
return {};
|
||
}
|
||
var props = arrayMap(getAllKeysIn(object), function(prop) {
|
||
return [prop];
|
||
});
|
||
predicate = getIteratee(predicate);
|
||
return basePickBy(object, props, function(value, path) {
|
||
return predicate(value, path[0]);
|
||
});
|
||
}
|
||
function result(object, path, defaultValue) {
|
||
path = castPath(path, object);
|
||
var index = -1, length = path.length;
|
||
if (!length) {
|
||
length = 1;
|
||
object = undefined2;
|
||
}
|
||
while (++index < length) {
|
||
var value = object == null ? undefined2 : object[toKey(path[index])];
|
||
if (value === undefined2) {
|
||
index = length;
|
||
value = defaultValue;
|
||
}
|
||
object = isFunction(value) ? value.call(object) : value;
|
||
}
|
||
return object;
|
||
}
|
||
function set2(object, path, value) {
|
||
return object == null ? object : baseSet(object, path, value);
|
||
}
|
||
function setWith(object, path, value, customizer) {
|
||
customizer = typeof customizer == "function" ? customizer : undefined2;
|
||
return object == null ? object : baseSet(object, path, value, customizer);
|
||
}
|
||
var toPairs = createToPairs(keys);
|
||
var toPairsIn = createToPairs(keysIn);
|
||
function transform(object, iteratee2, accumulator) {
|
||
var isArr = isArray(object), isArrLike = isArr || isBuffer(object) || isTypedArray(object);
|
||
iteratee2 = getIteratee(iteratee2, 4);
|
||
if (accumulator == null) {
|
||
var Ctor = object && object.constructor;
|
||
if (isArrLike) {
|
||
accumulator = isArr ? new Ctor() : [];
|
||
} else if (isObject(object)) {
|
||
accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {};
|
||
} else {
|
||
accumulator = {};
|
||
}
|
||
}
|
||
(isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object2) {
|
||
return iteratee2(accumulator, value, index, object2);
|
||
});
|
||
return accumulator;
|
||
}
|
||
function unset(object, path) {
|
||
return object == null ? true : baseUnset(object, path);
|
||
}
|
||
function update(object, path, updater) {
|
||
return object == null ? object : baseUpdate(object, path, castFunction(updater));
|
||
}
|
||
function updateWith(object, path, updater, customizer) {
|
||
customizer = typeof customizer == "function" ? customizer : undefined2;
|
||
return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer);
|
||
}
|
||
function values(object) {
|
||
return object == null ? [] : baseValues(object, keys(object));
|
||
}
|
||
function valuesIn(object) {
|
||
return object == null ? [] : baseValues(object, keysIn(object));
|
||
}
|
||
function clamp(number, lower, upper) {
|
||
if (upper === undefined2) {
|
||
upper = lower;
|
||
lower = undefined2;
|
||
}
|
||
if (upper !== undefined2) {
|
||
upper = toNumber(upper);
|
||
upper = upper === upper ? upper : 0;
|
||
}
|
||
if (lower !== undefined2) {
|
||
lower = toNumber(lower);
|
||
lower = lower === lower ? lower : 0;
|
||
}
|
||
return baseClamp(toNumber(number), lower, upper);
|
||
}
|
||
function inRange(number, start, end) {
|
||
start = toFinite(start);
|
||
if (end === undefined2) {
|
||
end = start;
|
||
start = 0;
|
||
} else {
|
||
end = toFinite(end);
|
||
}
|
||
number = toNumber(number);
|
||
return baseInRange(number, start, end);
|
||
}
|
||
function random(lower, upper, floating) {
|
||
if (floating && typeof floating != "boolean" && isIterateeCall(lower, upper, floating)) {
|
||
upper = floating = undefined2;
|
||
}
|
||
if (floating === undefined2) {
|
||
if (typeof upper == "boolean") {
|
||
floating = upper;
|
||
upper = undefined2;
|
||
} else if (typeof lower == "boolean") {
|
||
floating = lower;
|
||
lower = undefined2;
|
||
}
|
||
}
|
||
if (lower === undefined2 && upper === undefined2) {
|
||
lower = 0;
|
||
upper = 1;
|
||
} else {
|
||
lower = toFinite(lower);
|
||
if (upper === undefined2) {
|
||
upper = lower;
|
||
lower = 0;
|
||
} else {
|
||
upper = toFinite(upper);
|
||
}
|
||
}
|
||
if (lower > upper) {
|
||
var temp = lower;
|
||
lower = upper;
|
||
upper = temp;
|
||
}
|
||
if (floating || lower % 1 || upper % 1) {
|
||
var rand = nativeRandom();
|
||
return nativeMin(lower + rand * (upper - lower + freeParseFloat("1e-" + ((rand + "").length - 1))), upper);
|
||
}
|
||
return baseRandom(lower, upper);
|
||
}
|
||
var camelCase = createCompounder(function(result2, word, index) {
|
||
word = word.toLowerCase();
|
||
return result2 + (index ? capitalize(word) : word);
|
||
});
|
||
function capitalize(string) {
|
||
return upperFirst(toString(string).toLowerCase());
|
||
}
|
||
function deburr(string) {
|
||
string = toString(string);
|
||
return string && string.replace(reLatin, deburrLetter).replace(reComboMark, "");
|
||
}
|
||
function endsWith(string, target, position) {
|
||
string = toString(string);
|
||
target = baseToString(target);
|
||
var length = string.length;
|
||
position = position === undefined2 ? length : baseClamp(toInteger(position), 0, length);
|
||
var end = position;
|
||
position -= target.length;
|
||
return position >= 0 && string.slice(position, end) == target;
|
||
}
|
||
function escape(string) {
|
||
string = toString(string);
|
||
return string && reHasUnescapedHtml.test(string) ? string.replace(reUnescapedHtml, escapeHtmlChar) : string;
|
||
}
|
||
function escapeRegExp(string) {
|
||
string = toString(string);
|
||
return string && reHasRegExpChar.test(string) ? string.replace(reRegExpChar, "\\$&") : string;
|
||
}
|
||
var kebabCase = createCompounder(function(result2, word, index) {
|
||
return result2 + (index ? "-" : "") + word.toLowerCase();
|
||
});
|
||
var lowerCase = createCompounder(function(result2, word, index) {
|
||
return result2 + (index ? " " : "") + word.toLowerCase();
|
||
});
|
||
var lowerFirst = createCaseFirst("toLowerCase");
|
||
function pad(string, length, chars) {
|
||
string = toString(string);
|
||
length = toInteger(length);
|
||
var strLength = length ? stringSize(string) : 0;
|
||
if (!length || strLength >= length) {
|
||
return string;
|
||
}
|
||
var mid = (length - strLength) / 2;
|
||
return createPadding(nativeFloor(mid), chars) + string + createPadding(nativeCeil(mid), chars);
|
||
}
|
||
function padEnd(string, length, chars) {
|
||
string = toString(string);
|
||
length = toInteger(length);
|
||
var strLength = length ? stringSize(string) : 0;
|
||
return length && strLength < length ? string + createPadding(length - strLength, chars) : string;
|
||
}
|
||
function padStart(string, length, chars) {
|
||
string = toString(string);
|
||
length = toInteger(length);
|
||
var strLength = length ? stringSize(string) : 0;
|
||
return length && strLength < length ? createPadding(length - strLength, chars) + string : string;
|
||
}
|
||
function parseInt2(string, radix, guard) {
|
||
if (guard || radix == null) {
|
||
radix = 0;
|
||
} else if (radix) {
|
||
radix = +radix;
|
||
}
|
||
return nativeParseInt(toString(string).replace(reTrimStart, ""), radix || 0);
|
||
}
|
||
function repeat(string, n, guard) {
|
||
if (guard ? isIterateeCall(string, n, guard) : n === undefined2) {
|
||
n = 1;
|
||
} else {
|
||
n = toInteger(n);
|
||
}
|
||
return baseRepeat(toString(string), n);
|
||
}
|
||
function replace() {
|
||
var args = arguments, string = toString(args[0]);
|
||
return args.length < 3 ? string : string.replace(args[1], args[2]);
|
||
}
|
||
var snakeCase = createCompounder(function(result2, word, index) {
|
||
return result2 + (index ? "_" : "") + word.toLowerCase();
|
||
});
|
||
function split(string, separator, limit) {
|
||
if (limit && typeof limit != "number" && isIterateeCall(string, separator, limit)) {
|
||
separator = limit = undefined2;
|
||
}
|
||
limit = limit === undefined2 ? MAX_ARRAY_LENGTH : limit >>> 0;
|
||
if (!limit) {
|
||
return [];
|
||
}
|
||
string = toString(string);
|
||
if (string && (typeof separator == "string" || separator != null && !isRegExp(separator))) {
|
||
separator = baseToString(separator);
|
||
if (!separator && hasUnicode(string)) {
|
||
return castSlice(stringToArray(string), 0, limit);
|
||
}
|
||
}
|
||
return string.split(separator, limit);
|
||
}
|
||
var startCase = createCompounder(function(result2, word, index) {
|
||
return result2 + (index ? " " : "") + upperFirst(word);
|
||
});
|
||
function startsWith(string, target, position) {
|
||
string = toString(string);
|
||
position = position == null ? 0 : baseClamp(toInteger(position), 0, string.length);
|
||
target = baseToString(target);
|
||
return string.slice(position, position + target.length) == target;
|
||
}
|
||
function template(string, options, guard) {
|
||
var settings = lodash.templateSettings;
|
||
if (guard && isIterateeCall(string, options, guard)) {
|
||
options = undefined2;
|
||
}
|
||
string = toString(string);
|
||
options = assignInWith({}, options, settings, customDefaultsAssignIn);
|
||
var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn), importsKeys = keys(imports), importsValues = baseValues(imports, importsKeys);
|
||
var isEscaping, isEvaluating, index = 0, interpolate = options.interpolate || reNoMatch, source = "__p += '";
|
||
var reDelimiters = RegExp2(
|
||
(options.escape || reNoMatch).source + "|" + interpolate.source + "|" + (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + "|" + (options.evaluate || reNoMatch).source + "|$",
|
||
"g"
|
||
);
|
||
var sourceURL = "//# sourceURL=" + (hasOwnProperty.call(options, "sourceURL") ? (options.sourceURL + "").replace(/\s/g, " ") : "lodash.templateSources[" + ++templateCounter + "]") + "\n";
|
||
string.replace(reDelimiters, function(match, escapeValue, interpolateValue, esTemplateValue, evaluateValue, offset) {
|
||
interpolateValue || (interpolateValue = esTemplateValue);
|
||
source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar);
|
||
if (escapeValue) {
|
||
isEscaping = true;
|
||
source += "' +\n__e(" + escapeValue + ") +\n'";
|
||
}
|
||
if (evaluateValue) {
|
||
isEvaluating = true;
|
||
source += "';\n" + evaluateValue + ";\n__p += '";
|
||
}
|
||
if (interpolateValue) {
|
||
source += "' +\n((__t = (" + interpolateValue + ")) == null ? '' : __t) +\n'";
|
||
}
|
||
index = offset + match.length;
|
||
return match;
|
||
});
|
||
source += "';\n";
|
||
var variable = hasOwnProperty.call(options, "variable") && options.variable;
|
||
if (!variable) {
|
||
source = "with (obj) {\n" + source + "\n}\n";
|
||
} else if (reForbiddenIdentifierChars.test(variable)) {
|
||
throw new Error2(INVALID_TEMPL_VAR_ERROR_TEXT);
|
||
}
|
||
source = (isEvaluating ? source.replace(reEmptyStringLeading, "") : source).replace(reEmptyStringMiddle, "$1").replace(reEmptyStringTrailing, "$1;");
|
||
source = "function(" + (variable || "obj") + ") {\n" + (variable ? "" : "obj || (obj = {});\n") + "var __t, __p = ''" + (isEscaping ? ", __e = _.escape" : "") + (isEvaluating ? ", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n" : ";\n") + source + "return __p\n}";
|
||
var result2 = attempt(function() {
|
||
return Function2(importsKeys, sourceURL + "return " + source).apply(undefined2, importsValues);
|
||
});
|
||
result2.source = source;
|
||
if (isError(result2)) {
|
||
throw result2;
|
||
}
|
||
return result2;
|
||
}
|
||
function toLower(value) {
|
||
return toString(value).toLowerCase();
|
||
}
|
||
function toUpper(value) {
|
||
return toString(value).toUpperCase();
|
||
}
|
||
function trim(string, chars, guard) {
|
||
string = toString(string);
|
||
if (string && (guard || chars === undefined2)) {
|
||
return baseTrim(string);
|
||
}
|
||
if (!string || !(chars = baseToString(chars))) {
|
||
return string;
|
||
}
|
||
var strSymbols = stringToArray(string), chrSymbols = stringToArray(chars), start = charsStartIndex(strSymbols, chrSymbols), end = charsEndIndex(strSymbols, chrSymbols) + 1;
|
||
return castSlice(strSymbols, start, end).join("");
|
||
}
|
||
function trimEnd(string, chars, guard) {
|
||
string = toString(string);
|
||
if (string && (guard || chars === undefined2)) {
|
||
return string.slice(0, trimmedEndIndex(string) + 1);
|
||
}
|
||
if (!string || !(chars = baseToString(chars))) {
|
||
return string;
|
||
}
|
||
var strSymbols = stringToArray(string), end = charsEndIndex(strSymbols, stringToArray(chars)) + 1;
|
||
return castSlice(strSymbols, 0, end).join("");
|
||
}
|
||
function trimStart(string, chars, guard) {
|
||
string = toString(string);
|
||
if (string && (guard || chars === undefined2)) {
|
||
return string.replace(reTrimStart, "");
|
||
}
|
||
if (!string || !(chars = baseToString(chars))) {
|
||
return string;
|
||
}
|
||
var strSymbols = stringToArray(string), start = charsStartIndex(strSymbols, stringToArray(chars));
|
||
return castSlice(strSymbols, start).join("");
|
||
}
|
||
function truncate(string, options) {
|
||
var length = DEFAULT_TRUNC_LENGTH, omission = DEFAULT_TRUNC_OMISSION;
|
||
if (isObject(options)) {
|
||
var separator = "separator" in options ? options.separator : separator;
|
||
length = "length" in options ? toInteger(options.length) : length;
|
||
omission = "omission" in options ? baseToString(options.omission) : omission;
|
||
}
|
||
string = toString(string);
|
||
var strLength = string.length;
|
||
if (hasUnicode(string)) {
|
||
var strSymbols = stringToArray(string);
|
||
strLength = strSymbols.length;
|
||
}
|
||
if (length >= strLength) {
|
||
return string;
|
||
}
|
||
var end = length - stringSize(omission);
|
||
if (end < 1) {
|
||
return omission;
|
||
}
|
||
var result2 = strSymbols ? castSlice(strSymbols, 0, end).join("") : string.slice(0, end);
|
||
if (separator === undefined2) {
|
||
return result2 + omission;
|
||
}
|
||
if (strSymbols) {
|
||
end += result2.length - end;
|
||
}
|
||
if (isRegExp(separator)) {
|
||
if (string.slice(end).search(separator)) {
|
||
var match, substring = result2;
|
||
if (!separator.global) {
|
||
separator = RegExp2(separator.source, toString(reFlags.exec(separator)) + "g");
|
||
}
|
||
separator.lastIndex = 0;
|
||
while (match = separator.exec(substring)) {
|
||
var newEnd = match.index;
|
||
}
|
||
result2 = result2.slice(0, newEnd === undefined2 ? end : newEnd);
|
||
}
|
||
} else if (string.indexOf(baseToString(separator), end) != end) {
|
||
var index = result2.lastIndexOf(separator);
|
||
if (index > -1) {
|
||
result2 = result2.slice(0, index);
|
||
}
|
||
}
|
||
return result2 + omission;
|
||
}
|
||
function unescape(string) {
|
||
string = toString(string);
|
||
return string && reHasEscapedHtml.test(string) ? string.replace(reEscapedHtml, unescapeHtmlChar) : string;
|
||
}
|
||
var upperCase = createCompounder(function(result2, word, index) {
|
||
return result2 + (index ? " " : "") + word.toUpperCase();
|
||
});
|
||
var upperFirst = createCaseFirst("toUpperCase");
|
||
function words(string, pattern, guard) {
|
||
string = toString(string);
|
||
pattern = guard ? undefined2 : pattern;
|
||
if (pattern === undefined2) {
|
||
return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string);
|
||
}
|
||
return string.match(pattern) || [];
|
||
}
|
||
var attempt = baseRest(function(func, args) {
|
||
try {
|
||
return apply(func, undefined2, args);
|
||
} catch (e) {
|
||
return isError(e) ? e : new Error2(e);
|
||
}
|
||
});
|
||
var bindAll = flatRest(function(object, methodNames) {
|
||
arrayEach(methodNames, function(key) {
|
||
key = toKey(key);
|
||
baseAssignValue(object, key, bind(object[key], object));
|
||
});
|
||
return object;
|
||
});
|
||
function cond(pairs) {
|
||
var length = pairs == null ? 0 : pairs.length, toIteratee = getIteratee();
|
||
pairs = !length ? [] : arrayMap(pairs, function(pair) {
|
||
if (typeof pair[1] != "function") {
|
||
throw new TypeError2(FUNC_ERROR_TEXT);
|
||
}
|
||
return [toIteratee(pair[0]), pair[1]];
|
||
});
|
||
return baseRest(function(args) {
|
||
var index = -1;
|
||
while (++index < length) {
|
||
var pair = pairs[index];
|
||
if (apply(pair[0], this, args)) {
|
||
return apply(pair[1], this, args);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
function conforms(source) {
|
||
return baseConforms(baseClone(source, CLONE_DEEP_FLAG));
|
||
}
|
||
function constant(value) {
|
||
return function() {
|
||
return value;
|
||
};
|
||
}
|
||
function defaultTo(value, defaultValue) {
|
||
return value == null || value !== value ? defaultValue : value;
|
||
}
|
||
var flow = createFlow();
|
||
var flowRight = createFlow(true);
|
||
function identity(value) {
|
||
return value;
|
||
}
|
||
function iteratee(func) {
|
||
return baseIteratee(typeof func == "function" ? func : baseClone(func, CLONE_DEEP_FLAG));
|
||
}
|
||
function matches(source) {
|
||
return baseMatches(baseClone(source, CLONE_DEEP_FLAG));
|
||
}
|
||
function matchesProperty(path, srcValue) {
|
||
return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));
|
||
}
|
||
var method = baseRest(function(path, args) {
|
||
return function(object) {
|
||
return baseInvoke(object, path, args);
|
||
};
|
||
});
|
||
var methodOf = baseRest(function(object, args) {
|
||
return function(path) {
|
||
return baseInvoke(object, path, args);
|
||
};
|
||
});
|
||
function mixin(object, source, options) {
|
||
var props = keys(source), methodNames = baseFunctions(source, props);
|
||
if (options == null && !(isObject(source) && (methodNames.length || !props.length))) {
|
||
options = source;
|
||
source = object;
|
||
object = this;
|
||
methodNames = baseFunctions(source, keys(source));
|
||
}
|
||
var chain2 = !(isObject(options) && "chain" in options) || !!options.chain, isFunc = isFunction(object);
|
||
arrayEach(methodNames, function(methodName) {
|
||
var func = source[methodName];
|
||
object[methodName] = func;
|
||
if (isFunc) {
|
||
object.prototype[methodName] = function() {
|
||
var chainAll = this.__chain__;
|
||
if (chain2 || chainAll) {
|
||
var result2 = object(this.__wrapped__), actions = result2.__actions__ = copyArray(this.__actions__);
|
||
actions.push({ "func": func, "args": arguments, "thisArg": object });
|
||
result2.__chain__ = chainAll;
|
||
return result2;
|
||
}
|
||
return func.apply(object, arrayPush([this.value()], arguments));
|
||
};
|
||
}
|
||
});
|
||
return object;
|
||
}
|
||
function noConflict() {
|
||
if (root._ === this) {
|
||
root._ = oldDash;
|
||
}
|
||
return this;
|
||
}
|
||
function noop2() {
|
||
}
|
||
function nthArg(n) {
|
||
n = toInteger(n);
|
||
return baseRest(function(args) {
|
||
return baseNth(args, n);
|
||
});
|
||
}
|
||
var over = createOver(arrayMap);
|
||
var overEvery = createOver(arrayEvery);
|
||
var overSome = createOver(arraySome);
|
||
function property(path) {
|
||
return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);
|
||
}
|
||
function propertyOf(object) {
|
||
return function(path) {
|
||
return object == null ? undefined2 : baseGet(object, path);
|
||
};
|
||
}
|
||
var range = createRange();
|
||
var rangeRight = createRange(true);
|
||
function stubArray() {
|
||
return [];
|
||
}
|
||
function stubFalse() {
|
||
return false;
|
||
}
|
||
function stubObject() {
|
||
return {};
|
||
}
|
||
function stubString() {
|
||
return "";
|
||
}
|
||
function stubTrue() {
|
||
return true;
|
||
}
|
||
function times(n, iteratee2) {
|
||
n = toInteger(n);
|
||
if (n < 1 || n > MAX_SAFE_INTEGER) {
|
||
return [];
|
||
}
|
||
var index = MAX_ARRAY_LENGTH, length = nativeMin(n, MAX_ARRAY_LENGTH);
|
||
iteratee2 = getIteratee(iteratee2);
|
||
n -= MAX_ARRAY_LENGTH;
|
||
var result2 = baseTimes(length, iteratee2);
|
||
while (++index < n) {
|
||
iteratee2(index);
|
||
}
|
||
return result2;
|
||
}
|
||
function toPath(value) {
|
||
if (isArray(value)) {
|
||
return arrayMap(value, toKey);
|
||
}
|
||
return isSymbol(value) ? [value] : copyArray(stringToPath(toString(value)));
|
||
}
|
||
function uniqueId(prefix2) {
|
||
var id = ++idCounter;
|
||
return toString(prefix2) + id;
|
||
}
|
||
var add = createMathOperation(function(augend, addend) {
|
||
return augend + addend;
|
||
}, 0);
|
||
var ceil = createRound("ceil");
|
||
var divide = createMathOperation(function(dividend, divisor) {
|
||
return dividend / divisor;
|
||
}, 1);
|
||
var floor = createRound("floor");
|
||
function max(array) {
|
||
return array && array.length ? baseExtremum(array, identity, baseGt) : undefined2;
|
||
}
|
||
function maxBy(array, iteratee2) {
|
||
return array && array.length ? baseExtremum(array, getIteratee(iteratee2, 2), baseGt) : undefined2;
|
||
}
|
||
function mean(array) {
|
||
return baseMean(array, identity);
|
||
}
|
||
function meanBy(array, iteratee2) {
|
||
return baseMean(array, getIteratee(iteratee2, 2));
|
||
}
|
||
function min(array) {
|
||
return array && array.length ? baseExtremum(array, identity, baseLt) : undefined2;
|
||
}
|
||
function minBy(array, iteratee2) {
|
||
return array && array.length ? baseExtremum(array, getIteratee(iteratee2, 2), baseLt) : undefined2;
|
||
}
|
||
var multiply = createMathOperation(function(multiplier, multiplicand) {
|
||
return multiplier * multiplicand;
|
||
}, 1);
|
||
var round = createRound("round");
|
||
var subtract = createMathOperation(function(minuend, subtrahend) {
|
||
return minuend - subtrahend;
|
||
}, 0);
|
||
function sum(array) {
|
||
return array && array.length ? baseSum(array, identity) : 0;
|
||
}
|
||
function sumBy(array, iteratee2) {
|
||
return array && array.length ? baseSum(array, getIteratee(iteratee2, 2)) : 0;
|
||
}
|
||
lodash.after = after;
|
||
lodash.ary = ary;
|
||
lodash.assign = assign;
|
||
lodash.assignIn = assignIn;
|
||
lodash.assignInWith = assignInWith;
|
||
lodash.assignWith = assignWith;
|
||
lodash.at = at;
|
||
lodash.before = before;
|
||
lodash.bind = bind;
|
||
lodash.bindAll = bindAll;
|
||
lodash.bindKey = bindKey;
|
||
lodash.castArray = castArray;
|
||
lodash.chain = chain;
|
||
lodash.chunk = chunk;
|
||
lodash.compact = compact;
|
||
lodash.concat = concat;
|
||
lodash.cond = cond;
|
||
lodash.conforms = conforms;
|
||
lodash.constant = constant;
|
||
lodash.countBy = countBy;
|
||
lodash.create = create2;
|
||
lodash.curry = curry;
|
||
lodash.curryRight = curryRight;
|
||
lodash.debounce = debounce;
|
||
lodash.defaults = defaults;
|
||
lodash.defaultsDeep = defaultsDeep;
|
||
lodash.defer = defer;
|
||
lodash.delay = delay;
|
||
lodash.difference = difference;
|
||
lodash.differenceBy = differenceBy;
|
||
lodash.differenceWith = differenceWith;
|
||
lodash.drop = drop;
|
||
lodash.dropRight = dropRight;
|
||
lodash.dropRightWhile = dropRightWhile;
|
||
lodash.dropWhile = dropWhile;
|
||
lodash.fill = fill;
|
||
lodash.filter = filter;
|
||
lodash.flatMap = flatMap;
|
||
lodash.flatMapDeep = flatMapDeep;
|
||
lodash.flatMapDepth = flatMapDepth;
|
||
lodash.flatten = flatten;
|
||
lodash.flattenDeep = flattenDeep;
|
||
lodash.flattenDepth = flattenDepth;
|
||
lodash.flip = flip;
|
||
lodash.flow = flow;
|
||
lodash.flowRight = flowRight;
|
||
lodash.fromPairs = fromPairs;
|
||
lodash.functions = functions;
|
||
lodash.functionsIn = functionsIn;
|
||
lodash.groupBy = groupBy;
|
||
lodash.initial = initial;
|
||
lodash.intersection = intersection;
|
||
lodash.intersectionBy = intersectionBy;
|
||
lodash.intersectionWith = intersectionWith;
|
||
lodash.invert = invert;
|
||
lodash.invertBy = invertBy;
|
||
lodash.invokeMap = invokeMap;
|
||
lodash.iteratee = iteratee;
|
||
lodash.keyBy = keyBy;
|
||
lodash.keys = keys;
|
||
lodash.keysIn = keysIn;
|
||
lodash.map = map;
|
||
lodash.mapKeys = mapKeys;
|
||
lodash.mapValues = mapValues;
|
||
lodash.matches = matches;
|
||
lodash.matchesProperty = matchesProperty;
|
||
lodash.memoize = memoize;
|
||
lodash.merge = merge;
|
||
lodash.mergeWith = mergeWith;
|
||
lodash.method = method;
|
||
lodash.methodOf = methodOf;
|
||
lodash.mixin = mixin;
|
||
lodash.negate = negate;
|
||
lodash.nthArg = nthArg;
|
||
lodash.omit = omit;
|
||
lodash.omitBy = omitBy;
|
||
lodash.once = once;
|
||
lodash.orderBy = orderBy;
|
||
lodash.over = over;
|
||
lodash.overArgs = overArgs;
|
||
lodash.overEvery = overEvery;
|
||
lodash.overSome = overSome;
|
||
lodash.partial = partial;
|
||
lodash.partialRight = partialRight;
|
||
lodash.partition = partition;
|
||
lodash.pick = pick;
|
||
lodash.pickBy = pickBy;
|
||
lodash.property = property;
|
||
lodash.propertyOf = propertyOf;
|
||
lodash.pull = pull;
|
||
lodash.pullAll = pullAll;
|
||
lodash.pullAllBy = pullAllBy;
|
||
lodash.pullAllWith = pullAllWith;
|
||
lodash.pullAt = pullAt;
|
||
lodash.range = range;
|
||
lodash.rangeRight = rangeRight;
|
||
lodash.rearg = rearg;
|
||
lodash.reject = reject;
|
||
lodash.remove = remove;
|
||
lodash.rest = rest;
|
||
lodash.reverse = reverse;
|
||
lodash.sampleSize = sampleSize;
|
||
lodash.set = set2;
|
||
lodash.setWith = setWith;
|
||
lodash.shuffle = shuffle;
|
||
lodash.slice = slice;
|
||
lodash.sortBy = sortBy;
|
||
lodash.sortedUniq = sortedUniq;
|
||
lodash.sortedUniqBy = sortedUniqBy;
|
||
lodash.split = split;
|
||
lodash.spread = spread;
|
||
lodash.tail = tail;
|
||
lodash.take = take;
|
||
lodash.takeRight = takeRight;
|
||
lodash.takeRightWhile = takeRightWhile;
|
||
lodash.takeWhile = takeWhile;
|
||
lodash.tap = tap;
|
||
lodash.throttle = throttle;
|
||
lodash.thru = thru;
|
||
lodash.toArray = toArray;
|
||
lodash.toPairs = toPairs;
|
||
lodash.toPairsIn = toPairsIn;
|
||
lodash.toPath = toPath;
|
||
lodash.toPlainObject = toPlainObject;
|
||
lodash.transform = transform;
|
||
lodash.unary = unary;
|
||
lodash.union = union;
|
||
lodash.unionBy = unionBy;
|
||
lodash.unionWith = unionWith;
|
||
lodash.uniq = uniq;
|
||
lodash.uniqBy = uniqBy;
|
||
lodash.uniqWith = uniqWith;
|
||
lodash.unset = unset;
|
||
lodash.unzip = unzip;
|
||
lodash.unzipWith = unzipWith;
|
||
lodash.update = update;
|
||
lodash.updateWith = updateWith;
|
||
lodash.values = values;
|
||
lodash.valuesIn = valuesIn;
|
||
lodash.without = without;
|
||
lodash.words = words;
|
||
lodash.wrap = wrap;
|
||
lodash.xor = xor;
|
||
lodash.xorBy = xorBy;
|
||
lodash.xorWith = xorWith;
|
||
lodash.zip = zip;
|
||
lodash.zipObject = zipObject;
|
||
lodash.zipObjectDeep = zipObjectDeep;
|
||
lodash.zipWith = zipWith;
|
||
lodash.entries = toPairs;
|
||
lodash.entriesIn = toPairsIn;
|
||
lodash.extend = assignIn;
|
||
lodash.extendWith = assignInWith;
|
||
mixin(lodash, lodash);
|
||
lodash.add = add;
|
||
lodash.attempt = attempt;
|
||
lodash.camelCase = camelCase;
|
||
lodash.capitalize = capitalize;
|
||
lodash.ceil = ceil;
|
||
lodash.clamp = clamp;
|
||
lodash.clone = clone;
|
||
lodash.cloneDeep = cloneDeep;
|
||
lodash.cloneDeepWith = cloneDeepWith;
|
||
lodash.cloneWith = cloneWith;
|
||
lodash.conformsTo = conformsTo;
|
||
lodash.deburr = deburr;
|
||
lodash.defaultTo = defaultTo;
|
||
lodash.divide = divide;
|
||
lodash.endsWith = endsWith;
|
||
lodash.eq = eq;
|
||
lodash.escape = escape;
|
||
lodash.escapeRegExp = escapeRegExp;
|
||
lodash.every = every;
|
||
lodash.find = find;
|
||
lodash.findIndex = findIndex;
|
||
lodash.findKey = findKey;
|
||
lodash.findLast = findLast;
|
||
lodash.findLastIndex = findLastIndex;
|
||
lodash.findLastKey = findLastKey;
|
||
lodash.floor = floor;
|
||
lodash.forEach = forEach;
|
||
lodash.forEachRight = forEachRight;
|
||
lodash.forIn = forIn;
|
||
lodash.forInRight = forInRight;
|
||
lodash.forOwn = forOwn;
|
||
lodash.forOwnRight = forOwnRight;
|
||
lodash.get = get;
|
||
lodash.gt = gt;
|
||
lodash.gte = gte;
|
||
lodash.has = has2;
|
||
lodash.hasIn = hasIn;
|
||
lodash.head = head;
|
||
lodash.identity = identity;
|
||
lodash.includes = includes;
|
||
lodash.indexOf = indexOf;
|
||
lodash.inRange = inRange;
|
||
lodash.invoke = invoke;
|
||
lodash.isArguments = isArguments;
|
||
lodash.isArray = isArray;
|
||
lodash.isArrayBuffer = isArrayBuffer;
|
||
lodash.isArrayLike = isArrayLike;
|
||
lodash.isArrayLikeObject = isArrayLikeObject;
|
||
lodash.isBoolean = isBoolean;
|
||
lodash.isBuffer = isBuffer;
|
||
lodash.isDate = isDate;
|
||
lodash.isElement = isElement;
|
||
lodash.isEmpty = isEmpty;
|
||
lodash.isEqual = isEqual;
|
||
lodash.isEqualWith = isEqualWith;
|
||
lodash.isError = isError;
|
||
lodash.isFinite = isFinite2;
|
||
lodash.isFunction = isFunction;
|
||
lodash.isInteger = isInteger;
|
||
lodash.isLength = isLength;
|
||
lodash.isMap = isMap2;
|
||
lodash.isMatch = isMatch;
|
||
lodash.isMatchWith = isMatchWith;
|
||
lodash.isNaN = isNaN2;
|
||
lodash.isNative = isNative;
|
||
lodash.isNil = isNil;
|
||
lodash.isNull = isNull;
|
||
lodash.isNumber = isNumber;
|
||
lodash.isObject = isObject;
|
||
lodash.isObjectLike = isObjectLike;
|
||
lodash.isPlainObject = isPlainObject2;
|
||
lodash.isRegExp = isRegExp;
|
||
lodash.isSafeInteger = isSafeInteger;
|
||
lodash.isSet = isSet2;
|
||
lodash.isString = isString;
|
||
lodash.isSymbol = isSymbol;
|
||
lodash.isTypedArray = isTypedArray;
|
||
lodash.isUndefined = isUndefined;
|
||
lodash.isWeakMap = isWeakMap;
|
||
lodash.isWeakSet = isWeakSet;
|
||
lodash.join = join;
|
||
lodash.kebabCase = kebabCase;
|
||
lodash.last = last;
|
||
lodash.lastIndexOf = lastIndexOf;
|
||
lodash.lowerCase = lowerCase;
|
||
lodash.lowerFirst = lowerFirst;
|
||
lodash.lt = lt;
|
||
lodash.lte = lte;
|
||
lodash.max = max;
|
||
lodash.maxBy = maxBy;
|
||
lodash.mean = mean;
|
||
lodash.meanBy = meanBy;
|
||
lodash.min = min;
|
||
lodash.minBy = minBy;
|
||
lodash.stubArray = stubArray;
|
||
lodash.stubFalse = stubFalse;
|
||
lodash.stubObject = stubObject;
|
||
lodash.stubString = stubString;
|
||
lodash.stubTrue = stubTrue;
|
||
lodash.multiply = multiply;
|
||
lodash.nth = nth;
|
||
lodash.noConflict = noConflict;
|
||
lodash.noop = noop2;
|
||
lodash.now = now;
|
||
lodash.pad = pad;
|
||
lodash.padEnd = padEnd;
|
||
lodash.padStart = padStart;
|
||
lodash.parseInt = parseInt2;
|
||
lodash.random = random;
|
||
lodash.reduce = reduce;
|
||
lodash.reduceRight = reduceRight;
|
||
lodash.repeat = repeat;
|
||
lodash.replace = replace;
|
||
lodash.result = result;
|
||
lodash.round = round;
|
||
lodash.runInContext = runInContext2;
|
||
lodash.sample = sample;
|
||
lodash.size = size;
|
||
lodash.snakeCase = snakeCase;
|
||
lodash.some = some;
|
||
lodash.sortedIndex = sortedIndex;
|
||
lodash.sortedIndexBy = sortedIndexBy;
|
||
lodash.sortedIndexOf = sortedIndexOf;
|
||
lodash.sortedLastIndex = sortedLastIndex;
|
||
lodash.sortedLastIndexBy = sortedLastIndexBy;
|
||
lodash.sortedLastIndexOf = sortedLastIndexOf;
|
||
lodash.startCase = startCase;
|
||
lodash.startsWith = startsWith;
|
||
lodash.subtract = subtract;
|
||
lodash.sum = sum;
|
||
lodash.sumBy = sumBy;
|
||
lodash.template = template;
|
||
lodash.times = times;
|
||
lodash.toFinite = toFinite;
|
||
lodash.toInteger = toInteger;
|
||
lodash.toLength = toLength;
|
||
lodash.toLower = toLower;
|
||
lodash.toNumber = toNumber;
|
||
lodash.toSafeInteger = toSafeInteger;
|
||
lodash.toString = toString;
|
||
lodash.toUpper = toUpper;
|
||
lodash.trim = trim;
|
||
lodash.trimEnd = trimEnd;
|
||
lodash.trimStart = trimStart;
|
||
lodash.truncate = truncate;
|
||
lodash.unescape = unescape;
|
||
lodash.uniqueId = uniqueId;
|
||
lodash.upperCase = upperCase;
|
||
lodash.upperFirst = upperFirst;
|
||
lodash.each = forEach;
|
||
lodash.eachRight = forEachRight;
|
||
lodash.first = head;
|
||
mixin(lodash, function() {
|
||
var source = {};
|
||
baseForOwn(lodash, function(func, methodName) {
|
||
if (!hasOwnProperty.call(lodash.prototype, methodName)) {
|
||
source[methodName] = func;
|
||
}
|
||
});
|
||
return source;
|
||
}(), { "chain": false });
|
||
lodash.VERSION = VERSION;
|
||
arrayEach(["bind", "bindKey", "curry", "curryRight", "partial", "partialRight"], function(methodName) {
|
||
lodash[methodName].placeholder = lodash;
|
||
});
|
||
arrayEach(["drop", "take"], function(methodName, index) {
|
||
LazyWrapper.prototype[methodName] = function(n) {
|
||
n = n === undefined2 ? 1 : nativeMax(toInteger(n), 0);
|
||
var result2 = this.__filtered__ && !index ? new LazyWrapper(this) : this.clone();
|
||
if (result2.__filtered__) {
|
||
result2.__takeCount__ = nativeMin(n, result2.__takeCount__);
|
||
} else {
|
||
result2.__views__.push({
|
||
"size": nativeMin(n, MAX_ARRAY_LENGTH),
|
||
"type": methodName + (result2.__dir__ < 0 ? "Right" : "")
|
||
});
|
||
}
|
||
return result2;
|
||
};
|
||
LazyWrapper.prototype[methodName + "Right"] = function(n) {
|
||
return this.reverse()[methodName](n).reverse();
|
||
};
|
||
});
|
||
arrayEach(["filter", "map", "takeWhile"], function(methodName, index) {
|
||
var type = index + 1, isFilter = type == LAZY_FILTER_FLAG || type == LAZY_WHILE_FLAG;
|
||
LazyWrapper.prototype[methodName] = function(iteratee2) {
|
||
var result2 = this.clone();
|
||
result2.__iteratees__.push({
|
||
"iteratee": getIteratee(iteratee2, 3),
|
||
"type": type
|
||
});
|
||
result2.__filtered__ = result2.__filtered__ || isFilter;
|
||
return result2;
|
||
};
|
||
});
|
||
arrayEach(["head", "last"], function(methodName, index) {
|
||
var takeName = "take" + (index ? "Right" : "");
|
||
LazyWrapper.prototype[methodName] = function() {
|
||
return this[takeName](1).value()[0];
|
||
};
|
||
});
|
||
arrayEach(["initial", "tail"], function(methodName, index) {
|
||
var dropName = "drop" + (index ? "" : "Right");
|
||
LazyWrapper.prototype[methodName] = function() {
|
||
return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);
|
||
};
|
||
});
|
||
LazyWrapper.prototype.compact = function() {
|
||
return this.filter(identity);
|
||
};
|
||
LazyWrapper.prototype.find = function(predicate) {
|
||
return this.filter(predicate).head();
|
||
};
|
||
LazyWrapper.prototype.findLast = function(predicate) {
|
||
return this.reverse().find(predicate);
|
||
};
|
||
LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {
|
||
if (typeof path == "function") {
|
||
return new LazyWrapper(this);
|
||
}
|
||
return this.map(function(value) {
|
||
return baseInvoke(value, path, args);
|
||
});
|
||
});
|
||
LazyWrapper.prototype.reject = function(predicate) {
|
||
return this.filter(negate(getIteratee(predicate)));
|
||
};
|
||
LazyWrapper.prototype.slice = function(start, end) {
|
||
start = toInteger(start);
|
||
var result2 = this;
|
||
if (result2.__filtered__ && (start > 0 || end < 0)) {
|
||
return new LazyWrapper(result2);
|
||
}
|
||
if (start < 0) {
|
||
result2 = result2.takeRight(-start);
|
||
} else if (start) {
|
||
result2 = result2.drop(start);
|
||
}
|
||
if (end !== undefined2) {
|
||
end = toInteger(end);
|
||
result2 = end < 0 ? result2.dropRight(-end) : result2.take(end - start);
|
||
}
|
||
return result2;
|
||
};
|
||
LazyWrapper.prototype.takeRightWhile = function(predicate) {
|
||
return this.reverse().takeWhile(predicate).reverse();
|
||
};
|
||
LazyWrapper.prototype.toArray = function() {
|
||
return this.take(MAX_ARRAY_LENGTH);
|
||
};
|
||
baseForOwn(LazyWrapper.prototype, function(func, methodName) {
|
||
var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), isTaker = /^(?:head|last)$/.test(methodName), lodashFunc = lodash[isTaker ? "take" + (methodName == "last" ? "Right" : "") : methodName], retUnwrapped = isTaker || /^find/.test(methodName);
|
||
if (!lodashFunc) {
|
||
return;
|
||
}
|
||
lodash.prototype[methodName] = function() {
|
||
var value = this.__wrapped__, args = isTaker ? [1] : arguments, isLazy = value instanceof LazyWrapper, iteratee2 = args[0], useLazy = isLazy || isArray(value);
|
||
var interceptor = function(value2) {
|
||
var result3 = lodashFunc.apply(lodash, arrayPush([value2], args));
|
||
return isTaker && chainAll ? result3[0] : result3;
|
||
};
|
||
if (useLazy && checkIteratee && typeof iteratee2 == "function" && iteratee2.length != 1) {
|
||
isLazy = useLazy = false;
|
||
}
|
||
var chainAll = this.__chain__, isHybrid = !!this.__actions__.length, isUnwrapped = retUnwrapped && !chainAll, onlyLazy = isLazy && !isHybrid;
|
||
if (!retUnwrapped && useLazy) {
|
||
value = onlyLazy ? value : new LazyWrapper(this);
|
||
var result2 = func.apply(value, args);
|
||
result2.__actions__.push({ "func": thru, "args": [interceptor], "thisArg": undefined2 });
|
||
return new LodashWrapper(result2, chainAll);
|
||
}
|
||
if (isUnwrapped && onlyLazy) {
|
||
return func.apply(this, args);
|
||
}
|
||
result2 = this.thru(interceptor);
|
||
return isUnwrapped ? isTaker ? result2.value()[0] : result2.value() : result2;
|
||
};
|
||
});
|
||
arrayEach(["pop", "push", "shift", "sort", "splice", "unshift"], function(methodName) {
|
||
var func = arrayProto[methodName], chainName = /^(?:push|sort|unshift)$/.test(methodName) ? "tap" : "thru", retUnwrapped = /^(?:pop|shift)$/.test(methodName);
|
||
lodash.prototype[methodName] = function() {
|
||
var args = arguments;
|
||
if (retUnwrapped && !this.__chain__) {
|
||
var value = this.value();
|
||
return func.apply(isArray(value) ? value : [], args);
|
||
}
|
||
return this[chainName](function(value2) {
|
||
return func.apply(isArray(value2) ? value2 : [], args);
|
||
});
|
||
};
|
||
});
|
||
baseForOwn(LazyWrapper.prototype, function(func, methodName) {
|
||
var lodashFunc = lodash[methodName];
|
||
if (lodashFunc) {
|
||
var key = lodashFunc.name + "";
|
||
if (!hasOwnProperty.call(realNames, key)) {
|
||
realNames[key] = [];
|
||
}
|
||
realNames[key].push({ "name": methodName, "func": lodashFunc });
|
||
}
|
||
});
|
||
realNames[createHybrid(undefined2, WRAP_BIND_KEY_FLAG).name] = [{
|
||
"name": "wrapper",
|
||
"func": undefined2
|
||
}];
|
||
LazyWrapper.prototype.clone = lazyClone;
|
||
LazyWrapper.prototype.reverse = lazyReverse;
|
||
LazyWrapper.prototype.value = lazyValue;
|
||
lodash.prototype.at = wrapperAt;
|
||
lodash.prototype.chain = wrapperChain;
|
||
lodash.prototype.commit = wrapperCommit;
|
||
lodash.prototype.next = wrapperNext;
|
||
lodash.prototype.plant = wrapperPlant;
|
||
lodash.prototype.reverse = wrapperReverse;
|
||
lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;
|
||
lodash.prototype.first = lodash.prototype.head;
|
||
if (symIterator) {
|
||
lodash.prototype[symIterator] = wrapperToIterator;
|
||
}
|
||
return lodash;
|
||
};
|
||
var _3 = runInContext();
|
||
if (typeof define == "function" && typeof define.amd == "object" && define.amd) {
|
||
root._ = _3;
|
||
define(function() {
|
||
return _3;
|
||
});
|
||
} else if (freeModule) {
|
||
(freeModule.exports = _3)._ = _3;
|
||
freeExports._ = _3;
|
||
} else {
|
||
root._ = _3;
|
||
}
|
||
}).call(exports);
|
||
}
|
||
});
|
||
|
||
// node_modules/scheduler/cjs/scheduler.development.js
|
||
var require_scheduler_development = __commonJS({
|
||
"node_modules/scheduler/cjs/scheduler.development.js"(exports) {
|
||
"use strict";
|
||
if (true) {
|
||
(function() {
|
||
"use strict";
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
|
||
}
|
||
var enableSchedulerDebugging = false;
|
||
var enableProfiling = false;
|
||
var frameYieldMs = 5;
|
||
function push(heap, node) {
|
||
var index = heap.length;
|
||
heap.push(node);
|
||
siftUp(heap, node, index);
|
||
}
|
||
function peek2(heap) {
|
||
return heap.length === 0 ? null : heap[0];
|
||
}
|
||
function pop(heap) {
|
||
if (heap.length === 0) {
|
||
return null;
|
||
}
|
||
var first = heap[0];
|
||
var last = heap.pop();
|
||
if (last !== first) {
|
||
heap[0] = last;
|
||
siftDown(heap, last, 0);
|
||
}
|
||
return first;
|
||
}
|
||
function siftUp(heap, node, i) {
|
||
var index = i;
|
||
while (index > 0) {
|
||
var parentIndex = index - 1 >>> 1;
|
||
var parent = heap[parentIndex];
|
||
if (compare(parent, node) > 0) {
|
||
heap[parentIndex] = node;
|
||
heap[index] = parent;
|
||
index = parentIndex;
|
||
} else {
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
function siftDown(heap, node, i) {
|
||
var index = i;
|
||
var length = heap.length;
|
||
var halfLength = length >>> 1;
|
||
while (index < halfLength) {
|
||
var leftIndex = (index + 1) * 2 - 1;
|
||
var left = heap[leftIndex];
|
||
var rightIndex = leftIndex + 1;
|
||
var right = heap[rightIndex];
|
||
if (compare(left, node) < 0) {
|
||
if (rightIndex < length && compare(right, left) < 0) {
|
||
heap[index] = right;
|
||
heap[rightIndex] = node;
|
||
index = rightIndex;
|
||
} else {
|
||
heap[index] = left;
|
||
heap[leftIndex] = node;
|
||
index = leftIndex;
|
||
}
|
||
} else if (rightIndex < length && compare(right, node) < 0) {
|
||
heap[index] = right;
|
||
heap[rightIndex] = node;
|
||
index = rightIndex;
|
||
} else {
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
function compare(a, b) {
|
||
var diff = a.sortIndex - b.sortIndex;
|
||
return diff !== 0 ? diff : a.id - b.id;
|
||
}
|
||
var ImmediatePriority = 1;
|
||
var UserBlockingPriority = 2;
|
||
var NormalPriority = 3;
|
||
var LowPriority = 4;
|
||
var IdlePriority = 5;
|
||
function markTaskErrored(task, ms) {
|
||
}
|
||
var hasPerformanceNow = typeof performance === "object" && typeof performance.now === "function";
|
||
if (hasPerformanceNow) {
|
||
var localPerformance = performance;
|
||
exports.unstable_now = function() {
|
||
return localPerformance.now();
|
||
};
|
||
} else {
|
||
var localDate = Date;
|
||
var initialTime = localDate.now();
|
||
exports.unstable_now = function() {
|
||
return localDate.now() - initialTime;
|
||
};
|
||
}
|
||
var maxSigned31BitInt = 1073741823;
|
||
var IMMEDIATE_PRIORITY_TIMEOUT = -1;
|
||
var USER_BLOCKING_PRIORITY_TIMEOUT = 250;
|
||
var NORMAL_PRIORITY_TIMEOUT = 5e3;
|
||
var LOW_PRIORITY_TIMEOUT = 1e4;
|
||
var IDLE_PRIORITY_TIMEOUT = maxSigned31BitInt;
|
||
var taskQueue = [];
|
||
var timerQueue = [];
|
||
var taskIdCounter = 1;
|
||
var currentTask = null;
|
||
var currentPriorityLevel = NormalPriority;
|
||
var isPerformingWork = false;
|
||
var isHostCallbackScheduled = false;
|
||
var isHostTimeoutScheduled = false;
|
||
var localSetTimeout = typeof setTimeout === "function" ? setTimeout : null;
|
||
var localClearTimeout = typeof clearTimeout === "function" ? clearTimeout : null;
|
||
var localSetImmediate = typeof setImmediate !== "undefined" ? setImmediate : null;
|
||
var isInputPending = typeof navigator !== "undefined" && navigator.scheduling !== void 0 && navigator.scheduling.isInputPending !== void 0 ? navigator.scheduling.isInputPending.bind(navigator.scheduling) : null;
|
||
function advanceTimers(currentTime) {
|
||
var timer = peek2(timerQueue);
|
||
while (timer !== null) {
|
||
if (timer.callback === null) {
|
||
pop(timerQueue);
|
||
} else if (timer.startTime <= currentTime) {
|
||
pop(timerQueue);
|
||
timer.sortIndex = timer.expirationTime;
|
||
push(taskQueue, timer);
|
||
} else {
|
||
return;
|
||
}
|
||
timer = peek2(timerQueue);
|
||
}
|
||
}
|
||
function handleTimeout(currentTime) {
|
||
isHostTimeoutScheduled = false;
|
||
advanceTimers(currentTime);
|
||
if (!isHostCallbackScheduled) {
|
||
if (peek2(taskQueue) !== null) {
|
||
isHostCallbackScheduled = true;
|
||
requestHostCallback(flushWork);
|
||
} else {
|
||
var firstTimer = peek2(timerQueue);
|
||
if (firstTimer !== null) {
|
||
requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function flushWork(hasTimeRemaining, initialTime2) {
|
||
isHostCallbackScheduled = false;
|
||
if (isHostTimeoutScheduled) {
|
||
isHostTimeoutScheduled = false;
|
||
cancelHostTimeout();
|
||
}
|
||
isPerformingWork = true;
|
||
var previousPriorityLevel = currentPriorityLevel;
|
||
try {
|
||
if (enableProfiling) {
|
||
try {
|
||
return workLoop(hasTimeRemaining, initialTime2);
|
||
} catch (error) {
|
||
if (currentTask !== null) {
|
||
var currentTime = exports.unstable_now();
|
||
markTaskErrored(currentTask, currentTime);
|
||
currentTask.isQueued = false;
|
||
}
|
||
throw error;
|
||
}
|
||
} else {
|
||
return workLoop(hasTimeRemaining, initialTime2);
|
||
}
|
||
} finally {
|
||
currentTask = null;
|
||
currentPriorityLevel = previousPriorityLevel;
|
||
isPerformingWork = false;
|
||
}
|
||
}
|
||
function workLoop(hasTimeRemaining, initialTime2) {
|
||
var currentTime = initialTime2;
|
||
advanceTimers(currentTime);
|
||
currentTask = peek2(taskQueue);
|
||
while (currentTask !== null && !enableSchedulerDebugging) {
|
||
if (currentTask.expirationTime > currentTime && (!hasTimeRemaining || shouldYieldToHost())) {
|
||
break;
|
||
}
|
||
var callback = currentTask.callback;
|
||
if (typeof callback === "function") {
|
||
currentTask.callback = null;
|
||
currentPriorityLevel = currentTask.priorityLevel;
|
||
var didUserCallbackTimeout = currentTask.expirationTime <= currentTime;
|
||
var continuationCallback = callback(didUserCallbackTimeout);
|
||
currentTime = exports.unstable_now();
|
||
if (typeof continuationCallback === "function") {
|
||
currentTask.callback = continuationCallback;
|
||
} else {
|
||
if (currentTask === peek2(taskQueue)) {
|
||
pop(taskQueue);
|
||
}
|
||
}
|
||
advanceTimers(currentTime);
|
||
} else {
|
||
pop(taskQueue);
|
||
}
|
||
currentTask = peek2(taskQueue);
|
||
}
|
||
if (currentTask !== null) {
|
||
return true;
|
||
} else {
|
||
var firstTimer = peek2(timerQueue);
|
||
if (firstTimer !== null) {
|
||
requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
function unstable_runWithPriority(priorityLevel, eventHandler) {
|
||
switch (priorityLevel) {
|
||
case ImmediatePriority:
|
||
case UserBlockingPriority:
|
||
case NormalPriority:
|
||
case LowPriority:
|
||
case IdlePriority:
|
||
break;
|
||
default:
|
||
priorityLevel = NormalPriority;
|
||
}
|
||
var previousPriorityLevel = currentPriorityLevel;
|
||
currentPriorityLevel = priorityLevel;
|
||
try {
|
||
return eventHandler();
|
||
} finally {
|
||
currentPriorityLevel = previousPriorityLevel;
|
||
}
|
||
}
|
||
function unstable_next(eventHandler) {
|
||
var priorityLevel;
|
||
switch (currentPriorityLevel) {
|
||
case ImmediatePriority:
|
||
case UserBlockingPriority:
|
||
case NormalPriority:
|
||
priorityLevel = NormalPriority;
|
||
break;
|
||
default:
|
||
priorityLevel = currentPriorityLevel;
|
||
break;
|
||
}
|
||
var previousPriorityLevel = currentPriorityLevel;
|
||
currentPriorityLevel = priorityLevel;
|
||
try {
|
||
return eventHandler();
|
||
} finally {
|
||
currentPriorityLevel = previousPriorityLevel;
|
||
}
|
||
}
|
||
function unstable_wrapCallback(callback) {
|
||
var parentPriorityLevel = currentPriorityLevel;
|
||
return function() {
|
||
var previousPriorityLevel = currentPriorityLevel;
|
||
currentPriorityLevel = parentPriorityLevel;
|
||
try {
|
||
return callback.apply(this, arguments);
|
||
} finally {
|
||
currentPriorityLevel = previousPriorityLevel;
|
||
}
|
||
};
|
||
}
|
||
function unstable_scheduleCallback(priorityLevel, callback, options) {
|
||
var currentTime = exports.unstable_now();
|
||
var startTime2;
|
||
if (typeof options === "object" && options !== null) {
|
||
var delay = options.delay;
|
||
if (typeof delay === "number" && delay > 0) {
|
||
startTime2 = currentTime + delay;
|
||
} else {
|
||
startTime2 = currentTime;
|
||
}
|
||
} else {
|
||
startTime2 = currentTime;
|
||
}
|
||
var timeout2;
|
||
switch (priorityLevel) {
|
||
case ImmediatePriority:
|
||
timeout2 = IMMEDIATE_PRIORITY_TIMEOUT;
|
||
break;
|
||
case UserBlockingPriority:
|
||
timeout2 = USER_BLOCKING_PRIORITY_TIMEOUT;
|
||
break;
|
||
case IdlePriority:
|
||
timeout2 = IDLE_PRIORITY_TIMEOUT;
|
||
break;
|
||
case LowPriority:
|
||
timeout2 = LOW_PRIORITY_TIMEOUT;
|
||
break;
|
||
case NormalPriority:
|
||
default:
|
||
timeout2 = NORMAL_PRIORITY_TIMEOUT;
|
||
break;
|
||
}
|
||
var expirationTime = startTime2 + timeout2;
|
||
var newTask = {
|
||
id: taskIdCounter++,
|
||
callback,
|
||
priorityLevel,
|
||
startTime: startTime2,
|
||
expirationTime,
|
||
sortIndex: -1
|
||
};
|
||
if (startTime2 > currentTime) {
|
||
newTask.sortIndex = startTime2;
|
||
push(timerQueue, newTask);
|
||
if (peek2(taskQueue) === null && newTask === peek2(timerQueue)) {
|
||
if (isHostTimeoutScheduled) {
|
||
cancelHostTimeout();
|
||
} else {
|
||
isHostTimeoutScheduled = true;
|
||
}
|
||
requestHostTimeout(handleTimeout, startTime2 - currentTime);
|
||
}
|
||
} else {
|
||
newTask.sortIndex = expirationTime;
|
||
push(taskQueue, newTask);
|
||
if (!isHostCallbackScheduled && !isPerformingWork) {
|
||
isHostCallbackScheduled = true;
|
||
requestHostCallback(flushWork);
|
||
}
|
||
}
|
||
return newTask;
|
||
}
|
||
function unstable_pauseExecution() {
|
||
}
|
||
function unstable_continueExecution() {
|
||
if (!isHostCallbackScheduled && !isPerformingWork) {
|
||
isHostCallbackScheduled = true;
|
||
requestHostCallback(flushWork);
|
||
}
|
||
}
|
||
function unstable_getFirstCallbackNode() {
|
||
return peek2(taskQueue);
|
||
}
|
||
function unstable_cancelCallback(task) {
|
||
task.callback = null;
|
||
}
|
||
function unstable_getCurrentPriorityLevel() {
|
||
return currentPriorityLevel;
|
||
}
|
||
var isMessageLoopRunning = false;
|
||
var scheduledHostCallback = null;
|
||
var taskTimeoutID = -1;
|
||
var frameInterval = frameYieldMs;
|
||
var startTime = -1;
|
||
function shouldYieldToHost() {
|
||
var timeElapsed = exports.unstable_now() - startTime;
|
||
if (timeElapsed < frameInterval) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
function requestPaint() {
|
||
}
|
||
function forceFrameRate(fps) {
|
||
if (fps < 0 || fps > 125) {
|
||
console["error"]("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported");
|
||
return;
|
||
}
|
||
if (fps > 0) {
|
||
frameInterval = Math.floor(1e3 / fps);
|
||
} else {
|
||
frameInterval = frameYieldMs;
|
||
}
|
||
}
|
||
var performWorkUntilDeadline = function() {
|
||
if (scheduledHostCallback !== null) {
|
||
var currentTime = exports.unstable_now();
|
||
startTime = currentTime;
|
||
var hasTimeRemaining = true;
|
||
var hasMoreWork = true;
|
||
try {
|
||
hasMoreWork = scheduledHostCallback(hasTimeRemaining, currentTime);
|
||
} finally {
|
||
if (hasMoreWork) {
|
||
schedulePerformWorkUntilDeadline();
|
||
} else {
|
||
isMessageLoopRunning = false;
|
||
scheduledHostCallback = null;
|
||
}
|
||
}
|
||
} else {
|
||
isMessageLoopRunning = false;
|
||
}
|
||
};
|
||
var schedulePerformWorkUntilDeadline;
|
||
if (typeof localSetImmediate === "function") {
|
||
schedulePerformWorkUntilDeadline = function() {
|
||
localSetImmediate(performWorkUntilDeadline);
|
||
};
|
||
} else if (typeof MessageChannel !== "undefined") {
|
||
var channel = new MessageChannel();
|
||
var port = channel.port2;
|
||
channel.port1.onmessage = performWorkUntilDeadline;
|
||
schedulePerformWorkUntilDeadline = function() {
|
||
port.postMessage(null);
|
||
};
|
||
} else {
|
||
schedulePerformWorkUntilDeadline = function() {
|
||
localSetTimeout(performWorkUntilDeadline, 0);
|
||
};
|
||
}
|
||
function requestHostCallback(callback) {
|
||
scheduledHostCallback = callback;
|
||
if (!isMessageLoopRunning) {
|
||
isMessageLoopRunning = true;
|
||
schedulePerformWorkUntilDeadline();
|
||
}
|
||
}
|
||
function requestHostTimeout(callback, ms) {
|
||
taskTimeoutID = localSetTimeout(function() {
|
||
callback(exports.unstable_now());
|
||
}, ms);
|
||
}
|
||
function cancelHostTimeout() {
|
||
localClearTimeout(taskTimeoutID);
|
||
taskTimeoutID = -1;
|
||
}
|
||
var unstable_requestPaint = requestPaint;
|
||
var unstable_Profiling = null;
|
||
exports.unstable_IdlePriority = IdlePriority;
|
||
exports.unstable_ImmediatePriority = ImmediatePriority;
|
||
exports.unstable_LowPriority = LowPriority;
|
||
exports.unstable_NormalPriority = NormalPriority;
|
||
exports.unstable_Profiling = unstable_Profiling;
|
||
exports.unstable_UserBlockingPriority = UserBlockingPriority;
|
||
exports.unstable_cancelCallback = unstable_cancelCallback;
|
||
exports.unstable_continueExecution = unstable_continueExecution;
|
||
exports.unstable_forceFrameRate = forceFrameRate;
|
||
exports.unstable_getCurrentPriorityLevel = unstable_getCurrentPriorityLevel;
|
||
exports.unstable_getFirstCallbackNode = unstable_getFirstCallbackNode;
|
||
exports.unstable_next = unstable_next;
|
||
exports.unstable_pauseExecution = unstable_pauseExecution;
|
||
exports.unstable_requestPaint = unstable_requestPaint;
|
||
exports.unstable_runWithPriority = unstable_runWithPriority;
|
||
exports.unstable_scheduleCallback = unstable_scheduleCallback;
|
||
exports.unstable_shouldYield = shouldYieldToHost;
|
||
exports.unstable_wrapCallback = unstable_wrapCallback;
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
||
}
|
||
})();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/scheduler/index.js
|
||
var require_scheduler = __commonJS({
|
||
"node_modules/scheduler/index.js"(exports, module2) {
|
||
"use strict";
|
||
if (false) {
|
||
module2.exports = null;
|
||
} else {
|
||
module2.exports = require_scheduler_development();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/react-dom/cjs/react-dom.development.js
|
||
var require_react_dom_development = __commonJS({
|
||
"node_modules/react-dom/cjs/react-dom.development.js"(exports) {
|
||
"use strict";
|
||
if (true) {
|
||
(function() {
|
||
"use strict";
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
|
||
}
|
||
var React3 = require_react();
|
||
var Scheduler = require_scheduler();
|
||
var ReactSharedInternals = React3.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
||
var suppressWarning = false;
|
||
function setSuppressWarning(newSuppressWarning) {
|
||
{
|
||
suppressWarning = newSuppressWarning;
|
||
}
|
||
}
|
||
function warn(format) {
|
||
{
|
||
if (!suppressWarning) {
|
||
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||
args[_key - 1] = arguments[_key];
|
||
}
|
||
printWarning("warn", format, args);
|
||
}
|
||
}
|
||
}
|
||
function error(format) {
|
||
{
|
||
if (!suppressWarning) {
|
||
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
||
args[_key2 - 1] = arguments[_key2];
|
||
}
|
||
printWarning("error", format, args);
|
||
}
|
||
}
|
||
}
|
||
function printWarning(level, format, args) {
|
||
{
|
||
var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
var stack = ReactDebugCurrentFrame2.getStackAddendum();
|
||
if (stack !== "") {
|
||
format += "%s";
|
||
args = args.concat([stack]);
|
||
}
|
||
var argsWithFormat = args.map(function(item) {
|
||
return String(item);
|
||
});
|
||
argsWithFormat.unshift("Warning: " + format);
|
||
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
||
}
|
||
}
|
||
var FunctionComponent = 0;
|
||
var ClassComponent = 1;
|
||
var IndeterminateComponent = 2;
|
||
var HostRoot = 3;
|
||
var HostPortal = 4;
|
||
var HostComponent = 5;
|
||
var HostText = 6;
|
||
var Fragment3 = 7;
|
||
var Mode = 8;
|
||
var ContextConsumer = 9;
|
||
var ContextProvider = 10;
|
||
var ForwardRef = 11;
|
||
var Profiler = 12;
|
||
var SuspenseComponent = 13;
|
||
var MemoComponent = 14;
|
||
var SimpleMemoComponent = 15;
|
||
var LazyComponent = 16;
|
||
var IncompleteClassComponent = 17;
|
||
var DehydratedFragment = 18;
|
||
var SuspenseListComponent = 19;
|
||
var ScopeComponent = 21;
|
||
var OffscreenComponent = 22;
|
||
var LegacyHiddenComponent = 23;
|
||
var CacheComponent = 24;
|
||
var TracingMarkerComponent = 25;
|
||
var enableClientRenderFallbackOnTextMismatch = true;
|
||
var enableNewReconciler = false;
|
||
var enableLazyContextPropagation = false;
|
||
var enableLegacyHidden = false;
|
||
var enableSuspenseAvoidThisFallback = false;
|
||
var disableCommentsAsDOMContainers = true;
|
||
var enableCustomElementPropertySupport = false;
|
||
var warnAboutStringRefs = false;
|
||
var enableSchedulingProfiler = true;
|
||
var enableProfilerTimer = true;
|
||
var enableProfilerCommitHooks = true;
|
||
var allNativeEvents = /* @__PURE__ */ new Set();
|
||
var registrationNameDependencies = {};
|
||
var possibleRegistrationNames = {};
|
||
function registerTwoPhaseEvent(registrationName, dependencies) {
|
||
registerDirectEvent(registrationName, dependencies);
|
||
registerDirectEvent(registrationName + "Capture", dependencies);
|
||
}
|
||
function registerDirectEvent(registrationName, dependencies) {
|
||
{
|
||
if (registrationNameDependencies[registrationName]) {
|
||
error("EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.", registrationName);
|
||
}
|
||
}
|
||
registrationNameDependencies[registrationName] = dependencies;
|
||
{
|
||
var lowerCasedName = registrationName.toLowerCase();
|
||
possibleRegistrationNames[lowerCasedName] = registrationName;
|
||
if (registrationName === "onDoubleClick") {
|
||
possibleRegistrationNames.ondblclick = registrationName;
|
||
}
|
||
}
|
||
for (var i = 0; i < dependencies.length; i++) {
|
||
allNativeEvents.add(dependencies[i]);
|
||
}
|
||
}
|
||
var canUseDOM = !!(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined");
|
||
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
||
function typeName(value) {
|
||
{
|
||
var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
|
||
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
||
return type;
|
||
}
|
||
}
|
||
function willCoercionThrow(value) {
|
||
{
|
||
try {
|
||
testStringCoercion(value);
|
||
return false;
|
||
} catch (e) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
function testStringCoercion(value) {
|
||
return "" + value;
|
||
}
|
||
function checkAttributeStringCoercion(value, attributeName) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before before using it here.", attributeName, typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
function checkKeyStringCoercion(value) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
function checkPropStringCoercion(value, propName) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("The provided `%s` prop is an unsupported type %s. This value must be coerced to a string before before using it here.", propName, typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
function checkCSSPropertyStringCoercion(value, propName) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before before using it here.", propName, typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
function checkHtmlStringCoercion(value) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
function checkFormFieldValueStringCoercion(value) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before before using it here.", typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
var RESERVED = 0;
|
||
var STRING = 1;
|
||
var BOOLEANISH_STRING = 2;
|
||
var BOOLEAN = 3;
|
||
var OVERLOADED_BOOLEAN = 4;
|
||
var NUMERIC = 5;
|
||
var POSITIVE_NUMERIC = 6;
|
||
var ATTRIBUTE_NAME_START_CHAR = ":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD";
|
||
var ATTRIBUTE_NAME_CHAR = ATTRIBUTE_NAME_START_CHAR + "\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040";
|
||
var VALID_ATTRIBUTE_NAME_REGEX = new RegExp("^[" + ATTRIBUTE_NAME_START_CHAR + "][" + ATTRIBUTE_NAME_CHAR + "]*$");
|
||
var illegalAttributeNameCache = {};
|
||
var validatedAttributeNameCache = {};
|
||
function isAttributeNameSafe(attributeName) {
|
||
if (hasOwnProperty.call(validatedAttributeNameCache, attributeName)) {
|
||
return true;
|
||
}
|
||
if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) {
|
||
return false;
|
||
}
|
||
if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) {
|
||
validatedAttributeNameCache[attributeName] = true;
|
||
return true;
|
||
}
|
||
illegalAttributeNameCache[attributeName] = true;
|
||
{
|
||
error("Invalid attribute name: `%s`", attributeName);
|
||
}
|
||
return false;
|
||
}
|
||
function shouldIgnoreAttribute(name, propertyInfo, isCustomComponentTag) {
|
||
if (propertyInfo !== null) {
|
||
return propertyInfo.type === RESERVED;
|
||
}
|
||
if (isCustomComponentTag) {
|
||
return false;
|
||
}
|
||
if (name.length > 2 && (name[0] === "o" || name[0] === "O") && (name[1] === "n" || name[1] === "N")) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
function shouldRemoveAttributeWithWarning(name, value, propertyInfo, isCustomComponentTag) {
|
||
if (propertyInfo !== null && propertyInfo.type === RESERVED) {
|
||
return false;
|
||
}
|
||
switch (typeof value) {
|
||
case "function":
|
||
case "symbol":
|
||
return true;
|
||
case "boolean": {
|
||
if (isCustomComponentTag) {
|
||
return false;
|
||
}
|
||
if (propertyInfo !== null) {
|
||
return !propertyInfo.acceptsBooleans;
|
||
} else {
|
||
var prefix3 = name.toLowerCase().slice(0, 5);
|
||
return prefix3 !== "data-" && prefix3 !== "aria-";
|
||
}
|
||
}
|
||
default:
|
||
return false;
|
||
}
|
||
}
|
||
function shouldRemoveAttribute(name, value, propertyInfo, isCustomComponentTag) {
|
||
if (value === null || typeof value === "undefined") {
|
||
return true;
|
||
}
|
||
if (shouldRemoveAttributeWithWarning(name, value, propertyInfo, isCustomComponentTag)) {
|
||
return true;
|
||
}
|
||
if (isCustomComponentTag) {
|
||
return false;
|
||
}
|
||
if (propertyInfo !== null) {
|
||
switch (propertyInfo.type) {
|
||
case BOOLEAN:
|
||
return !value;
|
||
case OVERLOADED_BOOLEAN:
|
||
return value === false;
|
||
case NUMERIC:
|
||
return isNaN(value);
|
||
case POSITIVE_NUMERIC:
|
||
return isNaN(value) || value < 1;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function getPropertyInfo(name) {
|
||
return properties.hasOwnProperty(name) ? properties[name] : null;
|
||
}
|
||
function PropertyInfoRecord(name, type, mustUseProperty, attributeName, attributeNamespace, sanitizeURL2, removeEmptyString) {
|
||
this.acceptsBooleans = type === BOOLEANISH_STRING || type === BOOLEAN || type === OVERLOADED_BOOLEAN;
|
||
this.attributeName = attributeName;
|
||
this.attributeNamespace = attributeNamespace;
|
||
this.mustUseProperty = mustUseProperty;
|
||
this.propertyName = name;
|
||
this.type = type;
|
||
this.sanitizeURL = sanitizeURL2;
|
||
this.removeEmptyString = removeEmptyString;
|
||
}
|
||
var properties = {};
|
||
var reservedProps = [
|
||
"children",
|
||
"dangerouslySetInnerHTML",
|
||
// TODO: This prevents the assignment of defaultValue to regular
|
||
// elements (not just inputs). Now that ReactDOMInput assigns to the
|
||
// defaultValue property -- do we need this?
|
||
"defaultValue",
|
||
"defaultChecked",
|
||
"innerHTML",
|
||
"suppressContentEditableWarning",
|
||
"suppressHydrationWarning",
|
||
"style"
|
||
];
|
||
reservedProps.forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
RESERVED,
|
||
false,
|
||
// mustUseProperty
|
||
name,
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
[["acceptCharset", "accept-charset"], ["className", "class"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"]].forEach(function(_ref) {
|
||
var name = _ref[0], attributeName = _ref[1];
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
STRING,
|
||
false,
|
||
// mustUseProperty
|
||
attributeName,
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
["contentEditable", "draggable", "spellCheck", "value"].forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
BOOLEANISH_STRING,
|
||
false,
|
||
// mustUseProperty
|
||
name.toLowerCase(),
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
["autoReverse", "externalResourcesRequired", "focusable", "preserveAlpha"].forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
BOOLEANISH_STRING,
|
||
false,
|
||
// mustUseProperty
|
||
name,
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
[
|
||
"allowFullScreen",
|
||
"async",
|
||
// Note: there is a special case that prevents it from being written to the DOM
|
||
// on the client side because the browsers are inconsistent. Instead we call focus().
|
||
"autoFocus",
|
||
"autoPlay",
|
||
"controls",
|
||
"default",
|
||
"defer",
|
||
"disabled",
|
||
"disablePictureInPicture",
|
||
"disableRemotePlayback",
|
||
"formNoValidate",
|
||
"hidden",
|
||
"loop",
|
||
"noModule",
|
||
"noValidate",
|
||
"open",
|
||
"playsInline",
|
||
"readOnly",
|
||
"required",
|
||
"reversed",
|
||
"scoped",
|
||
"seamless",
|
||
// Microdata
|
||
"itemScope"
|
||
].forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
BOOLEAN,
|
||
false,
|
||
// mustUseProperty
|
||
name.toLowerCase(),
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
[
|
||
"checked",
|
||
// Note: `option.selected` is not updated if `select.multiple` is
|
||
// disabled with `removeAttribute`. We have special logic for handling this.
|
||
"multiple",
|
||
"muted",
|
||
"selected"
|
||
// NOTE: if you add a camelCased prop to this list,
|
||
// you'll need to set attributeName to name.toLowerCase()
|
||
// instead in the assignment below.
|
||
].forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
BOOLEAN,
|
||
true,
|
||
// mustUseProperty
|
||
name,
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
[
|
||
"capture",
|
||
"download"
|
||
// NOTE: if you add a camelCased prop to this list,
|
||
// you'll need to set attributeName to name.toLowerCase()
|
||
// instead in the assignment below.
|
||
].forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
OVERLOADED_BOOLEAN,
|
||
false,
|
||
// mustUseProperty
|
||
name,
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
[
|
||
"cols",
|
||
"rows",
|
||
"size",
|
||
"span"
|
||
// NOTE: if you add a camelCased prop to this list,
|
||
// you'll need to set attributeName to name.toLowerCase()
|
||
// instead in the assignment below.
|
||
].forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
POSITIVE_NUMERIC,
|
||
false,
|
||
// mustUseProperty
|
||
name,
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
["rowSpan", "start"].forEach(function(name) {
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
NUMERIC,
|
||
false,
|
||
// mustUseProperty
|
||
name.toLowerCase(),
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
var CAMELIZE = /[\-\:]([a-z])/g;
|
||
var capitalize = function(token) {
|
||
return token[1].toUpperCase();
|
||
};
|
||
[
|
||
"accent-height",
|
||
"alignment-baseline",
|
||
"arabic-form",
|
||
"baseline-shift",
|
||
"cap-height",
|
||
"clip-path",
|
||
"clip-rule",
|
||
"color-interpolation",
|
||
"color-interpolation-filters",
|
||
"color-profile",
|
||
"color-rendering",
|
||
"dominant-baseline",
|
||
"enable-background",
|
||
"fill-opacity",
|
||
"fill-rule",
|
||
"flood-color",
|
||
"flood-opacity",
|
||
"font-family",
|
||
"font-size",
|
||
"font-size-adjust",
|
||
"font-stretch",
|
||
"font-style",
|
||
"font-variant",
|
||
"font-weight",
|
||
"glyph-name",
|
||
"glyph-orientation-horizontal",
|
||
"glyph-orientation-vertical",
|
||
"horiz-adv-x",
|
||
"horiz-origin-x",
|
||
"image-rendering",
|
||
"letter-spacing",
|
||
"lighting-color",
|
||
"marker-end",
|
||
"marker-mid",
|
||
"marker-start",
|
||
"overline-position",
|
||
"overline-thickness",
|
||
"paint-order",
|
||
"panose-1",
|
||
"pointer-events",
|
||
"rendering-intent",
|
||
"shape-rendering",
|
||
"stop-color",
|
||
"stop-opacity",
|
||
"strikethrough-position",
|
||
"strikethrough-thickness",
|
||
"stroke-dasharray",
|
||
"stroke-dashoffset",
|
||
"stroke-linecap",
|
||
"stroke-linejoin",
|
||
"stroke-miterlimit",
|
||
"stroke-opacity",
|
||
"stroke-width",
|
||
"text-anchor",
|
||
"text-decoration",
|
||
"text-rendering",
|
||
"underline-position",
|
||
"underline-thickness",
|
||
"unicode-bidi",
|
||
"unicode-range",
|
||
"units-per-em",
|
||
"v-alphabetic",
|
||
"v-hanging",
|
||
"v-ideographic",
|
||
"v-mathematical",
|
||
"vector-effect",
|
||
"vert-adv-y",
|
||
"vert-origin-x",
|
||
"vert-origin-y",
|
||
"word-spacing",
|
||
"writing-mode",
|
||
"xmlns:xlink",
|
||
"x-height"
|
||
// NOTE: if you add a camelCased prop to this list,
|
||
// you'll need to set attributeName to name.toLowerCase()
|
||
// instead in the assignment below.
|
||
].forEach(function(attributeName) {
|
||
var name = attributeName.replace(CAMELIZE, capitalize);
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
STRING,
|
||
false,
|
||
// mustUseProperty
|
||
attributeName,
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
[
|
||
"xlink:actuate",
|
||
"xlink:arcrole",
|
||
"xlink:role",
|
||
"xlink:show",
|
||
"xlink:title",
|
||
"xlink:type"
|
||
// NOTE: if you add a camelCased prop to this list,
|
||
// you'll need to set attributeName to name.toLowerCase()
|
||
// instead in the assignment below.
|
||
].forEach(function(attributeName) {
|
||
var name = attributeName.replace(CAMELIZE, capitalize);
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
STRING,
|
||
false,
|
||
// mustUseProperty
|
||
attributeName,
|
||
"http://www.w3.org/1999/xlink",
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
[
|
||
"xml:base",
|
||
"xml:lang",
|
||
"xml:space"
|
||
// NOTE: if you add a camelCased prop to this list,
|
||
// you'll need to set attributeName to name.toLowerCase()
|
||
// instead in the assignment below.
|
||
].forEach(function(attributeName) {
|
||
var name = attributeName.replace(CAMELIZE, capitalize);
|
||
properties[name] = new PropertyInfoRecord(
|
||
name,
|
||
STRING,
|
||
false,
|
||
// mustUseProperty
|
||
attributeName,
|
||
"http://www.w3.org/XML/1998/namespace",
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
["tabIndex", "crossOrigin"].forEach(function(attributeName) {
|
||
properties[attributeName] = new PropertyInfoRecord(
|
||
attributeName,
|
||
STRING,
|
||
false,
|
||
// mustUseProperty
|
||
attributeName.toLowerCase(),
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
false,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
});
|
||
var xlinkHref = "xlinkHref";
|
||
properties[xlinkHref] = new PropertyInfoRecord(
|
||
"xlinkHref",
|
||
STRING,
|
||
false,
|
||
// mustUseProperty
|
||
"xlink:href",
|
||
"http://www.w3.org/1999/xlink",
|
||
true,
|
||
// sanitizeURL
|
||
false
|
||
);
|
||
["src", "href", "action", "formAction"].forEach(function(attributeName) {
|
||
properties[attributeName] = new PropertyInfoRecord(
|
||
attributeName,
|
||
STRING,
|
||
false,
|
||
// mustUseProperty
|
||
attributeName.toLowerCase(),
|
||
// attributeName
|
||
null,
|
||
// attributeNamespace
|
||
true,
|
||
// sanitizeURL
|
||
true
|
||
);
|
||
});
|
||
var isJavaScriptProtocol = /^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*\:/i;
|
||
var didWarn = false;
|
||
function sanitizeURL(url) {
|
||
{
|
||
if (!didWarn && isJavaScriptProtocol.test(url)) {
|
||
didWarn = true;
|
||
error("A future version of React will block javascript: URLs as a security precaution. Use event handlers instead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s.", JSON.stringify(url));
|
||
}
|
||
}
|
||
}
|
||
function getValueForProperty(node, name, expected, propertyInfo) {
|
||
{
|
||
if (propertyInfo.mustUseProperty) {
|
||
var propertyName = propertyInfo.propertyName;
|
||
return node[propertyName];
|
||
} else {
|
||
{
|
||
checkAttributeStringCoercion(expected, name);
|
||
}
|
||
if (propertyInfo.sanitizeURL) {
|
||
sanitizeURL("" + expected);
|
||
}
|
||
var attributeName = propertyInfo.attributeName;
|
||
var stringValue = null;
|
||
if (propertyInfo.type === OVERLOADED_BOOLEAN) {
|
||
if (node.hasAttribute(attributeName)) {
|
||
var value = node.getAttribute(attributeName);
|
||
if (value === "") {
|
||
return true;
|
||
}
|
||
if (shouldRemoveAttribute(name, expected, propertyInfo, false)) {
|
||
return value;
|
||
}
|
||
if (value === "" + expected) {
|
||
return expected;
|
||
}
|
||
return value;
|
||
}
|
||
} else if (node.hasAttribute(attributeName)) {
|
||
if (shouldRemoveAttribute(name, expected, propertyInfo, false)) {
|
||
return node.getAttribute(attributeName);
|
||
}
|
||
if (propertyInfo.type === BOOLEAN) {
|
||
return expected;
|
||
}
|
||
stringValue = node.getAttribute(attributeName);
|
||
}
|
||
if (shouldRemoveAttribute(name, expected, propertyInfo, false)) {
|
||
return stringValue === null ? expected : stringValue;
|
||
} else if (stringValue === "" + expected) {
|
||
return expected;
|
||
} else {
|
||
return stringValue;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function getValueForAttribute(node, name, expected, isCustomComponentTag) {
|
||
{
|
||
if (!isAttributeNameSafe(name)) {
|
||
return;
|
||
}
|
||
if (!node.hasAttribute(name)) {
|
||
return expected === void 0 ? void 0 : null;
|
||
}
|
||
var value = node.getAttribute(name);
|
||
{
|
||
checkAttributeStringCoercion(expected, name);
|
||
}
|
||
if (value === "" + expected) {
|
||
return expected;
|
||
}
|
||
return value;
|
||
}
|
||
}
|
||
function setValueForProperty(node, name, value, isCustomComponentTag) {
|
||
var propertyInfo = getPropertyInfo(name);
|
||
if (shouldIgnoreAttribute(name, propertyInfo, isCustomComponentTag)) {
|
||
return;
|
||
}
|
||
if (shouldRemoveAttribute(name, value, propertyInfo, isCustomComponentTag)) {
|
||
value = null;
|
||
}
|
||
if (isCustomComponentTag || propertyInfo === null) {
|
||
if (isAttributeNameSafe(name)) {
|
||
var _attributeName = name;
|
||
if (value === null) {
|
||
node.removeAttribute(_attributeName);
|
||
} else {
|
||
{
|
||
checkAttributeStringCoercion(value, name);
|
||
}
|
||
node.setAttribute(_attributeName, "" + value);
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
var mustUseProperty = propertyInfo.mustUseProperty;
|
||
if (mustUseProperty) {
|
||
var propertyName = propertyInfo.propertyName;
|
||
if (value === null) {
|
||
var type = propertyInfo.type;
|
||
node[propertyName] = type === BOOLEAN ? false : "";
|
||
} else {
|
||
node[propertyName] = value;
|
||
}
|
||
return;
|
||
}
|
||
var attributeName = propertyInfo.attributeName, attributeNamespace = propertyInfo.attributeNamespace;
|
||
if (value === null) {
|
||
node.removeAttribute(attributeName);
|
||
} else {
|
||
var _type = propertyInfo.type;
|
||
var attributeValue;
|
||
if (_type === BOOLEAN || _type === OVERLOADED_BOOLEAN && value === true) {
|
||
attributeValue = "";
|
||
} else {
|
||
{
|
||
{
|
||
checkAttributeStringCoercion(value, attributeName);
|
||
}
|
||
attributeValue = "" + value;
|
||
}
|
||
if (propertyInfo.sanitizeURL) {
|
||
sanitizeURL(attributeValue.toString());
|
||
}
|
||
}
|
||
if (attributeNamespace) {
|
||
node.setAttributeNS(attributeNamespace, attributeName, attributeValue);
|
||
} else {
|
||
node.setAttribute(attributeName, attributeValue);
|
||
}
|
||
}
|
||
}
|
||
var REACT_ELEMENT_TYPE = Symbol.for("react.element");
|
||
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
||
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
||
var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
|
||
var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
||
var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
|
||
var REACT_CONTEXT_TYPE = Symbol.for("react.context");
|
||
var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
|
||
var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
|
||
var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
|
||
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
||
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
||
var REACT_SCOPE_TYPE = Symbol.for("react.scope");
|
||
var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode");
|
||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||
var REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden");
|
||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||
var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker");
|
||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
||
function getIteratorFn(maybeIterable) {
|
||
if (maybeIterable === null || typeof maybeIterable !== "object") {
|
||
return null;
|
||
}
|
||
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
||
if (typeof maybeIterator === "function") {
|
||
return maybeIterator;
|
||
}
|
||
return null;
|
||
}
|
||
var assign = Object.assign;
|
||
var disabledDepth = 0;
|
||
var prevLog;
|
||
var prevInfo;
|
||
var prevWarn;
|
||
var prevError;
|
||
var prevGroup;
|
||
var prevGroupCollapsed;
|
||
var prevGroupEnd;
|
||
function disabledLog() {
|
||
}
|
||
disabledLog.__reactDisabledLog = true;
|
||
function disableLogs() {
|
||
{
|
||
if (disabledDepth === 0) {
|
||
prevLog = console.log;
|
||
prevInfo = console.info;
|
||
prevWarn = console.warn;
|
||
prevError = console.error;
|
||
prevGroup = console.group;
|
||
prevGroupCollapsed = console.groupCollapsed;
|
||
prevGroupEnd = console.groupEnd;
|
||
var props = {
|
||
configurable: true,
|
||
enumerable: true,
|
||
value: disabledLog,
|
||
writable: true
|
||
};
|
||
Object.defineProperties(console, {
|
||
info: props,
|
||
log: props,
|
||
warn: props,
|
||
error: props,
|
||
group: props,
|
||
groupCollapsed: props,
|
||
groupEnd: props
|
||
});
|
||
}
|
||
disabledDepth++;
|
||
}
|
||
}
|
||
function reenableLogs() {
|
||
{
|
||
disabledDepth--;
|
||
if (disabledDepth === 0) {
|
||
var props = {
|
||
configurable: true,
|
||
enumerable: true,
|
||
writable: true
|
||
};
|
||
Object.defineProperties(console, {
|
||
log: assign({}, props, {
|
||
value: prevLog
|
||
}),
|
||
info: assign({}, props, {
|
||
value: prevInfo
|
||
}),
|
||
warn: assign({}, props, {
|
||
value: prevWarn
|
||
}),
|
||
error: assign({}, props, {
|
||
value: prevError
|
||
}),
|
||
group: assign({}, props, {
|
||
value: prevGroup
|
||
}),
|
||
groupCollapsed: assign({}, props, {
|
||
value: prevGroupCollapsed
|
||
}),
|
||
groupEnd: assign({}, props, {
|
||
value: prevGroupEnd
|
||
})
|
||
});
|
||
}
|
||
if (disabledDepth < 0) {
|
||
error("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
}
|
||
var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
|
||
var prefix2;
|
||
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
||
{
|
||
if (prefix2 === void 0) {
|
||
try {
|
||
throw Error();
|
||
} catch (x) {
|
||
var match = x.stack.trim().match(/\n( *(at )?)/);
|
||
prefix2 = match && match[1] || "";
|
||
}
|
||
}
|
||
return "\n" + prefix2 + name;
|
||
}
|
||
}
|
||
var reentry = false;
|
||
var componentFrameCache;
|
||
{
|
||
var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
|
||
componentFrameCache = new PossiblyWeakMap();
|
||
}
|
||
function describeNativeComponentFrame(fn, construct) {
|
||
if (!fn || reentry) {
|
||
return "";
|
||
}
|
||
{
|
||
var frame = componentFrameCache.get(fn);
|
||
if (frame !== void 0) {
|
||
return frame;
|
||
}
|
||
}
|
||
var control;
|
||
reentry = true;
|
||
var previousPrepareStackTrace = Error.prepareStackTrace;
|
||
Error.prepareStackTrace = void 0;
|
||
var previousDispatcher;
|
||
{
|
||
previousDispatcher = ReactCurrentDispatcher.current;
|
||
ReactCurrentDispatcher.current = null;
|
||
disableLogs();
|
||
}
|
||
try {
|
||
if (construct) {
|
||
var Fake = function() {
|
||
throw Error();
|
||
};
|
||
Object.defineProperty(Fake.prototype, "props", {
|
||
set: function() {
|
||
throw Error();
|
||
}
|
||
});
|
||
if (typeof Reflect === "object" && Reflect.construct) {
|
||
try {
|
||
Reflect.construct(Fake, []);
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
Reflect.construct(fn, [], Fake);
|
||
} else {
|
||
try {
|
||
Fake.call();
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
fn.call(Fake.prototype);
|
||
}
|
||
} else {
|
||
try {
|
||
throw Error();
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
fn();
|
||
}
|
||
} catch (sample) {
|
||
if (sample && control && typeof sample.stack === "string") {
|
||
var sampleLines = sample.stack.split("\n");
|
||
var controlLines = control.stack.split("\n");
|
||
var s = sampleLines.length - 1;
|
||
var c = controlLines.length - 1;
|
||
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
||
c--;
|
||
}
|
||
for (; s >= 1 && c >= 0; s--, c--) {
|
||
if (sampleLines[s] !== controlLines[c]) {
|
||
if (s !== 1 || c !== 1) {
|
||
do {
|
||
s--;
|
||
c--;
|
||
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
||
var _frame = "\n" + sampleLines[s].replace(" at new ", " at ");
|
||
if (fn.displayName && _frame.includes("<anonymous>")) {
|
||
_frame = _frame.replace("<anonymous>", fn.displayName);
|
||
}
|
||
{
|
||
if (typeof fn === "function") {
|
||
componentFrameCache.set(fn, _frame);
|
||
}
|
||
}
|
||
return _frame;
|
||
}
|
||
} while (s >= 1 && c >= 0);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
} finally {
|
||
reentry = false;
|
||
{
|
||
ReactCurrentDispatcher.current = previousDispatcher;
|
||
reenableLogs();
|
||
}
|
||
Error.prepareStackTrace = previousPrepareStackTrace;
|
||
}
|
||
var name = fn ? fn.displayName || fn.name : "";
|
||
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
|
||
{
|
||
if (typeof fn === "function") {
|
||
componentFrameCache.set(fn, syntheticFrame);
|
||
}
|
||
}
|
||
return syntheticFrame;
|
||
}
|
||
function describeClassComponentFrame(ctor, source, ownerFn) {
|
||
{
|
||
return describeNativeComponentFrame(ctor, true);
|
||
}
|
||
}
|
||
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
||
{
|
||
return describeNativeComponentFrame(fn, false);
|
||
}
|
||
}
|
||
function shouldConstruct(Component2) {
|
||
var prototype = Component2.prototype;
|
||
return !!(prototype && prototype.isReactComponent);
|
||
}
|
||
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
||
if (type == null) {
|
||
return "";
|
||
}
|
||
if (typeof type === "function") {
|
||
{
|
||
return describeNativeComponentFrame(type, shouldConstruct(type));
|
||
}
|
||
}
|
||
if (typeof type === "string") {
|
||
return describeBuiltInComponentFrame(type);
|
||
}
|
||
switch (type) {
|
||
case REACT_SUSPENSE_TYPE:
|
||
return describeBuiltInComponentFrame("Suspense");
|
||
case REACT_SUSPENSE_LIST_TYPE:
|
||
return describeBuiltInComponentFrame("SuspenseList");
|
||
}
|
||
if (typeof type === "object") {
|
||
switch (type.$$typeof) {
|
||
case REACT_FORWARD_REF_TYPE:
|
||
return describeFunctionComponentFrame(type.render);
|
||
case REACT_MEMO_TYPE:
|
||
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
||
case REACT_LAZY_TYPE: {
|
||
var lazyComponent = type;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
try {
|
||
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
||
} catch (x) {
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return "";
|
||
}
|
||
function describeFiber(fiber) {
|
||
var owner = fiber._debugOwner ? fiber._debugOwner.type : null;
|
||
var source = fiber._debugSource;
|
||
switch (fiber.tag) {
|
||
case HostComponent:
|
||
return describeBuiltInComponentFrame(fiber.type);
|
||
case LazyComponent:
|
||
return describeBuiltInComponentFrame("Lazy");
|
||
case SuspenseComponent:
|
||
return describeBuiltInComponentFrame("Suspense");
|
||
case SuspenseListComponent:
|
||
return describeBuiltInComponentFrame("SuspenseList");
|
||
case FunctionComponent:
|
||
case IndeterminateComponent:
|
||
case SimpleMemoComponent:
|
||
return describeFunctionComponentFrame(fiber.type);
|
||
case ForwardRef:
|
||
return describeFunctionComponentFrame(fiber.type.render);
|
||
case ClassComponent:
|
||
return describeClassComponentFrame(fiber.type);
|
||
default:
|
||
return "";
|
||
}
|
||
}
|
||
function getStackByFiberInDevAndProd(workInProgress2) {
|
||
try {
|
||
var info = "";
|
||
var node = workInProgress2;
|
||
do {
|
||
info += describeFiber(node);
|
||
node = node.return;
|
||
} while (node);
|
||
return info;
|
||
} catch (x) {
|
||
return "\nError generating stack: " + x.message + "\n" + x.stack;
|
||
}
|
||
}
|
||
function getWrappedName(outerType, innerType, wrapperName) {
|
||
var displayName = outerType.displayName;
|
||
if (displayName) {
|
||
return displayName;
|
||
}
|
||
var functionName = innerType.displayName || innerType.name || "";
|
||
return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
|
||
}
|
||
function getContextName(type) {
|
||
return type.displayName || "Context";
|
||
}
|
||
function getComponentNameFromType(type) {
|
||
if (type == null) {
|
||
return null;
|
||
}
|
||
{
|
||
if (typeof type.tag === "number") {
|
||
error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
if (typeof type === "function") {
|
||
return type.displayName || type.name || null;
|
||
}
|
||
if (typeof type === "string") {
|
||
return type;
|
||
}
|
||
switch (type) {
|
||
case REACT_FRAGMENT_TYPE:
|
||
return "Fragment";
|
||
case REACT_PORTAL_TYPE:
|
||
return "Portal";
|
||
case REACT_PROFILER_TYPE:
|
||
return "Profiler";
|
||
case REACT_STRICT_MODE_TYPE:
|
||
return "StrictMode";
|
||
case REACT_SUSPENSE_TYPE:
|
||
return "Suspense";
|
||
case REACT_SUSPENSE_LIST_TYPE:
|
||
return "SuspenseList";
|
||
}
|
||
if (typeof type === "object") {
|
||
switch (type.$$typeof) {
|
||
case REACT_CONTEXT_TYPE:
|
||
var context = type;
|
||
return getContextName(context) + ".Consumer";
|
||
case REACT_PROVIDER_TYPE:
|
||
var provider = type;
|
||
return getContextName(provider._context) + ".Provider";
|
||
case REACT_FORWARD_REF_TYPE:
|
||
return getWrappedName(type, type.render, "ForwardRef");
|
||
case REACT_MEMO_TYPE:
|
||
var outerName = type.displayName || null;
|
||
if (outerName !== null) {
|
||
return outerName;
|
||
}
|
||
return getComponentNameFromType(type.type) || "Memo";
|
||
case REACT_LAZY_TYPE: {
|
||
var lazyComponent = type;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
try {
|
||
return getComponentNameFromType(init(payload));
|
||
} catch (x) {
|
||
return null;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function getWrappedName$1(outerType, innerType, wrapperName) {
|
||
var functionName = innerType.displayName || innerType.name || "";
|
||
return outerType.displayName || (functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName);
|
||
}
|
||
function getContextName$1(type) {
|
||
return type.displayName || "Context";
|
||
}
|
||
function getComponentNameFromFiber(fiber) {
|
||
var tag = fiber.tag, type = fiber.type;
|
||
switch (tag) {
|
||
case CacheComponent:
|
||
return "Cache";
|
||
case ContextConsumer:
|
||
var context = type;
|
||
return getContextName$1(context) + ".Consumer";
|
||
case ContextProvider:
|
||
var provider = type;
|
||
return getContextName$1(provider._context) + ".Provider";
|
||
case DehydratedFragment:
|
||
return "DehydratedFragment";
|
||
case ForwardRef:
|
||
return getWrappedName$1(type, type.render, "ForwardRef");
|
||
case Fragment3:
|
||
return "Fragment";
|
||
case HostComponent:
|
||
return type;
|
||
case HostPortal:
|
||
return "Portal";
|
||
case HostRoot:
|
||
return "Root";
|
||
case HostText:
|
||
return "Text";
|
||
case LazyComponent:
|
||
return getComponentNameFromType(type);
|
||
case Mode:
|
||
if (type === REACT_STRICT_MODE_TYPE) {
|
||
return "StrictMode";
|
||
}
|
||
return "Mode";
|
||
case OffscreenComponent:
|
||
return "Offscreen";
|
||
case Profiler:
|
||
return "Profiler";
|
||
case ScopeComponent:
|
||
return "Scope";
|
||
case SuspenseComponent:
|
||
return "Suspense";
|
||
case SuspenseListComponent:
|
||
return "SuspenseList";
|
||
case TracingMarkerComponent:
|
||
return "TracingMarker";
|
||
case ClassComponent:
|
||
case FunctionComponent:
|
||
case IncompleteClassComponent:
|
||
case IndeterminateComponent:
|
||
case MemoComponent:
|
||
case SimpleMemoComponent:
|
||
if (typeof type === "function") {
|
||
return type.displayName || type.name || null;
|
||
}
|
||
if (typeof type === "string") {
|
||
return type;
|
||
}
|
||
break;
|
||
}
|
||
return null;
|
||
}
|
||
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
var current2 = null;
|
||
var isRendering = false;
|
||
function getCurrentFiberOwnerNameInDevOrNull() {
|
||
{
|
||
if (current2 === null) {
|
||
return null;
|
||
}
|
||
var owner = current2._debugOwner;
|
||
if (owner !== null && typeof owner !== "undefined") {
|
||
return getComponentNameFromFiber(owner);
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function getCurrentFiberStackInDev() {
|
||
{
|
||
if (current2 === null) {
|
||
return "";
|
||
}
|
||
return getStackByFiberInDevAndProd(current2);
|
||
}
|
||
}
|
||
function resetCurrentFiber() {
|
||
{
|
||
ReactDebugCurrentFrame.getCurrentStack = null;
|
||
current2 = null;
|
||
isRendering = false;
|
||
}
|
||
}
|
||
function setCurrentFiber(fiber) {
|
||
{
|
||
ReactDebugCurrentFrame.getCurrentStack = fiber === null ? null : getCurrentFiberStackInDev;
|
||
current2 = fiber;
|
||
isRendering = false;
|
||
}
|
||
}
|
||
function getCurrentFiber() {
|
||
{
|
||
return current2;
|
||
}
|
||
}
|
||
function setIsRendering(rendering) {
|
||
{
|
||
isRendering = rendering;
|
||
}
|
||
}
|
||
function toString(value) {
|
||
return "" + value;
|
||
}
|
||
function getToStringValue(value) {
|
||
switch (typeof value) {
|
||
case "boolean":
|
||
case "number":
|
||
case "string":
|
||
case "undefined":
|
||
return value;
|
||
case "object":
|
||
{
|
||
checkFormFieldValueStringCoercion(value);
|
||
}
|
||
return value;
|
||
default:
|
||
return "";
|
||
}
|
||
}
|
||
var hasReadOnlyValue = {
|
||
button: true,
|
||
checkbox: true,
|
||
image: true,
|
||
hidden: true,
|
||
radio: true,
|
||
reset: true,
|
||
submit: true
|
||
};
|
||
function checkControlledValueProps(tagName, props) {
|
||
{
|
||
if (!(hasReadOnlyValue[props.type] || props.onChange || props.onInput || props.readOnly || props.disabled || props.value == null)) {
|
||
error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.");
|
||
}
|
||
if (!(props.onChange || props.readOnly || props.disabled || props.checked == null)) {
|
||
error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.");
|
||
}
|
||
}
|
||
}
|
||
function isCheckable(elem) {
|
||
var type = elem.type;
|
||
var nodeName = elem.nodeName;
|
||
return nodeName && nodeName.toLowerCase() === "input" && (type === "checkbox" || type === "radio");
|
||
}
|
||
function getTracker(node) {
|
||
return node._valueTracker;
|
||
}
|
||
function detachTracker(node) {
|
||
node._valueTracker = null;
|
||
}
|
||
function getValueFromNode(node) {
|
||
var value = "";
|
||
if (!node) {
|
||
return value;
|
||
}
|
||
if (isCheckable(node)) {
|
||
value = node.checked ? "true" : "false";
|
||
} else {
|
||
value = node.value;
|
||
}
|
||
return value;
|
||
}
|
||
function trackValueOnNode(node) {
|
||
var valueField = isCheckable(node) ? "checked" : "value";
|
||
var descriptor = Object.getOwnPropertyDescriptor(node.constructor.prototype, valueField);
|
||
{
|
||
checkFormFieldValueStringCoercion(node[valueField]);
|
||
}
|
||
var currentValue = "" + node[valueField];
|
||
if (node.hasOwnProperty(valueField) || typeof descriptor === "undefined" || typeof descriptor.get !== "function" || typeof descriptor.set !== "function") {
|
||
return;
|
||
}
|
||
var get2 = descriptor.get, set3 = descriptor.set;
|
||
Object.defineProperty(node, valueField, {
|
||
configurable: true,
|
||
get: function() {
|
||
return get2.call(this);
|
||
},
|
||
set: function(value) {
|
||
{
|
||
checkFormFieldValueStringCoercion(value);
|
||
}
|
||
currentValue = "" + value;
|
||
set3.call(this, value);
|
||
}
|
||
});
|
||
Object.defineProperty(node, valueField, {
|
||
enumerable: descriptor.enumerable
|
||
});
|
||
var tracker = {
|
||
getValue: function() {
|
||
return currentValue;
|
||
},
|
||
setValue: function(value) {
|
||
{
|
||
checkFormFieldValueStringCoercion(value);
|
||
}
|
||
currentValue = "" + value;
|
||
},
|
||
stopTracking: function() {
|
||
detachTracker(node);
|
||
delete node[valueField];
|
||
}
|
||
};
|
||
return tracker;
|
||
}
|
||
function track(node) {
|
||
if (getTracker(node)) {
|
||
return;
|
||
}
|
||
node._valueTracker = trackValueOnNode(node);
|
||
}
|
||
function updateValueIfChanged(node) {
|
||
if (!node) {
|
||
return false;
|
||
}
|
||
var tracker = getTracker(node);
|
||
if (!tracker) {
|
||
return true;
|
||
}
|
||
var lastValue = tracker.getValue();
|
||
var nextValue = getValueFromNode(node);
|
||
if (nextValue !== lastValue) {
|
||
tracker.setValue(nextValue);
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
function getActiveElement(doc) {
|
||
doc = doc || (typeof document !== "undefined" ? document : void 0);
|
||
if (typeof doc === "undefined") {
|
||
return null;
|
||
}
|
||
try {
|
||
return doc.activeElement || doc.body;
|
||
} catch (e) {
|
||
return doc.body;
|
||
}
|
||
}
|
||
var didWarnValueDefaultValue = false;
|
||
var didWarnCheckedDefaultChecked = false;
|
||
var didWarnControlledToUncontrolled = false;
|
||
var didWarnUncontrolledToControlled = false;
|
||
function isControlled(props) {
|
||
var usesChecked = props.type === "checkbox" || props.type === "radio";
|
||
return usesChecked ? props.checked != null : props.value != null;
|
||
}
|
||
function getHostProps(element, props) {
|
||
var node = element;
|
||
var checked = props.checked;
|
||
var hostProps = assign({}, props, {
|
||
defaultChecked: void 0,
|
||
defaultValue: void 0,
|
||
value: void 0,
|
||
checked: checked != null ? checked : node._wrapperState.initialChecked
|
||
});
|
||
return hostProps;
|
||
}
|
||
function initWrapperState(element, props) {
|
||
{
|
||
checkControlledValueProps("input", props);
|
||
if (props.checked !== void 0 && props.defaultChecked !== void 0 && !didWarnCheckedDefaultChecked) {
|
||
error("%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component", props.type);
|
||
didWarnCheckedDefaultChecked = true;
|
||
}
|
||
if (props.value !== void 0 && props.defaultValue !== void 0 && !didWarnValueDefaultValue) {
|
||
error("%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component", props.type);
|
||
didWarnValueDefaultValue = true;
|
||
}
|
||
}
|
||
var node = element;
|
||
var defaultValue = props.defaultValue == null ? "" : props.defaultValue;
|
||
node._wrapperState = {
|
||
initialChecked: props.checked != null ? props.checked : props.defaultChecked,
|
||
initialValue: getToStringValue(props.value != null ? props.value : defaultValue),
|
||
controlled: isControlled(props)
|
||
};
|
||
}
|
||
function updateChecked(element, props) {
|
||
var node = element;
|
||
var checked = props.checked;
|
||
if (checked != null) {
|
||
setValueForProperty(node, "checked", checked, false);
|
||
}
|
||
}
|
||
function updateWrapper(element, props) {
|
||
var node = element;
|
||
{
|
||
var controlled = isControlled(props);
|
||
if (!node._wrapperState.controlled && controlled && !didWarnUncontrolledToControlled) {
|
||
error("A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components");
|
||
didWarnUncontrolledToControlled = true;
|
||
}
|
||
if (node._wrapperState.controlled && !controlled && !didWarnControlledToUncontrolled) {
|
||
error("A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components");
|
||
didWarnControlledToUncontrolled = true;
|
||
}
|
||
}
|
||
updateChecked(element, props);
|
||
var value = getToStringValue(props.value);
|
||
var type = props.type;
|
||
if (value != null) {
|
||
if (type === "number") {
|
||
if (value === 0 && node.value === "" || // We explicitly want to coerce to number here if possible.
|
||
// eslint-disable-next-line
|
||
node.value != value) {
|
||
node.value = toString(value);
|
||
}
|
||
} else if (node.value !== toString(value)) {
|
||
node.value = toString(value);
|
||
}
|
||
} else if (type === "submit" || type === "reset") {
|
||
node.removeAttribute("value");
|
||
return;
|
||
}
|
||
{
|
||
if (props.hasOwnProperty("value")) {
|
||
setDefaultValue(node, props.type, value);
|
||
} else if (props.hasOwnProperty("defaultValue")) {
|
||
setDefaultValue(node, props.type, getToStringValue(props.defaultValue));
|
||
}
|
||
}
|
||
{
|
||
if (props.checked == null && props.defaultChecked != null) {
|
||
node.defaultChecked = !!props.defaultChecked;
|
||
}
|
||
}
|
||
}
|
||
function postMountWrapper(element, props, isHydrating2) {
|
||
var node = element;
|
||
if (props.hasOwnProperty("value") || props.hasOwnProperty("defaultValue")) {
|
||
var type = props.type;
|
||
var isButton = type === "submit" || type === "reset";
|
||
if (isButton && (props.value === void 0 || props.value === null)) {
|
||
return;
|
||
}
|
||
var initialValue = toString(node._wrapperState.initialValue);
|
||
if (!isHydrating2) {
|
||
{
|
||
if (initialValue !== node.value) {
|
||
node.value = initialValue;
|
||
}
|
||
}
|
||
}
|
||
{
|
||
node.defaultValue = initialValue;
|
||
}
|
||
}
|
||
var name = node.name;
|
||
if (name !== "") {
|
||
node.name = "";
|
||
}
|
||
{
|
||
node.defaultChecked = !node.defaultChecked;
|
||
node.defaultChecked = !!node._wrapperState.initialChecked;
|
||
}
|
||
if (name !== "") {
|
||
node.name = name;
|
||
}
|
||
}
|
||
function restoreControlledState(element, props) {
|
||
var node = element;
|
||
updateWrapper(node, props);
|
||
updateNamedCousins(node, props);
|
||
}
|
||
function updateNamedCousins(rootNode, props) {
|
||
var name = props.name;
|
||
if (props.type === "radio" && name != null) {
|
||
var queryRoot = rootNode;
|
||
while (queryRoot.parentNode) {
|
||
queryRoot = queryRoot.parentNode;
|
||
}
|
||
{
|
||
checkAttributeStringCoercion(name, "name");
|
||
}
|
||
var group = queryRoot.querySelectorAll("input[name=" + JSON.stringify("" + name) + '][type="radio"]');
|
||
for (var i = 0; i < group.length; i++) {
|
||
var otherNode = group[i];
|
||
if (otherNode === rootNode || otherNode.form !== rootNode.form) {
|
||
continue;
|
||
}
|
||
var otherProps = getFiberCurrentPropsFromNode(otherNode);
|
||
if (!otherProps) {
|
||
throw new Error("ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.");
|
||
}
|
||
updateValueIfChanged(otherNode);
|
||
updateWrapper(otherNode, otherProps);
|
||
}
|
||
}
|
||
}
|
||
function setDefaultValue(node, type, value) {
|
||
if (
|
||
// Focused number inputs synchronize on blur. See ChangeEventPlugin.js
|
||
type !== "number" || getActiveElement(node.ownerDocument) !== node
|
||
) {
|
||
if (value == null) {
|
||
node.defaultValue = toString(node._wrapperState.initialValue);
|
||
} else if (node.defaultValue !== toString(value)) {
|
||
node.defaultValue = toString(value);
|
||
}
|
||
}
|
||
}
|
||
var didWarnSelectedSetOnOption = false;
|
||
var didWarnInvalidChild = false;
|
||
var didWarnInvalidInnerHTML = false;
|
||
function validateProps(element, props) {
|
||
{
|
||
if (props.value == null) {
|
||
if (typeof props.children === "object" && props.children !== null) {
|
||
React3.Children.forEach(props.children, function(child) {
|
||
if (child == null) {
|
||
return;
|
||
}
|
||
if (typeof child === "string" || typeof child === "number") {
|
||
return;
|
||
}
|
||
if (!didWarnInvalidChild) {
|
||
didWarnInvalidChild = true;
|
||
error("Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to <option>.");
|
||
}
|
||
});
|
||
} else if (props.dangerouslySetInnerHTML != null) {
|
||
if (!didWarnInvalidInnerHTML) {
|
||
didWarnInvalidInnerHTML = true;
|
||
error("Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected.");
|
||
}
|
||
}
|
||
}
|
||
if (props.selected != null && !didWarnSelectedSetOnOption) {
|
||
error("Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>.");
|
||
didWarnSelectedSetOnOption = true;
|
||
}
|
||
}
|
||
}
|
||
function postMountWrapper$1(element, props) {
|
||
if (props.value != null) {
|
||
element.setAttribute("value", toString(getToStringValue(props.value)));
|
||
}
|
||
}
|
||
var isArrayImpl = Array.isArray;
|
||
function isArray(a) {
|
||
return isArrayImpl(a);
|
||
}
|
||
var didWarnValueDefaultValue$1;
|
||
{
|
||
didWarnValueDefaultValue$1 = false;
|
||
}
|
||
function getDeclarationErrorAddendum() {
|
||
var ownerName = getCurrentFiberOwnerNameInDevOrNull();
|
||
if (ownerName) {
|
||
return "\n\nCheck the render method of `" + ownerName + "`.";
|
||
}
|
||
return "";
|
||
}
|
||
var valuePropNames = ["value", "defaultValue"];
|
||
function checkSelectPropTypes(props) {
|
||
{
|
||
checkControlledValueProps("select", props);
|
||
for (var i = 0; i < valuePropNames.length; i++) {
|
||
var propName = valuePropNames[i];
|
||
if (props[propName] == null) {
|
||
continue;
|
||
}
|
||
var propNameIsArray = isArray(props[propName]);
|
||
if (props.multiple && !propNameIsArray) {
|
||
error("The `%s` prop supplied to <select> must be an array if `multiple` is true.%s", propName, getDeclarationErrorAddendum());
|
||
} else if (!props.multiple && propNameIsArray) {
|
||
error("The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s", propName, getDeclarationErrorAddendum());
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function updateOptions(node, multiple, propValue, setDefaultSelected) {
|
||
var options2 = node.options;
|
||
if (multiple) {
|
||
var selectedValues = propValue;
|
||
var selectedValue = {};
|
||
for (var i = 0; i < selectedValues.length; i++) {
|
||
selectedValue["$" + selectedValues[i]] = true;
|
||
}
|
||
for (var _i = 0; _i < options2.length; _i++) {
|
||
var selected = selectedValue.hasOwnProperty("$" + options2[_i].value);
|
||
if (options2[_i].selected !== selected) {
|
||
options2[_i].selected = selected;
|
||
}
|
||
if (selected && setDefaultSelected) {
|
||
options2[_i].defaultSelected = true;
|
||
}
|
||
}
|
||
} else {
|
||
var _selectedValue = toString(getToStringValue(propValue));
|
||
var defaultSelected = null;
|
||
for (var _i2 = 0; _i2 < options2.length; _i2++) {
|
||
if (options2[_i2].value === _selectedValue) {
|
||
options2[_i2].selected = true;
|
||
if (setDefaultSelected) {
|
||
options2[_i2].defaultSelected = true;
|
||
}
|
||
return;
|
||
}
|
||
if (defaultSelected === null && !options2[_i2].disabled) {
|
||
defaultSelected = options2[_i2];
|
||
}
|
||
}
|
||
if (defaultSelected !== null) {
|
||
defaultSelected.selected = true;
|
||
}
|
||
}
|
||
}
|
||
function getHostProps$1(element, props) {
|
||
return assign({}, props, {
|
||
value: void 0
|
||
});
|
||
}
|
||
function initWrapperState$1(element, props) {
|
||
var node = element;
|
||
{
|
||
checkSelectPropTypes(props);
|
||
}
|
||
node._wrapperState = {
|
||
wasMultiple: !!props.multiple
|
||
};
|
||
{
|
||
if (props.value !== void 0 && props.defaultValue !== void 0 && !didWarnValueDefaultValue$1) {
|
||
error("Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://reactjs.org/link/controlled-components");
|
||
didWarnValueDefaultValue$1 = true;
|
||
}
|
||
}
|
||
}
|
||
function postMountWrapper$2(element, props) {
|
||
var node = element;
|
||
node.multiple = !!props.multiple;
|
||
var value = props.value;
|
||
if (value != null) {
|
||
updateOptions(node, !!props.multiple, value, false);
|
||
} else if (props.defaultValue != null) {
|
||
updateOptions(node, !!props.multiple, props.defaultValue, true);
|
||
}
|
||
}
|
||
function postUpdateWrapper(element, props) {
|
||
var node = element;
|
||
var wasMultiple = node._wrapperState.wasMultiple;
|
||
node._wrapperState.wasMultiple = !!props.multiple;
|
||
var value = props.value;
|
||
if (value != null) {
|
||
updateOptions(node, !!props.multiple, value, false);
|
||
} else if (wasMultiple !== !!props.multiple) {
|
||
if (props.defaultValue != null) {
|
||
updateOptions(node, !!props.multiple, props.defaultValue, true);
|
||
} else {
|
||
updateOptions(node, !!props.multiple, props.multiple ? [] : "", false);
|
||
}
|
||
}
|
||
}
|
||
function restoreControlledState$1(element, props) {
|
||
var node = element;
|
||
var value = props.value;
|
||
if (value != null) {
|
||
updateOptions(node, !!props.multiple, value, false);
|
||
}
|
||
}
|
||
var didWarnValDefaultVal = false;
|
||
function getHostProps$2(element, props) {
|
||
var node = element;
|
||
if (props.dangerouslySetInnerHTML != null) {
|
||
throw new Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");
|
||
}
|
||
var hostProps = assign({}, props, {
|
||
value: void 0,
|
||
defaultValue: void 0,
|
||
children: toString(node._wrapperState.initialValue)
|
||
});
|
||
return hostProps;
|
||
}
|
||
function initWrapperState$2(element, props) {
|
||
var node = element;
|
||
{
|
||
checkControlledValueProps("textarea", props);
|
||
if (props.value !== void 0 && props.defaultValue !== void 0 && !didWarnValDefaultVal) {
|
||
error("%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://reactjs.org/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component");
|
||
didWarnValDefaultVal = true;
|
||
}
|
||
}
|
||
var initialValue = props.value;
|
||
if (initialValue == null) {
|
||
var children = props.children, defaultValue = props.defaultValue;
|
||
if (children != null) {
|
||
{
|
||
error("Use the `defaultValue` or `value` props instead of setting children on <textarea>.");
|
||
}
|
||
{
|
||
if (defaultValue != null) {
|
||
throw new Error("If you supply `defaultValue` on a <textarea>, do not pass children.");
|
||
}
|
||
if (isArray(children)) {
|
||
if (children.length > 1) {
|
||
throw new Error("<textarea> can only have at most one child.");
|
||
}
|
||
children = children[0];
|
||
}
|
||
defaultValue = children;
|
||
}
|
||
}
|
||
if (defaultValue == null) {
|
||
defaultValue = "";
|
||
}
|
||
initialValue = defaultValue;
|
||
}
|
||
node._wrapperState = {
|
||
initialValue: getToStringValue(initialValue)
|
||
};
|
||
}
|
||
function updateWrapper$1(element, props) {
|
||
var node = element;
|
||
var value = getToStringValue(props.value);
|
||
var defaultValue = getToStringValue(props.defaultValue);
|
||
if (value != null) {
|
||
var newValue = toString(value);
|
||
if (newValue !== node.value) {
|
||
node.value = newValue;
|
||
}
|
||
if (props.defaultValue == null && node.defaultValue !== newValue) {
|
||
node.defaultValue = newValue;
|
||
}
|
||
}
|
||
if (defaultValue != null) {
|
||
node.defaultValue = toString(defaultValue);
|
||
}
|
||
}
|
||
function postMountWrapper$3(element, props) {
|
||
var node = element;
|
||
var textContent = node.textContent;
|
||
if (textContent === node._wrapperState.initialValue) {
|
||
if (textContent !== "" && textContent !== null) {
|
||
node.value = textContent;
|
||
}
|
||
}
|
||
}
|
||
function restoreControlledState$2(element, props) {
|
||
updateWrapper$1(element, props);
|
||
}
|
||
var HTML_NAMESPACE = "http://www.w3.org/1999/xhtml";
|
||
var MATH_NAMESPACE = "http://www.w3.org/1998/Math/MathML";
|
||
var SVG_NAMESPACE = "http://www.w3.org/2000/svg";
|
||
function getIntrinsicNamespace(type) {
|
||
switch (type) {
|
||
case "svg":
|
||
return SVG_NAMESPACE;
|
||
case "math":
|
||
return MATH_NAMESPACE;
|
||
default:
|
||
return HTML_NAMESPACE;
|
||
}
|
||
}
|
||
function getChildNamespace(parentNamespace, type) {
|
||
if (parentNamespace == null || parentNamespace === HTML_NAMESPACE) {
|
||
return getIntrinsicNamespace(type);
|
||
}
|
||
if (parentNamespace === SVG_NAMESPACE && type === "foreignObject") {
|
||
return HTML_NAMESPACE;
|
||
}
|
||
return parentNamespace;
|
||
}
|
||
var createMicrosoftUnsafeLocalFunction = function(func) {
|
||
if (typeof MSApp !== "undefined" && MSApp.execUnsafeLocalFunction) {
|
||
return function(arg0, arg1, arg2, arg3) {
|
||
MSApp.execUnsafeLocalFunction(function() {
|
||
return func(arg0, arg1, arg2, arg3);
|
||
});
|
||
};
|
||
} else {
|
||
return func;
|
||
}
|
||
};
|
||
var reusableSVGContainer;
|
||
var setInnerHTML = createMicrosoftUnsafeLocalFunction(function(node, html) {
|
||
if (node.namespaceURI === SVG_NAMESPACE) {
|
||
if (!("innerHTML" in node)) {
|
||
reusableSVGContainer = reusableSVGContainer || document.createElement("div");
|
||
reusableSVGContainer.innerHTML = "<svg>" + html.valueOf().toString() + "</svg>";
|
||
var svgNode = reusableSVGContainer.firstChild;
|
||
while (node.firstChild) {
|
||
node.removeChild(node.firstChild);
|
||
}
|
||
while (svgNode.firstChild) {
|
||
node.appendChild(svgNode.firstChild);
|
||
}
|
||
return;
|
||
}
|
||
}
|
||
node.innerHTML = html;
|
||
});
|
||
var ELEMENT_NODE = 1;
|
||
var TEXT_NODE = 3;
|
||
var COMMENT_NODE = 8;
|
||
var DOCUMENT_NODE = 9;
|
||
var DOCUMENT_FRAGMENT_NODE = 11;
|
||
var setTextContent = function(node, text) {
|
||
if (text) {
|
||
var firstChild = node.firstChild;
|
||
if (firstChild && firstChild === node.lastChild && firstChild.nodeType === TEXT_NODE) {
|
||
firstChild.nodeValue = text;
|
||
return;
|
||
}
|
||
}
|
||
node.textContent = text;
|
||
};
|
||
var shorthandToLonghand = {
|
||
animation: ["animationDelay", "animationDirection", "animationDuration", "animationFillMode", "animationIterationCount", "animationName", "animationPlayState", "animationTimingFunction"],
|
||
background: ["backgroundAttachment", "backgroundClip", "backgroundColor", "backgroundImage", "backgroundOrigin", "backgroundPositionX", "backgroundPositionY", "backgroundRepeat", "backgroundSize"],
|
||
backgroundPosition: ["backgroundPositionX", "backgroundPositionY"],
|
||
border: ["borderBottomColor", "borderBottomStyle", "borderBottomWidth", "borderImageOutset", "borderImageRepeat", "borderImageSlice", "borderImageSource", "borderImageWidth", "borderLeftColor", "borderLeftStyle", "borderLeftWidth", "borderRightColor", "borderRightStyle", "borderRightWidth", "borderTopColor", "borderTopStyle", "borderTopWidth"],
|
||
borderBlockEnd: ["borderBlockEndColor", "borderBlockEndStyle", "borderBlockEndWidth"],
|
||
borderBlockStart: ["borderBlockStartColor", "borderBlockStartStyle", "borderBlockStartWidth"],
|
||
borderBottom: ["borderBottomColor", "borderBottomStyle", "borderBottomWidth"],
|
||
borderColor: ["borderBottomColor", "borderLeftColor", "borderRightColor", "borderTopColor"],
|
||
borderImage: ["borderImageOutset", "borderImageRepeat", "borderImageSlice", "borderImageSource", "borderImageWidth"],
|
||
borderInlineEnd: ["borderInlineEndColor", "borderInlineEndStyle", "borderInlineEndWidth"],
|
||
borderInlineStart: ["borderInlineStartColor", "borderInlineStartStyle", "borderInlineStartWidth"],
|
||
borderLeft: ["borderLeftColor", "borderLeftStyle", "borderLeftWidth"],
|
||
borderRadius: ["borderBottomLeftRadius", "borderBottomRightRadius", "borderTopLeftRadius", "borderTopRightRadius"],
|
||
borderRight: ["borderRightColor", "borderRightStyle", "borderRightWidth"],
|
||
borderStyle: ["borderBottomStyle", "borderLeftStyle", "borderRightStyle", "borderTopStyle"],
|
||
borderTop: ["borderTopColor", "borderTopStyle", "borderTopWidth"],
|
||
borderWidth: ["borderBottomWidth", "borderLeftWidth", "borderRightWidth", "borderTopWidth"],
|
||
columnRule: ["columnRuleColor", "columnRuleStyle", "columnRuleWidth"],
|
||
columns: ["columnCount", "columnWidth"],
|
||
flex: ["flexBasis", "flexGrow", "flexShrink"],
|
||
flexFlow: ["flexDirection", "flexWrap"],
|
||
font: ["fontFamily", "fontFeatureSettings", "fontKerning", "fontLanguageOverride", "fontSize", "fontSizeAdjust", "fontStretch", "fontStyle", "fontVariant", "fontVariantAlternates", "fontVariantCaps", "fontVariantEastAsian", "fontVariantLigatures", "fontVariantNumeric", "fontVariantPosition", "fontWeight", "lineHeight"],
|
||
fontVariant: ["fontVariantAlternates", "fontVariantCaps", "fontVariantEastAsian", "fontVariantLigatures", "fontVariantNumeric", "fontVariantPosition"],
|
||
gap: ["columnGap", "rowGap"],
|
||
grid: ["gridAutoColumns", "gridAutoFlow", "gridAutoRows", "gridTemplateAreas", "gridTemplateColumns", "gridTemplateRows"],
|
||
gridArea: ["gridColumnEnd", "gridColumnStart", "gridRowEnd", "gridRowStart"],
|
||
gridColumn: ["gridColumnEnd", "gridColumnStart"],
|
||
gridColumnGap: ["columnGap"],
|
||
gridGap: ["columnGap", "rowGap"],
|
||
gridRow: ["gridRowEnd", "gridRowStart"],
|
||
gridRowGap: ["rowGap"],
|
||
gridTemplate: ["gridTemplateAreas", "gridTemplateColumns", "gridTemplateRows"],
|
||
listStyle: ["listStyleImage", "listStylePosition", "listStyleType"],
|
||
margin: ["marginBottom", "marginLeft", "marginRight", "marginTop"],
|
||
marker: ["markerEnd", "markerMid", "markerStart"],
|
||
mask: ["maskClip", "maskComposite", "maskImage", "maskMode", "maskOrigin", "maskPositionX", "maskPositionY", "maskRepeat", "maskSize"],
|
||
maskPosition: ["maskPositionX", "maskPositionY"],
|
||
outline: ["outlineColor", "outlineStyle", "outlineWidth"],
|
||
overflow: ["overflowX", "overflowY"],
|
||
padding: ["paddingBottom", "paddingLeft", "paddingRight", "paddingTop"],
|
||
placeContent: ["alignContent", "justifyContent"],
|
||
placeItems: ["alignItems", "justifyItems"],
|
||
placeSelf: ["alignSelf", "justifySelf"],
|
||
textDecoration: ["textDecorationColor", "textDecorationLine", "textDecorationStyle"],
|
||
textEmphasis: ["textEmphasisColor", "textEmphasisStyle"],
|
||
transition: ["transitionDelay", "transitionDuration", "transitionProperty", "transitionTimingFunction"],
|
||
wordWrap: ["overflowWrap"]
|
||
};
|
||
var isUnitlessNumber = {
|
||
animationIterationCount: true,
|
||
aspectRatio: true,
|
||
borderImageOutset: true,
|
||
borderImageSlice: true,
|
||
borderImageWidth: true,
|
||
boxFlex: true,
|
||
boxFlexGroup: true,
|
||
boxOrdinalGroup: true,
|
||
columnCount: true,
|
||
columns: true,
|
||
flex: true,
|
||
flexGrow: true,
|
||
flexPositive: true,
|
||
flexShrink: true,
|
||
flexNegative: true,
|
||
flexOrder: true,
|
||
gridArea: true,
|
||
gridRow: true,
|
||
gridRowEnd: true,
|
||
gridRowSpan: true,
|
||
gridRowStart: true,
|
||
gridColumn: true,
|
||
gridColumnEnd: true,
|
||
gridColumnSpan: true,
|
||
gridColumnStart: true,
|
||
fontWeight: true,
|
||
lineClamp: true,
|
||
lineHeight: true,
|
||
opacity: true,
|
||
order: true,
|
||
orphans: true,
|
||
tabSize: true,
|
||
widows: true,
|
||
zIndex: true,
|
||
zoom: true,
|
||
// SVG-related properties
|
||
fillOpacity: true,
|
||
floodOpacity: true,
|
||
stopOpacity: true,
|
||
strokeDasharray: true,
|
||
strokeDashoffset: true,
|
||
strokeMiterlimit: true,
|
||
strokeOpacity: true,
|
||
strokeWidth: true
|
||
};
|
||
function prefixKey(prefix3, key) {
|
||
return prefix3 + key.charAt(0).toUpperCase() + key.substring(1);
|
||
}
|
||
var prefixes = ["Webkit", "ms", "Moz", "O"];
|
||
Object.keys(isUnitlessNumber).forEach(function(prop) {
|
||
prefixes.forEach(function(prefix3) {
|
||
isUnitlessNumber[prefixKey(prefix3, prop)] = isUnitlessNumber[prop];
|
||
});
|
||
});
|
||
function dangerousStyleValue(name, value, isCustomProperty) {
|
||
var isEmpty = value == null || typeof value === "boolean" || value === "";
|
||
if (isEmpty) {
|
||
return "";
|
||
}
|
||
if (!isCustomProperty && typeof value === "number" && value !== 0 && !(isUnitlessNumber.hasOwnProperty(name) && isUnitlessNumber[name])) {
|
||
return value + "px";
|
||
}
|
||
{
|
||
checkCSSPropertyStringCoercion(value, name);
|
||
}
|
||
return ("" + value).trim();
|
||
}
|
||
var uppercasePattern = /([A-Z])/g;
|
||
var msPattern = /^ms-/;
|
||
function hyphenateStyleName(name) {
|
||
return name.replace(uppercasePattern, "-$1").toLowerCase().replace(msPattern, "-ms-");
|
||
}
|
||
var warnValidStyle = function() {
|
||
};
|
||
{
|
||
var badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/;
|
||
var msPattern$1 = /^-ms-/;
|
||
var hyphenPattern = /-(.)/g;
|
||
var badStyleValueWithSemicolonPattern = /;\s*$/;
|
||
var warnedStyleNames = {};
|
||
var warnedStyleValues = {};
|
||
var warnedForNaNValue = false;
|
||
var warnedForInfinityValue = false;
|
||
var camelize = function(string) {
|
||
return string.replace(hyphenPattern, function(_3, character) {
|
||
return character.toUpperCase();
|
||
});
|
||
};
|
||
var warnHyphenatedStyleName = function(name) {
|
||
if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {
|
||
return;
|
||
}
|
||
warnedStyleNames[name] = true;
|
||
error(
|
||
"Unsupported style property %s. Did you mean %s?",
|
||
name,
|
||
// As Andi Smith suggests
|
||
// (http://www.andismith.com/blog/2012/02/modernizr-prefixed/), an `-ms` prefix
|
||
// is converted to lowercase `ms`.
|
||
camelize(name.replace(msPattern$1, "ms-"))
|
||
);
|
||
};
|
||
var warnBadVendoredStyleName = function(name) {
|
||
if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {
|
||
return;
|
||
}
|
||
warnedStyleNames[name] = true;
|
||
error("Unsupported vendor-prefixed style property %s. Did you mean %s?", name, name.charAt(0).toUpperCase() + name.slice(1));
|
||
};
|
||
var warnStyleValueWithSemicolon = function(name, value) {
|
||
if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) {
|
||
return;
|
||
}
|
||
warnedStyleValues[value] = true;
|
||
error(`Style property values shouldn't contain a semicolon. Try "%s: %s" instead.`, name, value.replace(badStyleValueWithSemicolonPattern, ""));
|
||
};
|
||
var warnStyleValueIsNaN = function(name, value) {
|
||
if (warnedForNaNValue) {
|
||
return;
|
||
}
|
||
warnedForNaNValue = true;
|
||
error("`NaN` is an invalid value for the `%s` css style property.", name);
|
||
};
|
||
var warnStyleValueIsInfinity = function(name, value) {
|
||
if (warnedForInfinityValue) {
|
||
return;
|
||
}
|
||
warnedForInfinityValue = true;
|
||
error("`Infinity` is an invalid value for the `%s` css style property.", name);
|
||
};
|
||
warnValidStyle = function(name, value) {
|
||
if (name.indexOf("-") > -1) {
|
||
warnHyphenatedStyleName(name);
|
||
} else if (badVendoredStyleNamePattern.test(name)) {
|
||
warnBadVendoredStyleName(name);
|
||
} else if (badStyleValueWithSemicolonPattern.test(value)) {
|
||
warnStyleValueWithSemicolon(name, value);
|
||
}
|
||
if (typeof value === "number") {
|
||
if (isNaN(value)) {
|
||
warnStyleValueIsNaN(name, value);
|
||
} else if (!isFinite(value)) {
|
||
warnStyleValueIsInfinity(name, value);
|
||
}
|
||
}
|
||
};
|
||
}
|
||
var warnValidStyle$1 = warnValidStyle;
|
||
function createDangerousStringForStyles(styles) {
|
||
{
|
||
var serialized = "";
|
||
var delimiter = "";
|
||
for (var styleName in styles) {
|
||
if (!styles.hasOwnProperty(styleName)) {
|
||
continue;
|
||
}
|
||
var styleValue = styles[styleName];
|
||
if (styleValue != null) {
|
||
var isCustomProperty = styleName.indexOf("--") === 0;
|
||
serialized += delimiter + (isCustomProperty ? styleName : hyphenateStyleName(styleName)) + ":";
|
||
serialized += dangerousStyleValue(styleName, styleValue, isCustomProperty);
|
||
delimiter = ";";
|
||
}
|
||
}
|
||
return serialized || null;
|
||
}
|
||
}
|
||
function setValueForStyles(node, styles) {
|
||
var style2 = node.style;
|
||
for (var styleName in styles) {
|
||
if (!styles.hasOwnProperty(styleName)) {
|
||
continue;
|
||
}
|
||
var isCustomProperty = styleName.indexOf("--") === 0;
|
||
{
|
||
if (!isCustomProperty) {
|
||
warnValidStyle$1(styleName, styles[styleName]);
|
||
}
|
||
}
|
||
var styleValue = dangerousStyleValue(styleName, styles[styleName], isCustomProperty);
|
||
if (styleName === "float") {
|
||
styleName = "cssFloat";
|
||
}
|
||
if (isCustomProperty) {
|
||
style2.setProperty(styleName, styleValue);
|
||
} else {
|
||
style2[styleName] = styleValue;
|
||
}
|
||
}
|
||
}
|
||
function isValueEmpty(value) {
|
||
return value == null || typeof value === "boolean" || value === "";
|
||
}
|
||
function expandShorthandMap(styles) {
|
||
var expanded = {};
|
||
for (var key in styles) {
|
||
var longhands = shorthandToLonghand[key] || [key];
|
||
for (var i = 0; i < longhands.length; i++) {
|
||
expanded[longhands[i]] = key;
|
||
}
|
||
}
|
||
return expanded;
|
||
}
|
||
function validateShorthandPropertyCollisionInDev(styleUpdates, nextStyles) {
|
||
{
|
||
if (!nextStyles) {
|
||
return;
|
||
}
|
||
var expandedUpdates = expandShorthandMap(styleUpdates);
|
||
var expandedStyles = expandShorthandMap(nextStyles);
|
||
var warnedAbout = {};
|
||
for (var key in expandedUpdates) {
|
||
var originalKey = expandedUpdates[key];
|
||
var correctOriginalKey = expandedStyles[key];
|
||
if (correctOriginalKey && originalKey !== correctOriginalKey) {
|
||
var warningKey = originalKey + "," + correctOriginalKey;
|
||
if (warnedAbout[warningKey]) {
|
||
continue;
|
||
}
|
||
warnedAbout[warningKey] = true;
|
||
error("%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.", isValueEmpty(styleUpdates[originalKey]) ? "Removing" : "Updating", originalKey, correctOriginalKey);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var omittedCloseTags = {
|
||
area: true,
|
||
base: true,
|
||
br: true,
|
||
col: true,
|
||
embed: true,
|
||
hr: true,
|
||
img: true,
|
||
input: true,
|
||
keygen: true,
|
||
link: true,
|
||
meta: true,
|
||
param: true,
|
||
source: true,
|
||
track: true,
|
||
wbr: true
|
||
// NOTE: menuitem's close tag should be omitted, but that causes problems.
|
||
};
|
||
var voidElementTags = assign({
|
||
menuitem: true
|
||
}, omittedCloseTags);
|
||
var HTML = "__html";
|
||
function assertValidProps(tag, props) {
|
||
if (!props) {
|
||
return;
|
||
}
|
||
if (voidElementTags[tag]) {
|
||
if (props.children != null || props.dangerouslySetInnerHTML != null) {
|
||
throw new Error(tag + " is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");
|
||
}
|
||
}
|
||
if (props.dangerouslySetInnerHTML != null) {
|
||
if (props.children != null) {
|
||
throw new Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");
|
||
}
|
||
if (typeof props.dangerouslySetInnerHTML !== "object" || !(HTML in props.dangerouslySetInnerHTML)) {
|
||
throw new Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://reactjs.org/link/dangerously-set-inner-html for more information.");
|
||
}
|
||
}
|
||
{
|
||
if (!props.suppressContentEditableWarning && props.contentEditable && props.children != null) {
|
||
error("A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.");
|
||
}
|
||
}
|
||
if (props.style != null && typeof props.style !== "object") {
|
||
throw new Error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.");
|
||
}
|
||
}
|
||
function isCustomComponent(tagName, props) {
|
||
if (tagName.indexOf("-") === -1) {
|
||
return typeof props.is === "string";
|
||
}
|
||
switch (tagName) {
|
||
case "annotation-xml":
|
||
case "color-profile":
|
||
case "font-face":
|
||
case "font-face-src":
|
||
case "font-face-uri":
|
||
case "font-face-format":
|
||
case "font-face-name":
|
||
case "missing-glyph":
|
||
return false;
|
||
default:
|
||
return true;
|
||
}
|
||
}
|
||
var possibleStandardNames = {
|
||
// HTML
|
||
accept: "accept",
|
||
acceptcharset: "acceptCharset",
|
||
"accept-charset": "acceptCharset",
|
||
accesskey: "accessKey",
|
||
action: "action",
|
||
allowfullscreen: "allowFullScreen",
|
||
alt: "alt",
|
||
as: "as",
|
||
async: "async",
|
||
autocapitalize: "autoCapitalize",
|
||
autocomplete: "autoComplete",
|
||
autocorrect: "autoCorrect",
|
||
autofocus: "autoFocus",
|
||
autoplay: "autoPlay",
|
||
autosave: "autoSave",
|
||
capture: "capture",
|
||
cellpadding: "cellPadding",
|
||
cellspacing: "cellSpacing",
|
||
challenge: "challenge",
|
||
charset: "charSet",
|
||
checked: "checked",
|
||
children: "children",
|
||
cite: "cite",
|
||
class: "className",
|
||
classid: "classID",
|
||
classname: "className",
|
||
cols: "cols",
|
||
colspan: "colSpan",
|
||
content: "content",
|
||
contenteditable: "contentEditable",
|
||
contextmenu: "contextMenu",
|
||
controls: "controls",
|
||
controlslist: "controlsList",
|
||
coords: "coords",
|
||
crossorigin: "crossOrigin",
|
||
dangerouslysetinnerhtml: "dangerouslySetInnerHTML",
|
||
data: "data",
|
||
datetime: "dateTime",
|
||
default: "default",
|
||
defaultchecked: "defaultChecked",
|
||
defaultvalue: "defaultValue",
|
||
defer: "defer",
|
||
dir: "dir",
|
||
disabled: "disabled",
|
||
disablepictureinpicture: "disablePictureInPicture",
|
||
disableremoteplayback: "disableRemotePlayback",
|
||
download: "download",
|
||
draggable: "draggable",
|
||
enctype: "encType",
|
||
enterkeyhint: "enterKeyHint",
|
||
for: "htmlFor",
|
||
form: "form",
|
||
formmethod: "formMethod",
|
||
formaction: "formAction",
|
||
formenctype: "formEncType",
|
||
formnovalidate: "formNoValidate",
|
||
formtarget: "formTarget",
|
||
frameborder: "frameBorder",
|
||
headers: "headers",
|
||
height: "height",
|
||
hidden: "hidden",
|
||
high: "high",
|
||
href: "href",
|
||
hreflang: "hrefLang",
|
||
htmlfor: "htmlFor",
|
||
httpequiv: "httpEquiv",
|
||
"http-equiv": "httpEquiv",
|
||
icon: "icon",
|
||
id: "id",
|
||
imagesizes: "imageSizes",
|
||
imagesrcset: "imageSrcSet",
|
||
innerhtml: "innerHTML",
|
||
inputmode: "inputMode",
|
||
integrity: "integrity",
|
||
is: "is",
|
||
itemid: "itemID",
|
||
itemprop: "itemProp",
|
||
itemref: "itemRef",
|
||
itemscope: "itemScope",
|
||
itemtype: "itemType",
|
||
keyparams: "keyParams",
|
||
keytype: "keyType",
|
||
kind: "kind",
|
||
label: "label",
|
||
lang: "lang",
|
||
list: "list",
|
||
loop: "loop",
|
||
low: "low",
|
||
manifest: "manifest",
|
||
marginwidth: "marginWidth",
|
||
marginheight: "marginHeight",
|
||
max: "max",
|
||
maxlength: "maxLength",
|
||
media: "media",
|
||
mediagroup: "mediaGroup",
|
||
method: "method",
|
||
min: "min",
|
||
minlength: "minLength",
|
||
multiple: "multiple",
|
||
muted: "muted",
|
||
name: "name",
|
||
nomodule: "noModule",
|
||
nonce: "nonce",
|
||
novalidate: "noValidate",
|
||
open: "open",
|
||
optimum: "optimum",
|
||
pattern: "pattern",
|
||
placeholder: "placeholder",
|
||
playsinline: "playsInline",
|
||
poster: "poster",
|
||
preload: "preload",
|
||
profile: "profile",
|
||
radiogroup: "radioGroup",
|
||
readonly: "readOnly",
|
||
referrerpolicy: "referrerPolicy",
|
||
rel: "rel",
|
||
required: "required",
|
||
reversed: "reversed",
|
||
role: "role",
|
||
rows: "rows",
|
||
rowspan: "rowSpan",
|
||
sandbox: "sandbox",
|
||
scope: "scope",
|
||
scoped: "scoped",
|
||
scrolling: "scrolling",
|
||
seamless: "seamless",
|
||
selected: "selected",
|
||
shape: "shape",
|
||
size: "size",
|
||
sizes: "sizes",
|
||
span: "span",
|
||
spellcheck: "spellCheck",
|
||
src: "src",
|
||
srcdoc: "srcDoc",
|
||
srclang: "srcLang",
|
||
srcset: "srcSet",
|
||
start: "start",
|
||
step: "step",
|
||
style: "style",
|
||
summary: "summary",
|
||
tabindex: "tabIndex",
|
||
target: "target",
|
||
title: "title",
|
||
type: "type",
|
||
usemap: "useMap",
|
||
value: "value",
|
||
width: "width",
|
||
wmode: "wmode",
|
||
wrap: "wrap",
|
||
// SVG
|
||
about: "about",
|
||
accentheight: "accentHeight",
|
||
"accent-height": "accentHeight",
|
||
accumulate: "accumulate",
|
||
additive: "additive",
|
||
alignmentbaseline: "alignmentBaseline",
|
||
"alignment-baseline": "alignmentBaseline",
|
||
allowreorder: "allowReorder",
|
||
alphabetic: "alphabetic",
|
||
amplitude: "amplitude",
|
||
arabicform: "arabicForm",
|
||
"arabic-form": "arabicForm",
|
||
ascent: "ascent",
|
||
attributename: "attributeName",
|
||
attributetype: "attributeType",
|
||
autoreverse: "autoReverse",
|
||
azimuth: "azimuth",
|
||
basefrequency: "baseFrequency",
|
||
baselineshift: "baselineShift",
|
||
"baseline-shift": "baselineShift",
|
||
baseprofile: "baseProfile",
|
||
bbox: "bbox",
|
||
begin: "begin",
|
||
bias: "bias",
|
||
by: "by",
|
||
calcmode: "calcMode",
|
||
capheight: "capHeight",
|
||
"cap-height": "capHeight",
|
||
clip: "clip",
|
||
clippath: "clipPath",
|
||
"clip-path": "clipPath",
|
||
clippathunits: "clipPathUnits",
|
||
cliprule: "clipRule",
|
||
"clip-rule": "clipRule",
|
||
color: "color",
|
||
colorinterpolation: "colorInterpolation",
|
||
"color-interpolation": "colorInterpolation",
|
||
colorinterpolationfilters: "colorInterpolationFilters",
|
||
"color-interpolation-filters": "colorInterpolationFilters",
|
||
colorprofile: "colorProfile",
|
||
"color-profile": "colorProfile",
|
||
colorrendering: "colorRendering",
|
||
"color-rendering": "colorRendering",
|
||
contentscripttype: "contentScriptType",
|
||
contentstyletype: "contentStyleType",
|
||
cursor: "cursor",
|
||
cx: "cx",
|
||
cy: "cy",
|
||
d: "d",
|
||
datatype: "datatype",
|
||
decelerate: "decelerate",
|
||
descent: "descent",
|
||
diffuseconstant: "diffuseConstant",
|
||
direction: "direction",
|
||
display: "display",
|
||
divisor: "divisor",
|
||
dominantbaseline: "dominantBaseline",
|
||
"dominant-baseline": "dominantBaseline",
|
||
dur: "dur",
|
||
dx: "dx",
|
||
dy: "dy",
|
||
edgemode: "edgeMode",
|
||
elevation: "elevation",
|
||
enablebackground: "enableBackground",
|
||
"enable-background": "enableBackground",
|
||
end: "end",
|
||
exponent: "exponent",
|
||
externalresourcesrequired: "externalResourcesRequired",
|
||
fill: "fill",
|
||
fillopacity: "fillOpacity",
|
||
"fill-opacity": "fillOpacity",
|
||
fillrule: "fillRule",
|
||
"fill-rule": "fillRule",
|
||
filter: "filter",
|
||
filterres: "filterRes",
|
||
filterunits: "filterUnits",
|
||
floodopacity: "floodOpacity",
|
||
"flood-opacity": "floodOpacity",
|
||
floodcolor: "floodColor",
|
||
"flood-color": "floodColor",
|
||
focusable: "focusable",
|
||
fontfamily: "fontFamily",
|
||
"font-family": "fontFamily",
|
||
fontsize: "fontSize",
|
||
"font-size": "fontSize",
|
||
fontsizeadjust: "fontSizeAdjust",
|
||
"font-size-adjust": "fontSizeAdjust",
|
||
fontstretch: "fontStretch",
|
||
"font-stretch": "fontStretch",
|
||
fontstyle: "fontStyle",
|
||
"font-style": "fontStyle",
|
||
fontvariant: "fontVariant",
|
||
"font-variant": "fontVariant",
|
||
fontweight: "fontWeight",
|
||
"font-weight": "fontWeight",
|
||
format: "format",
|
||
from: "from",
|
||
fx: "fx",
|
||
fy: "fy",
|
||
g1: "g1",
|
||
g2: "g2",
|
||
glyphname: "glyphName",
|
||
"glyph-name": "glyphName",
|
||
glyphorientationhorizontal: "glyphOrientationHorizontal",
|
||
"glyph-orientation-horizontal": "glyphOrientationHorizontal",
|
||
glyphorientationvertical: "glyphOrientationVertical",
|
||
"glyph-orientation-vertical": "glyphOrientationVertical",
|
||
glyphref: "glyphRef",
|
||
gradienttransform: "gradientTransform",
|
||
gradientunits: "gradientUnits",
|
||
hanging: "hanging",
|
||
horizadvx: "horizAdvX",
|
||
"horiz-adv-x": "horizAdvX",
|
||
horizoriginx: "horizOriginX",
|
||
"horiz-origin-x": "horizOriginX",
|
||
ideographic: "ideographic",
|
||
imagerendering: "imageRendering",
|
||
"image-rendering": "imageRendering",
|
||
in2: "in2",
|
||
in: "in",
|
||
inlist: "inlist",
|
||
intercept: "intercept",
|
||
k1: "k1",
|
||
k2: "k2",
|
||
k3: "k3",
|
||
k4: "k4",
|
||
k: "k",
|
||
kernelmatrix: "kernelMatrix",
|
||
kernelunitlength: "kernelUnitLength",
|
||
kerning: "kerning",
|
||
keypoints: "keyPoints",
|
||
keysplines: "keySplines",
|
||
keytimes: "keyTimes",
|
||
lengthadjust: "lengthAdjust",
|
||
letterspacing: "letterSpacing",
|
||
"letter-spacing": "letterSpacing",
|
||
lightingcolor: "lightingColor",
|
||
"lighting-color": "lightingColor",
|
||
limitingconeangle: "limitingConeAngle",
|
||
local: "local",
|
||
markerend: "markerEnd",
|
||
"marker-end": "markerEnd",
|
||
markerheight: "markerHeight",
|
||
markermid: "markerMid",
|
||
"marker-mid": "markerMid",
|
||
markerstart: "markerStart",
|
||
"marker-start": "markerStart",
|
||
markerunits: "markerUnits",
|
||
markerwidth: "markerWidth",
|
||
mask: "mask",
|
||
maskcontentunits: "maskContentUnits",
|
||
maskunits: "maskUnits",
|
||
mathematical: "mathematical",
|
||
mode: "mode",
|
||
numoctaves: "numOctaves",
|
||
offset: "offset",
|
||
opacity: "opacity",
|
||
operator: "operator",
|
||
order: "order",
|
||
orient: "orient",
|
||
orientation: "orientation",
|
||
origin: "origin",
|
||
overflow: "overflow",
|
||
overlineposition: "overlinePosition",
|
||
"overline-position": "overlinePosition",
|
||
overlinethickness: "overlineThickness",
|
||
"overline-thickness": "overlineThickness",
|
||
paintorder: "paintOrder",
|
||
"paint-order": "paintOrder",
|
||
panose1: "panose1",
|
||
"panose-1": "panose1",
|
||
pathlength: "pathLength",
|
||
patterncontentunits: "patternContentUnits",
|
||
patterntransform: "patternTransform",
|
||
patternunits: "patternUnits",
|
||
pointerevents: "pointerEvents",
|
||
"pointer-events": "pointerEvents",
|
||
points: "points",
|
||
pointsatx: "pointsAtX",
|
||
pointsaty: "pointsAtY",
|
||
pointsatz: "pointsAtZ",
|
||
prefix: "prefix",
|
||
preservealpha: "preserveAlpha",
|
||
preserveaspectratio: "preserveAspectRatio",
|
||
primitiveunits: "primitiveUnits",
|
||
property: "property",
|
||
r: "r",
|
||
radius: "radius",
|
||
refx: "refX",
|
||
refy: "refY",
|
||
renderingintent: "renderingIntent",
|
||
"rendering-intent": "renderingIntent",
|
||
repeatcount: "repeatCount",
|
||
repeatdur: "repeatDur",
|
||
requiredextensions: "requiredExtensions",
|
||
requiredfeatures: "requiredFeatures",
|
||
resource: "resource",
|
||
restart: "restart",
|
||
result: "result",
|
||
results: "results",
|
||
rotate: "rotate",
|
||
rx: "rx",
|
||
ry: "ry",
|
||
scale: "scale",
|
||
security: "security",
|
||
seed: "seed",
|
||
shaperendering: "shapeRendering",
|
||
"shape-rendering": "shapeRendering",
|
||
slope: "slope",
|
||
spacing: "spacing",
|
||
specularconstant: "specularConstant",
|
||
specularexponent: "specularExponent",
|
||
speed: "speed",
|
||
spreadmethod: "spreadMethod",
|
||
startoffset: "startOffset",
|
||
stddeviation: "stdDeviation",
|
||
stemh: "stemh",
|
||
stemv: "stemv",
|
||
stitchtiles: "stitchTiles",
|
||
stopcolor: "stopColor",
|
||
"stop-color": "stopColor",
|
||
stopopacity: "stopOpacity",
|
||
"stop-opacity": "stopOpacity",
|
||
strikethroughposition: "strikethroughPosition",
|
||
"strikethrough-position": "strikethroughPosition",
|
||
strikethroughthickness: "strikethroughThickness",
|
||
"strikethrough-thickness": "strikethroughThickness",
|
||
string: "string",
|
||
stroke: "stroke",
|
||
strokedasharray: "strokeDasharray",
|
||
"stroke-dasharray": "strokeDasharray",
|
||
strokedashoffset: "strokeDashoffset",
|
||
"stroke-dashoffset": "strokeDashoffset",
|
||
strokelinecap: "strokeLinecap",
|
||
"stroke-linecap": "strokeLinecap",
|
||
strokelinejoin: "strokeLinejoin",
|
||
"stroke-linejoin": "strokeLinejoin",
|
||
strokemiterlimit: "strokeMiterlimit",
|
||
"stroke-miterlimit": "strokeMiterlimit",
|
||
strokewidth: "strokeWidth",
|
||
"stroke-width": "strokeWidth",
|
||
strokeopacity: "strokeOpacity",
|
||
"stroke-opacity": "strokeOpacity",
|
||
suppresscontenteditablewarning: "suppressContentEditableWarning",
|
||
suppresshydrationwarning: "suppressHydrationWarning",
|
||
surfacescale: "surfaceScale",
|
||
systemlanguage: "systemLanguage",
|
||
tablevalues: "tableValues",
|
||
targetx: "targetX",
|
||
targety: "targetY",
|
||
textanchor: "textAnchor",
|
||
"text-anchor": "textAnchor",
|
||
textdecoration: "textDecoration",
|
||
"text-decoration": "textDecoration",
|
||
textlength: "textLength",
|
||
textrendering: "textRendering",
|
||
"text-rendering": "textRendering",
|
||
to: "to",
|
||
transform: "transform",
|
||
typeof: "typeof",
|
||
u1: "u1",
|
||
u2: "u2",
|
||
underlineposition: "underlinePosition",
|
||
"underline-position": "underlinePosition",
|
||
underlinethickness: "underlineThickness",
|
||
"underline-thickness": "underlineThickness",
|
||
unicode: "unicode",
|
||
unicodebidi: "unicodeBidi",
|
||
"unicode-bidi": "unicodeBidi",
|
||
unicoderange: "unicodeRange",
|
||
"unicode-range": "unicodeRange",
|
||
unitsperem: "unitsPerEm",
|
||
"units-per-em": "unitsPerEm",
|
||
unselectable: "unselectable",
|
||
valphabetic: "vAlphabetic",
|
||
"v-alphabetic": "vAlphabetic",
|
||
values: "values",
|
||
vectoreffect: "vectorEffect",
|
||
"vector-effect": "vectorEffect",
|
||
version: "version",
|
||
vertadvy: "vertAdvY",
|
||
"vert-adv-y": "vertAdvY",
|
||
vertoriginx: "vertOriginX",
|
||
"vert-origin-x": "vertOriginX",
|
||
vertoriginy: "vertOriginY",
|
||
"vert-origin-y": "vertOriginY",
|
||
vhanging: "vHanging",
|
||
"v-hanging": "vHanging",
|
||
videographic: "vIdeographic",
|
||
"v-ideographic": "vIdeographic",
|
||
viewbox: "viewBox",
|
||
viewtarget: "viewTarget",
|
||
visibility: "visibility",
|
||
vmathematical: "vMathematical",
|
||
"v-mathematical": "vMathematical",
|
||
vocab: "vocab",
|
||
widths: "widths",
|
||
wordspacing: "wordSpacing",
|
||
"word-spacing": "wordSpacing",
|
||
writingmode: "writingMode",
|
||
"writing-mode": "writingMode",
|
||
x1: "x1",
|
||
x2: "x2",
|
||
x: "x",
|
||
xchannelselector: "xChannelSelector",
|
||
xheight: "xHeight",
|
||
"x-height": "xHeight",
|
||
xlinkactuate: "xlinkActuate",
|
||
"xlink:actuate": "xlinkActuate",
|
||
xlinkarcrole: "xlinkArcrole",
|
||
"xlink:arcrole": "xlinkArcrole",
|
||
xlinkhref: "xlinkHref",
|
||
"xlink:href": "xlinkHref",
|
||
xlinkrole: "xlinkRole",
|
||
"xlink:role": "xlinkRole",
|
||
xlinkshow: "xlinkShow",
|
||
"xlink:show": "xlinkShow",
|
||
xlinktitle: "xlinkTitle",
|
||
"xlink:title": "xlinkTitle",
|
||
xlinktype: "xlinkType",
|
||
"xlink:type": "xlinkType",
|
||
xmlbase: "xmlBase",
|
||
"xml:base": "xmlBase",
|
||
xmllang: "xmlLang",
|
||
"xml:lang": "xmlLang",
|
||
xmlns: "xmlns",
|
||
"xml:space": "xmlSpace",
|
||
xmlnsxlink: "xmlnsXlink",
|
||
"xmlns:xlink": "xmlnsXlink",
|
||
xmlspace: "xmlSpace",
|
||
y1: "y1",
|
||
y2: "y2",
|
||
y: "y",
|
||
ychannelselector: "yChannelSelector",
|
||
z: "z",
|
||
zoomandpan: "zoomAndPan"
|
||
};
|
||
var ariaProperties = {
|
||
"aria-current": 0,
|
||
// state
|
||
"aria-description": 0,
|
||
"aria-details": 0,
|
||
"aria-disabled": 0,
|
||
// state
|
||
"aria-hidden": 0,
|
||
// state
|
||
"aria-invalid": 0,
|
||
// state
|
||
"aria-keyshortcuts": 0,
|
||
"aria-label": 0,
|
||
"aria-roledescription": 0,
|
||
// Widget Attributes
|
||
"aria-autocomplete": 0,
|
||
"aria-checked": 0,
|
||
"aria-expanded": 0,
|
||
"aria-haspopup": 0,
|
||
"aria-level": 0,
|
||
"aria-modal": 0,
|
||
"aria-multiline": 0,
|
||
"aria-multiselectable": 0,
|
||
"aria-orientation": 0,
|
||
"aria-placeholder": 0,
|
||
"aria-pressed": 0,
|
||
"aria-readonly": 0,
|
||
"aria-required": 0,
|
||
"aria-selected": 0,
|
||
"aria-sort": 0,
|
||
"aria-valuemax": 0,
|
||
"aria-valuemin": 0,
|
||
"aria-valuenow": 0,
|
||
"aria-valuetext": 0,
|
||
// Live Region Attributes
|
||
"aria-atomic": 0,
|
||
"aria-busy": 0,
|
||
"aria-live": 0,
|
||
"aria-relevant": 0,
|
||
// Drag-and-Drop Attributes
|
||
"aria-dropeffect": 0,
|
||
"aria-grabbed": 0,
|
||
// Relationship Attributes
|
||
"aria-activedescendant": 0,
|
||
"aria-colcount": 0,
|
||
"aria-colindex": 0,
|
||
"aria-colspan": 0,
|
||
"aria-controls": 0,
|
||
"aria-describedby": 0,
|
||
"aria-errormessage": 0,
|
||
"aria-flowto": 0,
|
||
"aria-labelledby": 0,
|
||
"aria-owns": 0,
|
||
"aria-posinset": 0,
|
||
"aria-rowcount": 0,
|
||
"aria-rowindex": 0,
|
||
"aria-rowspan": 0,
|
||
"aria-setsize": 0
|
||
};
|
||
var warnedProperties = {};
|
||
var rARIA = new RegExp("^(aria)-[" + ATTRIBUTE_NAME_CHAR + "]*$");
|
||
var rARIACamel = new RegExp("^(aria)[A-Z][" + ATTRIBUTE_NAME_CHAR + "]*$");
|
||
function validateProperty(tagName, name) {
|
||
{
|
||
if (hasOwnProperty.call(warnedProperties, name) && warnedProperties[name]) {
|
||
return true;
|
||
}
|
||
if (rARIACamel.test(name)) {
|
||
var ariaName = "aria-" + name.slice(4).toLowerCase();
|
||
var correctName = ariaProperties.hasOwnProperty(ariaName) ? ariaName : null;
|
||
if (correctName == null) {
|
||
error("Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.", name);
|
||
warnedProperties[name] = true;
|
||
return true;
|
||
}
|
||
if (name !== correctName) {
|
||
error("Invalid ARIA attribute `%s`. Did you mean `%s`?", name, correctName);
|
||
warnedProperties[name] = true;
|
||
return true;
|
||
}
|
||
}
|
||
if (rARIA.test(name)) {
|
||
var lowerCasedName = name.toLowerCase();
|
||
var standardName = ariaProperties.hasOwnProperty(lowerCasedName) ? lowerCasedName : null;
|
||
if (standardName == null) {
|
||
warnedProperties[name] = true;
|
||
return false;
|
||
}
|
||
if (name !== standardName) {
|
||
error("Unknown ARIA attribute `%s`. Did you mean `%s`?", name, standardName);
|
||
warnedProperties[name] = true;
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function warnInvalidARIAProps(type, props) {
|
||
{
|
||
var invalidProps = [];
|
||
for (var key in props) {
|
||
var isValid = validateProperty(type, key);
|
||
if (!isValid) {
|
||
invalidProps.push(key);
|
||
}
|
||
}
|
||
var unknownPropString = invalidProps.map(function(prop) {
|
||
return "`" + prop + "`";
|
||
}).join(", ");
|
||
if (invalidProps.length === 1) {
|
||
error("Invalid aria prop %s on <%s> tag. For details, see https://reactjs.org/link/invalid-aria-props", unknownPropString, type);
|
||
} else if (invalidProps.length > 1) {
|
||
error("Invalid aria props %s on <%s> tag. For details, see https://reactjs.org/link/invalid-aria-props", unknownPropString, type);
|
||
}
|
||
}
|
||
}
|
||
function validateProperties(type, props) {
|
||
if (isCustomComponent(type, props)) {
|
||
return;
|
||
}
|
||
warnInvalidARIAProps(type, props);
|
||
}
|
||
var didWarnValueNull = false;
|
||
function validateProperties$1(type, props) {
|
||
{
|
||
if (type !== "input" && type !== "textarea" && type !== "select") {
|
||
return;
|
||
}
|
||
if (props != null && props.value === null && !didWarnValueNull) {
|
||
didWarnValueNull = true;
|
||
if (type === "select" && props.multiple) {
|
||
error("`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.", type);
|
||
} else {
|
||
error("`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.", type);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var validateProperty$1 = function() {
|
||
};
|
||
{
|
||
var warnedProperties$1 = {};
|
||
var EVENT_NAME_REGEX = /^on./;
|
||
var INVALID_EVENT_NAME_REGEX = /^on[^A-Z]/;
|
||
var rARIA$1 = new RegExp("^(aria)-[" + ATTRIBUTE_NAME_CHAR + "]*$");
|
||
var rARIACamel$1 = new RegExp("^(aria)[A-Z][" + ATTRIBUTE_NAME_CHAR + "]*$");
|
||
validateProperty$1 = function(tagName, name, value, eventRegistry) {
|
||
if (hasOwnProperty.call(warnedProperties$1, name) && warnedProperties$1[name]) {
|
||
return true;
|
||
}
|
||
var lowerCasedName = name.toLowerCase();
|
||
if (lowerCasedName === "onfocusin" || lowerCasedName === "onfocusout") {
|
||
error("React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React.");
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (eventRegistry != null) {
|
||
var registrationNameDependencies2 = eventRegistry.registrationNameDependencies, possibleRegistrationNames2 = eventRegistry.possibleRegistrationNames;
|
||
if (registrationNameDependencies2.hasOwnProperty(name)) {
|
||
return true;
|
||
}
|
||
var registrationName = possibleRegistrationNames2.hasOwnProperty(lowerCasedName) ? possibleRegistrationNames2[lowerCasedName] : null;
|
||
if (registrationName != null) {
|
||
error("Invalid event handler property `%s`. Did you mean `%s`?", name, registrationName);
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (EVENT_NAME_REGEX.test(name)) {
|
||
error("Unknown event handler property `%s`. It will be ignored.", name);
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
} else if (EVENT_NAME_REGEX.test(name)) {
|
||
if (INVALID_EVENT_NAME_REGEX.test(name)) {
|
||
error("Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.", name);
|
||
}
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (rARIA$1.test(name) || rARIACamel$1.test(name)) {
|
||
return true;
|
||
}
|
||
if (lowerCasedName === "innerhtml") {
|
||
error("Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`.");
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (lowerCasedName === "aria") {
|
||
error("The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead.");
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (lowerCasedName === "is" && value !== null && value !== void 0 && typeof value !== "string") {
|
||
error("Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.", typeof value);
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (typeof value === "number" && isNaN(value)) {
|
||
error("Received NaN for the `%s` attribute. If this is expected, cast the value to a string.", name);
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
var propertyInfo = getPropertyInfo(name);
|
||
var isReserved = propertyInfo !== null && propertyInfo.type === RESERVED;
|
||
if (possibleStandardNames.hasOwnProperty(lowerCasedName)) {
|
||
var standardName = possibleStandardNames[lowerCasedName];
|
||
if (standardName !== name) {
|
||
error("Invalid DOM property `%s`. Did you mean `%s`?", name, standardName);
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
} else if (!isReserved && name !== lowerCasedName) {
|
||
error("React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.", name, lowerCasedName);
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (typeof value === "boolean" && shouldRemoveAttributeWithWarning(name, value, propertyInfo, false)) {
|
||
if (value) {
|
||
error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.', value, name, name, value, name);
|
||
} else {
|
||
error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.', value, name, name, value, name, name, name);
|
||
}
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
if (isReserved) {
|
||
return true;
|
||
}
|
||
if (shouldRemoveAttributeWithWarning(name, value, propertyInfo, false)) {
|
||
warnedProperties$1[name] = true;
|
||
return false;
|
||
}
|
||
if ((value === "false" || value === "true") && propertyInfo !== null && propertyInfo.type === BOOLEAN) {
|
||
error("Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?", value, name, value === "false" ? "The browser will interpret it as a truthy value." : 'Although this works, it will not work as expected if you pass the string "false".', name, value);
|
||
warnedProperties$1[name] = true;
|
||
return true;
|
||
}
|
||
return true;
|
||
};
|
||
}
|
||
var warnUnknownProperties = function(type, props, eventRegistry) {
|
||
{
|
||
var unknownProps = [];
|
||
for (var key in props) {
|
||
var isValid = validateProperty$1(type, key, props[key], eventRegistry);
|
||
if (!isValid) {
|
||
unknownProps.push(key);
|
||
}
|
||
}
|
||
var unknownPropString = unknownProps.map(function(prop) {
|
||
return "`" + prop + "`";
|
||
}).join(", ");
|
||
if (unknownProps.length === 1) {
|
||
error("Invalid value for prop %s on <%s> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://reactjs.org/link/attribute-behavior ", unknownPropString, type);
|
||
} else if (unknownProps.length > 1) {
|
||
error("Invalid values for props %s on <%s> tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://reactjs.org/link/attribute-behavior ", unknownPropString, type);
|
||
}
|
||
}
|
||
};
|
||
function validateProperties$2(type, props, eventRegistry) {
|
||
if (isCustomComponent(type, props)) {
|
||
return;
|
||
}
|
||
warnUnknownProperties(type, props, eventRegistry);
|
||
}
|
||
var IS_EVENT_HANDLE_NON_MANAGED_NODE = 1;
|
||
var IS_NON_DELEGATED = 1 << 1;
|
||
var IS_CAPTURE_PHASE = 1 << 2;
|
||
var SHOULD_NOT_PROCESS_POLYFILL_EVENT_PLUGINS = IS_EVENT_HANDLE_NON_MANAGED_NODE | IS_NON_DELEGATED | IS_CAPTURE_PHASE;
|
||
var currentReplayingEvent = null;
|
||
function setReplayingEvent(event) {
|
||
{
|
||
if (currentReplayingEvent !== null) {
|
||
error("Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
currentReplayingEvent = event;
|
||
}
|
||
function resetReplayingEvent() {
|
||
{
|
||
if (currentReplayingEvent === null) {
|
||
error("Expected currently replaying event to not be null. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
currentReplayingEvent = null;
|
||
}
|
||
function isReplayingEvent(event) {
|
||
return event === currentReplayingEvent;
|
||
}
|
||
function getEventTarget(nativeEvent) {
|
||
var target = nativeEvent.target || nativeEvent.srcElement || window;
|
||
if (target.correspondingUseElement) {
|
||
target = target.correspondingUseElement;
|
||
}
|
||
return target.nodeType === TEXT_NODE ? target.parentNode : target;
|
||
}
|
||
var restoreImpl = null;
|
||
var restoreTarget = null;
|
||
var restoreQueue = null;
|
||
function restoreStateOfTarget(target) {
|
||
var internalInstance = getInstanceFromNode(target);
|
||
if (!internalInstance) {
|
||
return;
|
||
}
|
||
if (typeof restoreImpl !== "function") {
|
||
throw new Error("setRestoreImplementation() needs to be called to handle a target for controlled events. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
var stateNode = internalInstance.stateNode;
|
||
if (stateNode) {
|
||
var _props = getFiberCurrentPropsFromNode(stateNode);
|
||
restoreImpl(internalInstance.stateNode, internalInstance.type, _props);
|
||
}
|
||
}
|
||
function setRestoreImplementation(impl) {
|
||
restoreImpl = impl;
|
||
}
|
||
function enqueueStateRestore(target) {
|
||
if (restoreTarget) {
|
||
if (restoreQueue) {
|
||
restoreQueue.push(target);
|
||
} else {
|
||
restoreQueue = [target];
|
||
}
|
||
} else {
|
||
restoreTarget = target;
|
||
}
|
||
}
|
||
function needsStateRestore() {
|
||
return restoreTarget !== null || restoreQueue !== null;
|
||
}
|
||
function restoreStateIfNeeded() {
|
||
if (!restoreTarget) {
|
||
return;
|
||
}
|
||
var target = restoreTarget;
|
||
var queuedTargets = restoreQueue;
|
||
restoreTarget = null;
|
||
restoreQueue = null;
|
||
restoreStateOfTarget(target);
|
||
if (queuedTargets) {
|
||
for (var i = 0; i < queuedTargets.length; i++) {
|
||
restoreStateOfTarget(queuedTargets[i]);
|
||
}
|
||
}
|
||
}
|
||
var batchedUpdatesImpl = function(fn, bookkeeping) {
|
||
return fn(bookkeeping);
|
||
};
|
||
var flushSyncImpl = function() {
|
||
};
|
||
var isInsideEventHandler = false;
|
||
function finishEventHandler() {
|
||
var controlledComponentsHavePendingUpdates = needsStateRestore();
|
||
if (controlledComponentsHavePendingUpdates) {
|
||
flushSyncImpl();
|
||
restoreStateIfNeeded();
|
||
}
|
||
}
|
||
function batchedUpdates(fn, a, b) {
|
||
if (isInsideEventHandler) {
|
||
return fn(a, b);
|
||
}
|
||
isInsideEventHandler = true;
|
||
try {
|
||
return batchedUpdatesImpl(fn, a, b);
|
||
} finally {
|
||
isInsideEventHandler = false;
|
||
finishEventHandler();
|
||
}
|
||
}
|
||
function setBatchingImplementation(_batchedUpdatesImpl, _discreteUpdatesImpl, _flushSyncImpl) {
|
||
batchedUpdatesImpl = _batchedUpdatesImpl;
|
||
flushSyncImpl = _flushSyncImpl;
|
||
}
|
||
function isInteractive(tag) {
|
||
return tag === "button" || tag === "input" || tag === "select" || tag === "textarea";
|
||
}
|
||
function shouldPreventMouseEvent(name, type, props) {
|
||
switch (name) {
|
||
case "onClick":
|
||
case "onClickCapture":
|
||
case "onDoubleClick":
|
||
case "onDoubleClickCapture":
|
||
case "onMouseDown":
|
||
case "onMouseDownCapture":
|
||
case "onMouseMove":
|
||
case "onMouseMoveCapture":
|
||
case "onMouseUp":
|
||
case "onMouseUpCapture":
|
||
case "onMouseEnter":
|
||
return !!(props.disabled && isInteractive(type));
|
||
default:
|
||
return false;
|
||
}
|
||
}
|
||
function getListener(inst, registrationName) {
|
||
var stateNode = inst.stateNode;
|
||
if (stateNode === null) {
|
||
return null;
|
||
}
|
||
var props = getFiberCurrentPropsFromNode(stateNode);
|
||
if (props === null) {
|
||
return null;
|
||
}
|
||
var listener = props[registrationName];
|
||
if (shouldPreventMouseEvent(registrationName, inst.type, props)) {
|
||
return null;
|
||
}
|
||
if (listener && typeof listener !== "function") {
|
||
throw new Error("Expected `" + registrationName + "` listener to be a function, instead got a value of `" + typeof listener + "` type.");
|
||
}
|
||
return listener;
|
||
}
|
||
var passiveBrowserEventsSupported = false;
|
||
if (canUseDOM) {
|
||
try {
|
||
var options = {};
|
||
Object.defineProperty(options, "passive", {
|
||
get: function() {
|
||
passiveBrowserEventsSupported = true;
|
||
}
|
||
});
|
||
window.addEventListener("test", options, options);
|
||
window.removeEventListener("test", options, options);
|
||
} catch (e) {
|
||
passiveBrowserEventsSupported = false;
|
||
}
|
||
}
|
||
function invokeGuardedCallbackProd(name, func, context, a, b, c, d, e, f) {
|
||
var funcArgs = Array.prototype.slice.call(arguments, 3);
|
||
try {
|
||
func.apply(context, funcArgs);
|
||
} catch (error2) {
|
||
this.onError(error2);
|
||
}
|
||
}
|
||
var invokeGuardedCallbackImpl = invokeGuardedCallbackProd;
|
||
{
|
||
if (typeof window !== "undefined" && typeof window.dispatchEvent === "function" && typeof document !== "undefined" && typeof document.createEvent === "function") {
|
||
var fakeNode = document.createElement("react");
|
||
invokeGuardedCallbackImpl = function invokeGuardedCallbackDev(name, func, context, a, b, c, d, e, f) {
|
||
if (typeof document === "undefined" || document === null) {
|
||
throw new Error("The `document` global was defined when React was initialized, but is not defined anymore. This can happen in a test environment if a component schedules an update from an asynchronous callback, but the test has already finished running. To solve this, you can either unmount the component at the end of your test (and ensure that any asynchronous operations get canceled in `componentWillUnmount`), or you can change the test itself to be asynchronous.");
|
||
}
|
||
var evt = document.createEvent("Event");
|
||
var didCall = false;
|
||
var didError = true;
|
||
var windowEvent = window.event;
|
||
var windowEventDescriptor = Object.getOwnPropertyDescriptor(window, "event");
|
||
function restoreAfterDispatch() {
|
||
fakeNode.removeEventListener(evtType, callCallback2, false);
|
||
if (typeof window.event !== "undefined" && window.hasOwnProperty("event")) {
|
||
window.event = windowEvent;
|
||
}
|
||
}
|
||
var funcArgs = Array.prototype.slice.call(arguments, 3);
|
||
function callCallback2() {
|
||
didCall = true;
|
||
restoreAfterDispatch();
|
||
func.apply(context, funcArgs);
|
||
didError = false;
|
||
}
|
||
var error2;
|
||
var didSetError = false;
|
||
var isCrossOriginError = false;
|
||
function handleWindowError(event) {
|
||
error2 = event.error;
|
||
didSetError = true;
|
||
if (error2 === null && event.colno === 0 && event.lineno === 0) {
|
||
isCrossOriginError = true;
|
||
}
|
||
if (event.defaultPrevented) {
|
||
if (error2 != null && typeof error2 === "object") {
|
||
try {
|
||
error2._suppressLogging = true;
|
||
} catch (inner) {
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var evtType = "react-" + (name ? name : "invokeguardedcallback");
|
||
window.addEventListener("error", handleWindowError);
|
||
fakeNode.addEventListener(evtType, callCallback2, false);
|
||
evt.initEvent(evtType, false, false);
|
||
fakeNode.dispatchEvent(evt);
|
||
if (windowEventDescriptor) {
|
||
Object.defineProperty(window, "event", windowEventDescriptor);
|
||
}
|
||
if (didCall && didError) {
|
||
if (!didSetError) {
|
||
error2 = new Error(`An error was thrown inside one of your components, but React doesn't know what it was. This is likely due to browser flakiness. React does its best to preserve the "Pause on exceptions" behavior of the DevTools, which requires some DEV-mode only tricks. It's possible that these don't work in your browser. Try triggering the error in production mode, or switching to a modern browser. If you suspect that this is actually an issue with React, please file an issue.`);
|
||
} else if (isCrossOriginError) {
|
||
error2 = new Error("A cross-origin error was thrown. React doesn't have access to the actual error object in development. See https://reactjs.org/link/crossorigin-error for more information.");
|
||
}
|
||
this.onError(error2);
|
||
}
|
||
window.removeEventListener("error", handleWindowError);
|
||
if (!didCall) {
|
||
restoreAfterDispatch();
|
||
return invokeGuardedCallbackProd.apply(this, arguments);
|
||
}
|
||
};
|
||
}
|
||
}
|
||
var invokeGuardedCallbackImpl$1 = invokeGuardedCallbackImpl;
|
||
var hasError = false;
|
||
var caughtError = null;
|
||
var hasRethrowError = false;
|
||
var rethrowError = null;
|
||
var reporter = {
|
||
onError: function(error2) {
|
||
hasError = true;
|
||
caughtError = error2;
|
||
}
|
||
};
|
||
function invokeGuardedCallback(name, func, context, a, b, c, d, e, f) {
|
||
hasError = false;
|
||
caughtError = null;
|
||
invokeGuardedCallbackImpl$1.apply(reporter, arguments);
|
||
}
|
||
function invokeGuardedCallbackAndCatchFirstError(name, func, context, a, b, c, d, e, f) {
|
||
invokeGuardedCallback.apply(this, arguments);
|
||
if (hasError) {
|
||
var error2 = clearCaughtError();
|
||
if (!hasRethrowError) {
|
||
hasRethrowError = true;
|
||
rethrowError = error2;
|
||
}
|
||
}
|
||
}
|
||
function rethrowCaughtError() {
|
||
if (hasRethrowError) {
|
||
var error2 = rethrowError;
|
||
hasRethrowError = false;
|
||
rethrowError = null;
|
||
throw error2;
|
||
}
|
||
}
|
||
function hasCaughtError() {
|
||
return hasError;
|
||
}
|
||
function clearCaughtError() {
|
||
if (hasError) {
|
||
var error2 = caughtError;
|
||
hasError = false;
|
||
caughtError = null;
|
||
return error2;
|
||
} else {
|
||
throw new Error("clearCaughtError was called but no error was captured. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
function get(key) {
|
||
return key._reactInternals;
|
||
}
|
||
function has2(key) {
|
||
return key._reactInternals !== void 0;
|
||
}
|
||
function set2(key, value) {
|
||
key._reactInternals = value;
|
||
}
|
||
var NoFlags = (
|
||
/* */
|
||
0
|
||
);
|
||
var PerformedWork = (
|
||
/* */
|
||
1
|
||
);
|
||
var Placement = (
|
||
/* */
|
||
2
|
||
);
|
||
var Update = (
|
||
/* */
|
||
4
|
||
);
|
||
var ChildDeletion = (
|
||
/* */
|
||
16
|
||
);
|
||
var ContentReset = (
|
||
/* */
|
||
32
|
||
);
|
||
var Callback = (
|
||
/* */
|
||
64
|
||
);
|
||
var DidCapture = (
|
||
/* */
|
||
128
|
||
);
|
||
var ForceClientRender = (
|
||
/* */
|
||
256
|
||
);
|
||
var Ref = (
|
||
/* */
|
||
512
|
||
);
|
||
var Snapshot = (
|
||
/* */
|
||
1024
|
||
);
|
||
var Passive = (
|
||
/* */
|
||
2048
|
||
);
|
||
var Hydrating = (
|
||
/* */
|
||
4096
|
||
);
|
||
var Visibility = (
|
||
/* */
|
||
8192
|
||
);
|
||
var StoreConsistency = (
|
||
/* */
|
||
16384
|
||
);
|
||
var LifecycleEffectMask = Passive | Update | Callback | Ref | Snapshot | StoreConsistency;
|
||
var HostEffectMask = (
|
||
/* */
|
||
32767
|
||
);
|
||
var Incomplete = (
|
||
/* */
|
||
32768
|
||
);
|
||
var ShouldCapture = (
|
||
/* */
|
||
65536
|
||
);
|
||
var ForceUpdateForLegacySuspense = (
|
||
/* */
|
||
131072
|
||
);
|
||
var Forked = (
|
||
/* */
|
||
1048576
|
||
);
|
||
var RefStatic = (
|
||
/* */
|
||
2097152
|
||
);
|
||
var LayoutStatic = (
|
||
/* */
|
||
4194304
|
||
);
|
||
var PassiveStatic = (
|
||
/* */
|
||
8388608
|
||
);
|
||
var MountLayoutDev = (
|
||
/* */
|
||
16777216
|
||
);
|
||
var MountPassiveDev = (
|
||
/* */
|
||
33554432
|
||
);
|
||
var BeforeMutationMask = (
|
||
// TODO: Remove Update flag from before mutation phase by re-landing Visibility
|
||
// flag logic (see #20043)
|
||
Update | Snapshot | 0
|
||
);
|
||
var MutationMask = Placement | Update | ChildDeletion | ContentReset | Ref | Hydrating | Visibility;
|
||
var LayoutMask = Update | Callback | Ref | Visibility;
|
||
var PassiveMask = Passive | ChildDeletion;
|
||
var StaticMask = LayoutStatic | PassiveStatic | RefStatic;
|
||
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
|
||
function getNearestMountedFiber(fiber) {
|
||
var node = fiber;
|
||
var nearestMounted = fiber;
|
||
if (!fiber.alternate) {
|
||
var nextNode = node;
|
||
do {
|
||
node = nextNode;
|
||
if ((node.flags & (Placement | Hydrating)) !== NoFlags) {
|
||
nearestMounted = node.return;
|
||
}
|
||
nextNode = node.return;
|
||
} while (nextNode);
|
||
} else {
|
||
while (node.return) {
|
||
node = node.return;
|
||
}
|
||
}
|
||
if (node.tag === HostRoot) {
|
||
return nearestMounted;
|
||
}
|
||
return null;
|
||
}
|
||
function getSuspenseInstanceFromFiber(fiber) {
|
||
if (fiber.tag === SuspenseComponent) {
|
||
var suspenseState = fiber.memoizedState;
|
||
if (suspenseState === null) {
|
||
var current3 = fiber.alternate;
|
||
if (current3 !== null) {
|
||
suspenseState = current3.memoizedState;
|
||
}
|
||
}
|
||
if (suspenseState !== null) {
|
||
return suspenseState.dehydrated;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function getContainerFromFiber(fiber) {
|
||
return fiber.tag === HostRoot ? fiber.stateNode.containerInfo : null;
|
||
}
|
||
function isFiberMounted(fiber) {
|
||
return getNearestMountedFiber(fiber) === fiber;
|
||
}
|
||
function isMounted(component) {
|
||
{
|
||
var owner = ReactCurrentOwner.current;
|
||
if (owner !== null && owner.tag === ClassComponent) {
|
||
var ownerFiber = owner;
|
||
var instance = ownerFiber.stateNode;
|
||
if (!instance._warnedAboutRefsInRender) {
|
||
error("%s is accessing isMounted inside its render() function. render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.", getComponentNameFromFiber(ownerFiber) || "A component");
|
||
}
|
||
instance._warnedAboutRefsInRender = true;
|
||
}
|
||
}
|
||
var fiber = get(component);
|
||
if (!fiber) {
|
||
return false;
|
||
}
|
||
return getNearestMountedFiber(fiber) === fiber;
|
||
}
|
||
function assertIsMounted(fiber) {
|
||
if (getNearestMountedFiber(fiber) !== fiber) {
|
||
throw new Error("Unable to find node on an unmounted component.");
|
||
}
|
||
}
|
||
function findCurrentFiberUsingSlowPath(fiber) {
|
||
var alternate = fiber.alternate;
|
||
if (!alternate) {
|
||
var nearestMounted = getNearestMountedFiber(fiber);
|
||
if (nearestMounted === null) {
|
||
throw new Error("Unable to find node on an unmounted component.");
|
||
}
|
||
if (nearestMounted !== fiber) {
|
||
return null;
|
||
}
|
||
return fiber;
|
||
}
|
||
var a = fiber;
|
||
var b = alternate;
|
||
while (true) {
|
||
var parentA = a.return;
|
||
if (parentA === null) {
|
||
break;
|
||
}
|
||
var parentB = parentA.alternate;
|
||
if (parentB === null) {
|
||
var nextParent = parentA.return;
|
||
if (nextParent !== null) {
|
||
a = b = nextParent;
|
||
continue;
|
||
}
|
||
break;
|
||
}
|
||
if (parentA.child === parentB.child) {
|
||
var child = parentA.child;
|
||
while (child) {
|
||
if (child === a) {
|
||
assertIsMounted(parentA);
|
||
return fiber;
|
||
}
|
||
if (child === b) {
|
||
assertIsMounted(parentA);
|
||
return alternate;
|
||
}
|
||
child = child.sibling;
|
||
}
|
||
throw new Error("Unable to find node on an unmounted component.");
|
||
}
|
||
if (a.return !== b.return) {
|
||
a = parentA;
|
||
b = parentB;
|
||
} else {
|
||
var didFindChild = false;
|
||
var _child = parentA.child;
|
||
while (_child) {
|
||
if (_child === a) {
|
||
didFindChild = true;
|
||
a = parentA;
|
||
b = parentB;
|
||
break;
|
||
}
|
||
if (_child === b) {
|
||
didFindChild = true;
|
||
b = parentA;
|
||
a = parentB;
|
||
break;
|
||
}
|
||
_child = _child.sibling;
|
||
}
|
||
if (!didFindChild) {
|
||
_child = parentB.child;
|
||
while (_child) {
|
||
if (_child === a) {
|
||
didFindChild = true;
|
||
a = parentB;
|
||
b = parentA;
|
||
break;
|
||
}
|
||
if (_child === b) {
|
||
didFindChild = true;
|
||
b = parentB;
|
||
a = parentA;
|
||
break;
|
||
}
|
||
_child = _child.sibling;
|
||
}
|
||
if (!didFindChild) {
|
||
throw new Error("Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.");
|
||
}
|
||
}
|
||
}
|
||
if (a.alternate !== b) {
|
||
throw new Error("Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
if (a.tag !== HostRoot) {
|
||
throw new Error("Unable to find node on an unmounted component.");
|
||
}
|
||
if (a.stateNode.current === a) {
|
||
return fiber;
|
||
}
|
||
return alternate;
|
||
}
|
||
function findCurrentHostFiber(parent) {
|
||
var currentParent = findCurrentFiberUsingSlowPath(parent);
|
||
return currentParent !== null ? findCurrentHostFiberImpl(currentParent) : null;
|
||
}
|
||
function findCurrentHostFiberImpl(node) {
|
||
if (node.tag === HostComponent || node.tag === HostText) {
|
||
return node;
|
||
}
|
||
var child = node.child;
|
||
while (child !== null) {
|
||
var match = findCurrentHostFiberImpl(child);
|
||
if (match !== null) {
|
||
return match;
|
||
}
|
||
child = child.sibling;
|
||
}
|
||
return null;
|
||
}
|
||
function findCurrentHostFiberWithNoPortals(parent) {
|
||
var currentParent = findCurrentFiberUsingSlowPath(parent);
|
||
return currentParent !== null ? findCurrentHostFiberWithNoPortalsImpl(currentParent) : null;
|
||
}
|
||
function findCurrentHostFiberWithNoPortalsImpl(node) {
|
||
if (node.tag === HostComponent || node.tag === HostText) {
|
||
return node;
|
||
}
|
||
var child = node.child;
|
||
while (child !== null) {
|
||
if (child.tag !== HostPortal) {
|
||
var match = findCurrentHostFiberWithNoPortalsImpl(child);
|
||
if (match !== null) {
|
||
return match;
|
||
}
|
||
}
|
||
child = child.sibling;
|
||
}
|
||
return null;
|
||
}
|
||
var scheduleCallback = Scheduler.unstable_scheduleCallback;
|
||
var cancelCallback = Scheduler.unstable_cancelCallback;
|
||
var shouldYield = Scheduler.unstable_shouldYield;
|
||
var requestPaint = Scheduler.unstable_requestPaint;
|
||
var now = Scheduler.unstable_now;
|
||
var getCurrentPriorityLevel = Scheduler.unstable_getCurrentPriorityLevel;
|
||
var ImmediatePriority = Scheduler.unstable_ImmediatePriority;
|
||
var UserBlockingPriority = Scheduler.unstable_UserBlockingPriority;
|
||
var NormalPriority = Scheduler.unstable_NormalPriority;
|
||
var LowPriority = Scheduler.unstable_LowPriority;
|
||
var IdlePriority = Scheduler.unstable_IdlePriority;
|
||
var unstable_yieldValue = Scheduler.unstable_yieldValue;
|
||
var unstable_setDisableYieldValue = Scheduler.unstable_setDisableYieldValue;
|
||
var rendererID = null;
|
||
var injectedHook = null;
|
||
var injectedProfilingHooks = null;
|
||
var hasLoggedError = false;
|
||
var isDevToolsPresent = typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined";
|
||
function injectInternals(internals) {
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === "undefined") {
|
||
return false;
|
||
}
|
||
var hook = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||
if (hook.isDisabled) {
|
||
return true;
|
||
}
|
||
if (!hook.supportsFiber) {
|
||
{
|
||
error("The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://reactjs.org/link/react-devtools");
|
||
}
|
||
return true;
|
||
}
|
||
try {
|
||
if (enableSchedulingProfiler) {
|
||
internals = assign({}, internals, {
|
||
getLaneLabelMap,
|
||
injectProfilingHooks
|
||
});
|
||
}
|
||
rendererID = hook.inject(internals);
|
||
injectedHook = hook;
|
||
} catch (err) {
|
||
{
|
||
error("React instrumentation encountered an error: %s.", err);
|
||
}
|
||
}
|
||
if (hook.checkDCE) {
|
||
return true;
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
function onScheduleRoot(root2, children) {
|
||
{
|
||
if (injectedHook && typeof injectedHook.onScheduleFiberRoot === "function") {
|
||
try {
|
||
injectedHook.onScheduleFiberRoot(rendererID, root2, children);
|
||
} catch (err) {
|
||
if (!hasLoggedError) {
|
||
hasLoggedError = true;
|
||
error("React instrumentation encountered an error: %s", err);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function onCommitRoot(root2, eventPriority) {
|
||
if (injectedHook && typeof injectedHook.onCommitFiberRoot === "function") {
|
||
try {
|
||
var didError = (root2.current.flags & DidCapture) === DidCapture;
|
||
if (enableProfilerTimer) {
|
||
var schedulerPriority;
|
||
switch (eventPriority) {
|
||
case DiscreteEventPriority:
|
||
schedulerPriority = ImmediatePriority;
|
||
break;
|
||
case ContinuousEventPriority:
|
||
schedulerPriority = UserBlockingPriority;
|
||
break;
|
||
case DefaultEventPriority:
|
||
schedulerPriority = NormalPriority;
|
||
break;
|
||
case IdleEventPriority:
|
||
schedulerPriority = IdlePriority;
|
||
break;
|
||
default:
|
||
schedulerPriority = NormalPriority;
|
||
break;
|
||
}
|
||
injectedHook.onCommitFiberRoot(rendererID, root2, schedulerPriority, didError);
|
||
} else {
|
||
injectedHook.onCommitFiberRoot(rendererID, root2, void 0, didError);
|
||
}
|
||
} catch (err) {
|
||
{
|
||
if (!hasLoggedError) {
|
||
hasLoggedError = true;
|
||
error("React instrumentation encountered an error: %s", err);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function onPostCommitRoot(root2) {
|
||
if (injectedHook && typeof injectedHook.onPostCommitFiberRoot === "function") {
|
||
try {
|
||
injectedHook.onPostCommitFiberRoot(rendererID, root2);
|
||
} catch (err) {
|
||
{
|
||
if (!hasLoggedError) {
|
||
hasLoggedError = true;
|
||
error("React instrumentation encountered an error: %s", err);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function onCommitUnmount(fiber) {
|
||
if (injectedHook && typeof injectedHook.onCommitFiberUnmount === "function") {
|
||
try {
|
||
injectedHook.onCommitFiberUnmount(rendererID, fiber);
|
||
} catch (err) {
|
||
{
|
||
if (!hasLoggedError) {
|
||
hasLoggedError = true;
|
||
error("React instrumentation encountered an error: %s", err);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function setIsStrictModeForDevtools(newIsStrictMode) {
|
||
{
|
||
if (typeof unstable_yieldValue === "function") {
|
||
unstable_setDisableYieldValue(newIsStrictMode);
|
||
setSuppressWarning(newIsStrictMode);
|
||
}
|
||
if (injectedHook && typeof injectedHook.setStrictMode === "function") {
|
||
try {
|
||
injectedHook.setStrictMode(rendererID, newIsStrictMode);
|
||
} catch (err) {
|
||
{
|
||
if (!hasLoggedError) {
|
||
hasLoggedError = true;
|
||
error("React instrumentation encountered an error: %s", err);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function injectProfilingHooks(profilingHooks) {
|
||
injectedProfilingHooks = profilingHooks;
|
||
}
|
||
function getLaneLabelMap() {
|
||
{
|
||
var map = /* @__PURE__ */ new Map();
|
||
var lane = 1;
|
||
for (var index2 = 0; index2 < TotalLanes; index2++) {
|
||
var label = getLabelForLane(lane);
|
||
map.set(lane, label);
|
||
lane *= 2;
|
||
}
|
||
return map;
|
||
}
|
||
}
|
||
function markCommitStarted(lanes) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markCommitStarted === "function") {
|
||
injectedProfilingHooks.markCommitStarted(lanes);
|
||
}
|
||
}
|
||
}
|
||
function markCommitStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markCommitStopped === "function") {
|
||
injectedProfilingHooks.markCommitStopped();
|
||
}
|
||
}
|
||
}
|
||
function markComponentRenderStarted(fiber) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentRenderStarted === "function") {
|
||
injectedProfilingHooks.markComponentRenderStarted(fiber);
|
||
}
|
||
}
|
||
}
|
||
function markComponentRenderStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentRenderStopped === "function") {
|
||
injectedProfilingHooks.markComponentRenderStopped();
|
||
}
|
||
}
|
||
}
|
||
function markComponentPassiveEffectMountStarted(fiber) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentPassiveEffectMountStarted === "function") {
|
||
injectedProfilingHooks.markComponentPassiveEffectMountStarted(fiber);
|
||
}
|
||
}
|
||
}
|
||
function markComponentPassiveEffectMountStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentPassiveEffectMountStopped === "function") {
|
||
injectedProfilingHooks.markComponentPassiveEffectMountStopped();
|
||
}
|
||
}
|
||
}
|
||
function markComponentPassiveEffectUnmountStarted(fiber) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentPassiveEffectUnmountStarted === "function") {
|
||
injectedProfilingHooks.markComponentPassiveEffectUnmountStarted(fiber);
|
||
}
|
||
}
|
||
}
|
||
function markComponentPassiveEffectUnmountStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentPassiveEffectUnmountStopped === "function") {
|
||
injectedProfilingHooks.markComponentPassiveEffectUnmountStopped();
|
||
}
|
||
}
|
||
}
|
||
function markComponentLayoutEffectMountStarted(fiber) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentLayoutEffectMountStarted === "function") {
|
||
injectedProfilingHooks.markComponentLayoutEffectMountStarted(fiber);
|
||
}
|
||
}
|
||
}
|
||
function markComponentLayoutEffectMountStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentLayoutEffectMountStopped === "function") {
|
||
injectedProfilingHooks.markComponentLayoutEffectMountStopped();
|
||
}
|
||
}
|
||
}
|
||
function markComponentLayoutEffectUnmountStarted(fiber) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentLayoutEffectUnmountStarted === "function") {
|
||
injectedProfilingHooks.markComponentLayoutEffectUnmountStarted(fiber);
|
||
}
|
||
}
|
||
}
|
||
function markComponentLayoutEffectUnmountStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentLayoutEffectUnmountStopped === "function") {
|
||
injectedProfilingHooks.markComponentLayoutEffectUnmountStopped();
|
||
}
|
||
}
|
||
}
|
||
function markComponentErrored(fiber, thrownValue, lanes) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentErrored === "function") {
|
||
injectedProfilingHooks.markComponentErrored(fiber, thrownValue, lanes);
|
||
}
|
||
}
|
||
}
|
||
function markComponentSuspended(fiber, wakeable, lanes) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markComponentSuspended === "function") {
|
||
injectedProfilingHooks.markComponentSuspended(fiber, wakeable, lanes);
|
||
}
|
||
}
|
||
}
|
||
function markLayoutEffectsStarted(lanes) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markLayoutEffectsStarted === "function") {
|
||
injectedProfilingHooks.markLayoutEffectsStarted(lanes);
|
||
}
|
||
}
|
||
}
|
||
function markLayoutEffectsStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markLayoutEffectsStopped === "function") {
|
||
injectedProfilingHooks.markLayoutEffectsStopped();
|
||
}
|
||
}
|
||
}
|
||
function markPassiveEffectsStarted(lanes) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markPassiveEffectsStarted === "function") {
|
||
injectedProfilingHooks.markPassiveEffectsStarted(lanes);
|
||
}
|
||
}
|
||
}
|
||
function markPassiveEffectsStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markPassiveEffectsStopped === "function") {
|
||
injectedProfilingHooks.markPassiveEffectsStopped();
|
||
}
|
||
}
|
||
}
|
||
function markRenderStarted(lanes) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markRenderStarted === "function") {
|
||
injectedProfilingHooks.markRenderStarted(lanes);
|
||
}
|
||
}
|
||
}
|
||
function markRenderYielded() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markRenderYielded === "function") {
|
||
injectedProfilingHooks.markRenderYielded();
|
||
}
|
||
}
|
||
}
|
||
function markRenderStopped() {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markRenderStopped === "function") {
|
||
injectedProfilingHooks.markRenderStopped();
|
||
}
|
||
}
|
||
}
|
||
function markRenderScheduled(lane) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markRenderScheduled === "function") {
|
||
injectedProfilingHooks.markRenderScheduled(lane);
|
||
}
|
||
}
|
||
}
|
||
function markForceUpdateScheduled(fiber, lane) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markForceUpdateScheduled === "function") {
|
||
injectedProfilingHooks.markForceUpdateScheduled(fiber, lane);
|
||
}
|
||
}
|
||
}
|
||
function markStateUpdateScheduled(fiber, lane) {
|
||
{
|
||
if (injectedProfilingHooks !== null && typeof injectedProfilingHooks.markStateUpdateScheduled === "function") {
|
||
injectedProfilingHooks.markStateUpdateScheduled(fiber, lane);
|
||
}
|
||
}
|
||
}
|
||
var NoMode = (
|
||
/* */
|
||
0
|
||
);
|
||
var ConcurrentMode = (
|
||
/* */
|
||
1
|
||
);
|
||
var ProfileMode = (
|
||
/* */
|
||
2
|
||
);
|
||
var StrictLegacyMode = (
|
||
/* */
|
||
8
|
||
);
|
||
var StrictEffectsMode = (
|
||
/* */
|
||
16
|
||
);
|
||
var clz32 = Math.clz32 ? Math.clz32 : clz32Fallback;
|
||
var log = Math.log;
|
||
var LN2 = Math.LN2;
|
||
function clz32Fallback(x) {
|
||
var asUint = x >>> 0;
|
||
if (asUint === 0) {
|
||
return 32;
|
||
}
|
||
return 31 - (log(asUint) / LN2 | 0) | 0;
|
||
}
|
||
var TotalLanes = 31;
|
||
var NoLanes = (
|
||
/* */
|
||
0
|
||
);
|
||
var NoLane = (
|
||
/* */
|
||
0
|
||
);
|
||
var SyncLane = (
|
||
/* */
|
||
1
|
||
);
|
||
var InputContinuousHydrationLane = (
|
||
/* */
|
||
2
|
||
);
|
||
var InputContinuousLane = (
|
||
/* */
|
||
4
|
||
);
|
||
var DefaultHydrationLane = (
|
||
/* */
|
||
8
|
||
);
|
||
var DefaultLane = (
|
||
/* */
|
||
16
|
||
);
|
||
var TransitionHydrationLane = (
|
||
/* */
|
||
32
|
||
);
|
||
var TransitionLanes = (
|
||
/* */
|
||
4194240
|
||
);
|
||
var TransitionLane1 = (
|
||
/* */
|
||
64
|
||
);
|
||
var TransitionLane2 = (
|
||
/* */
|
||
128
|
||
);
|
||
var TransitionLane3 = (
|
||
/* */
|
||
256
|
||
);
|
||
var TransitionLane4 = (
|
||
/* */
|
||
512
|
||
);
|
||
var TransitionLane5 = (
|
||
/* */
|
||
1024
|
||
);
|
||
var TransitionLane6 = (
|
||
/* */
|
||
2048
|
||
);
|
||
var TransitionLane7 = (
|
||
/* */
|
||
4096
|
||
);
|
||
var TransitionLane8 = (
|
||
/* */
|
||
8192
|
||
);
|
||
var TransitionLane9 = (
|
||
/* */
|
||
16384
|
||
);
|
||
var TransitionLane10 = (
|
||
/* */
|
||
32768
|
||
);
|
||
var TransitionLane11 = (
|
||
/* */
|
||
65536
|
||
);
|
||
var TransitionLane12 = (
|
||
/* */
|
||
131072
|
||
);
|
||
var TransitionLane13 = (
|
||
/* */
|
||
262144
|
||
);
|
||
var TransitionLane14 = (
|
||
/* */
|
||
524288
|
||
);
|
||
var TransitionLane15 = (
|
||
/* */
|
||
1048576
|
||
);
|
||
var TransitionLane16 = (
|
||
/* */
|
||
2097152
|
||
);
|
||
var RetryLanes = (
|
||
/* */
|
||
130023424
|
||
);
|
||
var RetryLane1 = (
|
||
/* */
|
||
4194304
|
||
);
|
||
var RetryLane2 = (
|
||
/* */
|
||
8388608
|
||
);
|
||
var RetryLane3 = (
|
||
/* */
|
||
16777216
|
||
);
|
||
var RetryLane4 = (
|
||
/* */
|
||
33554432
|
||
);
|
||
var RetryLane5 = (
|
||
/* */
|
||
67108864
|
||
);
|
||
var SomeRetryLane = RetryLane1;
|
||
var SelectiveHydrationLane = (
|
||
/* */
|
||
134217728
|
||
);
|
||
var NonIdleLanes = (
|
||
/* */
|
||
268435455
|
||
);
|
||
var IdleHydrationLane = (
|
||
/* */
|
||
268435456
|
||
);
|
||
var IdleLane = (
|
||
/* */
|
||
536870912
|
||
);
|
||
var OffscreenLane = (
|
||
/* */
|
||
1073741824
|
||
);
|
||
function getLabelForLane(lane) {
|
||
{
|
||
if (lane & SyncLane) {
|
||
return "Sync";
|
||
}
|
||
if (lane & InputContinuousHydrationLane) {
|
||
return "InputContinuousHydration";
|
||
}
|
||
if (lane & InputContinuousLane) {
|
||
return "InputContinuous";
|
||
}
|
||
if (lane & DefaultHydrationLane) {
|
||
return "DefaultHydration";
|
||
}
|
||
if (lane & DefaultLane) {
|
||
return "Default";
|
||
}
|
||
if (lane & TransitionHydrationLane) {
|
||
return "TransitionHydration";
|
||
}
|
||
if (lane & TransitionLanes) {
|
||
return "Transition";
|
||
}
|
||
if (lane & RetryLanes) {
|
||
return "Retry";
|
||
}
|
||
if (lane & SelectiveHydrationLane) {
|
||
return "SelectiveHydration";
|
||
}
|
||
if (lane & IdleHydrationLane) {
|
||
return "IdleHydration";
|
||
}
|
||
if (lane & IdleLane) {
|
||
return "Idle";
|
||
}
|
||
if (lane & OffscreenLane) {
|
||
return "Offscreen";
|
||
}
|
||
}
|
||
}
|
||
var NoTimestamp = -1;
|
||
var nextTransitionLane = TransitionLane1;
|
||
var nextRetryLane = RetryLane1;
|
||
function getHighestPriorityLanes(lanes) {
|
||
switch (getHighestPriorityLane(lanes)) {
|
||
case SyncLane:
|
||
return SyncLane;
|
||
case InputContinuousHydrationLane:
|
||
return InputContinuousHydrationLane;
|
||
case InputContinuousLane:
|
||
return InputContinuousLane;
|
||
case DefaultHydrationLane:
|
||
return DefaultHydrationLane;
|
||
case DefaultLane:
|
||
return DefaultLane;
|
||
case TransitionHydrationLane:
|
||
return TransitionHydrationLane;
|
||
case TransitionLane1:
|
||
case TransitionLane2:
|
||
case TransitionLane3:
|
||
case TransitionLane4:
|
||
case TransitionLane5:
|
||
case TransitionLane6:
|
||
case TransitionLane7:
|
||
case TransitionLane8:
|
||
case TransitionLane9:
|
||
case TransitionLane10:
|
||
case TransitionLane11:
|
||
case TransitionLane12:
|
||
case TransitionLane13:
|
||
case TransitionLane14:
|
||
case TransitionLane15:
|
||
case TransitionLane16:
|
||
return lanes & TransitionLanes;
|
||
case RetryLane1:
|
||
case RetryLane2:
|
||
case RetryLane3:
|
||
case RetryLane4:
|
||
case RetryLane5:
|
||
return lanes & RetryLanes;
|
||
case SelectiveHydrationLane:
|
||
return SelectiveHydrationLane;
|
||
case IdleHydrationLane:
|
||
return IdleHydrationLane;
|
||
case IdleLane:
|
||
return IdleLane;
|
||
case OffscreenLane:
|
||
return OffscreenLane;
|
||
default:
|
||
{
|
||
error("Should have found matching lanes. This is a bug in React.");
|
||
}
|
||
return lanes;
|
||
}
|
||
}
|
||
function getNextLanes(root2, wipLanes) {
|
||
var pendingLanes = root2.pendingLanes;
|
||
if (pendingLanes === NoLanes) {
|
||
return NoLanes;
|
||
}
|
||
var nextLanes = NoLanes;
|
||
var suspendedLanes = root2.suspendedLanes;
|
||
var pingedLanes = root2.pingedLanes;
|
||
var nonIdlePendingLanes = pendingLanes & NonIdleLanes;
|
||
if (nonIdlePendingLanes !== NoLanes) {
|
||
var nonIdleUnblockedLanes = nonIdlePendingLanes & ~suspendedLanes;
|
||
if (nonIdleUnblockedLanes !== NoLanes) {
|
||
nextLanes = getHighestPriorityLanes(nonIdleUnblockedLanes);
|
||
} else {
|
||
var nonIdlePingedLanes = nonIdlePendingLanes & pingedLanes;
|
||
if (nonIdlePingedLanes !== NoLanes) {
|
||
nextLanes = getHighestPriorityLanes(nonIdlePingedLanes);
|
||
}
|
||
}
|
||
} else {
|
||
var unblockedLanes = pendingLanes & ~suspendedLanes;
|
||
if (unblockedLanes !== NoLanes) {
|
||
nextLanes = getHighestPriorityLanes(unblockedLanes);
|
||
} else {
|
||
if (pingedLanes !== NoLanes) {
|
||
nextLanes = getHighestPriorityLanes(pingedLanes);
|
||
}
|
||
}
|
||
}
|
||
if (nextLanes === NoLanes) {
|
||
return NoLanes;
|
||
}
|
||
if (wipLanes !== NoLanes && wipLanes !== nextLanes && // If we already suspended with a delay, then interrupting is fine. Don't
|
||
// bother waiting until the root is complete.
|
||
(wipLanes & suspendedLanes) === NoLanes) {
|
||
var nextLane = getHighestPriorityLane(nextLanes);
|
||
var wipLane = getHighestPriorityLane(wipLanes);
|
||
if (
|
||
// Tests whether the next lane is equal or lower priority than the wip
|
||
// one. This works because the bits decrease in priority as you go left.
|
||
nextLane >= wipLane || // Default priority updates should not interrupt transition updates. The
|
||
// only difference between default updates and transition updates is that
|
||
// default updates do not support refresh transitions.
|
||
nextLane === DefaultLane && (wipLane & TransitionLanes) !== NoLanes
|
||
) {
|
||
return wipLanes;
|
||
}
|
||
}
|
||
if ((nextLanes & InputContinuousLane) !== NoLanes) {
|
||
nextLanes |= pendingLanes & DefaultLane;
|
||
}
|
||
var entangledLanes = root2.entangledLanes;
|
||
if (entangledLanes !== NoLanes) {
|
||
var entanglements = root2.entanglements;
|
||
var lanes = nextLanes & entangledLanes;
|
||
while (lanes > 0) {
|
||
var index2 = pickArbitraryLaneIndex(lanes);
|
||
var lane = 1 << index2;
|
||
nextLanes |= entanglements[index2];
|
||
lanes &= ~lane;
|
||
}
|
||
}
|
||
return nextLanes;
|
||
}
|
||
function getMostRecentEventTime(root2, lanes) {
|
||
var eventTimes = root2.eventTimes;
|
||
var mostRecentEventTime = NoTimestamp;
|
||
while (lanes > 0) {
|
||
var index2 = pickArbitraryLaneIndex(lanes);
|
||
var lane = 1 << index2;
|
||
var eventTime = eventTimes[index2];
|
||
if (eventTime > mostRecentEventTime) {
|
||
mostRecentEventTime = eventTime;
|
||
}
|
||
lanes &= ~lane;
|
||
}
|
||
return mostRecentEventTime;
|
||
}
|
||
function computeExpirationTime(lane, currentTime) {
|
||
switch (lane) {
|
||
case SyncLane:
|
||
case InputContinuousHydrationLane:
|
||
case InputContinuousLane:
|
||
return currentTime + 250;
|
||
case DefaultHydrationLane:
|
||
case DefaultLane:
|
||
case TransitionHydrationLane:
|
||
case TransitionLane1:
|
||
case TransitionLane2:
|
||
case TransitionLane3:
|
||
case TransitionLane4:
|
||
case TransitionLane5:
|
||
case TransitionLane6:
|
||
case TransitionLane7:
|
||
case TransitionLane8:
|
||
case TransitionLane9:
|
||
case TransitionLane10:
|
||
case TransitionLane11:
|
||
case TransitionLane12:
|
||
case TransitionLane13:
|
||
case TransitionLane14:
|
||
case TransitionLane15:
|
||
case TransitionLane16:
|
||
return currentTime + 5e3;
|
||
case RetryLane1:
|
||
case RetryLane2:
|
||
case RetryLane3:
|
||
case RetryLane4:
|
||
case RetryLane5:
|
||
return NoTimestamp;
|
||
case SelectiveHydrationLane:
|
||
case IdleHydrationLane:
|
||
case IdleLane:
|
||
case OffscreenLane:
|
||
return NoTimestamp;
|
||
default:
|
||
{
|
||
error("Should have found matching lanes. This is a bug in React.");
|
||
}
|
||
return NoTimestamp;
|
||
}
|
||
}
|
||
function markStarvedLanesAsExpired(root2, currentTime) {
|
||
var pendingLanes = root2.pendingLanes;
|
||
var suspendedLanes = root2.suspendedLanes;
|
||
var pingedLanes = root2.pingedLanes;
|
||
var expirationTimes = root2.expirationTimes;
|
||
var lanes = pendingLanes;
|
||
while (lanes > 0) {
|
||
var index2 = pickArbitraryLaneIndex(lanes);
|
||
var lane = 1 << index2;
|
||
var expirationTime = expirationTimes[index2];
|
||
if (expirationTime === NoTimestamp) {
|
||
if ((lane & suspendedLanes) === NoLanes || (lane & pingedLanes) !== NoLanes) {
|
||
expirationTimes[index2] = computeExpirationTime(lane, currentTime);
|
||
}
|
||
} else if (expirationTime <= currentTime) {
|
||
root2.expiredLanes |= lane;
|
||
}
|
||
lanes &= ~lane;
|
||
}
|
||
}
|
||
function getHighestPriorityPendingLanes(root2) {
|
||
return getHighestPriorityLanes(root2.pendingLanes);
|
||
}
|
||
function getLanesToRetrySynchronouslyOnError(root2) {
|
||
var everythingButOffscreen = root2.pendingLanes & ~OffscreenLane;
|
||
if (everythingButOffscreen !== NoLanes) {
|
||
return everythingButOffscreen;
|
||
}
|
||
if (everythingButOffscreen & OffscreenLane) {
|
||
return OffscreenLane;
|
||
}
|
||
return NoLanes;
|
||
}
|
||
function includesSyncLane(lanes) {
|
||
return (lanes & SyncLane) !== NoLanes;
|
||
}
|
||
function includesNonIdleWork(lanes) {
|
||
return (lanes & NonIdleLanes) !== NoLanes;
|
||
}
|
||
function includesOnlyRetries(lanes) {
|
||
return (lanes & RetryLanes) === lanes;
|
||
}
|
||
function includesOnlyNonUrgentLanes(lanes) {
|
||
var UrgentLanes = SyncLane | InputContinuousLane | DefaultLane;
|
||
return (lanes & UrgentLanes) === NoLanes;
|
||
}
|
||
function includesOnlyTransitions(lanes) {
|
||
return (lanes & TransitionLanes) === lanes;
|
||
}
|
||
function includesBlockingLane(root2, lanes) {
|
||
var SyncDefaultLanes = InputContinuousHydrationLane | InputContinuousLane | DefaultHydrationLane | DefaultLane;
|
||
return (lanes & SyncDefaultLanes) !== NoLanes;
|
||
}
|
||
function includesExpiredLane(root2, lanes) {
|
||
return (lanes & root2.expiredLanes) !== NoLanes;
|
||
}
|
||
function isTransitionLane(lane) {
|
||
return (lane & TransitionLanes) !== NoLanes;
|
||
}
|
||
function claimNextTransitionLane() {
|
||
var lane = nextTransitionLane;
|
||
nextTransitionLane <<= 1;
|
||
if ((nextTransitionLane & TransitionLanes) === NoLanes) {
|
||
nextTransitionLane = TransitionLane1;
|
||
}
|
||
return lane;
|
||
}
|
||
function claimNextRetryLane() {
|
||
var lane = nextRetryLane;
|
||
nextRetryLane <<= 1;
|
||
if ((nextRetryLane & RetryLanes) === NoLanes) {
|
||
nextRetryLane = RetryLane1;
|
||
}
|
||
return lane;
|
||
}
|
||
function getHighestPriorityLane(lanes) {
|
||
return lanes & -lanes;
|
||
}
|
||
function pickArbitraryLane(lanes) {
|
||
return getHighestPriorityLane(lanes);
|
||
}
|
||
function pickArbitraryLaneIndex(lanes) {
|
||
return 31 - clz32(lanes);
|
||
}
|
||
function laneToIndex(lane) {
|
||
return pickArbitraryLaneIndex(lane);
|
||
}
|
||
function includesSomeLane(a, b) {
|
||
return (a & b) !== NoLanes;
|
||
}
|
||
function isSubsetOfLanes(set3, subset) {
|
||
return (set3 & subset) === subset;
|
||
}
|
||
function mergeLanes(a, b) {
|
||
return a | b;
|
||
}
|
||
function removeLanes(set3, subset) {
|
||
return set3 & ~subset;
|
||
}
|
||
function intersectLanes(a, b) {
|
||
return a & b;
|
||
}
|
||
function laneToLanes(lane) {
|
||
return lane;
|
||
}
|
||
function higherPriorityLane(a, b) {
|
||
return a !== NoLane && a < b ? a : b;
|
||
}
|
||
function createLaneMap(initial) {
|
||
var laneMap = [];
|
||
for (var i = 0; i < TotalLanes; i++) {
|
||
laneMap.push(initial);
|
||
}
|
||
return laneMap;
|
||
}
|
||
function markRootUpdated(root2, updateLane, eventTime) {
|
||
root2.pendingLanes |= updateLane;
|
||
if (updateLane !== IdleLane) {
|
||
root2.suspendedLanes = NoLanes;
|
||
root2.pingedLanes = NoLanes;
|
||
}
|
||
var eventTimes = root2.eventTimes;
|
||
var index2 = laneToIndex(updateLane);
|
||
eventTimes[index2] = eventTime;
|
||
}
|
||
function markRootSuspended(root2, suspendedLanes) {
|
||
root2.suspendedLanes |= suspendedLanes;
|
||
root2.pingedLanes &= ~suspendedLanes;
|
||
var expirationTimes = root2.expirationTimes;
|
||
var lanes = suspendedLanes;
|
||
while (lanes > 0) {
|
||
var index2 = pickArbitraryLaneIndex(lanes);
|
||
var lane = 1 << index2;
|
||
expirationTimes[index2] = NoTimestamp;
|
||
lanes &= ~lane;
|
||
}
|
||
}
|
||
function markRootPinged(root2, pingedLanes, eventTime) {
|
||
root2.pingedLanes |= root2.suspendedLanes & pingedLanes;
|
||
}
|
||
function markRootFinished(root2, remainingLanes) {
|
||
var noLongerPendingLanes = root2.pendingLanes & ~remainingLanes;
|
||
root2.pendingLanes = remainingLanes;
|
||
root2.suspendedLanes = NoLanes;
|
||
root2.pingedLanes = NoLanes;
|
||
root2.expiredLanes &= remainingLanes;
|
||
root2.mutableReadLanes &= remainingLanes;
|
||
root2.entangledLanes &= remainingLanes;
|
||
var entanglements = root2.entanglements;
|
||
var eventTimes = root2.eventTimes;
|
||
var expirationTimes = root2.expirationTimes;
|
||
var lanes = noLongerPendingLanes;
|
||
while (lanes > 0) {
|
||
var index2 = pickArbitraryLaneIndex(lanes);
|
||
var lane = 1 << index2;
|
||
entanglements[index2] = NoLanes;
|
||
eventTimes[index2] = NoTimestamp;
|
||
expirationTimes[index2] = NoTimestamp;
|
||
lanes &= ~lane;
|
||
}
|
||
}
|
||
function markRootEntangled(root2, entangledLanes) {
|
||
var rootEntangledLanes = root2.entangledLanes |= entangledLanes;
|
||
var entanglements = root2.entanglements;
|
||
var lanes = rootEntangledLanes;
|
||
while (lanes) {
|
||
var index2 = pickArbitraryLaneIndex(lanes);
|
||
var lane = 1 << index2;
|
||
if (
|
||
// Is this one of the newly entangled lanes?
|
||
lane & entangledLanes | // Is this lane transitively entangled with the newly entangled lanes?
|
||
entanglements[index2] & entangledLanes
|
||
) {
|
||
entanglements[index2] |= entangledLanes;
|
||
}
|
||
lanes &= ~lane;
|
||
}
|
||
}
|
||
function getBumpedLaneForHydration(root2, renderLanes2) {
|
||
var renderLane = getHighestPriorityLane(renderLanes2);
|
||
var lane;
|
||
switch (renderLane) {
|
||
case InputContinuousLane:
|
||
lane = InputContinuousHydrationLane;
|
||
break;
|
||
case DefaultLane:
|
||
lane = DefaultHydrationLane;
|
||
break;
|
||
case TransitionLane1:
|
||
case TransitionLane2:
|
||
case TransitionLane3:
|
||
case TransitionLane4:
|
||
case TransitionLane5:
|
||
case TransitionLane6:
|
||
case TransitionLane7:
|
||
case TransitionLane8:
|
||
case TransitionLane9:
|
||
case TransitionLane10:
|
||
case TransitionLane11:
|
||
case TransitionLane12:
|
||
case TransitionLane13:
|
||
case TransitionLane14:
|
||
case TransitionLane15:
|
||
case TransitionLane16:
|
||
case RetryLane1:
|
||
case RetryLane2:
|
||
case RetryLane3:
|
||
case RetryLane4:
|
||
case RetryLane5:
|
||
lane = TransitionHydrationLane;
|
||
break;
|
||
case IdleLane:
|
||
lane = IdleHydrationLane;
|
||
break;
|
||
default:
|
||
lane = NoLane;
|
||
break;
|
||
}
|
||
if ((lane & (root2.suspendedLanes | renderLanes2)) !== NoLane) {
|
||
return NoLane;
|
||
}
|
||
return lane;
|
||
}
|
||
function addFiberToLanesMap(root2, fiber, lanes) {
|
||
if (!isDevToolsPresent) {
|
||
return;
|
||
}
|
||
var pendingUpdatersLaneMap = root2.pendingUpdatersLaneMap;
|
||
while (lanes > 0) {
|
||
var index2 = laneToIndex(lanes);
|
||
var lane = 1 << index2;
|
||
var updaters = pendingUpdatersLaneMap[index2];
|
||
updaters.add(fiber);
|
||
lanes &= ~lane;
|
||
}
|
||
}
|
||
function movePendingFibersToMemoized(root2, lanes) {
|
||
if (!isDevToolsPresent) {
|
||
return;
|
||
}
|
||
var pendingUpdatersLaneMap = root2.pendingUpdatersLaneMap;
|
||
var memoizedUpdaters = root2.memoizedUpdaters;
|
||
while (lanes > 0) {
|
||
var index2 = laneToIndex(lanes);
|
||
var lane = 1 << index2;
|
||
var updaters = pendingUpdatersLaneMap[index2];
|
||
if (updaters.size > 0) {
|
||
updaters.forEach(function(fiber) {
|
||
var alternate = fiber.alternate;
|
||
if (alternate === null || !memoizedUpdaters.has(alternate)) {
|
||
memoizedUpdaters.add(fiber);
|
||
}
|
||
});
|
||
updaters.clear();
|
||
}
|
||
lanes &= ~lane;
|
||
}
|
||
}
|
||
function getTransitionsForLanes(root2, lanes) {
|
||
{
|
||
return null;
|
||
}
|
||
}
|
||
var DiscreteEventPriority = SyncLane;
|
||
var ContinuousEventPriority = InputContinuousLane;
|
||
var DefaultEventPriority = DefaultLane;
|
||
var IdleEventPriority = IdleLane;
|
||
var currentUpdatePriority = NoLane;
|
||
function getCurrentUpdatePriority() {
|
||
return currentUpdatePriority;
|
||
}
|
||
function setCurrentUpdatePriority(newPriority) {
|
||
currentUpdatePriority = newPriority;
|
||
}
|
||
function runWithPriority(priority, fn) {
|
||
var previousPriority = currentUpdatePriority;
|
||
try {
|
||
currentUpdatePriority = priority;
|
||
return fn();
|
||
} finally {
|
||
currentUpdatePriority = previousPriority;
|
||
}
|
||
}
|
||
function higherEventPriority(a, b) {
|
||
return a !== 0 && a < b ? a : b;
|
||
}
|
||
function lowerEventPriority(a, b) {
|
||
return a === 0 || a > b ? a : b;
|
||
}
|
||
function isHigherEventPriority(a, b) {
|
||
return a !== 0 && a < b;
|
||
}
|
||
function lanesToEventPriority(lanes) {
|
||
var lane = getHighestPriorityLane(lanes);
|
||
if (!isHigherEventPriority(DiscreteEventPriority, lane)) {
|
||
return DiscreteEventPriority;
|
||
}
|
||
if (!isHigherEventPriority(ContinuousEventPriority, lane)) {
|
||
return ContinuousEventPriority;
|
||
}
|
||
if (includesNonIdleWork(lane)) {
|
||
return DefaultEventPriority;
|
||
}
|
||
return IdleEventPriority;
|
||
}
|
||
function isRootDehydrated(root2) {
|
||
var currentState = root2.current.memoizedState;
|
||
return currentState.isDehydrated;
|
||
}
|
||
var _attemptSynchronousHydration;
|
||
function setAttemptSynchronousHydration(fn) {
|
||
_attemptSynchronousHydration = fn;
|
||
}
|
||
function attemptSynchronousHydration(fiber) {
|
||
_attemptSynchronousHydration(fiber);
|
||
}
|
||
var attemptContinuousHydration;
|
||
function setAttemptContinuousHydration(fn) {
|
||
attemptContinuousHydration = fn;
|
||
}
|
||
var attemptHydrationAtCurrentPriority;
|
||
function setAttemptHydrationAtCurrentPriority(fn) {
|
||
attemptHydrationAtCurrentPriority = fn;
|
||
}
|
||
var getCurrentUpdatePriority$1;
|
||
function setGetCurrentUpdatePriority(fn) {
|
||
getCurrentUpdatePriority$1 = fn;
|
||
}
|
||
var attemptHydrationAtPriority;
|
||
function setAttemptHydrationAtPriority(fn) {
|
||
attemptHydrationAtPriority = fn;
|
||
}
|
||
var hasScheduledReplayAttempt = false;
|
||
var queuedDiscreteEvents = [];
|
||
var queuedFocus = null;
|
||
var queuedDrag = null;
|
||
var queuedMouse = null;
|
||
var queuedPointers = /* @__PURE__ */ new Map();
|
||
var queuedPointerCaptures = /* @__PURE__ */ new Map();
|
||
var queuedExplicitHydrationTargets = [];
|
||
var discreteReplayableEvents = [
|
||
"mousedown",
|
||
"mouseup",
|
||
"touchcancel",
|
||
"touchend",
|
||
"touchstart",
|
||
"auxclick",
|
||
"dblclick",
|
||
"pointercancel",
|
||
"pointerdown",
|
||
"pointerup",
|
||
"dragend",
|
||
"dragstart",
|
||
"drop",
|
||
"compositionend",
|
||
"compositionstart",
|
||
"keydown",
|
||
"keypress",
|
||
"keyup",
|
||
"input",
|
||
"textInput",
|
||
// Intentionally camelCase
|
||
"copy",
|
||
"cut",
|
||
"paste",
|
||
"click",
|
||
"change",
|
||
"contextmenu",
|
||
"reset",
|
||
"submit"
|
||
];
|
||
function isDiscreteEventThatRequiresHydration(eventType) {
|
||
return discreteReplayableEvents.indexOf(eventType) > -1;
|
||
}
|
||
function createQueuedReplayableEvent(blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent) {
|
||
return {
|
||
blockedOn,
|
||
domEventName,
|
||
eventSystemFlags,
|
||
nativeEvent,
|
||
targetContainers: [targetContainer]
|
||
};
|
||
}
|
||
function clearIfContinuousEvent(domEventName, nativeEvent) {
|
||
switch (domEventName) {
|
||
case "focusin":
|
||
case "focusout":
|
||
queuedFocus = null;
|
||
break;
|
||
case "dragenter":
|
||
case "dragleave":
|
||
queuedDrag = null;
|
||
break;
|
||
case "mouseover":
|
||
case "mouseout":
|
||
queuedMouse = null;
|
||
break;
|
||
case "pointerover":
|
||
case "pointerout": {
|
||
var pointerId = nativeEvent.pointerId;
|
||
queuedPointers.delete(pointerId);
|
||
break;
|
||
}
|
||
case "gotpointercapture":
|
||
case "lostpointercapture": {
|
||
var _pointerId = nativeEvent.pointerId;
|
||
queuedPointerCaptures.delete(_pointerId);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function accumulateOrCreateContinuousQueuedReplayableEvent(existingQueuedEvent, blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent) {
|
||
if (existingQueuedEvent === null || existingQueuedEvent.nativeEvent !== nativeEvent) {
|
||
var queuedEvent = createQueuedReplayableEvent(blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent);
|
||
if (blockedOn !== null) {
|
||
var _fiber2 = getInstanceFromNode(blockedOn);
|
||
if (_fiber2 !== null) {
|
||
attemptContinuousHydration(_fiber2);
|
||
}
|
||
}
|
||
return queuedEvent;
|
||
}
|
||
existingQueuedEvent.eventSystemFlags |= eventSystemFlags;
|
||
var targetContainers = existingQueuedEvent.targetContainers;
|
||
if (targetContainer !== null && targetContainers.indexOf(targetContainer) === -1) {
|
||
targetContainers.push(targetContainer);
|
||
}
|
||
return existingQueuedEvent;
|
||
}
|
||
function queueIfContinuousEvent(blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent) {
|
||
switch (domEventName) {
|
||
case "focusin": {
|
||
var focusEvent = nativeEvent;
|
||
queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(queuedFocus, blockedOn, domEventName, eventSystemFlags, targetContainer, focusEvent);
|
||
return true;
|
||
}
|
||
case "dragenter": {
|
||
var dragEvent = nativeEvent;
|
||
queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(queuedDrag, blockedOn, domEventName, eventSystemFlags, targetContainer, dragEvent);
|
||
return true;
|
||
}
|
||
case "mouseover": {
|
||
var mouseEvent = nativeEvent;
|
||
queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(queuedMouse, blockedOn, domEventName, eventSystemFlags, targetContainer, mouseEvent);
|
||
return true;
|
||
}
|
||
case "pointerover": {
|
||
var pointerEvent = nativeEvent;
|
||
var pointerId = pointerEvent.pointerId;
|
||
queuedPointers.set(pointerId, accumulateOrCreateContinuousQueuedReplayableEvent(queuedPointers.get(pointerId) || null, blockedOn, domEventName, eventSystemFlags, targetContainer, pointerEvent));
|
||
return true;
|
||
}
|
||
case "gotpointercapture": {
|
||
var _pointerEvent = nativeEvent;
|
||
var _pointerId2 = _pointerEvent.pointerId;
|
||
queuedPointerCaptures.set(_pointerId2, accumulateOrCreateContinuousQueuedReplayableEvent(queuedPointerCaptures.get(_pointerId2) || null, blockedOn, domEventName, eventSystemFlags, targetContainer, _pointerEvent));
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function attemptExplicitHydrationTarget(queuedTarget) {
|
||
var targetInst = getClosestInstanceFromNode(queuedTarget.target);
|
||
if (targetInst !== null) {
|
||
var nearestMounted = getNearestMountedFiber(targetInst);
|
||
if (nearestMounted !== null) {
|
||
var tag = nearestMounted.tag;
|
||
if (tag === SuspenseComponent) {
|
||
var instance = getSuspenseInstanceFromFiber(nearestMounted);
|
||
if (instance !== null) {
|
||
queuedTarget.blockedOn = instance;
|
||
attemptHydrationAtPriority(queuedTarget.priority, function() {
|
||
attemptHydrationAtCurrentPriority(nearestMounted);
|
||
});
|
||
return;
|
||
}
|
||
} else if (tag === HostRoot) {
|
||
var root2 = nearestMounted.stateNode;
|
||
if (isRootDehydrated(root2)) {
|
||
queuedTarget.blockedOn = getContainerFromFiber(nearestMounted);
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
queuedTarget.blockedOn = null;
|
||
}
|
||
function queueExplicitHydrationTarget(target) {
|
||
var updatePriority = getCurrentUpdatePriority$1();
|
||
var queuedTarget = {
|
||
blockedOn: null,
|
||
target,
|
||
priority: updatePriority
|
||
};
|
||
var i = 0;
|
||
for (; i < queuedExplicitHydrationTargets.length; i++) {
|
||
if (!isHigherEventPriority(updatePriority, queuedExplicitHydrationTargets[i].priority)) {
|
||
break;
|
||
}
|
||
}
|
||
queuedExplicitHydrationTargets.splice(i, 0, queuedTarget);
|
||
if (i === 0) {
|
||
attemptExplicitHydrationTarget(queuedTarget);
|
||
}
|
||
}
|
||
function attemptReplayContinuousQueuedEvent(queuedEvent) {
|
||
if (queuedEvent.blockedOn !== null) {
|
||
return false;
|
||
}
|
||
var targetContainers = queuedEvent.targetContainers;
|
||
while (targetContainers.length > 0) {
|
||
var targetContainer = targetContainers[0];
|
||
var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.domEventName, queuedEvent.eventSystemFlags, targetContainer, queuedEvent.nativeEvent);
|
||
if (nextBlockedOn === null) {
|
||
{
|
||
var nativeEvent = queuedEvent.nativeEvent;
|
||
var nativeEventClone = new nativeEvent.constructor(nativeEvent.type, nativeEvent);
|
||
setReplayingEvent(nativeEventClone);
|
||
nativeEvent.target.dispatchEvent(nativeEventClone);
|
||
resetReplayingEvent();
|
||
}
|
||
} else {
|
||
var _fiber3 = getInstanceFromNode(nextBlockedOn);
|
||
if (_fiber3 !== null) {
|
||
attemptContinuousHydration(_fiber3);
|
||
}
|
||
queuedEvent.blockedOn = nextBlockedOn;
|
||
return false;
|
||
}
|
||
targetContainers.shift();
|
||
}
|
||
return true;
|
||
}
|
||
function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
|
||
if (attemptReplayContinuousQueuedEvent(queuedEvent)) {
|
||
map.delete(key);
|
||
}
|
||
}
|
||
function replayUnblockedEvents() {
|
||
hasScheduledReplayAttempt = false;
|
||
if (queuedFocus !== null && attemptReplayContinuousQueuedEvent(queuedFocus)) {
|
||
queuedFocus = null;
|
||
}
|
||
if (queuedDrag !== null && attemptReplayContinuousQueuedEvent(queuedDrag)) {
|
||
queuedDrag = null;
|
||
}
|
||
if (queuedMouse !== null && attemptReplayContinuousQueuedEvent(queuedMouse)) {
|
||
queuedMouse = null;
|
||
}
|
||
queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);
|
||
queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);
|
||
}
|
||
function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {
|
||
if (queuedEvent.blockedOn === unblocked) {
|
||
queuedEvent.blockedOn = null;
|
||
if (!hasScheduledReplayAttempt) {
|
||
hasScheduledReplayAttempt = true;
|
||
Scheduler.unstable_scheduleCallback(Scheduler.unstable_NormalPriority, replayUnblockedEvents);
|
||
}
|
||
}
|
||
}
|
||
function retryIfBlockedOn(unblocked) {
|
||
if (queuedDiscreteEvents.length > 0) {
|
||
scheduleCallbackIfUnblocked(queuedDiscreteEvents[0], unblocked);
|
||
for (var i = 1; i < queuedDiscreteEvents.length; i++) {
|
||
var queuedEvent = queuedDiscreteEvents[i];
|
||
if (queuedEvent.blockedOn === unblocked) {
|
||
queuedEvent.blockedOn = null;
|
||
}
|
||
}
|
||
}
|
||
if (queuedFocus !== null) {
|
||
scheduleCallbackIfUnblocked(queuedFocus, unblocked);
|
||
}
|
||
if (queuedDrag !== null) {
|
||
scheduleCallbackIfUnblocked(queuedDrag, unblocked);
|
||
}
|
||
if (queuedMouse !== null) {
|
||
scheduleCallbackIfUnblocked(queuedMouse, unblocked);
|
||
}
|
||
var unblock = function(queuedEvent2) {
|
||
return scheduleCallbackIfUnblocked(queuedEvent2, unblocked);
|
||
};
|
||
queuedPointers.forEach(unblock);
|
||
queuedPointerCaptures.forEach(unblock);
|
||
for (var _i = 0; _i < queuedExplicitHydrationTargets.length; _i++) {
|
||
var queuedTarget = queuedExplicitHydrationTargets[_i];
|
||
if (queuedTarget.blockedOn === unblocked) {
|
||
queuedTarget.blockedOn = null;
|
||
}
|
||
}
|
||
while (queuedExplicitHydrationTargets.length > 0) {
|
||
var nextExplicitTarget = queuedExplicitHydrationTargets[0];
|
||
if (nextExplicitTarget.blockedOn !== null) {
|
||
break;
|
||
} else {
|
||
attemptExplicitHydrationTarget(nextExplicitTarget);
|
||
if (nextExplicitTarget.blockedOn === null) {
|
||
queuedExplicitHydrationTargets.shift();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var ReactCurrentBatchConfig = ReactSharedInternals.ReactCurrentBatchConfig;
|
||
var _enabled = true;
|
||
function setEnabled(enabled) {
|
||
_enabled = !!enabled;
|
||
}
|
||
function isEnabled() {
|
||
return _enabled;
|
||
}
|
||
function createEventListenerWrapperWithPriority(targetContainer, domEventName, eventSystemFlags) {
|
||
var eventPriority = getEventPriority(domEventName);
|
||
var listenerWrapper;
|
||
switch (eventPriority) {
|
||
case DiscreteEventPriority:
|
||
listenerWrapper = dispatchDiscreteEvent;
|
||
break;
|
||
case ContinuousEventPriority:
|
||
listenerWrapper = dispatchContinuousEvent;
|
||
break;
|
||
case DefaultEventPriority:
|
||
default:
|
||
listenerWrapper = dispatchEvent;
|
||
break;
|
||
}
|
||
return listenerWrapper.bind(null, domEventName, eventSystemFlags, targetContainer);
|
||
}
|
||
function dispatchDiscreteEvent(domEventName, eventSystemFlags, container, nativeEvent) {
|
||
var previousPriority = getCurrentUpdatePriority();
|
||
var prevTransition = ReactCurrentBatchConfig.transition;
|
||
ReactCurrentBatchConfig.transition = null;
|
||
try {
|
||
setCurrentUpdatePriority(DiscreteEventPriority);
|
||
dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent);
|
||
} finally {
|
||
setCurrentUpdatePriority(previousPriority);
|
||
ReactCurrentBatchConfig.transition = prevTransition;
|
||
}
|
||
}
|
||
function dispatchContinuousEvent(domEventName, eventSystemFlags, container, nativeEvent) {
|
||
var previousPriority = getCurrentUpdatePriority();
|
||
var prevTransition = ReactCurrentBatchConfig.transition;
|
||
ReactCurrentBatchConfig.transition = null;
|
||
try {
|
||
setCurrentUpdatePriority(ContinuousEventPriority);
|
||
dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent);
|
||
} finally {
|
||
setCurrentUpdatePriority(previousPriority);
|
||
ReactCurrentBatchConfig.transition = prevTransition;
|
||
}
|
||
}
|
||
function dispatchEvent(domEventName, eventSystemFlags, targetContainer, nativeEvent) {
|
||
if (!_enabled) {
|
||
return;
|
||
}
|
||
{
|
||
dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay(domEventName, eventSystemFlags, targetContainer, nativeEvent);
|
||
}
|
||
}
|
||
function dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay(domEventName, eventSystemFlags, targetContainer, nativeEvent) {
|
||
var blockedOn = findInstanceBlockingEvent(domEventName, eventSystemFlags, targetContainer, nativeEvent);
|
||
if (blockedOn === null) {
|
||
dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, return_targetInst, targetContainer);
|
||
clearIfContinuousEvent(domEventName, nativeEvent);
|
||
return;
|
||
}
|
||
if (queueIfContinuousEvent(blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent)) {
|
||
nativeEvent.stopPropagation();
|
||
return;
|
||
}
|
||
clearIfContinuousEvent(domEventName, nativeEvent);
|
||
if (eventSystemFlags & IS_CAPTURE_PHASE && isDiscreteEventThatRequiresHydration(domEventName)) {
|
||
while (blockedOn !== null) {
|
||
var fiber = getInstanceFromNode(blockedOn);
|
||
if (fiber !== null) {
|
||
attemptSynchronousHydration(fiber);
|
||
}
|
||
var nextBlockedOn = findInstanceBlockingEvent(domEventName, eventSystemFlags, targetContainer, nativeEvent);
|
||
if (nextBlockedOn === null) {
|
||
dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, return_targetInst, targetContainer);
|
||
}
|
||
if (nextBlockedOn === blockedOn) {
|
||
break;
|
||
}
|
||
blockedOn = nextBlockedOn;
|
||
}
|
||
if (blockedOn !== null) {
|
||
nativeEvent.stopPropagation();
|
||
}
|
||
return;
|
||
}
|
||
dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, null, targetContainer);
|
||
}
|
||
var return_targetInst = null;
|
||
function findInstanceBlockingEvent(domEventName, eventSystemFlags, targetContainer, nativeEvent) {
|
||
return_targetInst = null;
|
||
var nativeEventTarget = getEventTarget(nativeEvent);
|
||
var targetInst = getClosestInstanceFromNode(nativeEventTarget);
|
||
if (targetInst !== null) {
|
||
var nearestMounted = getNearestMountedFiber(targetInst);
|
||
if (nearestMounted === null) {
|
||
targetInst = null;
|
||
} else {
|
||
var tag = nearestMounted.tag;
|
||
if (tag === SuspenseComponent) {
|
||
var instance = getSuspenseInstanceFromFiber(nearestMounted);
|
||
if (instance !== null) {
|
||
return instance;
|
||
}
|
||
targetInst = null;
|
||
} else if (tag === HostRoot) {
|
||
var root2 = nearestMounted.stateNode;
|
||
if (isRootDehydrated(root2)) {
|
||
return getContainerFromFiber(nearestMounted);
|
||
}
|
||
targetInst = null;
|
||
} else if (nearestMounted !== targetInst) {
|
||
targetInst = null;
|
||
}
|
||
}
|
||
}
|
||
return_targetInst = targetInst;
|
||
return null;
|
||
}
|
||
function getEventPriority(domEventName) {
|
||
switch (domEventName) {
|
||
case "cancel":
|
||
case "click":
|
||
case "close":
|
||
case "contextmenu":
|
||
case "copy":
|
||
case "cut":
|
||
case "auxclick":
|
||
case "dblclick":
|
||
case "dragend":
|
||
case "dragstart":
|
||
case "drop":
|
||
case "focusin":
|
||
case "focusout":
|
||
case "input":
|
||
case "invalid":
|
||
case "keydown":
|
||
case "keypress":
|
||
case "keyup":
|
||
case "mousedown":
|
||
case "mouseup":
|
||
case "paste":
|
||
case "pause":
|
||
case "play":
|
||
case "pointercancel":
|
||
case "pointerdown":
|
||
case "pointerup":
|
||
case "ratechange":
|
||
case "reset":
|
||
case "resize":
|
||
case "seeked":
|
||
case "submit":
|
||
case "touchcancel":
|
||
case "touchend":
|
||
case "touchstart":
|
||
case "volumechange":
|
||
case "change":
|
||
case "selectionchange":
|
||
case "textInput":
|
||
case "compositionstart":
|
||
case "compositionend":
|
||
case "compositionupdate":
|
||
case "beforeblur":
|
||
case "afterblur":
|
||
case "beforeinput":
|
||
case "blur":
|
||
case "fullscreenchange":
|
||
case "focus":
|
||
case "hashchange":
|
||
case "popstate":
|
||
case "select":
|
||
case "selectstart":
|
||
return DiscreteEventPriority;
|
||
case "drag":
|
||
case "dragenter":
|
||
case "dragexit":
|
||
case "dragleave":
|
||
case "dragover":
|
||
case "mousemove":
|
||
case "mouseout":
|
||
case "mouseover":
|
||
case "pointermove":
|
||
case "pointerout":
|
||
case "pointerover":
|
||
case "scroll":
|
||
case "toggle":
|
||
case "touchmove":
|
||
case "wheel":
|
||
case "mouseenter":
|
||
case "mouseleave":
|
||
case "pointerenter":
|
||
case "pointerleave":
|
||
return ContinuousEventPriority;
|
||
case "message": {
|
||
var schedulerPriority = getCurrentPriorityLevel();
|
||
switch (schedulerPriority) {
|
||
case ImmediatePriority:
|
||
return DiscreteEventPriority;
|
||
case UserBlockingPriority:
|
||
return ContinuousEventPriority;
|
||
case NormalPriority:
|
||
case LowPriority:
|
||
return DefaultEventPriority;
|
||
case IdlePriority:
|
||
return IdleEventPriority;
|
||
default:
|
||
return DefaultEventPriority;
|
||
}
|
||
}
|
||
default:
|
||
return DefaultEventPriority;
|
||
}
|
||
}
|
||
function addEventBubbleListener(target, eventType, listener) {
|
||
target.addEventListener(eventType, listener, false);
|
||
return listener;
|
||
}
|
||
function addEventCaptureListener(target, eventType, listener) {
|
||
target.addEventListener(eventType, listener, true);
|
||
return listener;
|
||
}
|
||
function addEventCaptureListenerWithPassiveFlag(target, eventType, listener, passive) {
|
||
target.addEventListener(eventType, listener, {
|
||
capture: true,
|
||
passive
|
||
});
|
||
return listener;
|
||
}
|
||
function addEventBubbleListenerWithPassiveFlag(target, eventType, listener, passive) {
|
||
target.addEventListener(eventType, listener, {
|
||
passive
|
||
});
|
||
return listener;
|
||
}
|
||
var root = null;
|
||
var startText = null;
|
||
var fallbackText = null;
|
||
function initialize(nativeEventTarget) {
|
||
root = nativeEventTarget;
|
||
startText = getText();
|
||
return true;
|
||
}
|
||
function reset() {
|
||
root = null;
|
||
startText = null;
|
||
fallbackText = null;
|
||
}
|
||
function getData() {
|
||
if (fallbackText) {
|
||
return fallbackText;
|
||
}
|
||
var start;
|
||
var startValue = startText;
|
||
var startLength = startValue.length;
|
||
var end;
|
||
var endValue = getText();
|
||
var endLength = endValue.length;
|
||
for (start = 0; start < startLength; start++) {
|
||
if (startValue[start] !== endValue[start]) {
|
||
break;
|
||
}
|
||
}
|
||
var minEnd = startLength - start;
|
||
for (end = 1; end <= minEnd; end++) {
|
||
if (startValue[startLength - end] !== endValue[endLength - end]) {
|
||
break;
|
||
}
|
||
}
|
||
var sliceTail = end > 1 ? 1 - end : void 0;
|
||
fallbackText = endValue.slice(start, sliceTail);
|
||
return fallbackText;
|
||
}
|
||
function getText() {
|
||
if ("value" in root) {
|
||
return root.value;
|
||
}
|
||
return root.textContent;
|
||
}
|
||
function getEventCharCode(nativeEvent) {
|
||
var charCode;
|
||
var keyCode = nativeEvent.keyCode;
|
||
if ("charCode" in nativeEvent) {
|
||
charCode = nativeEvent.charCode;
|
||
if (charCode === 0 && keyCode === 13) {
|
||
charCode = 13;
|
||
}
|
||
} else {
|
||
charCode = keyCode;
|
||
}
|
||
if (charCode === 10) {
|
||
charCode = 13;
|
||
}
|
||
if (charCode >= 32 || charCode === 13) {
|
||
return charCode;
|
||
}
|
||
return 0;
|
||
}
|
||
function functionThatReturnsTrue() {
|
||
return true;
|
||
}
|
||
function functionThatReturnsFalse() {
|
||
return false;
|
||
}
|
||
function createSyntheticEvent(Interface) {
|
||
function SyntheticBaseEvent(reactName, reactEventType, targetInst, nativeEvent, nativeEventTarget) {
|
||
this._reactName = reactName;
|
||
this._targetInst = targetInst;
|
||
this.type = reactEventType;
|
||
this.nativeEvent = nativeEvent;
|
||
this.target = nativeEventTarget;
|
||
this.currentTarget = null;
|
||
for (var _propName in Interface) {
|
||
if (!Interface.hasOwnProperty(_propName)) {
|
||
continue;
|
||
}
|
||
var normalize = Interface[_propName];
|
||
if (normalize) {
|
||
this[_propName] = normalize(nativeEvent);
|
||
} else {
|
||
this[_propName] = nativeEvent[_propName];
|
||
}
|
||
}
|
||
var defaultPrevented = nativeEvent.defaultPrevented != null ? nativeEvent.defaultPrevented : nativeEvent.returnValue === false;
|
||
if (defaultPrevented) {
|
||
this.isDefaultPrevented = functionThatReturnsTrue;
|
||
} else {
|
||
this.isDefaultPrevented = functionThatReturnsFalse;
|
||
}
|
||
this.isPropagationStopped = functionThatReturnsFalse;
|
||
return this;
|
||
}
|
||
assign(SyntheticBaseEvent.prototype, {
|
||
preventDefault: function() {
|
||
this.defaultPrevented = true;
|
||
var event = this.nativeEvent;
|
||
if (!event) {
|
||
return;
|
||
}
|
||
if (event.preventDefault) {
|
||
event.preventDefault();
|
||
} else if (typeof event.returnValue !== "unknown") {
|
||
event.returnValue = false;
|
||
}
|
||
this.isDefaultPrevented = functionThatReturnsTrue;
|
||
},
|
||
stopPropagation: function() {
|
||
var event = this.nativeEvent;
|
||
if (!event) {
|
||
return;
|
||
}
|
||
if (event.stopPropagation) {
|
||
event.stopPropagation();
|
||
} else if (typeof event.cancelBubble !== "unknown") {
|
||
event.cancelBubble = true;
|
||
}
|
||
this.isPropagationStopped = functionThatReturnsTrue;
|
||
},
|
||
/**
|
||
* We release all dispatched `SyntheticEvent`s after each event loop, adding
|
||
* them back into the pool. This allows a way to hold onto a reference that
|
||
* won't be added back into the pool.
|
||
*/
|
||
persist: function() {
|
||
},
|
||
/**
|
||
* Checks if this event should be released back into the pool.
|
||
*
|
||
* @return {boolean} True if this should not be released, false otherwise.
|
||
*/
|
||
isPersistent: functionThatReturnsTrue
|
||
});
|
||
return SyntheticBaseEvent;
|
||
}
|
||
var EventInterface = {
|
||
eventPhase: 0,
|
||
bubbles: 0,
|
||
cancelable: 0,
|
||
timeStamp: function(event) {
|
||
return event.timeStamp || Date.now();
|
||
},
|
||
defaultPrevented: 0,
|
||
isTrusted: 0
|
||
};
|
||
var SyntheticEvent = createSyntheticEvent(EventInterface);
|
||
var UIEventInterface = assign({}, EventInterface, {
|
||
view: 0,
|
||
detail: 0
|
||
});
|
||
var SyntheticUIEvent = createSyntheticEvent(UIEventInterface);
|
||
var lastMovementX;
|
||
var lastMovementY;
|
||
var lastMouseEvent;
|
||
function updateMouseMovementPolyfillState(event) {
|
||
if (event !== lastMouseEvent) {
|
||
if (lastMouseEvent && event.type === "mousemove") {
|
||
lastMovementX = event.screenX - lastMouseEvent.screenX;
|
||
lastMovementY = event.screenY - lastMouseEvent.screenY;
|
||
} else {
|
||
lastMovementX = 0;
|
||
lastMovementY = 0;
|
||
}
|
||
lastMouseEvent = event;
|
||
}
|
||
}
|
||
var MouseEventInterface = assign({}, UIEventInterface, {
|
||
screenX: 0,
|
||
screenY: 0,
|
||
clientX: 0,
|
||
clientY: 0,
|
||
pageX: 0,
|
||
pageY: 0,
|
||
ctrlKey: 0,
|
||
shiftKey: 0,
|
||
altKey: 0,
|
||
metaKey: 0,
|
||
getModifierState: getEventModifierState,
|
||
button: 0,
|
||
buttons: 0,
|
||
relatedTarget: function(event) {
|
||
if (event.relatedTarget === void 0)
|
||
return event.fromElement === event.srcElement ? event.toElement : event.fromElement;
|
||
return event.relatedTarget;
|
||
},
|
||
movementX: function(event) {
|
||
if ("movementX" in event) {
|
||
return event.movementX;
|
||
}
|
||
updateMouseMovementPolyfillState(event);
|
||
return lastMovementX;
|
||
},
|
||
movementY: function(event) {
|
||
if ("movementY" in event) {
|
||
return event.movementY;
|
||
}
|
||
return lastMovementY;
|
||
}
|
||
});
|
||
var SyntheticMouseEvent = createSyntheticEvent(MouseEventInterface);
|
||
var DragEventInterface = assign({}, MouseEventInterface, {
|
||
dataTransfer: 0
|
||
});
|
||
var SyntheticDragEvent = createSyntheticEvent(DragEventInterface);
|
||
var FocusEventInterface = assign({}, UIEventInterface, {
|
||
relatedTarget: 0
|
||
});
|
||
var SyntheticFocusEvent = createSyntheticEvent(FocusEventInterface);
|
||
var AnimationEventInterface = assign({}, EventInterface, {
|
||
animationName: 0,
|
||
elapsedTime: 0,
|
||
pseudoElement: 0
|
||
});
|
||
var SyntheticAnimationEvent = createSyntheticEvent(AnimationEventInterface);
|
||
var ClipboardEventInterface = assign({}, EventInterface, {
|
||
clipboardData: function(event) {
|
||
return "clipboardData" in event ? event.clipboardData : window.clipboardData;
|
||
}
|
||
});
|
||
var SyntheticClipboardEvent = createSyntheticEvent(ClipboardEventInterface);
|
||
var CompositionEventInterface = assign({}, EventInterface, {
|
||
data: 0
|
||
});
|
||
var SyntheticCompositionEvent = createSyntheticEvent(CompositionEventInterface);
|
||
var SyntheticInputEvent = SyntheticCompositionEvent;
|
||
var normalizeKey = {
|
||
Esc: "Escape",
|
||
Spacebar: " ",
|
||
Left: "ArrowLeft",
|
||
Up: "ArrowUp",
|
||
Right: "ArrowRight",
|
||
Down: "ArrowDown",
|
||
Del: "Delete",
|
||
Win: "OS",
|
||
Menu: "ContextMenu",
|
||
Apps: "ContextMenu",
|
||
Scroll: "ScrollLock",
|
||
MozPrintableKey: "Unidentified"
|
||
};
|
||
var translateToKey = {
|
||
"8": "Backspace",
|
||
"9": "Tab",
|
||
"12": "Clear",
|
||
"13": "Enter",
|
||
"16": "Shift",
|
||
"17": "Control",
|
||
"18": "Alt",
|
||
"19": "Pause",
|
||
"20": "CapsLock",
|
||
"27": "Escape",
|
||
"32": " ",
|
||
"33": "PageUp",
|
||
"34": "PageDown",
|
||
"35": "End",
|
||
"36": "Home",
|
||
"37": "ArrowLeft",
|
||
"38": "ArrowUp",
|
||
"39": "ArrowRight",
|
||
"40": "ArrowDown",
|
||
"45": "Insert",
|
||
"46": "Delete",
|
||
"112": "F1",
|
||
"113": "F2",
|
||
"114": "F3",
|
||
"115": "F4",
|
||
"116": "F5",
|
||
"117": "F6",
|
||
"118": "F7",
|
||
"119": "F8",
|
||
"120": "F9",
|
||
"121": "F10",
|
||
"122": "F11",
|
||
"123": "F12",
|
||
"144": "NumLock",
|
||
"145": "ScrollLock",
|
||
"224": "Meta"
|
||
};
|
||
function getEventKey(nativeEvent) {
|
||
if (nativeEvent.key) {
|
||
var key = normalizeKey[nativeEvent.key] || nativeEvent.key;
|
||
if (key !== "Unidentified") {
|
||
return key;
|
||
}
|
||
}
|
||
if (nativeEvent.type === "keypress") {
|
||
var charCode = getEventCharCode(nativeEvent);
|
||
return charCode === 13 ? "Enter" : String.fromCharCode(charCode);
|
||
}
|
||
if (nativeEvent.type === "keydown" || nativeEvent.type === "keyup") {
|
||
return translateToKey[nativeEvent.keyCode] || "Unidentified";
|
||
}
|
||
return "";
|
||
}
|
||
var modifierKeyToProp = {
|
||
Alt: "altKey",
|
||
Control: "ctrlKey",
|
||
Meta: "metaKey",
|
||
Shift: "shiftKey"
|
||
};
|
||
function modifierStateGetter(keyArg) {
|
||
var syntheticEvent = this;
|
||
var nativeEvent = syntheticEvent.nativeEvent;
|
||
if (nativeEvent.getModifierState) {
|
||
return nativeEvent.getModifierState(keyArg);
|
||
}
|
||
var keyProp = modifierKeyToProp[keyArg];
|
||
return keyProp ? !!nativeEvent[keyProp] : false;
|
||
}
|
||
function getEventModifierState(nativeEvent) {
|
||
return modifierStateGetter;
|
||
}
|
||
var KeyboardEventInterface = assign({}, UIEventInterface, {
|
||
key: getEventKey,
|
||
code: 0,
|
||
location: 0,
|
||
ctrlKey: 0,
|
||
shiftKey: 0,
|
||
altKey: 0,
|
||
metaKey: 0,
|
||
repeat: 0,
|
||
locale: 0,
|
||
getModifierState: getEventModifierState,
|
||
// Legacy Interface
|
||
charCode: function(event) {
|
||
if (event.type === "keypress") {
|
||
return getEventCharCode(event);
|
||
}
|
||
return 0;
|
||
},
|
||
keyCode: function(event) {
|
||
if (event.type === "keydown" || event.type === "keyup") {
|
||
return event.keyCode;
|
||
}
|
||
return 0;
|
||
},
|
||
which: function(event) {
|
||
if (event.type === "keypress") {
|
||
return getEventCharCode(event);
|
||
}
|
||
if (event.type === "keydown" || event.type === "keyup") {
|
||
return event.keyCode;
|
||
}
|
||
return 0;
|
||
}
|
||
});
|
||
var SyntheticKeyboardEvent = createSyntheticEvent(KeyboardEventInterface);
|
||
var PointerEventInterface = assign({}, MouseEventInterface, {
|
||
pointerId: 0,
|
||
width: 0,
|
||
height: 0,
|
||
pressure: 0,
|
||
tangentialPressure: 0,
|
||
tiltX: 0,
|
||
tiltY: 0,
|
||
twist: 0,
|
||
pointerType: 0,
|
||
isPrimary: 0
|
||
});
|
||
var SyntheticPointerEvent = createSyntheticEvent(PointerEventInterface);
|
||
var TouchEventInterface = assign({}, UIEventInterface, {
|
||
touches: 0,
|
||
targetTouches: 0,
|
||
changedTouches: 0,
|
||
altKey: 0,
|
||
metaKey: 0,
|
||
ctrlKey: 0,
|
||
shiftKey: 0,
|
||
getModifierState: getEventModifierState
|
||
});
|
||
var SyntheticTouchEvent = createSyntheticEvent(TouchEventInterface);
|
||
var TransitionEventInterface = assign({}, EventInterface, {
|
||
propertyName: 0,
|
||
elapsedTime: 0,
|
||
pseudoElement: 0
|
||
});
|
||
var SyntheticTransitionEvent = createSyntheticEvent(TransitionEventInterface);
|
||
var WheelEventInterface = assign({}, MouseEventInterface, {
|
||
deltaX: function(event) {
|
||
return "deltaX" in event ? event.deltaX : (
|
||
// Fallback to `wheelDeltaX` for Webkit and normalize (right is positive).
|
||
"wheelDeltaX" in event ? -event.wheelDeltaX : 0
|
||
);
|
||
},
|
||
deltaY: function(event) {
|
||
return "deltaY" in event ? event.deltaY : (
|
||
// Fallback to `wheelDeltaY` for Webkit and normalize (down is positive).
|
||
"wheelDeltaY" in event ? -event.wheelDeltaY : (
|
||
// Fallback to `wheelDelta` for IE<9 and normalize (down is positive).
|
||
"wheelDelta" in event ? -event.wheelDelta : 0
|
||
)
|
||
);
|
||
},
|
||
deltaZ: 0,
|
||
// Browsers without "deltaMode" is reporting in raw wheel delta where one
|
||
// notch on the scroll is always +/- 120, roughly equivalent to pixels.
|
||
// A good approximation of DOM_DELTA_LINE (1) is 5% of viewport size or
|
||
// ~40 pixels, for DOM_DELTA_SCREEN (2) it is 87.5% of viewport size.
|
||
deltaMode: 0
|
||
});
|
||
var SyntheticWheelEvent = createSyntheticEvent(WheelEventInterface);
|
||
var END_KEYCODES = [9, 13, 27, 32];
|
||
var START_KEYCODE = 229;
|
||
var canUseCompositionEvent = canUseDOM && "CompositionEvent" in window;
|
||
var documentMode = null;
|
||
if (canUseDOM && "documentMode" in document) {
|
||
documentMode = document.documentMode;
|
||
}
|
||
var canUseTextInputEvent = canUseDOM && "TextEvent" in window && !documentMode;
|
||
var useFallbackCompositionData = canUseDOM && (!canUseCompositionEvent || documentMode && documentMode > 8 && documentMode <= 11);
|
||
var SPACEBAR_CODE = 32;
|
||
var SPACEBAR_CHAR = String.fromCharCode(SPACEBAR_CODE);
|
||
function registerEvents() {
|
||
registerTwoPhaseEvent("onBeforeInput", ["compositionend", "keypress", "textInput", "paste"]);
|
||
registerTwoPhaseEvent("onCompositionEnd", ["compositionend", "focusout", "keydown", "keypress", "keyup", "mousedown"]);
|
||
registerTwoPhaseEvent("onCompositionStart", ["compositionstart", "focusout", "keydown", "keypress", "keyup", "mousedown"]);
|
||
registerTwoPhaseEvent("onCompositionUpdate", ["compositionupdate", "focusout", "keydown", "keypress", "keyup", "mousedown"]);
|
||
}
|
||
var hasSpaceKeypress = false;
|
||
function isKeypressCommand(nativeEvent) {
|
||
return (nativeEvent.ctrlKey || nativeEvent.altKey || nativeEvent.metaKey) && // ctrlKey && altKey is equivalent to AltGr, and is not a command.
|
||
!(nativeEvent.ctrlKey && nativeEvent.altKey);
|
||
}
|
||
function getCompositionEventType(domEventName) {
|
||
switch (domEventName) {
|
||
case "compositionstart":
|
||
return "onCompositionStart";
|
||
case "compositionend":
|
||
return "onCompositionEnd";
|
||
case "compositionupdate":
|
||
return "onCompositionUpdate";
|
||
}
|
||
}
|
||
function isFallbackCompositionStart(domEventName, nativeEvent) {
|
||
return domEventName === "keydown" && nativeEvent.keyCode === START_KEYCODE;
|
||
}
|
||
function isFallbackCompositionEnd(domEventName, nativeEvent) {
|
||
switch (domEventName) {
|
||
case "keyup":
|
||
return END_KEYCODES.indexOf(nativeEvent.keyCode) !== -1;
|
||
case "keydown":
|
||
return nativeEvent.keyCode !== START_KEYCODE;
|
||
case "keypress":
|
||
case "mousedown":
|
||
case "focusout":
|
||
return true;
|
||
default:
|
||
return false;
|
||
}
|
||
}
|
||
function getDataFromCustomEvent(nativeEvent) {
|
||
var detail = nativeEvent.detail;
|
||
if (typeof detail === "object" && "data" in detail) {
|
||
return detail.data;
|
||
}
|
||
return null;
|
||
}
|
||
function isUsingKoreanIME(nativeEvent) {
|
||
return nativeEvent.locale === "ko";
|
||
}
|
||
var isComposing = false;
|
||
function extractCompositionEvent(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget) {
|
||
var eventType;
|
||
var fallbackData;
|
||
if (canUseCompositionEvent) {
|
||
eventType = getCompositionEventType(domEventName);
|
||
} else if (!isComposing) {
|
||
if (isFallbackCompositionStart(domEventName, nativeEvent)) {
|
||
eventType = "onCompositionStart";
|
||
}
|
||
} else if (isFallbackCompositionEnd(domEventName, nativeEvent)) {
|
||
eventType = "onCompositionEnd";
|
||
}
|
||
if (!eventType) {
|
||
return null;
|
||
}
|
||
if (useFallbackCompositionData && !isUsingKoreanIME(nativeEvent)) {
|
||
if (!isComposing && eventType === "onCompositionStart") {
|
||
isComposing = initialize(nativeEventTarget);
|
||
} else if (eventType === "onCompositionEnd") {
|
||
if (isComposing) {
|
||
fallbackData = getData();
|
||
}
|
||
}
|
||
}
|
||
var listeners = accumulateTwoPhaseListeners(targetInst, eventType);
|
||
if (listeners.length > 0) {
|
||
var event = new SyntheticCompositionEvent(eventType, domEventName, null, nativeEvent, nativeEventTarget);
|
||
dispatchQueue.push({
|
||
event,
|
||
listeners
|
||
});
|
||
if (fallbackData) {
|
||
event.data = fallbackData;
|
||
} else {
|
||
var customData = getDataFromCustomEvent(nativeEvent);
|
||
if (customData !== null) {
|
||
event.data = customData;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function getNativeBeforeInputChars(domEventName, nativeEvent) {
|
||
switch (domEventName) {
|
||
case "compositionend":
|
||
return getDataFromCustomEvent(nativeEvent);
|
||
case "keypress":
|
||
var which = nativeEvent.which;
|
||
if (which !== SPACEBAR_CODE) {
|
||
return null;
|
||
}
|
||
hasSpaceKeypress = true;
|
||
return SPACEBAR_CHAR;
|
||
case "textInput":
|
||
var chars = nativeEvent.data;
|
||
if (chars === SPACEBAR_CHAR && hasSpaceKeypress) {
|
||
return null;
|
||
}
|
||
return chars;
|
||
default:
|
||
return null;
|
||
}
|
||
}
|
||
function getFallbackBeforeInputChars(domEventName, nativeEvent) {
|
||
if (isComposing) {
|
||
if (domEventName === "compositionend" || !canUseCompositionEvent && isFallbackCompositionEnd(domEventName, nativeEvent)) {
|
||
var chars = getData();
|
||
reset();
|
||
isComposing = false;
|
||
return chars;
|
||
}
|
||
return null;
|
||
}
|
||
switch (domEventName) {
|
||
case "paste":
|
||
return null;
|
||
case "keypress":
|
||
if (!isKeypressCommand(nativeEvent)) {
|
||
if (nativeEvent.char && nativeEvent.char.length > 1) {
|
||
return nativeEvent.char;
|
||
} else if (nativeEvent.which) {
|
||
return String.fromCharCode(nativeEvent.which);
|
||
}
|
||
}
|
||
return null;
|
||
case "compositionend":
|
||
return useFallbackCompositionData && !isUsingKoreanIME(nativeEvent) ? null : nativeEvent.data;
|
||
default:
|
||
return null;
|
||
}
|
||
}
|
||
function extractBeforeInputEvent(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget) {
|
||
var chars;
|
||
if (canUseTextInputEvent) {
|
||
chars = getNativeBeforeInputChars(domEventName, nativeEvent);
|
||
} else {
|
||
chars = getFallbackBeforeInputChars(domEventName, nativeEvent);
|
||
}
|
||
if (!chars) {
|
||
return null;
|
||
}
|
||
var listeners = accumulateTwoPhaseListeners(targetInst, "onBeforeInput");
|
||
if (listeners.length > 0) {
|
||
var event = new SyntheticInputEvent("onBeforeInput", "beforeinput", null, nativeEvent, nativeEventTarget);
|
||
dispatchQueue.push({
|
||
event,
|
||
listeners
|
||
});
|
||
event.data = chars;
|
||
}
|
||
}
|
||
function extractEvents(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags, targetContainer) {
|
||
extractCompositionEvent(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget);
|
||
extractBeforeInputEvent(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget);
|
||
}
|
||
var supportedInputTypes = {
|
||
color: true,
|
||
date: true,
|
||
datetime: true,
|
||
"datetime-local": true,
|
||
email: true,
|
||
month: true,
|
||
number: true,
|
||
password: true,
|
||
range: true,
|
||
search: true,
|
||
tel: true,
|
||
text: true,
|
||
time: true,
|
||
url: true,
|
||
week: true
|
||
};
|
||
function isTextInputElement(elem) {
|
||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||
if (nodeName === "input") {
|
||
return !!supportedInputTypes[elem.type];
|
||
}
|
||
if (nodeName === "textarea") {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
function isEventSupported(eventNameSuffix) {
|
||
if (!canUseDOM) {
|
||
return false;
|
||
}
|
||
var eventName = "on" + eventNameSuffix;
|
||
var isSupported = eventName in document;
|
||
if (!isSupported) {
|
||
var element = document.createElement("div");
|
||
element.setAttribute(eventName, "return;");
|
||
isSupported = typeof element[eventName] === "function";
|
||
}
|
||
return isSupported;
|
||
}
|
||
function registerEvents$1() {
|
||
registerTwoPhaseEvent("onChange", ["change", "click", "focusin", "focusout", "input", "keydown", "keyup", "selectionchange"]);
|
||
}
|
||
function createAndAccumulateChangeEvent(dispatchQueue, inst, nativeEvent, target) {
|
||
enqueueStateRestore(target);
|
||
var listeners = accumulateTwoPhaseListeners(inst, "onChange");
|
||
if (listeners.length > 0) {
|
||
var event = new SyntheticEvent("onChange", "change", null, nativeEvent, target);
|
||
dispatchQueue.push({
|
||
event,
|
||
listeners
|
||
});
|
||
}
|
||
}
|
||
var activeElement = null;
|
||
var activeElementInst = null;
|
||
function shouldUseChangeEvent(elem) {
|
||
var nodeName = elem.nodeName && elem.nodeName.toLowerCase();
|
||
return nodeName === "select" || nodeName === "input" && elem.type === "file";
|
||
}
|
||
function manualDispatchChangeEvent(nativeEvent) {
|
||
var dispatchQueue = [];
|
||
createAndAccumulateChangeEvent(dispatchQueue, activeElementInst, nativeEvent, getEventTarget(nativeEvent));
|
||
batchedUpdates(runEventInBatch, dispatchQueue);
|
||
}
|
||
function runEventInBatch(dispatchQueue) {
|
||
processDispatchQueue(dispatchQueue, 0);
|
||
}
|
||
function getInstIfValueChanged(targetInst) {
|
||
var targetNode = getNodeFromInstance(targetInst);
|
||
if (updateValueIfChanged(targetNode)) {
|
||
return targetInst;
|
||
}
|
||
}
|
||
function getTargetInstForChangeEvent(domEventName, targetInst) {
|
||
if (domEventName === "change") {
|
||
return targetInst;
|
||
}
|
||
}
|
||
var isInputEventSupported = false;
|
||
if (canUseDOM) {
|
||
isInputEventSupported = isEventSupported("input") && (!document.documentMode || document.documentMode > 9);
|
||
}
|
||
function startWatchingForValueChange(target, targetInst) {
|
||
activeElement = target;
|
||
activeElementInst = targetInst;
|
||
activeElement.attachEvent("onpropertychange", handlePropertyChange);
|
||
}
|
||
function stopWatchingForValueChange() {
|
||
if (!activeElement) {
|
||
return;
|
||
}
|
||
activeElement.detachEvent("onpropertychange", handlePropertyChange);
|
||
activeElement = null;
|
||
activeElementInst = null;
|
||
}
|
||
function handlePropertyChange(nativeEvent) {
|
||
if (nativeEvent.propertyName !== "value") {
|
||
return;
|
||
}
|
||
if (getInstIfValueChanged(activeElementInst)) {
|
||
manualDispatchChangeEvent(nativeEvent);
|
||
}
|
||
}
|
||
function handleEventsForInputEventPolyfill(domEventName, target, targetInst) {
|
||
if (domEventName === "focusin") {
|
||
stopWatchingForValueChange();
|
||
startWatchingForValueChange(target, targetInst);
|
||
} else if (domEventName === "focusout") {
|
||
stopWatchingForValueChange();
|
||
}
|
||
}
|
||
function getTargetInstForInputEventPolyfill(domEventName, targetInst) {
|
||
if (domEventName === "selectionchange" || domEventName === "keyup" || domEventName === "keydown") {
|
||
return getInstIfValueChanged(activeElementInst);
|
||
}
|
||
}
|
||
function shouldUseClickEvent(elem) {
|
||
var nodeName = elem.nodeName;
|
||
return nodeName && nodeName.toLowerCase() === "input" && (elem.type === "checkbox" || elem.type === "radio");
|
||
}
|
||
function getTargetInstForClickEvent(domEventName, targetInst) {
|
||
if (domEventName === "click") {
|
||
return getInstIfValueChanged(targetInst);
|
||
}
|
||
}
|
||
function getTargetInstForInputOrChangeEvent(domEventName, targetInst) {
|
||
if (domEventName === "input" || domEventName === "change") {
|
||
return getInstIfValueChanged(targetInst);
|
||
}
|
||
}
|
||
function handleControlledInputBlur(node) {
|
||
var state = node._wrapperState;
|
||
if (!state || !state.controlled || node.type !== "number") {
|
||
return;
|
||
}
|
||
{
|
||
setDefaultValue(node, "number", node.value);
|
||
}
|
||
}
|
||
function extractEvents$1(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags, targetContainer) {
|
||
var targetNode = targetInst ? getNodeFromInstance(targetInst) : window;
|
||
var getTargetInstFunc, handleEventFunc;
|
||
if (shouldUseChangeEvent(targetNode)) {
|
||
getTargetInstFunc = getTargetInstForChangeEvent;
|
||
} else if (isTextInputElement(targetNode)) {
|
||
if (isInputEventSupported) {
|
||
getTargetInstFunc = getTargetInstForInputOrChangeEvent;
|
||
} else {
|
||
getTargetInstFunc = getTargetInstForInputEventPolyfill;
|
||
handleEventFunc = handleEventsForInputEventPolyfill;
|
||
}
|
||
} else if (shouldUseClickEvent(targetNode)) {
|
||
getTargetInstFunc = getTargetInstForClickEvent;
|
||
}
|
||
if (getTargetInstFunc) {
|
||
var inst = getTargetInstFunc(domEventName, targetInst);
|
||
if (inst) {
|
||
createAndAccumulateChangeEvent(dispatchQueue, inst, nativeEvent, nativeEventTarget);
|
||
return;
|
||
}
|
||
}
|
||
if (handleEventFunc) {
|
||
handleEventFunc(domEventName, targetNode, targetInst);
|
||
}
|
||
if (domEventName === "focusout") {
|
||
handleControlledInputBlur(targetNode);
|
||
}
|
||
}
|
||
function registerEvents$2() {
|
||
registerDirectEvent("onMouseEnter", ["mouseout", "mouseover"]);
|
||
registerDirectEvent("onMouseLeave", ["mouseout", "mouseover"]);
|
||
registerDirectEvent("onPointerEnter", ["pointerout", "pointerover"]);
|
||
registerDirectEvent("onPointerLeave", ["pointerout", "pointerover"]);
|
||
}
|
||
function extractEvents$2(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags, targetContainer) {
|
||
var isOverEvent = domEventName === "mouseover" || domEventName === "pointerover";
|
||
var isOutEvent = domEventName === "mouseout" || domEventName === "pointerout";
|
||
if (isOverEvent && !isReplayingEvent(nativeEvent)) {
|
||
var related = nativeEvent.relatedTarget || nativeEvent.fromElement;
|
||
if (related) {
|
||
if (getClosestInstanceFromNode(related) || isContainerMarkedAsRoot(related)) {
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
if (!isOutEvent && !isOverEvent) {
|
||
return;
|
||
}
|
||
var win;
|
||
if (nativeEventTarget.window === nativeEventTarget) {
|
||
win = nativeEventTarget;
|
||
} else {
|
||
var doc = nativeEventTarget.ownerDocument;
|
||
if (doc) {
|
||
win = doc.defaultView || doc.parentWindow;
|
||
} else {
|
||
win = window;
|
||
}
|
||
}
|
||
var from;
|
||
var to;
|
||
if (isOutEvent) {
|
||
var _related = nativeEvent.relatedTarget || nativeEvent.toElement;
|
||
from = targetInst;
|
||
to = _related ? getClosestInstanceFromNode(_related) : null;
|
||
if (to !== null) {
|
||
var nearestMounted = getNearestMountedFiber(to);
|
||
if (to !== nearestMounted || to.tag !== HostComponent && to.tag !== HostText) {
|
||
to = null;
|
||
}
|
||
}
|
||
} else {
|
||
from = null;
|
||
to = targetInst;
|
||
}
|
||
if (from === to) {
|
||
return;
|
||
}
|
||
var SyntheticEventCtor = SyntheticMouseEvent;
|
||
var leaveEventType = "onMouseLeave";
|
||
var enterEventType = "onMouseEnter";
|
||
var eventTypePrefix = "mouse";
|
||
if (domEventName === "pointerout" || domEventName === "pointerover") {
|
||
SyntheticEventCtor = SyntheticPointerEvent;
|
||
leaveEventType = "onPointerLeave";
|
||
enterEventType = "onPointerEnter";
|
||
eventTypePrefix = "pointer";
|
||
}
|
||
var fromNode = from == null ? win : getNodeFromInstance(from);
|
||
var toNode = to == null ? win : getNodeFromInstance(to);
|
||
var leave = new SyntheticEventCtor(leaveEventType, eventTypePrefix + "leave", from, nativeEvent, nativeEventTarget);
|
||
leave.target = fromNode;
|
||
leave.relatedTarget = toNode;
|
||
var enter = null;
|
||
var nativeTargetInst = getClosestInstanceFromNode(nativeEventTarget);
|
||
if (nativeTargetInst === targetInst) {
|
||
var enterEvent = new SyntheticEventCtor(enterEventType, eventTypePrefix + "enter", to, nativeEvent, nativeEventTarget);
|
||
enterEvent.target = toNode;
|
||
enterEvent.relatedTarget = fromNode;
|
||
enter = enterEvent;
|
||
}
|
||
accumulateEnterLeaveTwoPhaseListeners(dispatchQueue, leave, enter, from, to);
|
||
}
|
||
function is2(x, y) {
|
||
return x === y && (x !== 0 || 1 / x === 1 / y) || x !== x && y !== y;
|
||
}
|
||
var objectIs = typeof Object.is === "function" ? Object.is : is2;
|
||
function shallowEqual(objA, objB) {
|
||
if (objectIs(objA, objB)) {
|
||
return true;
|
||
}
|
||
if (typeof objA !== "object" || objA === null || typeof objB !== "object" || objB === null) {
|
||
return false;
|
||
}
|
||
var keysA = Object.keys(objA);
|
||
var keysB = Object.keys(objB);
|
||
if (keysA.length !== keysB.length) {
|
||
return false;
|
||
}
|
||
for (var i = 0; i < keysA.length; i++) {
|
||
var currentKey = keysA[i];
|
||
if (!hasOwnProperty.call(objB, currentKey) || !objectIs(objA[currentKey], objB[currentKey])) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function getLeafNode(node) {
|
||
while (node && node.firstChild) {
|
||
node = node.firstChild;
|
||
}
|
||
return node;
|
||
}
|
||
function getSiblingNode(node) {
|
||
while (node) {
|
||
if (node.nextSibling) {
|
||
return node.nextSibling;
|
||
}
|
||
node = node.parentNode;
|
||
}
|
||
}
|
||
function getNodeForCharacterOffset(root2, offset) {
|
||
var node = getLeafNode(root2);
|
||
var nodeStart = 0;
|
||
var nodeEnd = 0;
|
||
while (node) {
|
||
if (node.nodeType === TEXT_NODE) {
|
||
nodeEnd = nodeStart + node.textContent.length;
|
||
if (nodeStart <= offset && nodeEnd >= offset) {
|
||
return {
|
||
node,
|
||
offset: offset - nodeStart
|
||
};
|
||
}
|
||
nodeStart = nodeEnd;
|
||
}
|
||
node = getLeafNode(getSiblingNode(node));
|
||
}
|
||
}
|
||
function getOffsets(outerNode) {
|
||
var ownerDocument = outerNode.ownerDocument;
|
||
var win = ownerDocument && ownerDocument.defaultView || window;
|
||
var selection = win.getSelection && win.getSelection();
|
||
if (!selection || selection.rangeCount === 0) {
|
||
return null;
|
||
}
|
||
var anchorNode = selection.anchorNode, anchorOffset = selection.anchorOffset, focusNode = selection.focusNode, focusOffset = selection.focusOffset;
|
||
try {
|
||
anchorNode.nodeType;
|
||
focusNode.nodeType;
|
||
} catch (e) {
|
||
return null;
|
||
}
|
||
return getModernOffsetsFromPoints(outerNode, anchorNode, anchorOffset, focusNode, focusOffset);
|
||
}
|
||
function getModernOffsetsFromPoints(outerNode, anchorNode, anchorOffset, focusNode, focusOffset) {
|
||
var length = 0;
|
||
var start = -1;
|
||
var end = -1;
|
||
var indexWithinAnchor = 0;
|
||
var indexWithinFocus = 0;
|
||
var node = outerNode;
|
||
var parentNode = null;
|
||
outer:
|
||
while (true) {
|
||
var next = null;
|
||
while (true) {
|
||
if (node === anchorNode && (anchorOffset === 0 || node.nodeType === TEXT_NODE)) {
|
||
start = length + anchorOffset;
|
||
}
|
||
if (node === focusNode && (focusOffset === 0 || node.nodeType === TEXT_NODE)) {
|
||
end = length + focusOffset;
|
||
}
|
||
if (node.nodeType === TEXT_NODE) {
|
||
length += node.nodeValue.length;
|
||
}
|
||
if ((next = node.firstChild) === null) {
|
||
break;
|
||
}
|
||
parentNode = node;
|
||
node = next;
|
||
}
|
||
while (true) {
|
||
if (node === outerNode) {
|
||
break outer;
|
||
}
|
||
if (parentNode === anchorNode && ++indexWithinAnchor === anchorOffset) {
|
||
start = length;
|
||
}
|
||
if (parentNode === focusNode && ++indexWithinFocus === focusOffset) {
|
||
end = length;
|
||
}
|
||
if ((next = node.nextSibling) !== null) {
|
||
break;
|
||
}
|
||
node = parentNode;
|
||
parentNode = node.parentNode;
|
||
}
|
||
node = next;
|
||
}
|
||
if (start === -1 || end === -1) {
|
||
return null;
|
||
}
|
||
return {
|
||
start,
|
||
end
|
||
};
|
||
}
|
||
function setOffsets(node, offsets) {
|
||
var doc = node.ownerDocument || document;
|
||
var win = doc && doc.defaultView || window;
|
||
if (!win.getSelection) {
|
||
return;
|
||
}
|
||
var selection = win.getSelection();
|
||
var length = node.textContent.length;
|
||
var start = Math.min(offsets.start, length);
|
||
var end = offsets.end === void 0 ? start : Math.min(offsets.end, length);
|
||
if (!selection.extend && start > end) {
|
||
var temp = end;
|
||
end = start;
|
||
start = temp;
|
||
}
|
||
var startMarker = getNodeForCharacterOffset(node, start);
|
||
var endMarker = getNodeForCharacterOffset(node, end);
|
||
if (startMarker && endMarker) {
|
||
if (selection.rangeCount === 1 && selection.anchorNode === startMarker.node && selection.anchorOffset === startMarker.offset && selection.focusNode === endMarker.node && selection.focusOffset === endMarker.offset) {
|
||
return;
|
||
}
|
||
var range = doc.createRange();
|
||
range.setStart(startMarker.node, startMarker.offset);
|
||
selection.removeAllRanges();
|
||
if (start > end) {
|
||
selection.addRange(range);
|
||
selection.extend(endMarker.node, endMarker.offset);
|
||
} else {
|
||
range.setEnd(endMarker.node, endMarker.offset);
|
||
selection.addRange(range);
|
||
}
|
||
}
|
||
}
|
||
function isTextNode(node) {
|
||
return node && node.nodeType === TEXT_NODE;
|
||
}
|
||
function containsNode(outerNode, innerNode) {
|
||
if (!outerNode || !innerNode) {
|
||
return false;
|
||
} else if (outerNode === innerNode) {
|
||
return true;
|
||
} else if (isTextNode(outerNode)) {
|
||
return false;
|
||
} else if (isTextNode(innerNode)) {
|
||
return containsNode(outerNode, innerNode.parentNode);
|
||
} else if ("contains" in outerNode) {
|
||
return outerNode.contains(innerNode);
|
||
} else if (outerNode.compareDocumentPosition) {
|
||
return !!(outerNode.compareDocumentPosition(innerNode) & 16);
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
function isInDocument(node) {
|
||
return node && node.ownerDocument && containsNode(node.ownerDocument.documentElement, node);
|
||
}
|
||
function isSameOriginFrame(iframe) {
|
||
try {
|
||
return typeof iframe.contentWindow.location.href === "string";
|
||
} catch (err) {
|
||
return false;
|
||
}
|
||
}
|
||
function getActiveElementDeep() {
|
||
var win = window;
|
||
var element = getActiveElement();
|
||
while (element instanceof win.HTMLIFrameElement) {
|
||
if (isSameOriginFrame(element)) {
|
||
win = element.contentWindow;
|
||
} else {
|
||
return element;
|
||
}
|
||
element = getActiveElement(win.document);
|
||
}
|
||
return element;
|
||
}
|
||
function hasSelectionCapabilities(elem) {
|
||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||
return nodeName && (nodeName === "input" && (elem.type === "text" || elem.type === "search" || elem.type === "tel" || elem.type === "url" || elem.type === "password") || nodeName === "textarea" || elem.contentEditable === "true");
|
||
}
|
||
function getSelectionInformation() {
|
||
var focusedElem = getActiveElementDeep();
|
||
return {
|
||
focusedElem,
|
||
selectionRange: hasSelectionCapabilities(focusedElem) ? getSelection(focusedElem) : null
|
||
};
|
||
}
|
||
function restoreSelection(priorSelectionInformation) {
|
||
var curFocusedElem = getActiveElementDeep();
|
||
var priorFocusedElem = priorSelectionInformation.focusedElem;
|
||
var priorSelectionRange = priorSelectionInformation.selectionRange;
|
||
if (curFocusedElem !== priorFocusedElem && isInDocument(priorFocusedElem)) {
|
||
if (priorSelectionRange !== null && hasSelectionCapabilities(priorFocusedElem)) {
|
||
setSelection(priorFocusedElem, priorSelectionRange);
|
||
}
|
||
var ancestors = [];
|
||
var ancestor = priorFocusedElem;
|
||
while (ancestor = ancestor.parentNode) {
|
||
if (ancestor.nodeType === ELEMENT_NODE) {
|
||
ancestors.push({
|
||
element: ancestor,
|
||
left: ancestor.scrollLeft,
|
||
top: ancestor.scrollTop
|
||
});
|
||
}
|
||
}
|
||
if (typeof priorFocusedElem.focus === "function") {
|
||
priorFocusedElem.focus();
|
||
}
|
||
for (var i = 0; i < ancestors.length; i++) {
|
||
var info = ancestors[i];
|
||
info.element.scrollLeft = info.left;
|
||
info.element.scrollTop = info.top;
|
||
}
|
||
}
|
||
}
|
||
function getSelection(input) {
|
||
var selection;
|
||
if ("selectionStart" in input) {
|
||
selection = {
|
||
start: input.selectionStart,
|
||
end: input.selectionEnd
|
||
};
|
||
} else {
|
||
selection = getOffsets(input);
|
||
}
|
||
return selection || {
|
||
start: 0,
|
||
end: 0
|
||
};
|
||
}
|
||
function setSelection(input, offsets) {
|
||
var start = offsets.start;
|
||
var end = offsets.end;
|
||
if (end === void 0) {
|
||
end = start;
|
||
}
|
||
if ("selectionStart" in input) {
|
||
input.selectionStart = start;
|
||
input.selectionEnd = Math.min(end, input.value.length);
|
||
} else {
|
||
setOffsets(input, offsets);
|
||
}
|
||
}
|
||
var skipSelectionChangeEvent = canUseDOM && "documentMode" in document && document.documentMode <= 11;
|
||
function registerEvents$3() {
|
||
registerTwoPhaseEvent("onSelect", ["focusout", "contextmenu", "dragend", "focusin", "keydown", "keyup", "mousedown", "mouseup", "selectionchange"]);
|
||
}
|
||
var activeElement$1 = null;
|
||
var activeElementInst$1 = null;
|
||
var lastSelection = null;
|
||
var mouseDown = false;
|
||
function getSelection$1(node) {
|
||
if ("selectionStart" in node && hasSelectionCapabilities(node)) {
|
||
return {
|
||
start: node.selectionStart,
|
||
end: node.selectionEnd
|
||
};
|
||
} else {
|
||
var win = node.ownerDocument && node.ownerDocument.defaultView || window;
|
||
var selection = win.getSelection();
|
||
return {
|
||
anchorNode: selection.anchorNode,
|
||
anchorOffset: selection.anchorOffset,
|
||
focusNode: selection.focusNode,
|
||
focusOffset: selection.focusOffset
|
||
};
|
||
}
|
||
}
|
||
function getEventTargetDocument(eventTarget) {
|
||
return eventTarget.window === eventTarget ? eventTarget.document : eventTarget.nodeType === DOCUMENT_NODE ? eventTarget : eventTarget.ownerDocument;
|
||
}
|
||
function constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget) {
|
||
var doc = getEventTargetDocument(nativeEventTarget);
|
||
if (mouseDown || activeElement$1 == null || activeElement$1 !== getActiveElement(doc)) {
|
||
return;
|
||
}
|
||
var currentSelection = getSelection$1(activeElement$1);
|
||
if (!lastSelection || !shallowEqual(lastSelection, currentSelection)) {
|
||
lastSelection = currentSelection;
|
||
var listeners = accumulateTwoPhaseListeners(activeElementInst$1, "onSelect");
|
||
if (listeners.length > 0) {
|
||
var event = new SyntheticEvent("onSelect", "select", null, nativeEvent, nativeEventTarget);
|
||
dispatchQueue.push({
|
||
event,
|
||
listeners
|
||
});
|
||
event.target = activeElement$1;
|
||
}
|
||
}
|
||
}
|
||
function extractEvents$3(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags, targetContainer) {
|
||
var targetNode = targetInst ? getNodeFromInstance(targetInst) : window;
|
||
switch (domEventName) {
|
||
case "focusin":
|
||
if (isTextInputElement(targetNode) || targetNode.contentEditable === "true") {
|
||
activeElement$1 = targetNode;
|
||
activeElementInst$1 = targetInst;
|
||
lastSelection = null;
|
||
}
|
||
break;
|
||
case "focusout":
|
||
activeElement$1 = null;
|
||
activeElementInst$1 = null;
|
||
lastSelection = null;
|
||
break;
|
||
case "mousedown":
|
||
mouseDown = true;
|
||
break;
|
||
case "contextmenu":
|
||
case "mouseup":
|
||
case "dragend":
|
||
mouseDown = false;
|
||
constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget);
|
||
break;
|
||
case "selectionchange":
|
||
if (skipSelectionChangeEvent) {
|
||
break;
|
||
}
|
||
case "keydown":
|
||
case "keyup":
|
||
constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget);
|
||
}
|
||
}
|
||
function makePrefixMap(styleProp, eventName) {
|
||
var prefixes2 = {};
|
||
prefixes2[styleProp.toLowerCase()] = eventName.toLowerCase();
|
||
prefixes2["Webkit" + styleProp] = "webkit" + eventName;
|
||
prefixes2["Moz" + styleProp] = "moz" + eventName;
|
||
return prefixes2;
|
||
}
|
||
var vendorPrefixes = {
|
||
animationend: makePrefixMap("Animation", "AnimationEnd"),
|
||
animationiteration: makePrefixMap("Animation", "AnimationIteration"),
|
||
animationstart: makePrefixMap("Animation", "AnimationStart"),
|
||
transitionend: makePrefixMap("Transition", "TransitionEnd")
|
||
};
|
||
var prefixedEventNames = {};
|
||
var style = {};
|
||
if (canUseDOM) {
|
||
style = document.createElement("div").style;
|
||
if (!("AnimationEvent" in window)) {
|
||
delete vendorPrefixes.animationend.animation;
|
||
delete vendorPrefixes.animationiteration.animation;
|
||
delete vendorPrefixes.animationstart.animation;
|
||
}
|
||
if (!("TransitionEvent" in window)) {
|
||
delete vendorPrefixes.transitionend.transition;
|
||
}
|
||
}
|
||
function getVendorPrefixedEventName(eventName) {
|
||
if (prefixedEventNames[eventName]) {
|
||
return prefixedEventNames[eventName];
|
||
} else if (!vendorPrefixes[eventName]) {
|
||
return eventName;
|
||
}
|
||
var prefixMap = vendorPrefixes[eventName];
|
||
for (var styleProp in prefixMap) {
|
||
if (prefixMap.hasOwnProperty(styleProp) && styleProp in style) {
|
||
return prefixedEventNames[eventName] = prefixMap[styleProp];
|
||
}
|
||
}
|
||
return eventName;
|
||
}
|
||
var ANIMATION_END = getVendorPrefixedEventName("animationend");
|
||
var ANIMATION_ITERATION = getVendorPrefixedEventName("animationiteration");
|
||
var ANIMATION_START = getVendorPrefixedEventName("animationstart");
|
||
var TRANSITION_END = getVendorPrefixedEventName("transitionend");
|
||
var topLevelEventsToReactNames = /* @__PURE__ */ new Map();
|
||
var simpleEventPluginEvents = ["abort", "auxClick", "cancel", "canPlay", "canPlayThrough", "click", "close", "contextMenu", "copy", "cut", "drag", "dragEnd", "dragEnter", "dragExit", "dragLeave", "dragOver", "dragStart", "drop", "durationChange", "emptied", "encrypted", "ended", "error", "gotPointerCapture", "input", "invalid", "keyDown", "keyPress", "keyUp", "load", "loadedData", "loadedMetadata", "loadStart", "lostPointerCapture", "mouseDown", "mouseMove", "mouseOut", "mouseOver", "mouseUp", "paste", "pause", "play", "playing", "pointerCancel", "pointerDown", "pointerMove", "pointerOut", "pointerOver", "pointerUp", "progress", "rateChange", "reset", "resize", "seeked", "seeking", "stalled", "submit", "suspend", "timeUpdate", "touchCancel", "touchEnd", "touchStart", "volumeChange", "scroll", "toggle", "touchMove", "waiting", "wheel"];
|
||
function registerSimpleEvent(domEventName, reactName) {
|
||
topLevelEventsToReactNames.set(domEventName, reactName);
|
||
registerTwoPhaseEvent(reactName, [domEventName]);
|
||
}
|
||
function registerSimpleEvents() {
|
||
for (var i = 0; i < simpleEventPluginEvents.length; i++) {
|
||
var eventName = simpleEventPluginEvents[i];
|
||
var domEventName = eventName.toLowerCase();
|
||
var capitalizedEvent = eventName[0].toUpperCase() + eventName.slice(1);
|
||
registerSimpleEvent(domEventName, "on" + capitalizedEvent);
|
||
}
|
||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||
registerSimpleEvent(ANIMATION_ITERATION, "onAnimationIteration");
|
||
registerSimpleEvent(ANIMATION_START, "onAnimationStart");
|
||
registerSimpleEvent("dblclick", "onDoubleClick");
|
||
registerSimpleEvent("focusin", "onFocus");
|
||
registerSimpleEvent("focusout", "onBlur");
|
||
registerSimpleEvent(TRANSITION_END, "onTransitionEnd");
|
||
}
|
||
function extractEvents$4(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags, targetContainer) {
|
||
var reactName = topLevelEventsToReactNames.get(domEventName);
|
||
if (reactName === void 0) {
|
||
return;
|
||
}
|
||
var SyntheticEventCtor = SyntheticEvent;
|
||
var reactEventType = domEventName;
|
||
switch (domEventName) {
|
||
case "keypress":
|
||
if (getEventCharCode(nativeEvent) === 0) {
|
||
return;
|
||
}
|
||
case "keydown":
|
||
case "keyup":
|
||
SyntheticEventCtor = SyntheticKeyboardEvent;
|
||
break;
|
||
case "focusin":
|
||
reactEventType = "focus";
|
||
SyntheticEventCtor = SyntheticFocusEvent;
|
||
break;
|
||
case "focusout":
|
||
reactEventType = "blur";
|
||
SyntheticEventCtor = SyntheticFocusEvent;
|
||
break;
|
||
case "beforeblur":
|
||
case "afterblur":
|
||
SyntheticEventCtor = SyntheticFocusEvent;
|
||
break;
|
||
case "click":
|
||
if (nativeEvent.button === 2) {
|
||
return;
|
||
}
|
||
case "auxclick":
|
||
case "dblclick":
|
||
case "mousedown":
|
||
case "mousemove":
|
||
case "mouseup":
|
||
case "mouseout":
|
||
case "mouseover":
|
||
case "contextmenu":
|
||
SyntheticEventCtor = SyntheticMouseEvent;
|
||
break;
|
||
case "drag":
|
||
case "dragend":
|
||
case "dragenter":
|
||
case "dragexit":
|
||
case "dragleave":
|
||
case "dragover":
|
||
case "dragstart":
|
||
case "drop":
|
||
SyntheticEventCtor = SyntheticDragEvent;
|
||
break;
|
||
case "touchcancel":
|
||
case "touchend":
|
||
case "touchmove":
|
||
case "touchstart":
|
||
SyntheticEventCtor = SyntheticTouchEvent;
|
||
break;
|
||
case ANIMATION_END:
|
||
case ANIMATION_ITERATION:
|
||
case ANIMATION_START:
|
||
SyntheticEventCtor = SyntheticAnimationEvent;
|
||
break;
|
||
case TRANSITION_END:
|
||
SyntheticEventCtor = SyntheticTransitionEvent;
|
||
break;
|
||
case "scroll":
|
||
SyntheticEventCtor = SyntheticUIEvent;
|
||
break;
|
||
case "wheel":
|
||
SyntheticEventCtor = SyntheticWheelEvent;
|
||
break;
|
||
case "copy":
|
||
case "cut":
|
||
case "paste":
|
||
SyntheticEventCtor = SyntheticClipboardEvent;
|
||
break;
|
||
case "gotpointercapture":
|
||
case "lostpointercapture":
|
||
case "pointercancel":
|
||
case "pointerdown":
|
||
case "pointermove":
|
||
case "pointerout":
|
||
case "pointerover":
|
||
case "pointerup":
|
||
SyntheticEventCtor = SyntheticPointerEvent;
|
||
break;
|
||
}
|
||
var inCapturePhase = (eventSystemFlags & IS_CAPTURE_PHASE) !== 0;
|
||
{
|
||
var accumulateTargetOnly = !inCapturePhase && // TODO: ideally, we'd eventually add all events from
|
||
// nonDelegatedEvents list in DOMPluginEventSystem.
|
||
// Then we can remove this special list.
|
||
// This is a breaking change that can wait until React 18.
|
||
domEventName === "scroll";
|
||
var _listeners = accumulateSinglePhaseListeners(targetInst, reactName, nativeEvent.type, inCapturePhase, accumulateTargetOnly);
|
||
if (_listeners.length > 0) {
|
||
var _event = new SyntheticEventCtor(reactName, reactEventType, null, nativeEvent, nativeEventTarget);
|
||
dispatchQueue.push({
|
||
event: _event,
|
||
listeners: _listeners
|
||
});
|
||
}
|
||
}
|
||
}
|
||
registerSimpleEvents();
|
||
registerEvents$2();
|
||
registerEvents$1();
|
||
registerEvents$3();
|
||
registerEvents();
|
||
function extractEvents$5(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags, targetContainer) {
|
||
extractEvents$4(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags);
|
||
var shouldProcessPolyfillPlugins = (eventSystemFlags & SHOULD_NOT_PROCESS_POLYFILL_EVENT_PLUGINS) === 0;
|
||
if (shouldProcessPolyfillPlugins) {
|
||
extractEvents$2(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget);
|
||
extractEvents$1(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget);
|
||
extractEvents$3(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget);
|
||
extractEvents(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget);
|
||
}
|
||
}
|
||
var mediaEventTypes = ["abort", "canplay", "canplaythrough", "durationchange", "emptied", "encrypted", "ended", "error", "loadeddata", "loadedmetadata", "loadstart", "pause", "play", "playing", "progress", "ratechange", "resize", "seeked", "seeking", "stalled", "suspend", "timeupdate", "volumechange", "waiting"];
|
||
var nonDelegatedEvents = new Set(["cancel", "close", "invalid", "load", "scroll", "toggle"].concat(mediaEventTypes));
|
||
function executeDispatch(event, listener, currentTarget) {
|
||
var type = event.type || "unknown-event";
|
||
event.currentTarget = currentTarget;
|
||
invokeGuardedCallbackAndCatchFirstError(type, listener, void 0, event);
|
||
event.currentTarget = null;
|
||
}
|
||
function processDispatchQueueItemsInOrder(event, dispatchListeners, inCapturePhase) {
|
||
var previousInstance;
|
||
if (inCapturePhase) {
|
||
for (var i = dispatchListeners.length - 1; i >= 0; i--) {
|
||
var _dispatchListeners$i = dispatchListeners[i], instance = _dispatchListeners$i.instance, currentTarget = _dispatchListeners$i.currentTarget, listener = _dispatchListeners$i.listener;
|
||
if (instance !== previousInstance && event.isPropagationStopped()) {
|
||
return;
|
||
}
|
||
executeDispatch(event, listener, currentTarget);
|
||
previousInstance = instance;
|
||
}
|
||
} else {
|
||
for (var _i = 0; _i < dispatchListeners.length; _i++) {
|
||
var _dispatchListeners$_i = dispatchListeners[_i], _instance = _dispatchListeners$_i.instance, _currentTarget = _dispatchListeners$_i.currentTarget, _listener = _dispatchListeners$_i.listener;
|
||
if (_instance !== previousInstance && event.isPropagationStopped()) {
|
||
return;
|
||
}
|
||
executeDispatch(event, _listener, _currentTarget);
|
||
previousInstance = _instance;
|
||
}
|
||
}
|
||
}
|
||
function processDispatchQueue(dispatchQueue, eventSystemFlags) {
|
||
var inCapturePhase = (eventSystemFlags & IS_CAPTURE_PHASE) !== 0;
|
||
for (var i = 0; i < dispatchQueue.length; i++) {
|
||
var _dispatchQueue$i = dispatchQueue[i], event = _dispatchQueue$i.event, listeners = _dispatchQueue$i.listeners;
|
||
processDispatchQueueItemsInOrder(event, listeners, inCapturePhase);
|
||
}
|
||
rethrowCaughtError();
|
||
}
|
||
function dispatchEventsForPlugins(domEventName, eventSystemFlags, nativeEvent, targetInst, targetContainer) {
|
||
var nativeEventTarget = getEventTarget(nativeEvent);
|
||
var dispatchQueue = [];
|
||
extractEvents$5(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags);
|
||
processDispatchQueue(dispatchQueue, eventSystemFlags);
|
||
}
|
||
function listenToNonDelegatedEvent(domEventName, targetElement) {
|
||
{
|
||
if (!nonDelegatedEvents.has(domEventName)) {
|
||
error('Did not expect a listenToNonDelegatedEvent() call for "%s". This is a bug in React. Please file an issue.', domEventName);
|
||
}
|
||
}
|
||
var isCapturePhaseListener = false;
|
||
var listenerSet = getEventListenerSet(targetElement);
|
||
var listenerSetKey = getListenerSetKey(domEventName, isCapturePhaseListener);
|
||
if (!listenerSet.has(listenerSetKey)) {
|
||
addTrappedEventListener(targetElement, domEventName, IS_NON_DELEGATED, isCapturePhaseListener);
|
||
listenerSet.add(listenerSetKey);
|
||
}
|
||
}
|
||
function listenToNativeEvent(domEventName, isCapturePhaseListener, target) {
|
||
{
|
||
if (nonDelegatedEvents.has(domEventName) && !isCapturePhaseListener) {
|
||
error('Did not expect a listenToNativeEvent() call for "%s" in the bubble phase. This is a bug in React. Please file an issue.', domEventName);
|
||
}
|
||
}
|
||
var eventSystemFlags = 0;
|
||
if (isCapturePhaseListener) {
|
||
eventSystemFlags |= IS_CAPTURE_PHASE;
|
||
}
|
||
addTrappedEventListener(target, domEventName, eventSystemFlags, isCapturePhaseListener);
|
||
}
|
||
var listeningMarker = "_reactListening" + Math.random().toString(36).slice(2);
|
||
function listenToAllSupportedEvents(rootContainerElement) {
|
||
if (!rootContainerElement[listeningMarker]) {
|
||
rootContainerElement[listeningMarker] = true;
|
||
allNativeEvents.forEach(function(domEventName) {
|
||
if (domEventName !== "selectionchange") {
|
||
if (!nonDelegatedEvents.has(domEventName)) {
|
||
listenToNativeEvent(domEventName, false, rootContainerElement);
|
||
}
|
||
listenToNativeEvent(domEventName, true, rootContainerElement);
|
||
}
|
||
});
|
||
var ownerDocument = rootContainerElement.nodeType === DOCUMENT_NODE ? rootContainerElement : rootContainerElement.ownerDocument;
|
||
if (ownerDocument !== null) {
|
||
if (!ownerDocument[listeningMarker]) {
|
||
ownerDocument[listeningMarker] = true;
|
||
listenToNativeEvent("selectionchange", false, ownerDocument);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function addTrappedEventListener(targetContainer, domEventName, eventSystemFlags, isCapturePhaseListener, isDeferredListenerForLegacyFBSupport) {
|
||
var listener = createEventListenerWrapperWithPriority(targetContainer, domEventName, eventSystemFlags);
|
||
var isPassiveListener = void 0;
|
||
if (passiveBrowserEventsSupported) {
|
||
if (domEventName === "touchstart" || domEventName === "touchmove" || domEventName === "wheel") {
|
||
isPassiveListener = true;
|
||
}
|
||
}
|
||
targetContainer = targetContainer;
|
||
var unsubscribeListener;
|
||
if (isCapturePhaseListener) {
|
||
if (isPassiveListener !== void 0) {
|
||
unsubscribeListener = addEventCaptureListenerWithPassiveFlag(targetContainer, domEventName, listener, isPassiveListener);
|
||
} else {
|
||
unsubscribeListener = addEventCaptureListener(targetContainer, domEventName, listener);
|
||
}
|
||
} else {
|
||
if (isPassiveListener !== void 0) {
|
||
unsubscribeListener = addEventBubbleListenerWithPassiveFlag(targetContainer, domEventName, listener, isPassiveListener);
|
||
} else {
|
||
unsubscribeListener = addEventBubbleListener(targetContainer, domEventName, listener);
|
||
}
|
||
}
|
||
}
|
||
function isMatchingRootContainer(grandContainer, targetContainer) {
|
||
return grandContainer === targetContainer || grandContainer.nodeType === COMMENT_NODE && grandContainer.parentNode === targetContainer;
|
||
}
|
||
function dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, targetInst, targetContainer) {
|
||
var ancestorInst = targetInst;
|
||
if ((eventSystemFlags & IS_EVENT_HANDLE_NON_MANAGED_NODE) === 0 && (eventSystemFlags & IS_NON_DELEGATED) === 0) {
|
||
var targetContainerNode = targetContainer;
|
||
if (targetInst !== null) {
|
||
var node = targetInst;
|
||
mainLoop:
|
||
while (true) {
|
||
if (node === null) {
|
||
return;
|
||
}
|
||
var nodeTag = node.tag;
|
||
if (nodeTag === HostRoot || nodeTag === HostPortal) {
|
||
var container = node.stateNode.containerInfo;
|
||
if (isMatchingRootContainer(container, targetContainerNode)) {
|
||
break;
|
||
}
|
||
if (nodeTag === HostPortal) {
|
||
var grandNode = node.return;
|
||
while (grandNode !== null) {
|
||
var grandTag = grandNode.tag;
|
||
if (grandTag === HostRoot || grandTag === HostPortal) {
|
||
var grandContainer = grandNode.stateNode.containerInfo;
|
||
if (isMatchingRootContainer(grandContainer, targetContainerNode)) {
|
||
return;
|
||
}
|
||
}
|
||
grandNode = grandNode.return;
|
||
}
|
||
}
|
||
while (container !== null) {
|
||
var parentNode = getClosestInstanceFromNode(container);
|
||
if (parentNode === null) {
|
||
return;
|
||
}
|
||
var parentTag = parentNode.tag;
|
||
if (parentTag === HostComponent || parentTag === HostText) {
|
||
node = ancestorInst = parentNode;
|
||
continue mainLoop;
|
||
}
|
||
container = container.parentNode;
|
||
}
|
||
}
|
||
node = node.return;
|
||
}
|
||
}
|
||
}
|
||
batchedUpdates(function() {
|
||
return dispatchEventsForPlugins(domEventName, eventSystemFlags, nativeEvent, ancestorInst);
|
||
});
|
||
}
|
||
function createDispatchListener(instance, listener, currentTarget) {
|
||
return {
|
||
instance,
|
||
listener,
|
||
currentTarget
|
||
};
|
||
}
|
||
function accumulateSinglePhaseListeners(targetFiber, reactName, nativeEventType, inCapturePhase, accumulateTargetOnly, nativeEvent) {
|
||
var captureName = reactName !== null ? reactName + "Capture" : null;
|
||
var reactEventName = inCapturePhase ? captureName : reactName;
|
||
var listeners = [];
|
||
var instance = targetFiber;
|
||
var lastHostComponent = null;
|
||
while (instance !== null) {
|
||
var _instance2 = instance, stateNode = _instance2.stateNode, tag = _instance2.tag;
|
||
if (tag === HostComponent && stateNode !== null) {
|
||
lastHostComponent = stateNode;
|
||
if (reactEventName !== null) {
|
||
var listener = getListener(instance, reactEventName);
|
||
if (listener != null) {
|
||
listeners.push(createDispatchListener(instance, listener, lastHostComponent));
|
||
}
|
||
}
|
||
}
|
||
if (accumulateTargetOnly) {
|
||
break;
|
||
}
|
||
instance = instance.return;
|
||
}
|
||
return listeners;
|
||
}
|
||
function accumulateTwoPhaseListeners(targetFiber, reactName) {
|
||
var captureName = reactName + "Capture";
|
||
var listeners = [];
|
||
var instance = targetFiber;
|
||
while (instance !== null) {
|
||
var _instance3 = instance, stateNode = _instance3.stateNode, tag = _instance3.tag;
|
||
if (tag === HostComponent && stateNode !== null) {
|
||
var currentTarget = stateNode;
|
||
var captureListener = getListener(instance, captureName);
|
||
if (captureListener != null) {
|
||
listeners.unshift(createDispatchListener(instance, captureListener, currentTarget));
|
||
}
|
||
var bubbleListener = getListener(instance, reactName);
|
||
if (bubbleListener != null) {
|
||
listeners.push(createDispatchListener(instance, bubbleListener, currentTarget));
|
||
}
|
||
}
|
||
instance = instance.return;
|
||
}
|
||
return listeners;
|
||
}
|
||
function getParent(inst) {
|
||
if (inst === null) {
|
||
return null;
|
||
}
|
||
do {
|
||
inst = inst.return;
|
||
} while (inst && inst.tag !== HostComponent);
|
||
if (inst) {
|
||
return inst;
|
||
}
|
||
return null;
|
||
}
|
||
function getLowestCommonAncestor(instA, instB) {
|
||
var nodeA = instA;
|
||
var nodeB = instB;
|
||
var depthA = 0;
|
||
for (var tempA = nodeA; tempA; tempA = getParent(tempA)) {
|
||
depthA++;
|
||
}
|
||
var depthB = 0;
|
||
for (var tempB = nodeB; tempB; tempB = getParent(tempB)) {
|
||
depthB++;
|
||
}
|
||
while (depthA - depthB > 0) {
|
||
nodeA = getParent(nodeA);
|
||
depthA--;
|
||
}
|
||
while (depthB - depthA > 0) {
|
||
nodeB = getParent(nodeB);
|
||
depthB--;
|
||
}
|
||
var depth = depthA;
|
||
while (depth--) {
|
||
if (nodeA === nodeB || nodeB !== null && nodeA === nodeB.alternate) {
|
||
return nodeA;
|
||
}
|
||
nodeA = getParent(nodeA);
|
||
nodeB = getParent(nodeB);
|
||
}
|
||
return null;
|
||
}
|
||
function accumulateEnterLeaveListenersForEvent(dispatchQueue, event, target, common, inCapturePhase) {
|
||
var registrationName = event._reactName;
|
||
var listeners = [];
|
||
var instance = target;
|
||
while (instance !== null) {
|
||
if (instance === common) {
|
||
break;
|
||
}
|
||
var _instance4 = instance, alternate = _instance4.alternate, stateNode = _instance4.stateNode, tag = _instance4.tag;
|
||
if (alternate !== null && alternate === common) {
|
||
break;
|
||
}
|
||
if (tag === HostComponent && stateNode !== null) {
|
||
var currentTarget = stateNode;
|
||
if (inCapturePhase) {
|
||
var captureListener = getListener(instance, registrationName);
|
||
if (captureListener != null) {
|
||
listeners.unshift(createDispatchListener(instance, captureListener, currentTarget));
|
||
}
|
||
} else if (!inCapturePhase) {
|
||
var bubbleListener = getListener(instance, registrationName);
|
||
if (bubbleListener != null) {
|
||
listeners.push(createDispatchListener(instance, bubbleListener, currentTarget));
|
||
}
|
||
}
|
||
}
|
||
instance = instance.return;
|
||
}
|
||
if (listeners.length !== 0) {
|
||
dispatchQueue.push({
|
||
event,
|
||
listeners
|
||
});
|
||
}
|
||
}
|
||
function accumulateEnterLeaveTwoPhaseListeners(dispatchQueue, leaveEvent, enterEvent, from, to) {
|
||
var common = from && to ? getLowestCommonAncestor(from, to) : null;
|
||
if (from !== null) {
|
||
accumulateEnterLeaveListenersForEvent(dispatchQueue, leaveEvent, from, common, false);
|
||
}
|
||
if (to !== null && enterEvent !== null) {
|
||
accumulateEnterLeaveListenersForEvent(dispatchQueue, enterEvent, to, common, true);
|
||
}
|
||
}
|
||
function getListenerSetKey(domEventName, capture) {
|
||
return domEventName + "__" + (capture ? "capture" : "bubble");
|
||
}
|
||
var didWarnInvalidHydration = false;
|
||
var DANGEROUSLY_SET_INNER_HTML = "dangerouslySetInnerHTML";
|
||
var SUPPRESS_CONTENT_EDITABLE_WARNING = "suppressContentEditableWarning";
|
||
var SUPPRESS_HYDRATION_WARNING = "suppressHydrationWarning";
|
||
var AUTOFOCUS = "autoFocus";
|
||
var CHILDREN = "children";
|
||
var STYLE = "style";
|
||
var HTML$1 = "__html";
|
||
var warnedUnknownTags;
|
||
var validatePropertiesInDevelopment;
|
||
var warnForPropDifference;
|
||
var warnForExtraAttributes;
|
||
var warnForInvalidEventListener;
|
||
var canDiffStyleForHydrationWarning;
|
||
var normalizeHTML;
|
||
{
|
||
warnedUnknownTags = {
|
||
// There are working polyfills for <dialog>. Let people use it.
|
||
dialog: true,
|
||
// Electron ships a custom <webview> tag to display external web content in
|
||
// an isolated frame and process.
|
||
// This tag is not present in non Electron environments such as JSDom which
|
||
// is often used for testing purposes.
|
||
// @see https://electronjs.org/docs/api/webview-tag
|
||
webview: true
|
||
};
|
||
validatePropertiesInDevelopment = function(type, props) {
|
||
validateProperties(type, props);
|
||
validateProperties$1(type, props);
|
||
validateProperties$2(type, props, {
|
||
registrationNameDependencies,
|
||
possibleRegistrationNames
|
||
});
|
||
};
|
||
canDiffStyleForHydrationWarning = canUseDOM && !document.documentMode;
|
||
warnForPropDifference = function(propName, serverValue, clientValue) {
|
||
if (didWarnInvalidHydration) {
|
||
return;
|
||
}
|
||
var normalizedClientValue = normalizeMarkupForTextOrAttribute(clientValue);
|
||
var normalizedServerValue = normalizeMarkupForTextOrAttribute(serverValue);
|
||
if (normalizedServerValue === normalizedClientValue) {
|
||
return;
|
||
}
|
||
didWarnInvalidHydration = true;
|
||
error("Prop `%s` did not match. Server: %s Client: %s", propName, JSON.stringify(normalizedServerValue), JSON.stringify(normalizedClientValue));
|
||
};
|
||
warnForExtraAttributes = function(attributeNames) {
|
||
if (didWarnInvalidHydration) {
|
||
return;
|
||
}
|
||
didWarnInvalidHydration = true;
|
||
var names = [];
|
||
attributeNames.forEach(function(name) {
|
||
names.push(name);
|
||
});
|
||
error("Extra attributes from the server: %s", names);
|
||
};
|
||
warnForInvalidEventListener = function(registrationName, listener) {
|
||
if (listener === false) {
|
||
error("Expected `%s` listener to be a function, instead got `false`.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.", registrationName, registrationName, registrationName);
|
||
} else {
|
||
error("Expected `%s` listener to be a function, instead got a value of `%s` type.", registrationName, typeof listener);
|
||
}
|
||
};
|
||
normalizeHTML = function(parent, html) {
|
||
var testElement = parent.namespaceURI === HTML_NAMESPACE ? parent.ownerDocument.createElement(parent.tagName) : parent.ownerDocument.createElementNS(parent.namespaceURI, parent.tagName);
|
||
testElement.innerHTML = html;
|
||
return testElement.innerHTML;
|
||
};
|
||
}
|
||
var NORMALIZE_NEWLINES_REGEX = /\r\n?/g;
|
||
var NORMALIZE_NULL_AND_REPLACEMENT_REGEX = /\u0000|\uFFFD/g;
|
||
function normalizeMarkupForTextOrAttribute(markup) {
|
||
{
|
||
checkHtmlStringCoercion(markup);
|
||
}
|
||
var markupString = typeof markup === "string" ? markup : "" + markup;
|
||
return markupString.replace(NORMALIZE_NEWLINES_REGEX, "\n").replace(NORMALIZE_NULL_AND_REPLACEMENT_REGEX, "");
|
||
}
|
||
function checkForUnmatchedText(serverText, clientText, isConcurrentMode, shouldWarnDev) {
|
||
var normalizedClientText = normalizeMarkupForTextOrAttribute(clientText);
|
||
var normalizedServerText = normalizeMarkupForTextOrAttribute(serverText);
|
||
if (normalizedServerText === normalizedClientText) {
|
||
return;
|
||
}
|
||
if (shouldWarnDev) {
|
||
{
|
||
if (!didWarnInvalidHydration) {
|
||
didWarnInvalidHydration = true;
|
||
error('Text content did not match. Server: "%s" Client: "%s"', normalizedServerText, normalizedClientText);
|
||
}
|
||
}
|
||
}
|
||
if (isConcurrentMode && enableClientRenderFallbackOnTextMismatch) {
|
||
throw new Error("Text content does not match server-rendered HTML.");
|
||
}
|
||
}
|
||
function getOwnerDocumentFromRootContainer(rootContainerElement) {
|
||
return rootContainerElement.nodeType === DOCUMENT_NODE ? rootContainerElement : rootContainerElement.ownerDocument;
|
||
}
|
||
function noop2() {
|
||
}
|
||
function trapClickOnNonInteractiveElement(node) {
|
||
node.onclick = noop2;
|
||
}
|
||
function setInitialDOMProperties(tag, domElement, rootContainerElement, nextProps, isCustomComponentTag) {
|
||
for (var propKey in nextProps) {
|
||
if (!nextProps.hasOwnProperty(propKey)) {
|
||
continue;
|
||
}
|
||
var nextProp = nextProps[propKey];
|
||
if (propKey === STYLE) {
|
||
{
|
||
if (nextProp) {
|
||
Object.freeze(nextProp);
|
||
}
|
||
}
|
||
setValueForStyles(domElement, nextProp);
|
||
} else if (propKey === DANGEROUSLY_SET_INNER_HTML) {
|
||
var nextHtml = nextProp ? nextProp[HTML$1] : void 0;
|
||
if (nextHtml != null) {
|
||
setInnerHTML(domElement, nextHtml);
|
||
}
|
||
} else if (propKey === CHILDREN) {
|
||
if (typeof nextProp === "string") {
|
||
var canSetTextContent = tag !== "textarea" || nextProp !== "";
|
||
if (canSetTextContent) {
|
||
setTextContent(domElement, nextProp);
|
||
}
|
||
} else if (typeof nextProp === "number") {
|
||
setTextContent(domElement, "" + nextProp);
|
||
}
|
||
} else if (propKey === SUPPRESS_CONTENT_EDITABLE_WARNING || propKey === SUPPRESS_HYDRATION_WARNING)
|
||
;
|
||
else if (propKey === AUTOFOCUS)
|
||
;
|
||
else if (registrationNameDependencies.hasOwnProperty(propKey)) {
|
||
if (nextProp != null) {
|
||
if (typeof nextProp !== "function") {
|
||
warnForInvalidEventListener(propKey, nextProp);
|
||
}
|
||
if (propKey === "onScroll") {
|
||
listenToNonDelegatedEvent("scroll", domElement);
|
||
}
|
||
}
|
||
} else if (nextProp != null) {
|
||
setValueForProperty(domElement, propKey, nextProp, isCustomComponentTag);
|
||
}
|
||
}
|
||
}
|
||
function updateDOMProperties(domElement, updatePayload, wasCustomComponentTag, isCustomComponentTag) {
|
||
for (var i = 0; i < updatePayload.length; i += 2) {
|
||
var propKey = updatePayload[i];
|
||
var propValue = updatePayload[i + 1];
|
||
if (propKey === STYLE) {
|
||
setValueForStyles(domElement, propValue);
|
||
} else if (propKey === DANGEROUSLY_SET_INNER_HTML) {
|
||
setInnerHTML(domElement, propValue);
|
||
} else if (propKey === CHILDREN) {
|
||
setTextContent(domElement, propValue);
|
||
} else {
|
||
setValueForProperty(domElement, propKey, propValue, isCustomComponentTag);
|
||
}
|
||
}
|
||
}
|
||
function createElement(type, props, rootContainerElement, parentNamespace) {
|
||
var isCustomComponentTag;
|
||
var ownerDocument = getOwnerDocumentFromRootContainer(rootContainerElement);
|
||
var domElement;
|
||
var namespaceURI = parentNamespace;
|
||
if (namespaceURI === HTML_NAMESPACE) {
|
||
namespaceURI = getIntrinsicNamespace(type);
|
||
}
|
||
if (namespaceURI === HTML_NAMESPACE) {
|
||
{
|
||
isCustomComponentTag = isCustomComponent(type, props);
|
||
if (!isCustomComponentTag && type !== type.toLowerCase()) {
|
||
error("<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.", type);
|
||
}
|
||
}
|
||
if (type === "script") {
|
||
var div = ownerDocument.createElement("div");
|
||
div.innerHTML = "<script><\/script>";
|
||
var firstChild = div.firstChild;
|
||
domElement = div.removeChild(firstChild);
|
||
} else if (typeof props.is === "string") {
|
||
domElement = ownerDocument.createElement(type, {
|
||
is: props.is
|
||
});
|
||
} else {
|
||
domElement = ownerDocument.createElement(type);
|
||
if (type === "select") {
|
||
var node = domElement;
|
||
if (props.multiple) {
|
||
node.multiple = true;
|
||
} else if (props.size) {
|
||
node.size = props.size;
|
||
}
|
||
}
|
||
}
|
||
} else {
|
||
domElement = ownerDocument.createElementNS(namespaceURI, type);
|
||
}
|
||
{
|
||
if (namespaceURI === HTML_NAMESPACE) {
|
||
if (!isCustomComponentTag && Object.prototype.toString.call(domElement) === "[object HTMLUnknownElement]" && !hasOwnProperty.call(warnedUnknownTags, type)) {
|
||
warnedUnknownTags[type] = true;
|
||
error("The tag <%s> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.", type);
|
||
}
|
||
}
|
||
}
|
||
return domElement;
|
||
}
|
||
function createTextNode(text, rootContainerElement) {
|
||
return getOwnerDocumentFromRootContainer(rootContainerElement).createTextNode(text);
|
||
}
|
||
function setInitialProperties(domElement, tag, rawProps, rootContainerElement) {
|
||
var isCustomComponentTag = isCustomComponent(tag, rawProps);
|
||
{
|
||
validatePropertiesInDevelopment(tag, rawProps);
|
||
}
|
||
var props;
|
||
switch (tag) {
|
||
case "dialog":
|
||
listenToNonDelegatedEvent("cancel", domElement);
|
||
listenToNonDelegatedEvent("close", domElement);
|
||
props = rawProps;
|
||
break;
|
||
case "iframe":
|
||
case "object":
|
||
case "embed":
|
||
listenToNonDelegatedEvent("load", domElement);
|
||
props = rawProps;
|
||
break;
|
||
case "video":
|
||
case "audio":
|
||
for (var i = 0; i < mediaEventTypes.length; i++) {
|
||
listenToNonDelegatedEvent(mediaEventTypes[i], domElement);
|
||
}
|
||
props = rawProps;
|
||
break;
|
||
case "source":
|
||
listenToNonDelegatedEvent("error", domElement);
|
||
props = rawProps;
|
||
break;
|
||
case "img":
|
||
case "image":
|
||
case "link":
|
||
listenToNonDelegatedEvent("error", domElement);
|
||
listenToNonDelegatedEvent("load", domElement);
|
||
props = rawProps;
|
||
break;
|
||
case "details":
|
||
listenToNonDelegatedEvent("toggle", domElement);
|
||
props = rawProps;
|
||
break;
|
||
case "input":
|
||
initWrapperState(domElement, rawProps);
|
||
props = getHostProps(domElement, rawProps);
|
||
listenToNonDelegatedEvent("invalid", domElement);
|
||
break;
|
||
case "option":
|
||
validateProps(domElement, rawProps);
|
||
props = rawProps;
|
||
break;
|
||
case "select":
|
||
initWrapperState$1(domElement, rawProps);
|
||
props = getHostProps$1(domElement, rawProps);
|
||
listenToNonDelegatedEvent("invalid", domElement);
|
||
break;
|
||
case "textarea":
|
||
initWrapperState$2(domElement, rawProps);
|
||
props = getHostProps$2(domElement, rawProps);
|
||
listenToNonDelegatedEvent("invalid", domElement);
|
||
break;
|
||
default:
|
||
props = rawProps;
|
||
}
|
||
assertValidProps(tag, props);
|
||
setInitialDOMProperties(tag, domElement, rootContainerElement, props, isCustomComponentTag);
|
||
switch (tag) {
|
||
case "input":
|
||
track(domElement);
|
||
postMountWrapper(domElement, rawProps, false);
|
||
break;
|
||
case "textarea":
|
||
track(domElement);
|
||
postMountWrapper$3(domElement);
|
||
break;
|
||
case "option":
|
||
postMountWrapper$1(domElement, rawProps);
|
||
break;
|
||
case "select":
|
||
postMountWrapper$2(domElement, rawProps);
|
||
break;
|
||
default:
|
||
if (typeof props.onClick === "function") {
|
||
trapClickOnNonInteractiveElement(domElement);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
function diffProperties(domElement, tag, lastRawProps, nextRawProps, rootContainerElement) {
|
||
{
|
||
validatePropertiesInDevelopment(tag, nextRawProps);
|
||
}
|
||
var updatePayload = null;
|
||
var lastProps;
|
||
var nextProps;
|
||
switch (tag) {
|
||
case "input":
|
||
lastProps = getHostProps(domElement, lastRawProps);
|
||
nextProps = getHostProps(domElement, nextRawProps);
|
||
updatePayload = [];
|
||
break;
|
||
case "select":
|
||
lastProps = getHostProps$1(domElement, lastRawProps);
|
||
nextProps = getHostProps$1(domElement, nextRawProps);
|
||
updatePayload = [];
|
||
break;
|
||
case "textarea":
|
||
lastProps = getHostProps$2(domElement, lastRawProps);
|
||
nextProps = getHostProps$2(domElement, nextRawProps);
|
||
updatePayload = [];
|
||
break;
|
||
default:
|
||
lastProps = lastRawProps;
|
||
nextProps = nextRawProps;
|
||
if (typeof lastProps.onClick !== "function" && typeof nextProps.onClick === "function") {
|
||
trapClickOnNonInteractiveElement(domElement);
|
||
}
|
||
break;
|
||
}
|
||
assertValidProps(tag, nextProps);
|
||
var propKey;
|
||
var styleName;
|
||
var styleUpdates = null;
|
||
for (propKey in lastProps) {
|
||
if (nextProps.hasOwnProperty(propKey) || !lastProps.hasOwnProperty(propKey) || lastProps[propKey] == null) {
|
||
continue;
|
||
}
|
||
if (propKey === STYLE) {
|
||
var lastStyle = lastProps[propKey];
|
||
for (styleName in lastStyle) {
|
||
if (lastStyle.hasOwnProperty(styleName)) {
|
||
if (!styleUpdates) {
|
||
styleUpdates = {};
|
||
}
|
||
styleUpdates[styleName] = "";
|
||
}
|
||
}
|
||
} else if (propKey === DANGEROUSLY_SET_INNER_HTML || propKey === CHILDREN)
|
||
;
|
||
else if (propKey === SUPPRESS_CONTENT_EDITABLE_WARNING || propKey === SUPPRESS_HYDRATION_WARNING)
|
||
;
|
||
else if (propKey === AUTOFOCUS)
|
||
;
|
||
else if (registrationNameDependencies.hasOwnProperty(propKey)) {
|
||
if (!updatePayload) {
|
||
updatePayload = [];
|
||
}
|
||
} else {
|
||
(updatePayload = updatePayload || []).push(propKey, null);
|
||
}
|
||
}
|
||
for (propKey in nextProps) {
|
||
var nextProp = nextProps[propKey];
|
||
var lastProp = lastProps != null ? lastProps[propKey] : void 0;
|
||
if (!nextProps.hasOwnProperty(propKey) || nextProp === lastProp || nextProp == null && lastProp == null) {
|
||
continue;
|
||
}
|
||
if (propKey === STYLE) {
|
||
{
|
||
if (nextProp) {
|
||
Object.freeze(nextProp);
|
||
}
|
||
}
|
||
if (lastProp) {
|
||
for (styleName in lastProp) {
|
||
if (lastProp.hasOwnProperty(styleName) && (!nextProp || !nextProp.hasOwnProperty(styleName))) {
|
||
if (!styleUpdates) {
|
||
styleUpdates = {};
|
||
}
|
||
styleUpdates[styleName] = "";
|
||
}
|
||
}
|
||
for (styleName in nextProp) {
|
||
if (nextProp.hasOwnProperty(styleName) && lastProp[styleName] !== nextProp[styleName]) {
|
||
if (!styleUpdates) {
|
||
styleUpdates = {};
|
||
}
|
||
styleUpdates[styleName] = nextProp[styleName];
|
||
}
|
||
}
|
||
} else {
|
||
if (!styleUpdates) {
|
||
if (!updatePayload) {
|
||
updatePayload = [];
|
||
}
|
||
updatePayload.push(propKey, styleUpdates);
|
||
}
|
||
styleUpdates = nextProp;
|
||
}
|
||
} else if (propKey === DANGEROUSLY_SET_INNER_HTML) {
|
||
var nextHtml = nextProp ? nextProp[HTML$1] : void 0;
|
||
var lastHtml = lastProp ? lastProp[HTML$1] : void 0;
|
||
if (nextHtml != null) {
|
||
if (lastHtml !== nextHtml) {
|
||
(updatePayload = updatePayload || []).push(propKey, nextHtml);
|
||
}
|
||
}
|
||
} else if (propKey === CHILDREN) {
|
||
if (typeof nextProp === "string" || typeof nextProp === "number") {
|
||
(updatePayload = updatePayload || []).push(propKey, "" + nextProp);
|
||
}
|
||
} else if (propKey === SUPPRESS_CONTENT_EDITABLE_WARNING || propKey === SUPPRESS_HYDRATION_WARNING)
|
||
;
|
||
else if (registrationNameDependencies.hasOwnProperty(propKey)) {
|
||
if (nextProp != null) {
|
||
if (typeof nextProp !== "function") {
|
||
warnForInvalidEventListener(propKey, nextProp);
|
||
}
|
||
if (propKey === "onScroll") {
|
||
listenToNonDelegatedEvent("scroll", domElement);
|
||
}
|
||
}
|
||
if (!updatePayload && lastProp !== nextProp) {
|
||
updatePayload = [];
|
||
}
|
||
} else {
|
||
(updatePayload = updatePayload || []).push(propKey, nextProp);
|
||
}
|
||
}
|
||
if (styleUpdates) {
|
||
{
|
||
validateShorthandPropertyCollisionInDev(styleUpdates, nextProps[STYLE]);
|
||
}
|
||
(updatePayload = updatePayload || []).push(STYLE, styleUpdates);
|
||
}
|
||
return updatePayload;
|
||
}
|
||
function updateProperties(domElement, updatePayload, tag, lastRawProps, nextRawProps) {
|
||
if (tag === "input" && nextRawProps.type === "radio" && nextRawProps.name != null) {
|
||
updateChecked(domElement, nextRawProps);
|
||
}
|
||
var wasCustomComponentTag = isCustomComponent(tag, lastRawProps);
|
||
var isCustomComponentTag = isCustomComponent(tag, nextRawProps);
|
||
updateDOMProperties(domElement, updatePayload, wasCustomComponentTag, isCustomComponentTag);
|
||
switch (tag) {
|
||
case "input":
|
||
updateWrapper(domElement, nextRawProps);
|
||
break;
|
||
case "textarea":
|
||
updateWrapper$1(domElement, nextRawProps);
|
||
break;
|
||
case "select":
|
||
postUpdateWrapper(domElement, nextRawProps);
|
||
break;
|
||
}
|
||
}
|
||
function getPossibleStandardName(propName) {
|
||
{
|
||
var lowerCasedName = propName.toLowerCase();
|
||
if (!possibleStandardNames.hasOwnProperty(lowerCasedName)) {
|
||
return null;
|
||
}
|
||
return possibleStandardNames[lowerCasedName] || null;
|
||
}
|
||
}
|
||
function diffHydratedProperties(domElement, tag, rawProps, parentNamespace, rootContainerElement, isConcurrentMode, shouldWarnDev) {
|
||
var isCustomComponentTag;
|
||
var extraAttributeNames;
|
||
{
|
||
isCustomComponentTag = isCustomComponent(tag, rawProps);
|
||
validatePropertiesInDevelopment(tag, rawProps);
|
||
}
|
||
switch (tag) {
|
||
case "dialog":
|
||
listenToNonDelegatedEvent("cancel", domElement);
|
||
listenToNonDelegatedEvent("close", domElement);
|
||
break;
|
||
case "iframe":
|
||
case "object":
|
||
case "embed":
|
||
listenToNonDelegatedEvent("load", domElement);
|
||
break;
|
||
case "video":
|
||
case "audio":
|
||
for (var i = 0; i < mediaEventTypes.length; i++) {
|
||
listenToNonDelegatedEvent(mediaEventTypes[i], domElement);
|
||
}
|
||
break;
|
||
case "source":
|
||
listenToNonDelegatedEvent("error", domElement);
|
||
break;
|
||
case "img":
|
||
case "image":
|
||
case "link":
|
||
listenToNonDelegatedEvent("error", domElement);
|
||
listenToNonDelegatedEvent("load", domElement);
|
||
break;
|
||
case "details":
|
||
listenToNonDelegatedEvent("toggle", domElement);
|
||
break;
|
||
case "input":
|
||
initWrapperState(domElement, rawProps);
|
||
listenToNonDelegatedEvent("invalid", domElement);
|
||
break;
|
||
case "option":
|
||
validateProps(domElement, rawProps);
|
||
break;
|
||
case "select":
|
||
initWrapperState$1(domElement, rawProps);
|
||
listenToNonDelegatedEvent("invalid", domElement);
|
||
break;
|
||
case "textarea":
|
||
initWrapperState$2(domElement, rawProps);
|
||
listenToNonDelegatedEvent("invalid", domElement);
|
||
break;
|
||
}
|
||
assertValidProps(tag, rawProps);
|
||
{
|
||
extraAttributeNames = /* @__PURE__ */ new Set();
|
||
var attributes = domElement.attributes;
|
||
for (var _i = 0; _i < attributes.length; _i++) {
|
||
var name = attributes[_i].name.toLowerCase();
|
||
switch (name) {
|
||
case "value":
|
||
break;
|
||
case "checked":
|
||
break;
|
||
case "selected":
|
||
break;
|
||
default:
|
||
extraAttributeNames.add(attributes[_i].name);
|
||
}
|
||
}
|
||
}
|
||
var updatePayload = null;
|
||
for (var propKey in rawProps) {
|
||
if (!rawProps.hasOwnProperty(propKey)) {
|
||
continue;
|
||
}
|
||
var nextProp = rawProps[propKey];
|
||
if (propKey === CHILDREN) {
|
||
if (typeof nextProp === "string") {
|
||
if (domElement.textContent !== nextProp) {
|
||
if (rawProps[SUPPRESS_HYDRATION_WARNING] !== true) {
|
||
checkForUnmatchedText(domElement.textContent, nextProp, isConcurrentMode, shouldWarnDev);
|
||
}
|
||
updatePayload = [CHILDREN, nextProp];
|
||
}
|
||
} else if (typeof nextProp === "number") {
|
||
if (domElement.textContent !== "" + nextProp) {
|
||
if (rawProps[SUPPRESS_HYDRATION_WARNING] !== true) {
|
||
checkForUnmatchedText(domElement.textContent, nextProp, isConcurrentMode, shouldWarnDev);
|
||
}
|
||
updatePayload = [CHILDREN, "" + nextProp];
|
||
}
|
||
}
|
||
} else if (registrationNameDependencies.hasOwnProperty(propKey)) {
|
||
if (nextProp != null) {
|
||
if (typeof nextProp !== "function") {
|
||
warnForInvalidEventListener(propKey, nextProp);
|
||
}
|
||
if (propKey === "onScroll") {
|
||
listenToNonDelegatedEvent("scroll", domElement);
|
||
}
|
||
}
|
||
} else if (shouldWarnDev && true && // Convince Flow we've calculated it (it's DEV-only in this method.)
|
||
typeof isCustomComponentTag === "boolean") {
|
||
var serverValue = void 0;
|
||
var propertyInfo = isCustomComponentTag && enableCustomElementPropertySupport ? null : getPropertyInfo(propKey);
|
||
if (rawProps[SUPPRESS_HYDRATION_WARNING] === true)
|
||
;
|
||
else if (propKey === SUPPRESS_CONTENT_EDITABLE_WARNING || propKey === SUPPRESS_HYDRATION_WARNING || // Controlled attributes are not validated
|
||
// TODO: Only ignore them on controlled tags.
|
||
propKey === "value" || propKey === "checked" || propKey === "selected")
|
||
;
|
||
else if (propKey === DANGEROUSLY_SET_INNER_HTML) {
|
||
var serverHTML = domElement.innerHTML;
|
||
var nextHtml = nextProp ? nextProp[HTML$1] : void 0;
|
||
if (nextHtml != null) {
|
||
var expectedHTML = normalizeHTML(domElement, nextHtml);
|
||
if (expectedHTML !== serverHTML) {
|
||
warnForPropDifference(propKey, serverHTML, expectedHTML);
|
||
}
|
||
}
|
||
} else if (propKey === STYLE) {
|
||
extraAttributeNames.delete(propKey);
|
||
if (canDiffStyleForHydrationWarning) {
|
||
var expectedStyle = createDangerousStringForStyles(nextProp);
|
||
serverValue = domElement.getAttribute("style");
|
||
if (expectedStyle !== serverValue) {
|
||
warnForPropDifference(propKey, serverValue, expectedStyle);
|
||
}
|
||
}
|
||
} else if (isCustomComponentTag && !enableCustomElementPropertySupport) {
|
||
extraAttributeNames.delete(propKey.toLowerCase());
|
||
serverValue = getValueForAttribute(domElement, propKey, nextProp);
|
||
if (nextProp !== serverValue) {
|
||
warnForPropDifference(propKey, serverValue, nextProp);
|
||
}
|
||
} else if (!shouldIgnoreAttribute(propKey, propertyInfo, isCustomComponentTag) && !shouldRemoveAttribute(propKey, nextProp, propertyInfo, isCustomComponentTag)) {
|
||
var isMismatchDueToBadCasing = false;
|
||
if (propertyInfo !== null) {
|
||
extraAttributeNames.delete(propertyInfo.attributeName);
|
||
serverValue = getValueForProperty(domElement, propKey, nextProp, propertyInfo);
|
||
} else {
|
||
var ownNamespace = parentNamespace;
|
||
if (ownNamespace === HTML_NAMESPACE) {
|
||
ownNamespace = getIntrinsicNamespace(tag);
|
||
}
|
||
if (ownNamespace === HTML_NAMESPACE) {
|
||
extraAttributeNames.delete(propKey.toLowerCase());
|
||
} else {
|
||
var standardName = getPossibleStandardName(propKey);
|
||
if (standardName !== null && standardName !== propKey) {
|
||
isMismatchDueToBadCasing = true;
|
||
extraAttributeNames.delete(standardName);
|
||
}
|
||
extraAttributeNames.delete(propKey);
|
||
}
|
||
serverValue = getValueForAttribute(domElement, propKey, nextProp);
|
||
}
|
||
var dontWarnCustomElement = enableCustomElementPropertySupport;
|
||
if (!dontWarnCustomElement && nextProp !== serverValue && !isMismatchDueToBadCasing) {
|
||
warnForPropDifference(propKey, serverValue, nextProp);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
{
|
||
if (shouldWarnDev) {
|
||
if (
|
||
// $FlowFixMe - Should be inferred as not undefined.
|
||
extraAttributeNames.size > 0 && rawProps[SUPPRESS_HYDRATION_WARNING] !== true
|
||
) {
|
||
warnForExtraAttributes(extraAttributeNames);
|
||
}
|
||
}
|
||
}
|
||
switch (tag) {
|
||
case "input":
|
||
track(domElement);
|
||
postMountWrapper(domElement, rawProps, true);
|
||
break;
|
||
case "textarea":
|
||
track(domElement);
|
||
postMountWrapper$3(domElement);
|
||
break;
|
||
case "select":
|
||
case "option":
|
||
break;
|
||
default:
|
||
if (typeof rawProps.onClick === "function") {
|
||
trapClickOnNonInteractiveElement(domElement);
|
||
}
|
||
break;
|
||
}
|
||
return updatePayload;
|
||
}
|
||
function diffHydratedText(textNode, text, isConcurrentMode) {
|
||
var isDifferent = textNode.nodeValue !== text;
|
||
return isDifferent;
|
||
}
|
||
function warnForDeletedHydratableElement(parentNode, child) {
|
||
{
|
||
if (didWarnInvalidHydration) {
|
||
return;
|
||
}
|
||
didWarnInvalidHydration = true;
|
||
error("Did not expect server HTML to contain a <%s> in <%s>.", child.nodeName.toLowerCase(), parentNode.nodeName.toLowerCase());
|
||
}
|
||
}
|
||
function warnForDeletedHydratableText(parentNode, child) {
|
||
{
|
||
if (didWarnInvalidHydration) {
|
||
return;
|
||
}
|
||
didWarnInvalidHydration = true;
|
||
error('Did not expect server HTML to contain the text node "%s" in <%s>.', child.nodeValue, parentNode.nodeName.toLowerCase());
|
||
}
|
||
}
|
||
function warnForInsertedHydratedElement(parentNode, tag, props) {
|
||
{
|
||
if (didWarnInvalidHydration) {
|
||
return;
|
||
}
|
||
didWarnInvalidHydration = true;
|
||
error("Expected server HTML to contain a matching <%s> in <%s>.", tag, parentNode.nodeName.toLowerCase());
|
||
}
|
||
}
|
||
function warnForInsertedHydratedText(parentNode, text) {
|
||
{
|
||
if (text === "") {
|
||
return;
|
||
}
|
||
if (didWarnInvalidHydration) {
|
||
return;
|
||
}
|
||
didWarnInvalidHydration = true;
|
||
error('Expected server HTML to contain a matching text node for "%s" in <%s>.', text, parentNode.nodeName.toLowerCase());
|
||
}
|
||
}
|
||
function restoreControlledState$3(domElement, tag, props) {
|
||
switch (tag) {
|
||
case "input":
|
||
restoreControlledState(domElement, props);
|
||
return;
|
||
case "textarea":
|
||
restoreControlledState$2(domElement, props);
|
||
return;
|
||
case "select":
|
||
restoreControlledState$1(domElement, props);
|
||
return;
|
||
}
|
||
}
|
||
var validateDOMNesting = function() {
|
||
};
|
||
var updatedAncestorInfo = function() {
|
||
};
|
||
{
|
||
var specialTags = ["address", "applet", "area", "article", "aside", "base", "basefont", "bgsound", "blockquote", "body", "br", "button", "caption", "center", "col", "colgroup", "dd", "details", "dir", "div", "dl", "dt", "embed", "fieldset", "figcaption", "figure", "footer", "form", "frame", "frameset", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html", "iframe", "img", "input", "isindex", "li", "link", "listing", "main", "marquee", "menu", "menuitem", "meta", "nav", "noembed", "noframes", "noscript", "object", "ol", "p", "param", "plaintext", "pre", "script", "section", "select", "source", "style", "summary", "table", "tbody", "td", "template", "textarea", "tfoot", "th", "thead", "title", "tr", "track", "ul", "wbr", "xmp"];
|
||
var inScopeTags = [
|
||
"applet",
|
||
"caption",
|
||
"html",
|
||
"table",
|
||
"td",
|
||
"th",
|
||
"marquee",
|
||
"object",
|
||
"template",
|
||
// https://html.spec.whatwg.org/multipage/syntax.html#html-integration-point
|
||
// TODO: Distinguish by namespace here -- for <title>, including it here
|
||
// errs on the side of fewer warnings
|
||
"foreignObject",
|
||
"desc",
|
||
"title"
|
||
];
|
||
var buttonScopeTags = inScopeTags.concat(["button"]);
|
||
var impliedEndTags = ["dd", "dt", "li", "option", "optgroup", "p", "rp", "rt"];
|
||
var emptyAncestorInfo = {
|
||
current: null,
|
||
formTag: null,
|
||
aTagInScope: null,
|
||
buttonTagInScope: null,
|
||
nobrTagInScope: null,
|
||
pTagInButtonScope: null,
|
||
listItemTagAutoclosing: null,
|
||
dlItemTagAutoclosing: null
|
||
};
|
||
updatedAncestorInfo = function(oldInfo, tag) {
|
||
var ancestorInfo = assign({}, oldInfo || emptyAncestorInfo);
|
||
var info = {
|
||
tag
|
||
};
|
||
if (inScopeTags.indexOf(tag) !== -1) {
|
||
ancestorInfo.aTagInScope = null;
|
||
ancestorInfo.buttonTagInScope = null;
|
||
ancestorInfo.nobrTagInScope = null;
|
||
}
|
||
if (buttonScopeTags.indexOf(tag) !== -1) {
|
||
ancestorInfo.pTagInButtonScope = null;
|
||
}
|
||
if (specialTags.indexOf(tag) !== -1 && tag !== "address" && tag !== "div" && tag !== "p") {
|
||
ancestorInfo.listItemTagAutoclosing = null;
|
||
ancestorInfo.dlItemTagAutoclosing = null;
|
||
}
|
||
ancestorInfo.current = info;
|
||
if (tag === "form") {
|
||
ancestorInfo.formTag = info;
|
||
}
|
||
if (tag === "a") {
|
||
ancestorInfo.aTagInScope = info;
|
||
}
|
||
if (tag === "button") {
|
||
ancestorInfo.buttonTagInScope = info;
|
||
}
|
||
if (tag === "nobr") {
|
||
ancestorInfo.nobrTagInScope = info;
|
||
}
|
||
if (tag === "p") {
|
||
ancestorInfo.pTagInButtonScope = info;
|
||
}
|
||
if (tag === "li") {
|
||
ancestorInfo.listItemTagAutoclosing = info;
|
||
}
|
||
if (tag === "dd" || tag === "dt") {
|
||
ancestorInfo.dlItemTagAutoclosing = info;
|
||
}
|
||
return ancestorInfo;
|
||
};
|
||
var isTagValidWithParent = function(tag, parentTag) {
|
||
switch (parentTag) {
|
||
case "select":
|
||
return tag === "option" || tag === "optgroup" || tag === "#text";
|
||
case "optgroup":
|
||
return tag === "option" || tag === "#text";
|
||
case "option":
|
||
return tag === "#text";
|
||
case "tr":
|
||
return tag === "th" || tag === "td" || tag === "style" || tag === "script" || tag === "template";
|
||
case "tbody":
|
||
case "thead":
|
||
case "tfoot":
|
||
return tag === "tr" || tag === "style" || tag === "script" || tag === "template";
|
||
case "colgroup":
|
||
return tag === "col" || tag === "template";
|
||
case "table":
|
||
return tag === "caption" || tag === "colgroup" || tag === "tbody" || tag === "tfoot" || tag === "thead" || tag === "style" || tag === "script" || tag === "template";
|
||
case "head":
|
||
return tag === "base" || tag === "basefont" || tag === "bgsound" || tag === "link" || tag === "meta" || tag === "title" || tag === "noscript" || tag === "noframes" || tag === "style" || tag === "script" || tag === "template";
|
||
case "html":
|
||
return tag === "head" || tag === "body" || tag === "frameset";
|
||
case "frameset":
|
||
return tag === "frame";
|
||
case "#document":
|
||
return tag === "html";
|
||
}
|
||
switch (tag) {
|
||
case "h1":
|
||
case "h2":
|
||
case "h3":
|
||
case "h4":
|
||
case "h5":
|
||
case "h6":
|
||
return parentTag !== "h1" && parentTag !== "h2" && parentTag !== "h3" && parentTag !== "h4" && parentTag !== "h5" && parentTag !== "h6";
|
||
case "rp":
|
||
case "rt":
|
||
return impliedEndTags.indexOf(parentTag) === -1;
|
||
case "body":
|
||
case "caption":
|
||
case "col":
|
||
case "colgroup":
|
||
case "frameset":
|
||
case "frame":
|
||
case "head":
|
||
case "html":
|
||
case "tbody":
|
||
case "td":
|
||
case "tfoot":
|
||
case "th":
|
||
case "thead":
|
||
case "tr":
|
||
return parentTag == null;
|
||
}
|
||
return true;
|
||
};
|
||
var findInvalidAncestorForTag = function(tag, ancestorInfo) {
|
||
switch (tag) {
|
||
case "address":
|
||
case "article":
|
||
case "aside":
|
||
case "blockquote":
|
||
case "center":
|
||
case "details":
|
||
case "dialog":
|
||
case "dir":
|
||
case "div":
|
||
case "dl":
|
||
case "fieldset":
|
||
case "figcaption":
|
||
case "figure":
|
||
case "footer":
|
||
case "header":
|
||
case "hgroup":
|
||
case "main":
|
||
case "menu":
|
||
case "nav":
|
||
case "ol":
|
||
case "p":
|
||
case "section":
|
||
case "summary":
|
||
case "ul":
|
||
case "pre":
|
||
case "listing":
|
||
case "table":
|
||
case "hr":
|
||
case "xmp":
|
||
case "h1":
|
||
case "h2":
|
||
case "h3":
|
||
case "h4":
|
||
case "h5":
|
||
case "h6":
|
||
return ancestorInfo.pTagInButtonScope;
|
||
case "form":
|
||
return ancestorInfo.formTag || ancestorInfo.pTagInButtonScope;
|
||
case "li":
|
||
return ancestorInfo.listItemTagAutoclosing;
|
||
case "dd":
|
||
case "dt":
|
||
return ancestorInfo.dlItemTagAutoclosing;
|
||
case "button":
|
||
return ancestorInfo.buttonTagInScope;
|
||
case "a":
|
||
return ancestorInfo.aTagInScope;
|
||
case "nobr":
|
||
return ancestorInfo.nobrTagInScope;
|
||
}
|
||
return null;
|
||
};
|
||
var didWarn$1 = {};
|
||
validateDOMNesting = function(childTag, childText, ancestorInfo) {
|
||
ancestorInfo = ancestorInfo || emptyAncestorInfo;
|
||
var parentInfo = ancestorInfo.current;
|
||
var parentTag = parentInfo && parentInfo.tag;
|
||
if (childText != null) {
|
||
if (childTag != null) {
|
||
error("validateDOMNesting: when childText is passed, childTag should be null");
|
||
}
|
||
childTag = "#text";
|
||
}
|
||
var invalidParent = isTagValidWithParent(childTag, parentTag) ? null : parentInfo;
|
||
var invalidAncestor = invalidParent ? null : findInvalidAncestorForTag(childTag, ancestorInfo);
|
||
var invalidParentOrAncestor = invalidParent || invalidAncestor;
|
||
if (!invalidParentOrAncestor) {
|
||
return;
|
||
}
|
||
var ancestorTag = invalidParentOrAncestor.tag;
|
||
var warnKey = !!invalidParent + "|" + childTag + "|" + ancestorTag;
|
||
if (didWarn$1[warnKey]) {
|
||
return;
|
||
}
|
||
didWarn$1[warnKey] = true;
|
||
var tagDisplayName = childTag;
|
||
var whitespaceInfo = "";
|
||
if (childTag === "#text") {
|
||
if (/\S/.test(childText)) {
|
||
tagDisplayName = "Text nodes";
|
||
} else {
|
||
tagDisplayName = "Whitespace text nodes";
|
||
whitespaceInfo = " Make sure you don't have any extra whitespace between tags on each line of your source code.";
|
||
}
|
||
} else {
|
||
tagDisplayName = "<" + childTag + ">";
|
||
}
|
||
if (invalidParent) {
|
||
var info = "";
|
||
if (ancestorTag === "table" && childTag === "tr") {
|
||
info += " Add a <tbody>, <thead> or <tfoot> to your code to match the DOM tree generated by the browser.";
|
||
}
|
||
error("validateDOMNesting(...): %s cannot appear as a child of <%s>.%s%s", tagDisplayName, ancestorTag, whitespaceInfo, info);
|
||
} else {
|
||
error("validateDOMNesting(...): %s cannot appear as a descendant of <%s>.", tagDisplayName, ancestorTag);
|
||
}
|
||
};
|
||
}
|
||
var SUPPRESS_HYDRATION_WARNING$1 = "suppressHydrationWarning";
|
||
var SUSPENSE_START_DATA = "$";
|
||
var SUSPENSE_END_DATA = "/$";
|
||
var SUSPENSE_PENDING_START_DATA = "$?";
|
||
var SUSPENSE_FALLBACK_START_DATA = "$!";
|
||
var STYLE$1 = "style";
|
||
var eventsEnabled = null;
|
||
var selectionInformation = null;
|
||
function getRootHostContext(rootContainerInstance) {
|
||
var type;
|
||
var namespace;
|
||
var nodeType = rootContainerInstance.nodeType;
|
||
switch (nodeType) {
|
||
case DOCUMENT_NODE:
|
||
case DOCUMENT_FRAGMENT_NODE: {
|
||
type = nodeType === DOCUMENT_NODE ? "#document" : "#fragment";
|
||
var root2 = rootContainerInstance.documentElement;
|
||
namespace = root2 ? root2.namespaceURI : getChildNamespace(null, "");
|
||
break;
|
||
}
|
||
default: {
|
||
var container = nodeType === COMMENT_NODE ? rootContainerInstance.parentNode : rootContainerInstance;
|
||
var ownNamespace = container.namespaceURI || null;
|
||
type = container.tagName;
|
||
namespace = getChildNamespace(ownNamespace, type);
|
||
break;
|
||
}
|
||
}
|
||
{
|
||
var validatedTag = type.toLowerCase();
|
||
var ancestorInfo = updatedAncestorInfo(null, validatedTag);
|
||
return {
|
||
namespace,
|
||
ancestorInfo
|
||
};
|
||
}
|
||
}
|
||
function getChildHostContext(parentHostContext, type, rootContainerInstance) {
|
||
{
|
||
var parentHostContextDev = parentHostContext;
|
||
var namespace = getChildNamespace(parentHostContextDev.namespace, type);
|
||
var ancestorInfo = updatedAncestorInfo(parentHostContextDev.ancestorInfo, type);
|
||
return {
|
||
namespace,
|
||
ancestorInfo
|
||
};
|
||
}
|
||
}
|
||
function getPublicInstance(instance) {
|
||
return instance;
|
||
}
|
||
function prepareForCommit(containerInfo) {
|
||
eventsEnabled = isEnabled();
|
||
selectionInformation = getSelectionInformation();
|
||
var activeInstance = null;
|
||
setEnabled(false);
|
||
return activeInstance;
|
||
}
|
||
function resetAfterCommit(containerInfo) {
|
||
restoreSelection(selectionInformation);
|
||
setEnabled(eventsEnabled);
|
||
eventsEnabled = null;
|
||
selectionInformation = null;
|
||
}
|
||
function createInstance(type, props, rootContainerInstance, hostContext, internalInstanceHandle) {
|
||
var parentNamespace;
|
||
{
|
||
var hostContextDev = hostContext;
|
||
validateDOMNesting(type, null, hostContextDev.ancestorInfo);
|
||
if (typeof props.children === "string" || typeof props.children === "number") {
|
||
var string = "" + props.children;
|
||
var ownAncestorInfo = updatedAncestorInfo(hostContextDev.ancestorInfo, type);
|
||
validateDOMNesting(null, string, ownAncestorInfo);
|
||
}
|
||
parentNamespace = hostContextDev.namespace;
|
||
}
|
||
var domElement = createElement(type, props, rootContainerInstance, parentNamespace);
|
||
precacheFiberNode(internalInstanceHandle, domElement);
|
||
updateFiberProps(domElement, props);
|
||
return domElement;
|
||
}
|
||
function appendInitialChild(parentInstance, child) {
|
||
parentInstance.appendChild(child);
|
||
}
|
||
function finalizeInitialChildren(domElement, type, props, rootContainerInstance, hostContext) {
|
||
setInitialProperties(domElement, type, props, rootContainerInstance);
|
||
switch (type) {
|
||
case "button":
|
||
case "input":
|
||
case "select":
|
||
case "textarea":
|
||
return !!props.autoFocus;
|
||
case "img":
|
||
return true;
|
||
default:
|
||
return false;
|
||
}
|
||
}
|
||
function prepareUpdate(domElement, type, oldProps, newProps, rootContainerInstance, hostContext) {
|
||
{
|
||
var hostContextDev = hostContext;
|
||
if (typeof newProps.children !== typeof oldProps.children && (typeof newProps.children === "string" || typeof newProps.children === "number")) {
|
||
var string = "" + newProps.children;
|
||
var ownAncestorInfo = updatedAncestorInfo(hostContextDev.ancestorInfo, type);
|
||
validateDOMNesting(null, string, ownAncestorInfo);
|
||
}
|
||
}
|
||
return diffProperties(domElement, type, oldProps, newProps);
|
||
}
|
||
function shouldSetTextContent(type, props) {
|
||
return type === "textarea" || type === "noscript" || typeof props.children === "string" || typeof props.children === "number" || typeof props.dangerouslySetInnerHTML === "object" && props.dangerouslySetInnerHTML !== null && props.dangerouslySetInnerHTML.__html != null;
|
||
}
|
||
function createTextInstance(text, rootContainerInstance, hostContext, internalInstanceHandle) {
|
||
{
|
||
var hostContextDev = hostContext;
|
||
validateDOMNesting(null, text, hostContextDev.ancestorInfo);
|
||
}
|
||
var textNode = createTextNode(text, rootContainerInstance);
|
||
precacheFiberNode(internalInstanceHandle, textNode);
|
||
return textNode;
|
||
}
|
||
function getCurrentEventPriority() {
|
||
var currentEvent = window.event;
|
||
if (currentEvent === void 0) {
|
||
return DefaultEventPriority;
|
||
}
|
||
return getEventPriority(currentEvent.type);
|
||
}
|
||
var scheduleTimeout = typeof setTimeout === "function" ? setTimeout : void 0;
|
||
var cancelTimeout = typeof clearTimeout === "function" ? clearTimeout : void 0;
|
||
var noTimeout = -1;
|
||
var localPromise = typeof Promise === "function" ? Promise : void 0;
|
||
var scheduleMicrotask = typeof queueMicrotask === "function" ? queueMicrotask : typeof localPromise !== "undefined" ? function(callback) {
|
||
return localPromise.resolve(null).then(callback).catch(handleErrorInNextTick);
|
||
} : scheduleTimeout;
|
||
function handleErrorInNextTick(error2) {
|
||
setTimeout(function() {
|
||
throw error2;
|
||
});
|
||
}
|
||
function commitMount(domElement, type, newProps, internalInstanceHandle) {
|
||
switch (type) {
|
||
case "button":
|
||
case "input":
|
||
case "select":
|
||
case "textarea":
|
||
if (newProps.autoFocus) {
|
||
domElement.focus();
|
||
}
|
||
return;
|
||
case "img": {
|
||
if (newProps.src) {
|
||
domElement.src = newProps.src;
|
||
}
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
function commitUpdate(domElement, updatePayload, type, oldProps, newProps, internalInstanceHandle) {
|
||
updateProperties(domElement, updatePayload, type, oldProps, newProps);
|
||
updateFiberProps(domElement, newProps);
|
||
}
|
||
function resetTextContent(domElement) {
|
||
setTextContent(domElement, "");
|
||
}
|
||
function commitTextUpdate(textInstance, oldText, newText) {
|
||
textInstance.nodeValue = newText;
|
||
}
|
||
function appendChild(parentInstance, child) {
|
||
parentInstance.appendChild(child);
|
||
}
|
||
function appendChildToContainer(container, child) {
|
||
var parentNode;
|
||
if (container.nodeType === COMMENT_NODE) {
|
||
parentNode = container.parentNode;
|
||
parentNode.insertBefore(child, container);
|
||
} else {
|
||
parentNode = container;
|
||
parentNode.appendChild(child);
|
||
}
|
||
var reactRootContainer = container._reactRootContainer;
|
||
if ((reactRootContainer === null || reactRootContainer === void 0) && parentNode.onclick === null) {
|
||
trapClickOnNonInteractiveElement(parentNode);
|
||
}
|
||
}
|
||
function insertBefore(parentInstance, child, beforeChild) {
|
||
parentInstance.insertBefore(child, beforeChild);
|
||
}
|
||
function insertInContainerBefore(container, child, beforeChild) {
|
||
if (container.nodeType === COMMENT_NODE) {
|
||
container.parentNode.insertBefore(child, beforeChild);
|
||
} else {
|
||
container.insertBefore(child, beforeChild);
|
||
}
|
||
}
|
||
function removeChild(parentInstance, child) {
|
||
parentInstance.removeChild(child);
|
||
}
|
||
function removeChildFromContainer(container, child) {
|
||
if (container.nodeType === COMMENT_NODE) {
|
||
container.parentNode.removeChild(child);
|
||
} else {
|
||
container.removeChild(child);
|
||
}
|
||
}
|
||
function clearSuspenseBoundary(parentInstance, suspenseInstance) {
|
||
var node = suspenseInstance;
|
||
var depth = 0;
|
||
do {
|
||
var nextNode = node.nextSibling;
|
||
parentInstance.removeChild(node);
|
||
if (nextNode && nextNode.nodeType === COMMENT_NODE) {
|
||
var data = nextNode.data;
|
||
if (data === SUSPENSE_END_DATA) {
|
||
if (depth === 0) {
|
||
parentInstance.removeChild(nextNode);
|
||
retryIfBlockedOn(suspenseInstance);
|
||
return;
|
||
} else {
|
||
depth--;
|
||
}
|
||
} else if (data === SUSPENSE_START_DATA || data === SUSPENSE_PENDING_START_DATA || data === SUSPENSE_FALLBACK_START_DATA) {
|
||
depth++;
|
||
}
|
||
}
|
||
node = nextNode;
|
||
} while (node);
|
||
retryIfBlockedOn(suspenseInstance);
|
||
}
|
||
function clearSuspenseBoundaryFromContainer(container, suspenseInstance) {
|
||
if (container.nodeType === COMMENT_NODE) {
|
||
clearSuspenseBoundary(container.parentNode, suspenseInstance);
|
||
} else if (container.nodeType === ELEMENT_NODE) {
|
||
clearSuspenseBoundary(container, suspenseInstance);
|
||
}
|
||
retryIfBlockedOn(container);
|
||
}
|
||
function hideInstance(instance) {
|
||
instance = instance;
|
||
var style2 = instance.style;
|
||
if (typeof style2.setProperty === "function") {
|
||
style2.setProperty("display", "none", "important");
|
||
} else {
|
||
style2.display = "none";
|
||
}
|
||
}
|
||
function hideTextInstance(textInstance) {
|
||
textInstance.nodeValue = "";
|
||
}
|
||
function unhideInstance(instance, props) {
|
||
instance = instance;
|
||
var styleProp = props[STYLE$1];
|
||
var display = styleProp !== void 0 && styleProp !== null && styleProp.hasOwnProperty("display") ? styleProp.display : null;
|
||
instance.style.display = dangerousStyleValue("display", display);
|
||
}
|
||
function unhideTextInstance(textInstance, text) {
|
||
textInstance.nodeValue = text;
|
||
}
|
||
function clearContainer(container) {
|
||
if (container.nodeType === ELEMENT_NODE) {
|
||
container.textContent = "";
|
||
} else if (container.nodeType === DOCUMENT_NODE) {
|
||
if (container.documentElement) {
|
||
container.removeChild(container.documentElement);
|
||
}
|
||
}
|
||
}
|
||
function canHydrateInstance(instance, type, props) {
|
||
if (instance.nodeType !== ELEMENT_NODE || type.toLowerCase() !== instance.nodeName.toLowerCase()) {
|
||
return null;
|
||
}
|
||
return instance;
|
||
}
|
||
function canHydrateTextInstance(instance, text) {
|
||
if (text === "" || instance.nodeType !== TEXT_NODE) {
|
||
return null;
|
||
}
|
||
return instance;
|
||
}
|
||
function canHydrateSuspenseInstance(instance) {
|
||
if (instance.nodeType !== COMMENT_NODE) {
|
||
return null;
|
||
}
|
||
return instance;
|
||
}
|
||
function isSuspenseInstancePending(instance) {
|
||
return instance.data === SUSPENSE_PENDING_START_DATA;
|
||
}
|
||
function isSuspenseInstanceFallback(instance) {
|
||
return instance.data === SUSPENSE_FALLBACK_START_DATA;
|
||
}
|
||
function getSuspenseInstanceFallbackErrorDetails(instance) {
|
||
var dataset = instance.nextSibling && instance.nextSibling.dataset;
|
||
var digest, message, stack;
|
||
if (dataset) {
|
||
digest = dataset.dgst;
|
||
{
|
||
message = dataset.msg;
|
||
stack = dataset.stck;
|
||
}
|
||
}
|
||
{
|
||
return {
|
||
message,
|
||
digest,
|
||
stack
|
||
};
|
||
}
|
||
}
|
||
function registerSuspenseInstanceRetry(instance, callback) {
|
||
instance._reactRetry = callback;
|
||
}
|
||
function getNextHydratable(node) {
|
||
for (; node != null; node = node.nextSibling) {
|
||
var nodeType = node.nodeType;
|
||
if (nodeType === ELEMENT_NODE || nodeType === TEXT_NODE) {
|
||
break;
|
||
}
|
||
if (nodeType === COMMENT_NODE) {
|
||
var nodeData = node.data;
|
||
if (nodeData === SUSPENSE_START_DATA || nodeData === SUSPENSE_FALLBACK_START_DATA || nodeData === SUSPENSE_PENDING_START_DATA) {
|
||
break;
|
||
}
|
||
if (nodeData === SUSPENSE_END_DATA) {
|
||
return null;
|
||
}
|
||
}
|
||
}
|
||
return node;
|
||
}
|
||
function getNextHydratableSibling(instance) {
|
||
return getNextHydratable(instance.nextSibling);
|
||
}
|
||
function getFirstHydratableChild(parentInstance) {
|
||
return getNextHydratable(parentInstance.firstChild);
|
||
}
|
||
function getFirstHydratableChildWithinContainer(parentContainer) {
|
||
return getNextHydratable(parentContainer.firstChild);
|
||
}
|
||
function getFirstHydratableChildWithinSuspenseInstance(parentInstance) {
|
||
return getNextHydratable(parentInstance.nextSibling);
|
||
}
|
||
function hydrateInstance(instance, type, props, rootContainerInstance, hostContext, internalInstanceHandle, shouldWarnDev) {
|
||
precacheFiberNode(internalInstanceHandle, instance);
|
||
updateFiberProps(instance, props);
|
||
var parentNamespace;
|
||
{
|
||
var hostContextDev = hostContext;
|
||
parentNamespace = hostContextDev.namespace;
|
||
}
|
||
var isConcurrentMode = (internalInstanceHandle.mode & ConcurrentMode) !== NoMode;
|
||
return diffHydratedProperties(instance, type, props, parentNamespace, rootContainerInstance, isConcurrentMode, shouldWarnDev);
|
||
}
|
||
function hydrateTextInstance(textInstance, text, internalInstanceHandle, shouldWarnDev) {
|
||
precacheFiberNode(internalInstanceHandle, textInstance);
|
||
var isConcurrentMode = (internalInstanceHandle.mode & ConcurrentMode) !== NoMode;
|
||
return diffHydratedText(textInstance, text);
|
||
}
|
||
function hydrateSuspenseInstance(suspenseInstance, internalInstanceHandle) {
|
||
precacheFiberNode(internalInstanceHandle, suspenseInstance);
|
||
}
|
||
function getNextHydratableInstanceAfterSuspenseInstance(suspenseInstance) {
|
||
var node = suspenseInstance.nextSibling;
|
||
var depth = 0;
|
||
while (node) {
|
||
if (node.nodeType === COMMENT_NODE) {
|
||
var data = node.data;
|
||
if (data === SUSPENSE_END_DATA) {
|
||
if (depth === 0) {
|
||
return getNextHydratableSibling(node);
|
||
} else {
|
||
depth--;
|
||
}
|
||
} else if (data === SUSPENSE_START_DATA || data === SUSPENSE_FALLBACK_START_DATA || data === SUSPENSE_PENDING_START_DATA) {
|
||
depth++;
|
||
}
|
||
}
|
||
node = node.nextSibling;
|
||
}
|
||
return null;
|
||
}
|
||
function getParentSuspenseInstance(targetInstance) {
|
||
var node = targetInstance.previousSibling;
|
||
var depth = 0;
|
||
while (node) {
|
||
if (node.nodeType === COMMENT_NODE) {
|
||
var data = node.data;
|
||
if (data === SUSPENSE_START_DATA || data === SUSPENSE_FALLBACK_START_DATA || data === SUSPENSE_PENDING_START_DATA) {
|
||
if (depth === 0) {
|
||
return node;
|
||
} else {
|
||
depth--;
|
||
}
|
||
} else if (data === SUSPENSE_END_DATA) {
|
||
depth++;
|
||
}
|
||
}
|
||
node = node.previousSibling;
|
||
}
|
||
return null;
|
||
}
|
||
function commitHydratedContainer(container) {
|
||
retryIfBlockedOn(container);
|
||
}
|
||
function commitHydratedSuspenseInstance(suspenseInstance) {
|
||
retryIfBlockedOn(suspenseInstance);
|
||
}
|
||
function shouldDeleteUnhydratedTailInstances(parentType) {
|
||
return parentType !== "head" && parentType !== "body";
|
||
}
|
||
function didNotMatchHydratedContainerTextInstance(parentContainer, textInstance, text, isConcurrentMode) {
|
||
var shouldWarnDev = true;
|
||
checkForUnmatchedText(textInstance.nodeValue, text, isConcurrentMode, shouldWarnDev);
|
||
}
|
||
function didNotMatchHydratedTextInstance(parentType, parentProps, parentInstance, textInstance, text, isConcurrentMode) {
|
||
if (parentProps[SUPPRESS_HYDRATION_WARNING$1] !== true) {
|
||
var shouldWarnDev = true;
|
||
checkForUnmatchedText(textInstance.nodeValue, text, isConcurrentMode, shouldWarnDev);
|
||
}
|
||
}
|
||
function didNotHydrateInstanceWithinContainer(parentContainer, instance) {
|
||
{
|
||
if (instance.nodeType === ELEMENT_NODE) {
|
||
warnForDeletedHydratableElement(parentContainer, instance);
|
||
} else if (instance.nodeType === COMMENT_NODE)
|
||
;
|
||
else {
|
||
warnForDeletedHydratableText(parentContainer, instance);
|
||
}
|
||
}
|
||
}
|
||
function didNotHydrateInstanceWithinSuspenseInstance(parentInstance, instance) {
|
||
{
|
||
var parentNode = parentInstance.parentNode;
|
||
if (parentNode !== null) {
|
||
if (instance.nodeType === ELEMENT_NODE) {
|
||
warnForDeletedHydratableElement(parentNode, instance);
|
||
} else if (instance.nodeType === COMMENT_NODE)
|
||
;
|
||
else {
|
||
warnForDeletedHydratableText(parentNode, instance);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function didNotHydrateInstance(parentType, parentProps, parentInstance, instance, isConcurrentMode) {
|
||
{
|
||
if (isConcurrentMode || parentProps[SUPPRESS_HYDRATION_WARNING$1] !== true) {
|
||
if (instance.nodeType === ELEMENT_NODE) {
|
||
warnForDeletedHydratableElement(parentInstance, instance);
|
||
} else if (instance.nodeType === COMMENT_NODE)
|
||
;
|
||
else {
|
||
warnForDeletedHydratableText(parentInstance, instance);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function didNotFindHydratableInstanceWithinContainer(parentContainer, type, props) {
|
||
{
|
||
warnForInsertedHydratedElement(parentContainer, type);
|
||
}
|
||
}
|
||
function didNotFindHydratableTextInstanceWithinContainer(parentContainer, text) {
|
||
{
|
||
warnForInsertedHydratedText(parentContainer, text);
|
||
}
|
||
}
|
||
function didNotFindHydratableInstanceWithinSuspenseInstance(parentInstance, type, props) {
|
||
{
|
||
var parentNode = parentInstance.parentNode;
|
||
if (parentNode !== null)
|
||
warnForInsertedHydratedElement(parentNode, type);
|
||
}
|
||
}
|
||
function didNotFindHydratableTextInstanceWithinSuspenseInstance(parentInstance, text) {
|
||
{
|
||
var parentNode = parentInstance.parentNode;
|
||
if (parentNode !== null)
|
||
warnForInsertedHydratedText(parentNode, text);
|
||
}
|
||
}
|
||
function didNotFindHydratableInstance(parentType, parentProps, parentInstance, type, props, isConcurrentMode) {
|
||
{
|
||
if (isConcurrentMode || parentProps[SUPPRESS_HYDRATION_WARNING$1] !== true) {
|
||
warnForInsertedHydratedElement(parentInstance, type);
|
||
}
|
||
}
|
||
}
|
||
function didNotFindHydratableTextInstance(parentType, parentProps, parentInstance, text, isConcurrentMode) {
|
||
{
|
||
if (isConcurrentMode || parentProps[SUPPRESS_HYDRATION_WARNING$1] !== true) {
|
||
warnForInsertedHydratedText(parentInstance, text);
|
||
}
|
||
}
|
||
}
|
||
function errorHydratingContainer(parentContainer) {
|
||
{
|
||
error("An error occurred during hydration. The server HTML was replaced with client content in <%s>.", parentContainer.nodeName.toLowerCase());
|
||
}
|
||
}
|
||
function preparePortalMount(portalInstance) {
|
||
listenToAllSupportedEvents(portalInstance);
|
||
}
|
||
var randomKey = Math.random().toString(36).slice(2);
|
||
var internalInstanceKey = "__reactFiber$" + randomKey;
|
||
var internalPropsKey = "__reactProps$" + randomKey;
|
||
var internalContainerInstanceKey = "__reactContainer$" + randomKey;
|
||
var internalEventHandlersKey = "__reactEvents$" + randomKey;
|
||
var internalEventHandlerListenersKey = "__reactListeners$" + randomKey;
|
||
var internalEventHandlesSetKey = "__reactHandles$" + randomKey;
|
||
function detachDeletedInstance(node) {
|
||
delete node[internalInstanceKey];
|
||
delete node[internalPropsKey];
|
||
delete node[internalEventHandlersKey];
|
||
delete node[internalEventHandlerListenersKey];
|
||
delete node[internalEventHandlesSetKey];
|
||
}
|
||
function precacheFiberNode(hostInst, node) {
|
||
node[internalInstanceKey] = hostInst;
|
||
}
|
||
function markContainerAsRoot(hostRoot, node) {
|
||
node[internalContainerInstanceKey] = hostRoot;
|
||
}
|
||
function unmarkContainerAsRoot(node) {
|
||
node[internalContainerInstanceKey] = null;
|
||
}
|
||
function isContainerMarkedAsRoot(node) {
|
||
return !!node[internalContainerInstanceKey];
|
||
}
|
||
function getClosestInstanceFromNode(targetNode) {
|
||
var targetInst = targetNode[internalInstanceKey];
|
||
if (targetInst) {
|
||
return targetInst;
|
||
}
|
||
var parentNode = targetNode.parentNode;
|
||
while (parentNode) {
|
||
targetInst = parentNode[internalContainerInstanceKey] || parentNode[internalInstanceKey];
|
||
if (targetInst) {
|
||
var alternate = targetInst.alternate;
|
||
if (targetInst.child !== null || alternate !== null && alternate.child !== null) {
|
||
var suspenseInstance = getParentSuspenseInstance(targetNode);
|
||
while (suspenseInstance !== null) {
|
||
var targetSuspenseInst = suspenseInstance[internalInstanceKey];
|
||
if (targetSuspenseInst) {
|
||
return targetSuspenseInst;
|
||
}
|
||
suspenseInstance = getParentSuspenseInstance(suspenseInstance);
|
||
}
|
||
}
|
||
return targetInst;
|
||
}
|
||
targetNode = parentNode;
|
||
parentNode = targetNode.parentNode;
|
||
}
|
||
return null;
|
||
}
|
||
function getInstanceFromNode(node) {
|
||
var inst = node[internalInstanceKey] || node[internalContainerInstanceKey];
|
||
if (inst) {
|
||
if (inst.tag === HostComponent || inst.tag === HostText || inst.tag === SuspenseComponent || inst.tag === HostRoot) {
|
||
return inst;
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function getNodeFromInstance(inst) {
|
||
if (inst.tag === HostComponent || inst.tag === HostText) {
|
||
return inst.stateNode;
|
||
}
|
||
throw new Error("getNodeFromInstance: Invalid argument.");
|
||
}
|
||
function getFiberCurrentPropsFromNode(node) {
|
||
return node[internalPropsKey] || null;
|
||
}
|
||
function updateFiberProps(node, props) {
|
||
node[internalPropsKey] = props;
|
||
}
|
||
function getEventListenerSet(node) {
|
||
var elementListenerSet = node[internalEventHandlersKey];
|
||
if (elementListenerSet === void 0) {
|
||
elementListenerSet = node[internalEventHandlersKey] = /* @__PURE__ */ new Set();
|
||
}
|
||
return elementListenerSet;
|
||
}
|
||
var loggedTypeFailures = {};
|
||
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
function setCurrentlyValidatingElement(element) {
|
||
{
|
||
if (element) {
|
||
var owner = element._owner;
|
||
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
||
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
||
} else {
|
||
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
||
}
|
||
}
|
||
}
|
||
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
||
{
|
||
var has3 = Function.call.bind(hasOwnProperty);
|
||
for (var typeSpecName in typeSpecs) {
|
||
if (has3(typeSpecs, typeSpecName)) {
|
||
var error$1 = void 0;
|
||
try {
|
||
if (typeof typeSpecs[typeSpecName] !== "function") {
|
||
var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
||
err.name = "Invariant Violation";
|
||
throw err;
|
||
}
|
||
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
||
} catch (ex) {
|
||
error$1 = ex;
|
||
}
|
||
if (error$1 && !(error$1 instanceof Error)) {
|
||
setCurrentlyValidatingElement(element);
|
||
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1);
|
||
setCurrentlyValidatingElement(null);
|
||
}
|
||
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
||
loggedTypeFailures[error$1.message] = true;
|
||
setCurrentlyValidatingElement(element);
|
||
error("Failed %s type: %s", location, error$1.message);
|
||
setCurrentlyValidatingElement(null);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var valueStack = [];
|
||
var fiberStack;
|
||
{
|
||
fiberStack = [];
|
||
}
|
||
var index = -1;
|
||
function createCursor(defaultValue) {
|
||
return {
|
||
current: defaultValue
|
||
};
|
||
}
|
||
function pop(cursor, fiber) {
|
||
if (index < 0) {
|
||
{
|
||
error("Unexpected pop.");
|
||
}
|
||
return;
|
||
}
|
||
{
|
||
if (fiber !== fiberStack[index]) {
|
||
error("Unexpected Fiber popped.");
|
||
}
|
||
}
|
||
cursor.current = valueStack[index];
|
||
valueStack[index] = null;
|
||
{
|
||
fiberStack[index] = null;
|
||
}
|
||
index--;
|
||
}
|
||
function push(cursor, value, fiber) {
|
||
index++;
|
||
valueStack[index] = cursor.current;
|
||
{
|
||
fiberStack[index] = fiber;
|
||
}
|
||
cursor.current = value;
|
||
}
|
||
var warnedAboutMissingGetChildContext;
|
||
{
|
||
warnedAboutMissingGetChildContext = {};
|
||
}
|
||
var emptyContextObject = {};
|
||
{
|
||
Object.freeze(emptyContextObject);
|
||
}
|
||
var contextStackCursor = createCursor(emptyContextObject);
|
||
var didPerformWorkStackCursor = createCursor(false);
|
||
var previousContext = emptyContextObject;
|
||
function getUnmaskedContext(workInProgress2, Component2, didPushOwnContextIfProvider) {
|
||
{
|
||
if (didPushOwnContextIfProvider && isContextProvider(Component2)) {
|
||
return previousContext;
|
||
}
|
||
return contextStackCursor.current;
|
||
}
|
||
}
|
||
function cacheContext(workInProgress2, unmaskedContext, maskedContext) {
|
||
{
|
||
var instance = workInProgress2.stateNode;
|
||
instance.__reactInternalMemoizedUnmaskedChildContext = unmaskedContext;
|
||
instance.__reactInternalMemoizedMaskedChildContext = maskedContext;
|
||
}
|
||
}
|
||
function getMaskedContext(workInProgress2, unmaskedContext) {
|
||
{
|
||
var type = workInProgress2.type;
|
||
var contextTypes = type.contextTypes;
|
||
if (!contextTypes) {
|
||
return emptyContextObject;
|
||
}
|
||
var instance = workInProgress2.stateNode;
|
||
if (instance && instance.__reactInternalMemoizedUnmaskedChildContext === unmaskedContext) {
|
||
return instance.__reactInternalMemoizedMaskedChildContext;
|
||
}
|
||
var context = {};
|
||
for (var key in contextTypes) {
|
||
context[key] = unmaskedContext[key];
|
||
}
|
||
{
|
||
var name = getComponentNameFromFiber(workInProgress2) || "Unknown";
|
||
checkPropTypes(contextTypes, context, "context", name);
|
||
}
|
||
if (instance) {
|
||
cacheContext(workInProgress2, unmaskedContext, context);
|
||
}
|
||
return context;
|
||
}
|
||
}
|
||
function hasContextChanged() {
|
||
{
|
||
return didPerformWorkStackCursor.current;
|
||
}
|
||
}
|
||
function isContextProvider(type) {
|
||
{
|
||
var childContextTypes = type.childContextTypes;
|
||
return childContextTypes !== null && childContextTypes !== void 0;
|
||
}
|
||
}
|
||
function popContext(fiber) {
|
||
{
|
||
pop(didPerformWorkStackCursor, fiber);
|
||
pop(contextStackCursor, fiber);
|
||
}
|
||
}
|
||
function popTopLevelContextObject(fiber) {
|
||
{
|
||
pop(didPerformWorkStackCursor, fiber);
|
||
pop(contextStackCursor, fiber);
|
||
}
|
||
}
|
||
function pushTopLevelContextObject(fiber, context, didChange) {
|
||
{
|
||
if (contextStackCursor.current !== emptyContextObject) {
|
||
throw new Error("Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
push(contextStackCursor, context, fiber);
|
||
push(didPerformWorkStackCursor, didChange, fiber);
|
||
}
|
||
}
|
||
function processChildContext(fiber, type, parentContext) {
|
||
{
|
||
var instance = fiber.stateNode;
|
||
var childContextTypes = type.childContextTypes;
|
||
if (typeof instance.getChildContext !== "function") {
|
||
{
|
||
var componentName = getComponentNameFromFiber(fiber) || "Unknown";
|
||
if (!warnedAboutMissingGetChildContext[componentName]) {
|
||
warnedAboutMissingGetChildContext[componentName] = true;
|
||
error("%s.childContextTypes is specified but there is no getChildContext() method on the instance. You can either define getChildContext() on %s or remove childContextTypes from it.", componentName, componentName);
|
||
}
|
||
}
|
||
return parentContext;
|
||
}
|
||
var childContext = instance.getChildContext();
|
||
for (var contextKey in childContext) {
|
||
if (!(contextKey in childContextTypes)) {
|
||
throw new Error((getComponentNameFromFiber(fiber) || "Unknown") + '.getChildContext(): key "' + contextKey + '" is not defined in childContextTypes.');
|
||
}
|
||
}
|
||
{
|
||
var name = getComponentNameFromFiber(fiber) || "Unknown";
|
||
checkPropTypes(childContextTypes, childContext, "child context", name);
|
||
}
|
||
return assign({}, parentContext, childContext);
|
||
}
|
||
}
|
||
function pushContextProvider(workInProgress2) {
|
||
{
|
||
var instance = workInProgress2.stateNode;
|
||
var memoizedMergedChildContext = instance && instance.__reactInternalMemoizedMergedChildContext || emptyContextObject;
|
||
previousContext = contextStackCursor.current;
|
||
push(contextStackCursor, memoizedMergedChildContext, workInProgress2);
|
||
push(didPerformWorkStackCursor, didPerformWorkStackCursor.current, workInProgress2);
|
||
return true;
|
||
}
|
||
}
|
||
function invalidateContextProvider(workInProgress2, type, didChange) {
|
||
{
|
||
var instance = workInProgress2.stateNode;
|
||
if (!instance) {
|
||
throw new Error("Expected to have an instance by this point. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
if (didChange) {
|
||
var mergedContext = processChildContext(workInProgress2, type, previousContext);
|
||
instance.__reactInternalMemoizedMergedChildContext = mergedContext;
|
||
pop(didPerformWorkStackCursor, workInProgress2);
|
||
pop(contextStackCursor, workInProgress2);
|
||
push(contextStackCursor, mergedContext, workInProgress2);
|
||
push(didPerformWorkStackCursor, didChange, workInProgress2);
|
||
} else {
|
||
pop(didPerformWorkStackCursor, workInProgress2);
|
||
push(didPerformWorkStackCursor, didChange, workInProgress2);
|
||
}
|
||
}
|
||
}
|
||
function findCurrentUnmaskedContext(fiber) {
|
||
{
|
||
if (!isFiberMounted(fiber) || fiber.tag !== ClassComponent) {
|
||
throw new Error("Expected subtree parent to be a mounted class component. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
var node = fiber;
|
||
do {
|
||
switch (node.tag) {
|
||
case HostRoot:
|
||
return node.stateNode.context;
|
||
case ClassComponent: {
|
||
var Component2 = node.type;
|
||
if (isContextProvider(Component2)) {
|
||
return node.stateNode.__reactInternalMemoizedMergedChildContext;
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
node = node.return;
|
||
} while (node !== null);
|
||
throw new Error("Found unexpected detached subtree parent. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
var LegacyRoot = 0;
|
||
var ConcurrentRoot = 1;
|
||
var syncQueue = null;
|
||
var includesLegacySyncCallbacks = false;
|
||
var isFlushingSyncQueue = false;
|
||
function scheduleSyncCallback(callback) {
|
||
if (syncQueue === null) {
|
||
syncQueue = [callback];
|
||
} else {
|
||
syncQueue.push(callback);
|
||
}
|
||
}
|
||
function scheduleLegacySyncCallback(callback) {
|
||
includesLegacySyncCallbacks = true;
|
||
scheduleSyncCallback(callback);
|
||
}
|
||
function flushSyncCallbacksOnlyInLegacyMode() {
|
||
if (includesLegacySyncCallbacks) {
|
||
flushSyncCallbacks();
|
||
}
|
||
}
|
||
function flushSyncCallbacks() {
|
||
if (!isFlushingSyncQueue && syncQueue !== null) {
|
||
isFlushingSyncQueue = true;
|
||
var i = 0;
|
||
var previousUpdatePriority = getCurrentUpdatePriority();
|
||
try {
|
||
var isSync = true;
|
||
var queue = syncQueue;
|
||
setCurrentUpdatePriority(DiscreteEventPriority);
|
||
for (; i < queue.length; i++) {
|
||
var callback = queue[i];
|
||
do {
|
||
callback = callback(isSync);
|
||
} while (callback !== null);
|
||
}
|
||
syncQueue = null;
|
||
includesLegacySyncCallbacks = false;
|
||
} catch (error2) {
|
||
if (syncQueue !== null) {
|
||
syncQueue = syncQueue.slice(i + 1);
|
||
}
|
||
scheduleCallback(ImmediatePriority, flushSyncCallbacks);
|
||
throw error2;
|
||
} finally {
|
||
setCurrentUpdatePriority(previousUpdatePriority);
|
||
isFlushingSyncQueue = false;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
var forkStack = [];
|
||
var forkStackIndex = 0;
|
||
var treeForkProvider = null;
|
||
var treeForkCount = 0;
|
||
var idStack = [];
|
||
var idStackIndex = 0;
|
||
var treeContextProvider = null;
|
||
var treeContextId = 1;
|
||
var treeContextOverflow = "";
|
||
function isForkedChild(workInProgress2) {
|
||
warnIfNotHydrating();
|
||
return (workInProgress2.flags & Forked) !== NoFlags;
|
||
}
|
||
function getForksAtLevel(workInProgress2) {
|
||
warnIfNotHydrating();
|
||
return treeForkCount;
|
||
}
|
||
function getTreeId() {
|
||
var overflow = treeContextOverflow;
|
||
var idWithLeadingBit = treeContextId;
|
||
var id = idWithLeadingBit & ~getLeadingBit(idWithLeadingBit);
|
||
return id.toString(32) + overflow;
|
||
}
|
||
function pushTreeFork(workInProgress2, totalChildren) {
|
||
warnIfNotHydrating();
|
||
forkStack[forkStackIndex++] = treeForkCount;
|
||
forkStack[forkStackIndex++] = treeForkProvider;
|
||
treeForkProvider = workInProgress2;
|
||
treeForkCount = totalChildren;
|
||
}
|
||
function pushTreeId(workInProgress2, totalChildren, index2) {
|
||
warnIfNotHydrating();
|
||
idStack[idStackIndex++] = treeContextId;
|
||
idStack[idStackIndex++] = treeContextOverflow;
|
||
idStack[idStackIndex++] = treeContextProvider;
|
||
treeContextProvider = workInProgress2;
|
||
var baseIdWithLeadingBit = treeContextId;
|
||
var baseOverflow = treeContextOverflow;
|
||
var baseLength = getBitLength(baseIdWithLeadingBit) - 1;
|
||
var baseId = baseIdWithLeadingBit & ~(1 << baseLength);
|
||
var slot = index2 + 1;
|
||
var length = getBitLength(totalChildren) + baseLength;
|
||
if (length > 30) {
|
||
var numberOfOverflowBits = baseLength - baseLength % 5;
|
||
var newOverflowBits = (1 << numberOfOverflowBits) - 1;
|
||
var newOverflow = (baseId & newOverflowBits).toString(32);
|
||
var restOfBaseId = baseId >> numberOfOverflowBits;
|
||
var restOfBaseLength = baseLength - numberOfOverflowBits;
|
||
var restOfLength = getBitLength(totalChildren) + restOfBaseLength;
|
||
var restOfNewBits = slot << restOfBaseLength;
|
||
var id = restOfNewBits | restOfBaseId;
|
||
var overflow = newOverflow + baseOverflow;
|
||
treeContextId = 1 << restOfLength | id;
|
||
treeContextOverflow = overflow;
|
||
} else {
|
||
var newBits = slot << baseLength;
|
||
var _id = newBits | baseId;
|
||
var _overflow = baseOverflow;
|
||
treeContextId = 1 << length | _id;
|
||
treeContextOverflow = _overflow;
|
||
}
|
||
}
|
||
function pushMaterializedTreeId(workInProgress2) {
|
||
warnIfNotHydrating();
|
||
var returnFiber = workInProgress2.return;
|
||
if (returnFiber !== null) {
|
||
var numberOfForks = 1;
|
||
var slotIndex = 0;
|
||
pushTreeFork(workInProgress2, numberOfForks);
|
||
pushTreeId(workInProgress2, numberOfForks, slotIndex);
|
||
}
|
||
}
|
||
function getBitLength(number) {
|
||
return 32 - clz32(number);
|
||
}
|
||
function getLeadingBit(id) {
|
||
return 1 << getBitLength(id) - 1;
|
||
}
|
||
function popTreeContext(workInProgress2) {
|
||
while (workInProgress2 === treeForkProvider) {
|
||
treeForkProvider = forkStack[--forkStackIndex];
|
||
forkStack[forkStackIndex] = null;
|
||
treeForkCount = forkStack[--forkStackIndex];
|
||
forkStack[forkStackIndex] = null;
|
||
}
|
||
while (workInProgress2 === treeContextProvider) {
|
||
treeContextProvider = idStack[--idStackIndex];
|
||
idStack[idStackIndex] = null;
|
||
treeContextOverflow = idStack[--idStackIndex];
|
||
idStack[idStackIndex] = null;
|
||
treeContextId = idStack[--idStackIndex];
|
||
idStack[idStackIndex] = null;
|
||
}
|
||
}
|
||
function getSuspendedTreeContext() {
|
||
warnIfNotHydrating();
|
||
if (treeContextProvider !== null) {
|
||
return {
|
||
id: treeContextId,
|
||
overflow: treeContextOverflow
|
||
};
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
function restoreSuspendedTreeContext(workInProgress2, suspendedContext) {
|
||
warnIfNotHydrating();
|
||
idStack[idStackIndex++] = treeContextId;
|
||
idStack[idStackIndex++] = treeContextOverflow;
|
||
idStack[idStackIndex++] = treeContextProvider;
|
||
treeContextId = suspendedContext.id;
|
||
treeContextOverflow = suspendedContext.overflow;
|
||
treeContextProvider = workInProgress2;
|
||
}
|
||
function warnIfNotHydrating() {
|
||
{
|
||
if (!getIsHydrating()) {
|
||
error("Expected to be hydrating. This is a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
}
|
||
var hydrationParentFiber = null;
|
||
var nextHydratableInstance = null;
|
||
var isHydrating = false;
|
||
var didSuspendOrErrorDEV = false;
|
||
var hydrationErrors = null;
|
||
function warnIfHydrating() {
|
||
{
|
||
if (isHydrating) {
|
||
error("We should not be hydrating here. This is a bug in React. Please file a bug.");
|
||
}
|
||
}
|
||
}
|
||
function markDidThrowWhileHydratingDEV() {
|
||
{
|
||
didSuspendOrErrorDEV = true;
|
||
}
|
||
}
|
||
function didSuspendOrErrorWhileHydratingDEV() {
|
||
{
|
||
return didSuspendOrErrorDEV;
|
||
}
|
||
}
|
||
function enterHydrationState(fiber) {
|
||
var parentInstance = fiber.stateNode.containerInfo;
|
||
nextHydratableInstance = getFirstHydratableChildWithinContainer(parentInstance);
|
||
hydrationParentFiber = fiber;
|
||
isHydrating = true;
|
||
hydrationErrors = null;
|
||
didSuspendOrErrorDEV = false;
|
||
return true;
|
||
}
|
||
function reenterHydrationStateFromDehydratedSuspenseInstance(fiber, suspenseInstance, treeContext) {
|
||
nextHydratableInstance = getFirstHydratableChildWithinSuspenseInstance(suspenseInstance);
|
||
hydrationParentFiber = fiber;
|
||
isHydrating = true;
|
||
hydrationErrors = null;
|
||
didSuspendOrErrorDEV = false;
|
||
if (treeContext !== null) {
|
||
restoreSuspendedTreeContext(fiber, treeContext);
|
||
}
|
||
return true;
|
||
}
|
||
function warnUnhydratedInstance(returnFiber, instance) {
|
||
{
|
||
switch (returnFiber.tag) {
|
||
case HostRoot: {
|
||
didNotHydrateInstanceWithinContainer(returnFiber.stateNode.containerInfo, instance);
|
||
break;
|
||
}
|
||
case HostComponent: {
|
||
var isConcurrentMode = (returnFiber.mode & ConcurrentMode) !== NoMode;
|
||
didNotHydrateInstance(
|
||
returnFiber.type,
|
||
returnFiber.memoizedProps,
|
||
returnFiber.stateNode,
|
||
instance,
|
||
// TODO: Delete this argument when we remove the legacy root API.
|
||
isConcurrentMode
|
||
);
|
||
break;
|
||
}
|
||
case SuspenseComponent: {
|
||
var suspenseState = returnFiber.memoizedState;
|
||
if (suspenseState.dehydrated !== null)
|
||
didNotHydrateInstanceWithinSuspenseInstance(suspenseState.dehydrated, instance);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function deleteHydratableInstance(returnFiber, instance) {
|
||
warnUnhydratedInstance(returnFiber, instance);
|
||
var childToDelete = createFiberFromHostInstanceForDeletion();
|
||
childToDelete.stateNode = instance;
|
||
childToDelete.return = returnFiber;
|
||
var deletions = returnFiber.deletions;
|
||
if (deletions === null) {
|
||
returnFiber.deletions = [childToDelete];
|
||
returnFiber.flags |= ChildDeletion;
|
||
} else {
|
||
deletions.push(childToDelete);
|
||
}
|
||
}
|
||
function warnNonhydratedInstance(returnFiber, fiber) {
|
||
{
|
||
if (didSuspendOrErrorDEV) {
|
||
return;
|
||
}
|
||
switch (returnFiber.tag) {
|
||
case HostRoot: {
|
||
var parentContainer = returnFiber.stateNode.containerInfo;
|
||
switch (fiber.tag) {
|
||
case HostComponent:
|
||
var type = fiber.type;
|
||
var props = fiber.pendingProps;
|
||
didNotFindHydratableInstanceWithinContainer(parentContainer, type);
|
||
break;
|
||
case HostText:
|
||
var text = fiber.pendingProps;
|
||
didNotFindHydratableTextInstanceWithinContainer(parentContainer, text);
|
||
break;
|
||
}
|
||
break;
|
||
}
|
||
case HostComponent: {
|
||
var parentType = returnFiber.type;
|
||
var parentProps = returnFiber.memoizedProps;
|
||
var parentInstance = returnFiber.stateNode;
|
||
switch (fiber.tag) {
|
||
case HostComponent: {
|
||
var _type = fiber.type;
|
||
var _props = fiber.pendingProps;
|
||
var isConcurrentMode = (returnFiber.mode & ConcurrentMode) !== NoMode;
|
||
didNotFindHydratableInstance(
|
||
parentType,
|
||
parentProps,
|
||
parentInstance,
|
||
_type,
|
||
_props,
|
||
// TODO: Delete this argument when we remove the legacy root API.
|
||
isConcurrentMode
|
||
);
|
||
break;
|
||
}
|
||
case HostText: {
|
||
var _text = fiber.pendingProps;
|
||
var _isConcurrentMode = (returnFiber.mode & ConcurrentMode) !== NoMode;
|
||
didNotFindHydratableTextInstance(
|
||
parentType,
|
||
parentProps,
|
||
parentInstance,
|
||
_text,
|
||
// TODO: Delete this argument when we remove the legacy root API.
|
||
_isConcurrentMode
|
||
);
|
||
break;
|
||
}
|
||
}
|
||
break;
|
||
}
|
||
case SuspenseComponent: {
|
||
var suspenseState = returnFiber.memoizedState;
|
||
var _parentInstance = suspenseState.dehydrated;
|
||
if (_parentInstance !== null)
|
||
switch (fiber.tag) {
|
||
case HostComponent:
|
||
var _type2 = fiber.type;
|
||
var _props2 = fiber.pendingProps;
|
||
didNotFindHydratableInstanceWithinSuspenseInstance(_parentInstance, _type2);
|
||
break;
|
||
case HostText:
|
||
var _text2 = fiber.pendingProps;
|
||
didNotFindHydratableTextInstanceWithinSuspenseInstance(_parentInstance, _text2);
|
||
break;
|
||
}
|
||
break;
|
||
}
|
||
default:
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
function insertNonHydratedInstance(returnFiber, fiber) {
|
||
fiber.flags = fiber.flags & ~Hydrating | Placement;
|
||
warnNonhydratedInstance(returnFiber, fiber);
|
||
}
|
||
function tryHydrate(fiber, nextInstance) {
|
||
switch (fiber.tag) {
|
||
case HostComponent: {
|
||
var type = fiber.type;
|
||
var props = fiber.pendingProps;
|
||
var instance = canHydrateInstance(nextInstance, type);
|
||
if (instance !== null) {
|
||
fiber.stateNode = instance;
|
||
hydrationParentFiber = fiber;
|
||
nextHydratableInstance = getFirstHydratableChild(instance);
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
case HostText: {
|
||
var text = fiber.pendingProps;
|
||
var textInstance = canHydrateTextInstance(nextInstance, text);
|
||
if (textInstance !== null) {
|
||
fiber.stateNode = textInstance;
|
||
hydrationParentFiber = fiber;
|
||
nextHydratableInstance = null;
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
case SuspenseComponent: {
|
||
var suspenseInstance = canHydrateSuspenseInstance(nextInstance);
|
||
if (suspenseInstance !== null) {
|
||
var suspenseState = {
|
||
dehydrated: suspenseInstance,
|
||
treeContext: getSuspendedTreeContext(),
|
||
retryLane: OffscreenLane
|
||
};
|
||
fiber.memoizedState = suspenseState;
|
||
var dehydratedFragment = createFiberFromDehydratedFragment(suspenseInstance);
|
||
dehydratedFragment.return = fiber;
|
||
fiber.child = dehydratedFragment;
|
||
hydrationParentFiber = fiber;
|
||
nextHydratableInstance = null;
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
default:
|
||
return false;
|
||
}
|
||
}
|
||
function shouldClientRenderOnMismatch(fiber) {
|
||
return (fiber.mode & ConcurrentMode) !== NoMode && (fiber.flags & DidCapture) === NoFlags;
|
||
}
|
||
function throwOnHydrationMismatch(fiber) {
|
||
throw new Error("Hydration failed because the initial UI does not match what was rendered on the server.");
|
||
}
|
||
function tryToClaimNextHydratableInstance(fiber) {
|
||
if (!isHydrating) {
|
||
return;
|
||
}
|
||
var nextInstance = nextHydratableInstance;
|
||
if (!nextInstance) {
|
||
if (shouldClientRenderOnMismatch(fiber)) {
|
||
warnNonhydratedInstance(hydrationParentFiber, fiber);
|
||
throwOnHydrationMismatch();
|
||
}
|
||
insertNonHydratedInstance(hydrationParentFiber, fiber);
|
||
isHydrating = false;
|
||
hydrationParentFiber = fiber;
|
||
return;
|
||
}
|
||
var firstAttemptedInstance = nextInstance;
|
||
if (!tryHydrate(fiber, nextInstance)) {
|
||
if (shouldClientRenderOnMismatch(fiber)) {
|
||
warnNonhydratedInstance(hydrationParentFiber, fiber);
|
||
throwOnHydrationMismatch();
|
||
}
|
||
nextInstance = getNextHydratableSibling(firstAttemptedInstance);
|
||
var prevHydrationParentFiber = hydrationParentFiber;
|
||
if (!nextInstance || !tryHydrate(fiber, nextInstance)) {
|
||
insertNonHydratedInstance(hydrationParentFiber, fiber);
|
||
isHydrating = false;
|
||
hydrationParentFiber = fiber;
|
||
return;
|
||
}
|
||
deleteHydratableInstance(prevHydrationParentFiber, firstAttemptedInstance);
|
||
}
|
||
}
|
||
function prepareToHydrateHostInstance(fiber, rootContainerInstance, hostContext) {
|
||
var instance = fiber.stateNode;
|
||
var shouldWarnIfMismatchDev = !didSuspendOrErrorDEV;
|
||
var updatePayload = hydrateInstance(instance, fiber.type, fiber.memoizedProps, rootContainerInstance, hostContext, fiber, shouldWarnIfMismatchDev);
|
||
fiber.updateQueue = updatePayload;
|
||
if (updatePayload !== null) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
function prepareToHydrateHostTextInstance(fiber) {
|
||
var textInstance = fiber.stateNode;
|
||
var textContent = fiber.memoizedProps;
|
||
var shouldUpdate = hydrateTextInstance(textInstance, textContent, fiber);
|
||
if (shouldUpdate) {
|
||
var returnFiber = hydrationParentFiber;
|
||
if (returnFiber !== null) {
|
||
switch (returnFiber.tag) {
|
||
case HostRoot: {
|
||
var parentContainer = returnFiber.stateNode.containerInfo;
|
||
var isConcurrentMode = (returnFiber.mode & ConcurrentMode) !== NoMode;
|
||
didNotMatchHydratedContainerTextInstance(
|
||
parentContainer,
|
||
textInstance,
|
||
textContent,
|
||
// TODO: Delete this argument when we remove the legacy root API.
|
||
isConcurrentMode
|
||
);
|
||
break;
|
||
}
|
||
case HostComponent: {
|
||
var parentType = returnFiber.type;
|
||
var parentProps = returnFiber.memoizedProps;
|
||
var parentInstance = returnFiber.stateNode;
|
||
var _isConcurrentMode2 = (returnFiber.mode & ConcurrentMode) !== NoMode;
|
||
didNotMatchHydratedTextInstance(
|
||
parentType,
|
||
parentProps,
|
||
parentInstance,
|
||
textInstance,
|
||
textContent,
|
||
// TODO: Delete this argument when we remove the legacy root API.
|
||
_isConcurrentMode2
|
||
);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return shouldUpdate;
|
||
}
|
||
function prepareToHydrateHostSuspenseInstance(fiber) {
|
||
var suspenseState = fiber.memoizedState;
|
||
var suspenseInstance = suspenseState !== null ? suspenseState.dehydrated : null;
|
||
if (!suspenseInstance) {
|
||
throw new Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
hydrateSuspenseInstance(suspenseInstance, fiber);
|
||
}
|
||
function skipPastDehydratedSuspenseInstance(fiber) {
|
||
var suspenseState = fiber.memoizedState;
|
||
var suspenseInstance = suspenseState !== null ? suspenseState.dehydrated : null;
|
||
if (!suspenseInstance) {
|
||
throw new Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
return getNextHydratableInstanceAfterSuspenseInstance(suspenseInstance);
|
||
}
|
||
function popToNextHostParent(fiber) {
|
||
var parent = fiber.return;
|
||
while (parent !== null && parent.tag !== HostComponent && parent.tag !== HostRoot && parent.tag !== SuspenseComponent) {
|
||
parent = parent.return;
|
||
}
|
||
hydrationParentFiber = parent;
|
||
}
|
||
function popHydrationState(fiber) {
|
||
if (fiber !== hydrationParentFiber) {
|
||
return false;
|
||
}
|
||
if (!isHydrating) {
|
||
popToNextHostParent(fiber);
|
||
isHydrating = true;
|
||
return false;
|
||
}
|
||
if (fiber.tag !== HostRoot && (fiber.tag !== HostComponent || shouldDeleteUnhydratedTailInstances(fiber.type) && !shouldSetTextContent(fiber.type, fiber.memoizedProps))) {
|
||
var nextInstance = nextHydratableInstance;
|
||
if (nextInstance) {
|
||
if (shouldClientRenderOnMismatch(fiber)) {
|
||
warnIfUnhydratedTailNodes(fiber);
|
||
throwOnHydrationMismatch();
|
||
} else {
|
||
while (nextInstance) {
|
||
deleteHydratableInstance(fiber, nextInstance);
|
||
nextInstance = getNextHydratableSibling(nextInstance);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
popToNextHostParent(fiber);
|
||
if (fiber.tag === SuspenseComponent) {
|
||
nextHydratableInstance = skipPastDehydratedSuspenseInstance(fiber);
|
||
} else {
|
||
nextHydratableInstance = hydrationParentFiber ? getNextHydratableSibling(fiber.stateNode) : null;
|
||
}
|
||
return true;
|
||
}
|
||
function hasUnhydratedTailNodes() {
|
||
return isHydrating && nextHydratableInstance !== null;
|
||
}
|
||
function warnIfUnhydratedTailNodes(fiber) {
|
||
var nextInstance = nextHydratableInstance;
|
||
while (nextInstance) {
|
||
warnUnhydratedInstance(fiber, nextInstance);
|
||
nextInstance = getNextHydratableSibling(nextInstance);
|
||
}
|
||
}
|
||
function resetHydrationState() {
|
||
hydrationParentFiber = null;
|
||
nextHydratableInstance = null;
|
||
isHydrating = false;
|
||
didSuspendOrErrorDEV = false;
|
||
}
|
||
function upgradeHydrationErrorsToRecoverable() {
|
||
if (hydrationErrors !== null) {
|
||
queueRecoverableErrors(hydrationErrors);
|
||
hydrationErrors = null;
|
||
}
|
||
}
|
||
function getIsHydrating() {
|
||
return isHydrating;
|
||
}
|
||
function queueHydrationError(error2) {
|
||
if (hydrationErrors === null) {
|
||
hydrationErrors = [error2];
|
||
} else {
|
||
hydrationErrors.push(error2);
|
||
}
|
||
}
|
||
var ReactCurrentBatchConfig$1 = ReactSharedInternals.ReactCurrentBatchConfig;
|
||
var NoTransition = null;
|
||
function requestCurrentTransition() {
|
||
return ReactCurrentBatchConfig$1.transition;
|
||
}
|
||
var ReactStrictModeWarnings = {
|
||
recordUnsafeLifecycleWarnings: function(fiber, instance) {
|
||
},
|
||
flushPendingUnsafeLifecycleWarnings: function() {
|
||
},
|
||
recordLegacyContextWarning: function(fiber, instance) {
|
||
},
|
||
flushLegacyContextWarning: function() {
|
||
},
|
||
discardPendingWarnings: function() {
|
||
}
|
||
};
|
||
{
|
||
var findStrictRoot = function(fiber) {
|
||
var maybeStrictRoot = null;
|
||
var node = fiber;
|
||
while (node !== null) {
|
||
if (node.mode & StrictLegacyMode) {
|
||
maybeStrictRoot = node;
|
||
}
|
||
node = node.return;
|
||
}
|
||
return maybeStrictRoot;
|
||
};
|
||
var setToSortedString = function(set3) {
|
||
var array = [];
|
||
set3.forEach(function(value) {
|
||
array.push(value);
|
||
});
|
||
return array.sort().join(", ");
|
||
};
|
||
var pendingComponentWillMountWarnings = [];
|
||
var pendingUNSAFE_ComponentWillMountWarnings = [];
|
||
var pendingComponentWillReceivePropsWarnings = [];
|
||
var pendingUNSAFE_ComponentWillReceivePropsWarnings = [];
|
||
var pendingComponentWillUpdateWarnings = [];
|
||
var pendingUNSAFE_ComponentWillUpdateWarnings = [];
|
||
var didWarnAboutUnsafeLifecycles = /* @__PURE__ */ new Set();
|
||
ReactStrictModeWarnings.recordUnsafeLifecycleWarnings = function(fiber, instance) {
|
||
if (didWarnAboutUnsafeLifecycles.has(fiber.type)) {
|
||
return;
|
||
}
|
||
if (typeof instance.componentWillMount === "function" && // Don't warn about react-lifecycles-compat polyfilled components.
|
||
instance.componentWillMount.__suppressDeprecationWarning !== true) {
|
||
pendingComponentWillMountWarnings.push(fiber);
|
||
}
|
||
if (fiber.mode & StrictLegacyMode && typeof instance.UNSAFE_componentWillMount === "function") {
|
||
pendingUNSAFE_ComponentWillMountWarnings.push(fiber);
|
||
}
|
||
if (typeof instance.componentWillReceiveProps === "function" && instance.componentWillReceiveProps.__suppressDeprecationWarning !== true) {
|
||
pendingComponentWillReceivePropsWarnings.push(fiber);
|
||
}
|
||
if (fiber.mode & StrictLegacyMode && typeof instance.UNSAFE_componentWillReceiveProps === "function") {
|
||
pendingUNSAFE_ComponentWillReceivePropsWarnings.push(fiber);
|
||
}
|
||
if (typeof instance.componentWillUpdate === "function" && instance.componentWillUpdate.__suppressDeprecationWarning !== true) {
|
||
pendingComponentWillUpdateWarnings.push(fiber);
|
||
}
|
||
if (fiber.mode & StrictLegacyMode && typeof instance.UNSAFE_componentWillUpdate === "function") {
|
||
pendingUNSAFE_ComponentWillUpdateWarnings.push(fiber);
|
||
}
|
||
};
|
||
ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings = function() {
|
||
var componentWillMountUniqueNames = /* @__PURE__ */ new Set();
|
||
if (pendingComponentWillMountWarnings.length > 0) {
|
||
pendingComponentWillMountWarnings.forEach(function(fiber) {
|
||
componentWillMountUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
|
||
didWarnAboutUnsafeLifecycles.add(fiber.type);
|
||
});
|
||
pendingComponentWillMountWarnings = [];
|
||
}
|
||
var UNSAFE_componentWillMountUniqueNames = /* @__PURE__ */ new Set();
|
||
if (pendingUNSAFE_ComponentWillMountWarnings.length > 0) {
|
||
pendingUNSAFE_ComponentWillMountWarnings.forEach(function(fiber) {
|
||
UNSAFE_componentWillMountUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
|
||
didWarnAboutUnsafeLifecycles.add(fiber.type);
|
||
});
|
||
pendingUNSAFE_ComponentWillMountWarnings = [];
|
||
}
|
||
var componentWillReceivePropsUniqueNames = /* @__PURE__ */ new Set();
|
||
if (pendingComponentWillReceivePropsWarnings.length > 0) {
|
||
pendingComponentWillReceivePropsWarnings.forEach(function(fiber) {
|
||
componentWillReceivePropsUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
|
||
didWarnAboutUnsafeLifecycles.add(fiber.type);
|
||
});
|
||
pendingComponentWillReceivePropsWarnings = [];
|
||
}
|
||
var UNSAFE_componentWillReceivePropsUniqueNames = /* @__PURE__ */ new Set();
|
||
if (pendingUNSAFE_ComponentWillReceivePropsWarnings.length > 0) {
|
||
pendingUNSAFE_ComponentWillReceivePropsWarnings.forEach(function(fiber) {
|
||
UNSAFE_componentWillReceivePropsUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
|
||
didWarnAboutUnsafeLifecycles.add(fiber.type);
|
||
});
|
||
pendingUNSAFE_ComponentWillReceivePropsWarnings = [];
|
||
}
|
||
var componentWillUpdateUniqueNames = /* @__PURE__ */ new Set();
|
||
if (pendingComponentWillUpdateWarnings.length > 0) {
|
||
pendingComponentWillUpdateWarnings.forEach(function(fiber) {
|
||
componentWillUpdateUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
|
||
didWarnAboutUnsafeLifecycles.add(fiber.type);
|
||
});
|
||
pendingComponentWillUpdateWarnings = [];
|
||
}
|
||
var UNSAFE_componentWillUpdateUniqueNames = /* @__PURE__ */ new Set();
|
||
if (pendingUNSAFE_ComponentWillUpdateWarnings.length > 0) {
|
||
pendingUNSAFE_ComponentWillUpdateWarnings.forEach(function(fiber) {
|
||
UNSAFE_componentWillUpdateUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
|
||
didWarnAboutUnsafeLifecycles.add(fiber.type);
|
||
});
|
||
pendingUNSAFE_ComponentWillUpdateWarnings = [];
|
||
}
|
||
if (UNSAFE_componentWillMountUniqueNames.size > 0) {
|
||
var sortedNames = setToSortedString(UNSAFE_componentWillMountUniqueNames);
|
||
error("Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n\nPlease update the following components: %s", sortedNames);
|
||
}
|
||
if (UNSAFE_componentWillReceivePropsUniqueNames.size > 0) {
|
||
var _sortedNames = setToSortedString(UNSAFE_componentWillReceivePropsUniqueNames);
|
||
error("Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state\n\nPlease update the following components: %s", _sortedNames);
|
||
}
|
||
if (UNSAFE_componentWillUpdateUniqueNames.size > 0) {
|
||
var _sortedNames2 = setToSortedString(UNSAFE_componentWillUpdateUniqueNames);
|
||
error("Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n\nPlease update the following components: %s", _sortedNames2);
|
||
}
|
||
if (componentWillMountUniqueNames.size > 0) {
|
||
var _sortedNames3 = setToSortedString(componentWillMountUniqueNames);
|
||
warn("componentWillMount has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s", _sortedNames3);
|
||
}
|
||
if (componentWillReceivePropsUniqueNames.size > 0) {
|
||
var _sortedNames4 = setToSortedString(componentWillReceivePropsUniqueNames);
|
||
warn("componentWillReceiveProps has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state\n* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s", _sortedNames4);
|
||
}
|
||
if (componentWillUpdateUniqueNames.size > 0) {
|
||
var _sortedNames5 = setToSortedString(componentWillUpdateUniqueNames);
|
||
warn("componentWillUpdate has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s", _sortedNames5);
|
||
}
|
||
};
|
||
var pendingLegacyContextWarning = /* @__PURE__ */ new Map();
|
||
var didWarnAboutLegacyContext = /* @__PURE__ */ new Set();
|
||
ReactStrictModeWarnings.recordLegacyContextWarning = function(fiber, instance) {
|
||
var strictRoot = findStrictRoot(fiber);
|
||
if (strictRoot === null) {
|
||
error("Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue.");
|
||
return;
|
||
}
|
||
if (didWarnAboutLegacyContext.has(fiber.type)) {
|
||
return;
|
||
}
|
||
var warningsForRoot = pendingLegacyContextWarning.get(strictRoot);
|
||
if (fiber.type.contextTypes != null || fiber.type.childContextTypes != null || instance !== null && typeof instance.getChildContext === "function") {
|
||
if (warningsForRoot === void 0) {
|
||
warningsForRoot = [];
|
||
pendingLegacyContextWarning.set(strictRoot, warningsForRoot);
|
||
}
|
||
warningsForRoot.push(fiber);
|
||
}
|
||
};
|
||
ReactStrictModeWarnings.flushLegacyContextWarning = function() {
|
||
pendingLegacyContextWarning.forEach(function(fiberArray, strictRoot) {
|
||
if (fiberArray.length === 0) {
|
||
return;
|
||
}
|
||
var firstFiber = fiberArray[0];
|
||
var uniqueNames = /* @__PURE__ */ new Set();
|
||
fiberArray.forEach(function(fiber) {
|
||
uniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
|
||
didWarnAboutLegacyContext.add(fiber.type);
|
||
});
|
||
var sortedNames = setToSortedString(uniqueNames);
|
||
try {
|
||
setCurrentFiber(firstFiber);
|
||
error("Legacy context API has been detected within a strict-mode tree.\n\nThe old API will be supported in all 16.x releases, but applications using it should migrate to the new version.\n\nPlease update the following components: %s\n\nLearn more about this warning here: https://reactjs.org/link/legacy-context", sortedNames);
|
||
} finally {
|
||
resetCurrentFiber();
|
||
}
|
||
});
|
||
};
|
||
ReactStrictModeWarnings.discardPendingWarnings = function() {
|
||
pendingComponentWillMountWarnings = [];
|
||
pendingUNSAFE_ComponentWillMountWarnings = [];
|
||
pendingComponentWillReceivePropsWarnings = [];
|
||
pendingUNSAFE_ComponentWillReceivePropsWarnings = [];
|
||
pendingComponentWillUpdateWarnings = [];
|
||
pendingUNSAFE_ComponentWillUpdateWarnings = [];
|
||
pendingLegacyContextWarning = /* @__PURE__ */ new Map();
|
||
};
|
||
}
|
||
function resolveDefaultProps(Component2, baseProps) {
|
||
if (Component2 && Component2.defaultProps) {
|
||
var props = assign({}, baseProps);
|
||
var defaultProps = Component2.defaultProps;
|
||
for (var propName in defaultProps) {
|
||
if (props[propName] === void 0) {
|
||
props[propName] = defaultProps[propName];
|
||
}
|
||
}
|
||
return props;
|
||
}
|
||
return baseProps;
|
||
}
|
||
var valueCursor = createCursor(null);
|
||
var rendererSigil;
|
||
{
|
||
rendererSigil = {};
|
||
}
|
||
var currentlyRenderingFiber = null;
|
||
var lastContextDependency = null;
|
||
var lastFullyObservedContext = null;
|
||
var isDisallowedContextReadInDEV = false;
|
||
function resetContextDependencies() {
|
||
currentlyRenderingFiber = null;
|
||
lastContextDependency = null;
|
||
lastFullyObservedContext = null;
|
||
{
|
||
isDisallowedContextReadInDEV = false;
|
||
}
|
||
}
|
||
function enterDisallowedContextReadInDEV() {
|
||
{
|
||
isDisallowedContextReadInDEV = true;
|
||
}
|
||
}
|
||
function exitDisallowedContextReadInDEV() {
|
||
{
|
||
isDisallowedContextReadInDEV = false;
|
||
}
|
||
}
|
||
function pushProvider(providerFiber, context, nextValue) {
|
||
{
|
||
push(valueCursor, context._currentValue, providerFiber);
|
||
context._currentValue = nextValue;
|
||
{
|
||
if (context._currentRenderer !== void 0 && context._currentRenderer !== null && context._currentRenderer !== rendererSigil) {
|
||
error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported.");
|
||
}
|
||
context._currentRenderer = rendererSigil;
|
||
}
|
||
}
|
||
}
|
||
function popProvider(context, providerFiber) {
|
||
var currentValue = valueCursor.current;
|
||
pop(valueCursor, providerFiber);
|
||
{
|
||
{
|
||
context._currentValue = currentValue;
|
||
}
|
||
}
|
||
}
|
||
function scheduleContextWorkOnParentPath(parent, renderLanes2, propagationRoot) {
|
||
var node = parent;
|
||
while (node !== null) {
|
||
var alternate = node.alternate;
|
||
if (!isSubsetOfLanes(node.childLanes, renderLanes2)) {
|
||
node.childLanes = mergeLanes(node.childLanes, renderLanes2);
|
||
if (alternate !== null) {
|
||
alternate.childLanes = mergeLanes(alternate.childLanes, renderLanes2);
|
||
}
|
||
} else if (alternate !== null && !isSubsetOfLanes(alternate.childLanes, renderLanes2)) {
|
||
alternate.childLanes = mergeLanes(alternate.childLanes, renderLanes2);
|
||
}
|
||
if (node === propagationRoot) {
|
||
break;
|
||
}
|
||
node = node.return;
|
||
}
|
||
{
|
||
if (node !== propagationRoot) {
|
||
error("Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
}
|
||
function propagateContextChange(workInProgress2, context, renderLanes2) {
|
||
{
|
||
propagateContextChange_eager(workInProgress2, context, renderLanes2);
|
||
}
|
||
}
|
||
function propagateContextChange_eager(workInProgress2, context, renderLanes2) {
|
||
var fiber = workInProgress2.child;
|
||
if (fiber !== null) {
|
||
fiber.return = workInProgress2;
|
||
}
|
||
while (fiber !== null) {
|
||
var nextFiber = void 0;
|
||
var list = fiber.dependencies;
|
||
if (list !== null) {
|
||
nextFiber = fiber.child;
|
||
var dependency = list.firstContext;
|
||
while (dependency !== null) {
|
||
if (dependency.context === context) {
|
||
if (fiber.tag === ClassComponent) {
|
||
var lane = pickArbitraryLane(renderLanes2);
|
||
var update = createUpdate(NoTimestamp, lane);
|
||
update.tag = ForceUpdate;
|
||
var updateQueue = fiber.updateQueue;
|
||
if (updateQueue === null)
|
||
;
|
||
else {
|
||
var sharedQueue = updateQueue.shared;
|
||
var pending = sharedQueue.pending;
|
||
if (pending === null) {
|
||
update.next = update;
|
||
} else {
|
||
update.next = pending.next;
|
||
pending.next = update;
|
||
}
|
||
sharedQueue.pending = update;
|
||
}
|
||
}
|
||
fiber.lanes = mergeLanes(fiber.lanes, renderLanes2);
|
||
var alternate = fiber.alternate;
|
||
if (alternate !== null) {
|
||
alternate.lanes = mergeLanes(alternate.lanes, renderLanes2);
|
||
}
|
||
scheduleContextWorkOnParentPath(fiber.return, renderLanes2, workInProgress2);
|
||
list.lanes = mergeLanes(list.lanes, renderLanes2);
|
||
break;
|
||
}
|
||
dependency = dependency.next;
|
||
}
|
||
} else if (fiber.tag === ContextProvider) {
|
||
nextFiber = fiber.type === workInProgress2.type ? null : fiber.child;
|
||
} else if (fiber.tag === DehydratedFragment) {
|
||
var parentSuspense = fiber.return;
|
||
if (parentSuspense === null) {
|
||
throw new Error("We just came from a parent so we must have had a parent. This is a bug in React.");
|
||
}
|
||
parentSuspense.lanes = mergeLanes(parentSuspense.lanes, renderLanes2);
|
||
var _alternate = parentSuspense.alternate;
|
||
if (_alternate !== null) {
|
||
_alternate.lanes = mergeLanes(_alternate.lanes, renderLanes2);
|
||
}
|
||
scheduleContextWorkOnParentPath(parentSuspense, renderLanes2, workInProgress2);
|
||
nextFiber = fiber.sibling;
|
||
} else {
|
||
nextFiber = fiber.child;
|
||
}
|
||
if (nextFiber !== null) {
|
||
nextFiber.return = fiber;
|
||
} else {
|
||
nextFiber = fiber;
|
||
while (nextFiber !== null) {
|
||
if (nextFiber === workInProgress2) {
|
||
nextFiber = null;
|
||
break;
|
||
}
|
||
var sibling = nextFiber.sibling;
|
||
if (sibling !== null) {
|
||
sibling.return = nextFiber.return;
|
||
nextFiber = sibling;
|
||
break;
|
||
}
|
||
nextFiber = nextFiber.return;
|
||
}
|
||
}
|
||
fiber = nextFiber;
|
||
}
|
||
}
|
||
function prepareToReadContext(workInProgress2, renderLanes2) {
|
||
currentlyRenderingFiber = workInProgress2;
|
||
lastContextDependency = null;
|
||
lastFullyObservedContext = null;
|
||
var dependencies = workInProgress2.dependencies;
|
||
if (dependencies !== null) {
|
||
{
|
||
var firstContext = dependencies.firstContext;
|
||
if (firstContext !== null) {
|
||
if (includesSomeLane(dependencies.lanes, renderLanes2)) {
|
||
markWorkInProgressReceivedUpdate();
|
||
}
|
||
dependencies.firstContext = null;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function readContext(context) {
|
||
{
|
||
if (isDisallowedContextReadInDEV) {
|
||
error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");
|
||
}
|
||
}
|
||
var value = context._currentValue;
|
||
if (lastFullyObservedContext === context)
|
||
;
|
||
else {
|
||
var contextItem = {
|
||
context,
|
||
memoizedValue: value,
|
||
next: null
|
||
};
|
||
if (lastContextDependency === null) {
|
||
if (currentlyRenderingFiber === null) {
|
||
throw new Error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");
|
||
}
|
||
lastContextDependency = contextItem;
|
||
currentlyRenderingFiber.dependencies = {
|
||
lanes: NoLanes,
|
||
firstContext: contextItem
|
||
};
|
||
} else {
|
||
lastContextDependency = lastContextDependency.next = contextItem;
|
||
}
|
||
}
|
||
return value;
|
||
}
|
||
var concurrentQueues = null;
|
||
function pushConcurrentUpdateQueue(queue) {
|
||
if (concurrentQueues === null) {
|
||
concurrentQueues = [queue];
|
||
} else {
|
||
concurrentQueues.push(queue);
|
||
}
|
||
}
|
||
function finishQueueingConcurrentUpdates() {
|
||
if (concurrentQueues !== null) {
|
||
for (var i = 0; i < concurrentQueues.length; i++) {
|
||
var queue = concurrentQueues[i];
|
||
var lastInterleavedUpdate = queue.interleaved;
|
||
if (lastInterleavedUpdate !== null) {
|
||
queue.interleaved = null;
|
||
var firstInterleavedUpdate = lastInterleavedUpdate.next;
|
||
var lastPendingUpdate = queue.pending;
|
||
if (lastPendingUpdate !== null) {
|
||
var firstPendingUpdate = lastPendingUpdate.next;
|
||
lastPendingUpdate.next = firstInterleavedUpdate;
|
||
lastInterleavedUpdate.next = firstPendingUpdate;
|
||
}
|
||
queue.pending = lastInterleavedUpdate;
|
||
}
|
||
}
|
||
concurrentQueues = null;
|
||
}
|
||
}
|
||
function enqueueConcurrentHookUpdate(fiber, queue, update, lane) {
|
||
var interleaved = queue.interleaved;
|
||
if (interleaved === null) {
|
||
update.next = update;
|
||
pushConcurrentUpdateQueue(queue);
|
||
} else {
|
||
update.next = interleaved.next;
|
||
interleaved.next = update;
|
||
}
|
||
queue.interleaved = update;
|
||
return markUpdateLaneFromFiberToRoot(fiber, lane);
|
||
}
|
||
function enqueueConcurrentHookUpdateAndEagerlyBailout(fiber, queue, update, lane) {
|
||
var interleaved = queue.interleaved;
|
||
if (interleaved === null) {
|
||
update.next = update;
|
||
pushConcurrentUpdateQueue(queue);
|
||
} else {
|
||
update.next = interleaved.next;
|
||
interleaved.next = update;
|
||
}
|
||
queue.interleaved = update;
|
||
}
|
||
function enqueueConcurrentClassUpdate(fiber, queue, update, lane) {
|
||
var interleaved = queue.interleaved;
|
||
if (interleaved === null) {
|
||
update.next = update;
|
||
pushConcurrentUpdateQueue(queue);
|
||
} else {
|
||
update.next = interleaved.next;
|
||
interleaved.next = update;
|
||
}
|
||
queue.interleaved = update;
|
||
return markUpdateLaneFromFiberToRoot(fiber, lane);
|
||
}
|
||
function enqueueConcurrentRenderForLane(fiber, lane) {
|
||
return markUpdateLaneFromFiberToRoot(fiber, lane);
|
||
}
|
||
var unsafe_markUpdateLaneFromFiberToRoot = markUpdateLaneFromFiberToRoot;
|
||
function markUpdateLaneFromFiberToRoot(sourceFiber, lane) {
|
||
sourceFiber.lanes = mergeLanes(sourceFiber.lanes, lane);
|
||
var alternate = sourceFiber.alternate;
|
||
if (alternate !== null) {
|
||
alternate.lanes = mergeLanes(alternate.lanes, lane);
|
||
}
|
||
{
|
||
if (alternate === null && (sourceFiber.flags & (Placement | Hydrating)) !== NoFlags) {
|
||
warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber);
|
||
}
|
||
}
|
||
var node = sourceFiber;
|
||
var parent = sourceFiber.return;
|
||
while (parent !== null) {
|
||
parent.childLanes = mergeLanes(parent.childLanes, lane);
|
||
alternate = parent.alternate;
|
||
if (alternate !== null) {
|
||
alternate.childLanes = mergeLanes(alternate.childLanes, lane);
|
||
} else {
|
||
{
|
||
if ((parent.flags & (Placement | Hydrating)) !== NoFlags) {
|
||
warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber);
|
||
}
|
||
}
|
||
}
|
||
node = parent;
|
||
parent = parent.return;
|
||
}
|
||
if (node.tag === HostRoot) {
|
||
var root2 = node.stateNode;
|
||
return root2;
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
var UpdateState = 0;
|
||
var ReplaceState = 1;
|
||
var ForceUpdate = 2;
|
||
var CaptureUpdate = 3;
|
||
var hasForceUpdate = false;
|
||
var didWarnUpdateInsideUpdate;
|
||
var currentlyProcessingQueue;
|
||
{
|
||
didWarnUpdateInsideUpdate = false;
|
||
currentlyProcessingQueue = null;
|
||
}
|
||
function initializeUpdateQueue(fiber) {
|
||
var queue = {
|
||
baseState: fiber.memoizedState,
|
||
firstBaseUpdate: null,
|
||
lastBaseUpdate: null,
|
||
shared: {
|
||
pending: null,
|
||
interleaved: null,
|
||
lanes: NoLanes
|
||
},
|
||
effects: null
|
||
};
|
||
fiber.updateQueue = queue;
|
||
}
|
||
function cloneUpdateQueue(current3, workInProgress2) {
|
||
var queue = workInProgress2.updateQueue;
|
||
var currentQueue = current3.updateQueue;
|
||
if (queue === currentQueue) {
|
||
var clone = {
|
||
baseState: currentQueue.baseState,
|
||
firstBaseUpdate: currentQueue.firstBaseUpdate,
|
||
lastBaseUpdate: currentQueue.lastBaseUpdate,
|
||
shared: currentQueue.shared,
|
||
effects: currentQueue.effects
|
||
};
|
||
workInProgress2.updateQueue = clone;
|
||
}
|
||
}
|
||
function createUpdate(eventTime, lane) {
|
||
var update = {
|
||
eventTime,
|
||
lane,
|
||
tag: UpdateState,
|
||
payload: null,
|
||
callback: null,
|
||
next: null
|
||
};
|
||
return update;
|
||
}
|
||
function enqueueUpdate(fiber, update, lane) {
|
||
var updateQueue = fiber.updateQueue;
|
||
if (updateQueue === null) {
|
||
return null;
|
||
}
|
||
var sharedQueue = updateQueue.shared;
|
||
{
|
||
if (currentlyProcessingQueue === sharedQueue && !didWarnUpdateInsideUpdate) {
|
||
error("An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.");
|
||
didWarnUpdateInsideUpdate = true;
|
||
}
|
||
}
|
||
if (isUnsafeClassRenderPhaseUpdate()) {
|
||
var pending = sharedQueue.pending;
|
||
if (pending === null) {
|
||
update.next = update;
|
||
} else {
|
||
update.next = pending.next;
|
||
pending.next = update;
|
||
}
|
||
sharedQueue.pending = update;
|
||
return unsafe_markUpdateLaneFromFiberToRoot(fiber, lane);
|
||
} else {
|
||
return enqueueConcurrentClassUpdate(fiber, sharedQueue, update, lane);
|
||
}
|
||
}
|
||
function entangleTransitions(root2, fiber, lane) {
|
||
var updateQueue = fiber.updateQueue;
|
||
if (updateQueue === null) {
|
||
return;
|
||
}
|
||
var sharedQueue = updateQueue.shared;
|
||
if (isTransitionLane(lane)) {
|
||
var queueLanes = sharedQueue.lanes;
|
||
queueLanes = intersectLanes(queueLanes, root2.pendingLanes);
|
||
var newQueueLanes = mergeLanes(queueLanes, lane);
|
||
sharedQueue.lanes = newQueueLanes;
|
||
markRootEntangled(root2, newQueueLanes);
|
||
}
|
||
}
|
||
function enqueueCapturedUpdate(workInProgress2, capturedUpdate) {
|
||
var queue = workInProgress2.updateQueue;
|
||
var current3 = workInProgress2.alternate;
|
||
if (current3 !== null) {
|
||
var currentQueue = current3.updateQueue;
|
||
if (queue === currentQueue) {
|
||
var newFirst = null;
|
||
var newLast = null;
|
||
var firstBaseUpdate = queue.firstBaseUpdate;
|
||
if (firstBaseUpdate !== null) {
|
||
var update = firstBaseUpdate;
|
||
do {
|
||
var clone = {
|
||
eventTime: update.eventTime,
|
||
lane: update.lane,
|
||
tag: update.tag,
|
||
payload: update.payload,
|
||
callback: update.callback,
|
||
next: null
|
||
};
|
||
if (newLast === null) {
|
||
newFirst = newLast = clone;
|
||
} else {
|
||
newLast.next = clone;
|
||
newLast = clone;
|
||
}
|
||
update = update.next;
|
||
} while (update !== null);
|
||
if (newLast === null) {
|
||
newFirst = newLast = capturedUpdate;
|
||
} else {
|
||
newLast.next = capturedUpdate;
|
||
newLast = capturedUpdate;
|
||
}
|
||
} else {
|
||
newFirst = newLast = capturedUpdate;
|
||
}
|
||
queue = {
|
||
baseState: currentQueue.baseState,
|
||
firstBaseUpdate: newFirst,
|
||
lastBaseUpdate: newLast,
|
||
shared: currentQueue.shared,
|
||
effects: currentQueue.effects
|
||
};
|
||
workInProgress2.updateQueue = queue;
|
||
return;
|
||
}
|
||
}
|
||
var lastBaseUpdate = queue.lastBaseUpdate;
|
||
if (lastBaseUpdate === null) {
|
||
queue.firstBaseUpdate = capturedUpdate;
|
||
} else {
|
||
lastBaseUpdate.next = capturedUpdate;
|
||
}
|
||
queue.lastBaseUpdate = capturedUpdate;
|
||
}
|
||
function getStateFromUpdate(workInProgress2, queue, update, prevState, nextProps, instance) {
|
||
switch (update.tag) {
|
||
case ReplaceState: {
|
||
var payload = update.payload;
|
||
if (typeof payload === "function") {
|
||
{
|
||
enterDisallowedContextReadInDEV();
|
||
}
|
||
var nextState = payload.call(instance, prevState, nextProps);
|
||
{
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
payload.call(instance, prevState, nextProps);
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
exitDisallowedContextReadInDEV();
|
||
}
|
||
return nextState;
|
||
}
|
||
return payload;
|
||
}
|
||
case CaptureUpdate: {
|
||
workInProgress2.flags = workInProgress2.flags & ~ShouldCapture | DidCapture;
|
||
}
|
||
case UpdateState: {
|
||
var _payload = update.payload;
|
||
var partialState;
|
||
if (typeof _payload === "function") {
|
||
{
|
||
enterDisallowedContextReadInDEV();
|
||
}
|
||
partialState = _payload.call(instance, prevState, nextProps);
|
||
{
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
_payload.call(instance, prevState, nextProps);
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
exitDisallowedContextReadInDEV();
|
||
}
|
||
} else {
|
||
partialState = _payload;
|
||
}
|
||
if (partialState === null || partialState === void 0) {
|
||
return prevState;
|
||
}
|
||
return assign({}, prevState, partialState);
|
||
}
|
||
case ForceUpdate: {
|
||
hasForceUpdate = true;
|
||
return prevState;
|
||
}
|
||
}
|
||
return prevState;
|
||
}
|
||
function processUpdateQueue(workInProgress2, props, instance, renderLanes2) {
|
||
var queue = workInProgress2.updateQueue;
|
||
hasForceUpdate = false;
|
||
{
|
||
currentlyProcessingQueue = queue.shared;
|
||
}
|
||
var firstBaseUpdate = queue.firstBaseUpdate;
|
||
var lastBaseUpdate = queue.lastBaseUpdate;
|
||
var pendingQueue = queue.shared.pending;
|
||
if (pendingQueue !== null) {
|
||
queue.shared.pending = null;
|
||
var lastPendingUpdate = pendingQueue;
|
||
var firstPendingUpdate = lastPendingUpdate.next;
|
||
lastPendingUpdate.next = null;
|
||
if (lastBaseUpdate === null) {
|
||
firstBaseUpdate = firstPendingUpdate;
|
||
} else {
|
||
lastBaseUpdate.next = firstPendingUpdate;
|
||
}
|
||
lastBaseUpdate = lastPendingUpdate;
|
||
var current3 = workInProgress2.alternate;
|
||
if (current3 !== null) {
|
||
var currentQueue = current3.updateQueue;
|
||
var currentLastBaseUpdate = currentQueue.lastBaseUpdate;
|
||
if (currentLastBaseUpdate !== lastBaseUpdate) {
|
||
if (currentLastBaseUpdate === null) {
|
||
currentQueue.firstBaseUpdate = firstPendingUpdate;
|
||
} else {
|
||
currentLastBaseUpdate.next = firstPendingUpdate;
|
||
}
|
||
currentQueue.lastBaseUpdate = lastPendingUpdate;
|
||
}
|
||
}
|
||
}
|
||
if (firstBaseUpdate !== null) {
|
||
var newState = queue.baseState;
|
||
var newLanes = NoLanes;
|
||
var newBaseState = null;
|
||
var newFirstBaseUpdate = null;
|
||
var newLastBaseUpdate = null;
|
||
var update = firstBaseUpdate;
|
||
do {
|
||
var updateLane = update.lane;
|
||
var updateEventTime = update.eventTime;
|
||
if (!isSubsetOfLanes(renderLanes2, updateLane)) {
|
||
var clone = {
|
||
eventTime: updateEventTime,
|
||
lane: updateLane,
|
||
tag: update.tag,
|
||
payload: update.payload,
|
||
callback: update.callback,
|
||
next: null
|
||
};
|
||
if (newLastBaseUpdate === null) {
|
||
newFirstBaseUpdate = newLastBaseUpdate = clone;
|
||
newBaseState = newState;
|
||
} else {
|
||
newLastBaseUpdate = newLastBaseUpdate.next = clone;
|
||
}
|
||
newLanes = mergeLanes(newLanes, updateLane);
|
||
} else {
|
||
if (newLastBaseUpdate !== null) {
|
||
var _clone = {
|
||
eventTime: updateEventTime,
|
||
// This update is going to be committed so we never want uncommit
|
||
// it. Using NoLane works because 0 is a subset of all bitmasks, so
|
||
// this will never be skipped by the check above.
|
||
lane: NoLane,
|
||
tag: update.tag,
|
||
payload: update.payload,
|
||
callback: update.callback,
|
||
next: null
|
||
};
|
||
newLastBaseUpdate = newLastBaseUpdate.next = _clone;
|
||
}
|
||
newState = getStateFromUpdate(workInProgress2, queue, update, newState, props, instance);
|
||
var callback = update.callback;
|
||
if (callback !== null && // If the update was already committed, we should not queue its
|
||
// callback again.
|
||
update.lane !== NoLane) {
|
||
workInProgress2.flags |= Callback;
|
||
var effects = queue.effects;
|
||
if (effects === null) {
|
||
queue.effects = [update];
|
||
} else {
|
||
effects.push(update);
|
||
}
|
||
}
|
||
}
|
||
update = update.next;
|
||
if (update === null) {
|
||
pendingQueue = queue.shared.pending;
|
||
if (pendingQueue === null) {
|
||
break;
|
||
} else {
|
||
var _lastPendingUpdate = pendingQueue;
|
||
var _firstPendingUpdate = _lastPendingUpdate.next;
|
||
_lastPendingUpdate.next = null;
|
||
update = _firstPendingUpdate;
|
||
queue.lastBaseUpdate = _lastPendingUpdate;
|
||
queue.shared.pending = null;
|
||
}
|
||
}
|
||
} while (true);
|
||
if (newLastBaseUpdate === null) {
|
||
newBaseState = newState;
|
||
}
|
||
queue.baseState = newBaseState;
|
||
queue.firstBaseUpdate = newFirstBaseUpdate;
|
||
queue.lastBaseUpdate = newLastBaseUpdate;
|
||
var lastInterleaved = queue.shared.interleaved;
|
||
if (lastInterleaved !== null) {
|
||
var interleaved = lastInterleaved;
|
||
do {
|
||
newLanes = mergeLanes(newLanes, interleaved.lane);
|
||
interleaved = interleaved.next;
|
||
} while (interleaved !== lastInterleaved);
|
||
} else if (firstBaseUpdate === null) {
|
||
queue.shared.lanes = NoLanes;
|
||
}
|
||
markSkippedUpdateLanes(newLanes);
|
||
workInProgress2.lanes = newLanes;
|
||
workInProgress2.memoizedState = newState;
|
||
}
|
||
{
|
||
currentlyProcessingQueue = null;
|
||
}
|
||
}
|
||
function callCallback(callback, context) {
|
||
if (typeof callback !== "function") {
|
||
throw new Error("Invalid argument passed as callback. Expected a function. Instead " + ("received: " + callback));
|
||
}
|
||
callback.call(context);
|
||
}
|
||
function resetHasForceUpdateBeforeProcessing() {
|
||
hasForceUpdate = false;
|
||
}
|
||
function checkHasForceUpdateAfterProcessing() {
|
||
return hasForceUpdate;
|
||
}
|
||
function commitUpdateQueue(finishedWork, finishedQueue, instance) {
|
||
var effects = finishedQueue.effects;
|
||
finishedQueue.effects = null;
|
||
if (effects !== null) {
|
||
for (var i = 0; i < effects.length; i++) {
|
||
var effect = effects[i];
|
||
var callback = effect.callback;
|
||
if (callback !== null) {
|
||
effect.callback = null;
|
||
callCallback(callback, instance);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var fakeInternalInstance = {};
|
||
var emptyRefsObject = new React3.Component().refs;
|
||
var didWarnAboutStateAssignmentForComponent;
|
||
var didWarnAboutUninitializedState;
|
||
var didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate;
|
||
var didWarnAboutLegacyLifecyclesAndDerivedState;
|
||
var didWarnAboutUndefinedDerivedState;
|
||
var warnOnUndefinedDerivedState;
|
||
var warnOnInvalidCallback;
|
||
var didWarnAboutDirectlyAssigningPropsToState;
|
||
var didWarnAboutContextTypeAndContextTypes;
|
||
var didWarnAboutInvalidateContextType;
|
||
{
|
||
didWarnAboutStateAssignmentForComponent = /* @__PURE__ */ new Set();
|
||
didWarnAboutUninitializedState = /* @__PURE__ */ new Set();
|
||
didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate = /* @__PURE__ */ new Set();
|
||
didWarnAboutLegacyLifecyclesAndDerivedState = /* @__PURE__ */ new Set();
|
||
didWarnAboutDirectlyAssigningPropsToState = /* @__PURE__ */ new Set();
|
||
didWarnAboutUndefinedDerivedState = /* @__PURE__ */ new Set();
|
||
didWarnAboutContextTypeAndContextTypes = /* @__PURE__ */ new Set();
|
||
didWarnAboutInvalidateContextType = /* @__PURE__ */ new Set();
|
||
var didWarnOnInvalidCallback = /* @__PURE__ */ new Set();
|
||
warnOnInvalidCallback = function(callback, callerName) {
|
||
if (callback === null || typeof callback === "function") {
|
||
return;
|
||
}
|
||
var key = callerName + "_" + callback;
|
||
if (!didWarnOnInvalidCallback.has(key)) {
|
||
didWarnOnInvalidCallback.add(key);
|
||
error("%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.", callerName, callback);
|
||
}
|
||
};
|
||
warnOnUndefinedDerivedState = function(type, partialState) {
|
||
if (partialState === void 0) {
|
||
var componentName = getComponentNameFromType(type) || "Component";
|
||
if (!didWarnAboutUndefinedDerivedState.has(componentName)) {
|
||
didWarnAboutUndefinedDerivedState.add(componentName);
|
||
error("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.", componentName);
|
||
}
|
||
}
|
||
};
|
||
Object.defineProperty(fakeInternalInstance, "_processChildContext", {
|
||
enumerable: false,
|
||
value: function() {
|
||
throw new Error("_processChildContext is not available in React 16+. This likely means you have multiple copies of React and are attempting to nest a React 15 tree inside a React 16 tree using unstable_renderSubtreeIntoContainer, which isn't supported. Try to make sure you have only one copy of React (and ideally, switch to ReactDOM.createPortal).");
|
||
}
|
||
});
|
||
Object.freeze(fakeInternalInstance);
|
||
}
|
||
function applyDerivedStateFromProps(workInProgress2, ctor, getDerivedStateFromProps, nextProps) {
|
||
var prevState = workInProgress2.memoizedState;
|
||
var partialState = getDerivedStateFromProps(nextProps, prevState);
|
||
{
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
partialState = getDerivedStateFromProps(nextProps, prevState);
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
warnOnUndefinedDerivedState(ctor, partialState);
|
||
}
|
||
var memoizedState = partialState === null || partialState === void 0 ? prevState : assign({}, prevState, partialState);
|
||
workInProgress2.memoizedState = memoizedState;
|
||
if (workInProgress2.lanes === NoLanes) {
|
||
var updateQueue = workInProgress2.updateQueue;
|
||
updateQueue.baseState = memoizedState;
|
||
}
|
||
}
|
||
var classComponentUpdater = {
|
||
isMounted,
|
||
enqueueSetState: function(inst, payload, callback) {
|
||
var fiber = get(inst);
|
||
var eventTime = requestEventTime();
|
||
var lane = requestUpdateLane(fiber);
|
||
var update = createUpdate(eventTime, lane);
|
||
update.payload = payload;
|
||
if (callback !== void 0 && callback !== null) {
|
||
{
|
||
warnOnInvalidCallback(callback, "setState");
|
||
}
|
||
update.callback = callback;
|
||
}
|
||
var root2 = enqueueUpdate(fiber, update, lane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, lane, eventTime);
|
||
entangleTransitions(root2, fiber, lane);
|
||
}
|
||
{
|
||
markStateUpdateScheduled(fiber, lane);
|
||
}
|
||
},
|
||
enqueueReplaceState: function(inst, payload, callback) {
|
||
var fiber = get(inst);
|
||
var eventTime = requestEventTime();
|
||
var lane = requestUpdateLane(fiber);
|
||
var update = createUpdate(eventTime, lane);
|
||
update.tag = ReplaceState;
|
||
update.payload = payload;
|
||
if (callback !== void 0 && callback !== null) {
|
||
{
|
||
warnOnInvalidCallback(callback, "replaceState");
|
||
}
|
||
update.callback = callback;
|
||
}
|
||
var root2 = enqueueUpdate(fiber, update, lane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, lane, eventTime);
|
||
entangleTransitions(root2, fiber, lane);
|
||
}
|
||
{
|
||
markStateUpdateScheduled(fiber, lane);
|
||
}
|
||
},
|
||
enqueueForceUpdate: function(inst, callback) {
|
||
var fiber = get(inst);
|
||
var eventTime = requestEventTime();
|
||
var lane = requestUpdateLane(fiber);
|
||
var update = createUpdate(eventTime, lane);
|
||
update.tag = ForceUpdate;
|
||
if (callback !== void 0 && callback !== null) {
|
||
{
|
||
warnOnInvalidCallback(callback, "forceUpdate");
|
||
}
|
||
update.callback = callback;
|
||
}
|
||
var root2 = enqueueUpdate(fiber, update, lane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, lane, eventTime);
|
||
entangleTransitions(root2, fiber, lane);
|
||
}
|
||
{
|
||
markForceUpdateScheduled(fiber, lane);
|
||
}
|
||
}
|
||
};
|
||
function checkShouldComponentUpdate(workInProgress2, ctor, oldProps, newProps, oldState, newState, nextContext) {
|
||
var instance = workInProgress2.stateNode;
|
||
if (typeof instance.shouldComponentUpdate === "function") {
|
||
var shouldUpdate = instance.shouldComponentUpdate(newProps, newState, nextContext);
|
||
{
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
shouldUpdate = instance.shouldComponentUpdate(newProps, newState, nextContext);
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
if (shouldUpdate === void 0) {
|
||
error("%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.", getComponentNameFromType(ctor) || "Component");
|
||
}
|
||
}
|
||
return shouldUpdate;
|
||
}
|
||
if (ctor.prototype && ctor.prototype.isPureReactComponent) {
|
||
return !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState);
|
||
}
|
||
return true;
|
||
}
|
||
function checkClassInstance(workInProgress2, ctor, newProps) {
|
||
var instance = workInProgress2.stateNode;
|
||
{
|
||
var name = getComponentNameFromType(ctor) || "Component";
|
||
var renderPresent = instance.render;
|
||
if (!renderPresent) {
|
||
if (ctor.prototype && typeof ctor.prototype.render === "function") {
|
||
error("%s(...): No `render` method found on the returned component instance: did you accidentally return an object from the constructor?", name);
|
||
} else {
|
||
error("%s(...): No `render` method found on the returned component instance: you may have forgotten to define `render`.", name);
|
||
}
|
||
}
|
||
if (instance.getInitialState && !instance.getInitialState.isReactClassApproved && !instance.state) {
|
||
error("getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?", name);
|
||
}
|
||
if (instance.getDefaultProps && !instance.getDefaultProps.isReactClassApproved) {
|
||
error("getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.", name);
|
||
}
|
||
if (instance.propTypes) {
|
||
error("propTypes was defined as an instance property on %s. Use a static property to define propTypes instead.", name);
|
||
}
|
||
if (instance.contextType) {
|
||
error("contextType was defined as an instance property on %s. Use a static property to define contextType instead.", name);
|
||
}
|
||
{
|
||
if (instance.contextTypes) {
|
||
error("contextTypes was defined as an instance property on %s. Use a static property to define contextTypes instead.", name);
|
||
}
|
||
if (ctor.contextType && ctor.contextTypes && !didWarnAboutContextTypeAndContextTypes.has(ctor)) {
|
||
didWarnAboutContextTypeAndContextTypes.add(ctor);
|
||
error("%s declares both contextTypes and contextType static properties. The legacy contextTypes property will be ignored.", name);
|
||
}
|
||
}
|
||
if (typeof instance.componentShouldUpdate === "function") {
|
||
error("%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.", name);
|
||
}
|
||
if (ctor.prototype && ctor.prototype.isPureReactComponent && typeof instance.shouldComponentUpdate !== "undefined") {
|
||
error("%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.", getComponentNameFromType(ctor) || "A pure component");
|
||
}
|
||
if (typeof instance.componentDidUnmount === "function") {
|
||
error("%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?", name);
|
||
}
|
||
if (typeof instance.componentDidReceiveProps === "function") {
|
||
error("%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().", name);
|
||
}
|
||
if (typeof instance.componentWillRecieveProps === "function") {
|
||
error("%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?", name);
|
||
}
|
||
if (typeof instance.UNSAFE_componentWillRecieveProps === "function") {
|
||
error("%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?", name);
|
||
}
|
||
var hasMutatedProps = instance.props !== newProps;
|
||
if (instance.props !== void 0 && hasMutatedProps) {
|
||
error("%s(...): When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.", name, name);
|
||
}
|
||
if (instance.defaultProps) {
|
||
error("Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.", name, name);
|
||
}
|
||
if (typeof instance.getSnapshotBeforeUpdate === "function" && typeof instance.componentDidUpdate !== "function" && !didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.has(ctor)) {
|
||
didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.add(ctor);
|
||
error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.", getComponentNameFromType(ctor));
|
||
}
|
||
if (typeof instance.getDerivedStateFromProps === "function") {
|
||
error("%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.", name);
|
||
}
|
||
if (typeof instance.getDerivedStateFromError === "function") {
|
||
error("%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.", name);
|
||
}
|
||
if (typeof ctor.getSnapshotBeforeUpdate === "function") {
|
||
error("%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.", name);
|
||
}
|
||
var _state = instance.state;
|
||
if (_state && (typeof _state !== "object" || isArray(_state))) {
|
||
error("%s.state: must be set to an object or null", name);
|
||
}
|
||
if (typeof instance.getChildContext === "function" && typeof ctor.childContextTypes !== "object") {
|
||
error("%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().", name);
|
||
}
|
||
}
|
||
}
|
||
function adoptClassInstance(workInProgress2, instance) {
|
||
instance.updater = classComponentUpdater;
|
||
workInProgress2.stateNode = instance;
|
||
set2(instance, workInProgress2);
|
||
{
|
||
instance._reactInternalInstance = fakeInternalInstance;
|
||
}
|
||
}
|
||
function constructClassInstance(workInProgress2, ctor, props) {
|
||
var isLegacyContextConsumer = false;
|
||
var unmaskedContext = emptyContextObject;
|
||
var context = emptyContextObject;
|
||
var contextType = ctor.contextType;
|
||
{
|
||
if ("contextType" in ctor) {
|
||
var isValid = (
|
||
// Allow null for conditional declaration
|
||
contextType === null || contextType !== void 0 && contextType.$$typeof === REACT_CONTEXT_TYPE && contextType._context === void 0
|
||
);
|
||
if (!isValid && !didWarnAboutInvalidateContextType.has(ctor)) {
|
||
didWarnAboutInvalidateContextType.add(ctor);
|
||
var addendum = "";
|
||
if (contextType === void 0) {
|
||
addendum = " However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.";
|
||
} else if (typeof contextType !== "object") {
|
||
addendum = " However, it is set to a " + typeof contextType + ".";
|
||
} else if (contextType.$$typeof === REACT_PROVIDER_TYPE) {
|
||
addendum = " Did you accidentally pass the Context.Provider instead?";
|
||
} else if (contextType._context !== void 0) {
|
||
addendum = " Did you accidentally pass the Context.Consumer instead?";
|
||
} else {
|
||
addendum = " However, it is set to an object with keys {" + Object.keys(contextType).join(", ") + "}.";
|
||
}
|
||
error("%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s", getComponentNameFromType(ctor) || "Component", addendum);
|
||
}
|
||
}
|
||
}
|
||
if (typeof contextType === "object" && contextType !== null) {
|
||
context = readContext(contextType);
|
||
} else {
|
||
unmaskedContext = getUnmaskedContext(workInProgress2, ctor, true);
|
||
var contextTypes = ctor.contextTypes;
|
||
isLegacyContextConsumer = contextTypes !== null && contextTypes !== void 0;
|
||
context = isLegacyContextConsumer ? getMaskedContext(workInProgress2, unmaskedContext) : emptyContextObject;
|
||
}
|
||
var instance = new ctor(props, context);
|
||
{
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
instance = new ctor(props, context);
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
}
|
||
var state = workInProgress2.memoizedState = instance.state !== null && instance.state !== void 0 ? instance.state : null;
|
||
adoptClassInstance(workInProgress2, instance);
|
||
{
|
||
if (typeof ctor.getDerivedStateFromProps === "function" && state === null) {
|
||
var componentName = getComponentNameFromType(ctor) || "Component";
|
||
if (!didWarnAboutUninitializedState.has(componentName)) {
|
||
didWarnAboutUninitializedState.add(componentName);
|
||
error("`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.", componentName, instance.state === null ? "null" : "undefined", componentName);
|
||
}
|
||
}
|
||
if (typeof ctor.getDerivedStateFromProps === "function" || typeof instance.getSnapshotBeforeUpdate === "function") {
|
||
var foundWillMountName = null;
|
||
var foundWillReceivePropsName = null;
|
||
var foundWillUpdateName = null;
|
||
if (typeof instance.componentWillMount === "function" && instance.componentWillMount.__suppressDeprecationWarning !== true) {
|
||
foundWillMountName = "componentWillMount";
|
||
} else if (typeof instance.UNSAFE_componentWillMount === "function") {
|
||
foundWillMountName = "UNSAFE_componentWillMount";
|
||
}
|
||
if (typeof instance.componentWillReceiveProps === "function" && instance.componentWillReceiveProps.__suppressDeprecationWarning !== true) {
|
||
foundWillReceivePropsName = "componentWillReceiveProps";
|
||
} else if (typeof instance.UNSAFE_componentWillReceiveProps === "function") {
|
||
foundWillReceivePropsName = "UNSAFE_componentWillReceiveProps";
|
||
}
|
||
if (typeof instance.componentWillUpdate === "function" && instance.componentWillUpdate.__suppressDeprecationWarning !== true) {
|
||
foundWillUpdateName = "componentWillUpdate";
|
||
} else if (typeof instance.UNSAFE_componentWillUpdate === "function") {
|
||
foundWillUpdateName = "UNSAFE_componentWillUpdate";
|
||
}
|
||
if (foundWillMountName !== null || foundWillReceivePropsName !== null || foundWillUpdateName !== null) {
|
||
var _componentName = getComponentNameFromType(ctor) || "Component";
|
||
var newApiName = typeof ctor.getDerivedStateFromProps === "function" ? "getDerivedStateFromProps()" : "getSnapshotBeforeUpdate()";
|
||
if (!didWarnAboutLegacyLifecyclesAndDerivedState.has(_componentName)) {
|
||
didWarnAboutLegacyLifecyclesAndDerivedState.add(_componentName);
|
||
error("Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n%s uses %s but also contains the following legacy lifecycles:%s%s%s\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://reactjs.org/link/unsafe-component-lifecycles", _componentName, newApiName, foundWillMountName !== null ? "\n " + foundWillMountName : "", foundWillReceivePropsName !== null ? "\n " + foundWillReceivePropsName : "", foundWillUpdateName !== null ? "\n " + foundWillUpdateName : "");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (isLegacyContextConsumer) {
|
||
cacheContext(workInProgress2, unmaskedContext, context);
|
||
}
|
||
return instance;
|
||
}
|
||
function callComponentWillMount(workInProgress2, instance) {
|
||
var oldState = instance.state;
|
||
if (typeof instance.componentWillMount === "function") {
|
||
instance.componentWillMount();
|
||
}
|
||
if (typeof instance.UNSAFE_componentWillMount === "function") {
|
||
instance.UNSAFE_componentWillMount();
|
||
}
|
||
if (oldState !== instance.state) {
|
||
{
|
||
error("%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.", getComponentNameFromFiber(workInProgress2) || "Component");
|
||
}
|
||
classComponentUpdater.enqueueReplaceState(instance, instance.state, null);
|
||
}
|
||
}
|
||
function callComponentWillReceiveProps(workInProgress2, instance, newProps, nextContext) {
|
||
var oldState = instance.state;
|
||
if (typeof instance.componentWillReceiveProps === "function") {
|
||
instance.componentWillReceiveProps(newProps, nextContext);
|
||
}
|
||
if (typeof instance.UNSAFE_componentWillReceiveProps === "function") {
|
||
instance.UNSAFE_componentWillReceiveProps(newProps, nextContext);
|
||
}
|
||
if (instance.state !== oldState) {
|
||
{
|
||
var componentName = getComponentNameFromFiber(workInProgress2) || "Component";
|
||
if (!didWarnAboutStateAssignmentForComponent.has(componentName)) {
|
||
didWarnAboutStateAssignmentForComponent.add(componentName);
|
||
error("%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.", componentName);
|
||
}
|
||
}
|
||
classComponentUpdater.enqueueReplaceState(instance, instance.state, null);
|
||
}
|
||
}
|
||
function mountClassInstance(workInProgress2, ctor, newProps, renderLanes2) {
|
||
{
|
||
checkClassInstance(workInProgress2, ctor, newProps);
|
||
}
|
||
var instance = workInProgress2.stateNode;
|
||
instance.props = newProps;
|
||
instance.state = workInProgress2.memoizedState;
|
||
instance.refs = emptyRefsObject;
|
||
initializeUpdateQueue(workInProgress2);
|
||
var contextType = ctor.contextType;
|
||
if (typeof contextType === "object" && contextType !== null) {
|
||
instance.context = readContext(contextType);
|
||
} else {
|
||
var unmaskedContext = getUnmaskedContext(workInProgress2, ctor, true);
|
||
instance.context = getMaskedContext(workInProgress2, unmaskedContext);
|
||
}
|
||
{
|
||
if (instance.state === newProps) {
|
||
var componentName = getComponentNameFromType(ctor) || "Component";
|
||
if (!didWarnAboutDirectlyAssigningPropsToState.has(componentName)) {
|
||
didWarnAboutDirectlyAssigningPropsToState.add(componentName);
|
||
error("%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.", componentName);
|
||
}
|
||
}
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
ReactStrictModeWarnings.recordLegacyContextWarning(workInProgress2, instance);
|
||
}
|
||
{
|
||
ReactStrictModeWarnings.recordUnsafeLifecycleWarnings(workInProgress2, instance);
|
||
}
|
||
}
|
||
instance.state = workInProgress2.memoizedState;
|
||
var getDerivedStateFromProps = ctor.getDerivedStateFromProps;
|
||
if (typeof getDerivedStateFromProps === "function") {
|
||
applyDerivedStateFromProps(workInProgress2, ctor, getDerivedStateFromProps, newProps);
|
||
instance.state = workInProgress2.memoizedState;
|
||
}
|
||
if (typeof ctor.getDerivedStateFromProps !== "function" && typeof instance.getSnapshotBeforeUpdate !== "function" && (typeof instance.UNSAFE_componentWillMount === "function" || typeof instance.componentWillMount === "function")) {
|
||
callComponentWillMount(workInProgress2, instance);
|
||
processUpdateQueue(workInProgress2, newProps, instance, renderLanes2);
|
||
instance.state = workInProgress2.memoizedState;
|
||
}
|
||
if (typeof instance.componentDidMount === "function") {
|
||
var fiberFlags = Update;
|
||
{
|
||
fiberFlags |= LayoutStatic;
|
||
}
|
||
if ((workInProgress2.mode & StrictEffectsMode) !== NoMode) {
|
||
fiberFlags |= MountLayoutDev;
|
||
}
|
||
workInProgress2.flags |= fiberFlags;
|
||
}
|
||
}
|
||
function resumeMountClassInstance(workInProgress2, ctor, newProps, renderLanes2) {
|
||
var instance = workInProgress2.stateNode;
|
||
var oldProps = workInProgress2.memoizedProps;
|
||
instance.props = oldProps;
|
||
var oldContext = instance.context;
|
||
var contextType = ctor.contextType;
|
||
var nextContext = emptyContextObject;
|
||
if (typeof contextType === "object" && contextType !== null) {
|
||
nextContext = readContext(contextType);
|
||
} else {
|
||
var nextLegacyUnmaskedContext = getUnmaskedContext(workInProgress2, ctor, true);
|
||
nextContext = getMaskedContext(workInProgress2, nextLegacyUnmaskedContext);
|
||
}
|
||
var getDerivedStateFromProps = ctor.getDerivedStateFromProps;
|
||
var hasNewLifecycles = typeof getDerivedStateFromProps === "function" || typeof instance.getSnapshotBeforeUpdate === "function";
|
||
if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillReceiveProps === "function" || typeof instance.componentWillReceiveProps === "function")) {
|
||
if (oldProps !== newProps || oldContext !== nextContext) {
|
||
callComponentWillReceiveProps(workInProgress2, instance, newProps, nextContext);
|
||
}
|
||
}
|
||
resetHasForceUpdateBeforeProcessing();
|
||
var oldState = workInProgress2.memoizedState;
|
||
var newState = instance.state = oldState;
|
||
processUpdateQueue(workInProgress2, newProps, instance, renderLanes2);
|
||
newState = workInProgress2.memoizedState;
|
||
if (oldProps === newProps && oldState === newState && !hasContextChanged() && !checkHasForceUpdateAfterProcessing()) {
|
||
if (typeof instance.componentDidMount === "function") {
|
||
var fiberFlags = Update;
|
||
{
|
||
fiberFlags |= LayoutStatic;
|
||
}
|
||
if ((workInProgress2.mode & StrictEffectsMode) !== NoMode) {
|
||
fiberFlags |= MountLayoutDev;
|
||
}
|
||
workInProgress2.flags |= fiberFlags;
|
||
}
|
||
return false;
|
||
}
|
||
if (typeof getDerivedStateFromProps === "function") {
|
||
applyDerivedStateFromProps(workInProgress2, ctor, getDerivedStateFromProps, newProps);
|
||
newState = workInProgress2.memoizedState;
|
||
}
|
||
var shouldUpdate = checkHasForceUpdateAfterProcessing() || checkShouldComponentUpdate(workInProgress2, ctor, oldProps, newProps, oldState, newState, nextContext);
|
||
if (shouldUpdate) {
|
||
if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillMount === "function" || typeof instance.componentWillMount === "function")) {
|
||
if (typeof instance.componentWillMount === "function") {
|
||
instance.componentWillMount();
|
||
}
|
||
if (typeof instance.UNSAFE_componentWillMount === "function") {
|
||
instance.UNSAFE_componentWillMount();
|
||
}
|
||
}
|
||
if (typeof instance.componentDidMount === "function") {
|
||
var _fiberFlags = Update;
|
||
{
|
||
_fiberFlags |= LayoutStatic;
|
||
}
|
||
if ((workInProgress2.mode & StrictEffectsMode) !== NoMode) {
|
||
_fiberFlags |= MountLayoutDev;
|
||
}
|
||
workInProgress2.flags |= _fiberFlags;
|
||
}
|
||
} else {
|
||
if (typeof instance.componentDidMount === "function") {
|
||
var _fiberFlags2 = Update;
|
||
{
|
||
_fiberFlags2 |= LayoutStatic;
|
||
}
|
||
if ((workInProgress2.mode & StrictEffectsMode) !== NoMode) {
|
||
_fiberFlags2 |= MountLayoutDev;
|
||
}
|
||
workInProgress2.flags |= _fiberFlags2;
|
||
}
|
||
workInProgress2.memoizedProps = newProps;
|
||
workInProgress2.memoizedState = newState;
|
||
}
|
||
instance.props = newProps;
|
||
instance.state = newState;
|
||
instance.context = nextContext;
|
||
return shouldUpdate;
|
||
}
|
||
function updateClassInstance(current3, workInProgress2, ctor, newProps, renderLanes2) {
|
||
var instance = workInProgress2.stateNode;
|
||
cloneUpdateQueue(current3, workInProgress2);
|
||
var unresolvedOldProps = workInProgress2.memoizedProps;
|
||
var oldProps = workInProgress2.type === workInProgress2.elementType ? unresolvedOldProps : resolveDefaultProps(workInProgress2.type, unresolvedOldProps);
|
||
instance.props = oldProps;
|
||
var unresolvedNewProps = workInProgress2.pendingProps;
|
||
var oldContext = instance.context;
|
||
var contextType = ctor.contextType;
|
||
var nextContext = emptyContextObject;
|
||
if (typeof contextType === "object" && contextType !== null) {
|
||
nextContext = readContext(contextType);
|
||
} else {
|
||
var nextUnmaskedContext = getUnmaskedContext(workInProgress2, ctor, true);
|
||
nextContext = getMaskedContext(workInProgress2, nextUnmaskedContext);
|
||
}
|
||
var getDerivedStateFromProps = ctor.getDerivedStateFromProps;
|
||
var hasNewLifecycles = typeof getDerivedStateFromProps === "function" || typeof instance.getSnapshotBeforeUpdate === "function";
|
||
if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillReceiveProps === "function" || typeof instance.componentWillReceiveProps === "function")) {
|
||
if (unresolvedOldProps !== unresolvedNewProps || oldContext !== nextContext) {
|
||
callComponentWillReceiveProps(workInProgress2, instance, newProps, nextContext);
|
||
}
|
||
}
|
||
resetHasForceUpdateBeforeProcessing();
|
||
var oldState = workInProgress2.memoizedState;
|
||
var newState = instance.state = oldState;
|
||
processUpdateQueue(workInProgress2, newProps, instance, renderLanes2);
|
||
newState = workInProgress2.memoizedState;
|
||
if (unresolvedOldProps === unresolvedNewProps && oldState === newState && !hasContextChanged() && !checkHasForceUpdateAfterProcessing() && !enableLazyContextPropagation) {
|
||
if (typeof instance.componentDidUpdate === "function") {
|
||
if (unresolvedOldProps !== current3.memoizedProps || oldState !== current3.memoizedState) {
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
}
|
||
if (typeof instance.getSnapshotBeforeUpdate === "function") {
|
||
if (unresolvedOldProps !== current3.memoizedProps || oldState !== current3.memoizedState) {
|
||
workInProgress2.flags |= Snapshot;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
if (typeof getDerivedStateFromProps === "function") {
|
||
applyDerivedStateFromProps(workInProgress2, ctor, getDerivedStateFromProps, newProps);
|
||
newState = workInProgress2.memoizedState;
|
||
}
|
||
var shouldUpdate = checkHasForceUpdateAfterProcessing() || checkShouldComponentUpdate(workInProgress2, ctor, oldProps, newProps, oldState, newState, nextContext) || // TODO: In some cases, we'll end up checking if context has changed twice,
|
||
// both before and after `shouldComponentUpdate` has been called. Not ideal,
|
||
// but I'm loath to refactor this function. This only happens for memoized
|
||
// components so it's not that common.
|
||
enableLazyContextPropagation;
|
||
if (shouldUpdate) {
|
||
if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillUpdate === "function" || typeof instance.componentWillUpdate === "function")) {
|
||
if (typeof instance.componentWillUpdate === "function") {
|
||
instance.componentWillUpdate(newProps, newState, nextContext);
|
||
}
|
||
if (typeof instance.UNSAFE_componentWillUpdate === "function") {
|
||
instance.UNSAFE_componentWillUpdate(newProps, newState, nextContext);
|
||
}
|
||
}
|
||
if (typeof instance.componentDidUpdate === "function") {
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
if (typeof instance.getSnapshotBeforeUpdate === "function") {
|
||
workInProgress2.flags |= Snapshot;
|
||
}
|
||
} else {
|
||
if (typeof instance.componentDidUpdate === "function") {
|
||
if (unresolvedOldProps !== current3.memoizedProps || oldState !== current3.memoizedState) {
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
}
|
||
if (typeof instance.getSnapshotBeforeUpdate === "function") {
|
||
if (unresolvedOldProps !== current3.memoizedProps || oldState !== current3.memoizedState) {
|
||
workInProgress2.flags |= Snapshot;
|
||
}
|
||
}
|
||
workInProgress2.memoizedProps = newProps;
|
||
workInProgress2.memoizedState = newState;
|
||
}
|
||
instance.props = newProps;
|
||
instance.state = newState;
|
||
instance.context = nextContext;
|
||
return shouldUpdate;
|
||
}
|
||
var didWarnAboutMaps;
|
||
var didWarnAboutGenerators;
|
||
var didWarnAboutStringRefs;
|
||
var ownerHasKeyUseWarning;
|
||
var ownerHasFunctionTypeWarning;
|
||
var warnForMissingKey = function(child, returnFiber) {
|
||
};
|
||
{
|
||
didWarnAboutMaps = false;
|
||
didWarnAboutGenerators = false;
|
||
didWarnAboutStringRefs = {};
|
||
ownerHasKeyUseWarning = {};
|
||
ownerHasFunctionTypeWarning = {};
|
||
warnForMissingKey = function(child, returnFiber) {
|
||
if (child === null || typeof child !== "object") {
|
||
return;
|
||
}
|
||
if (!child._store || child._store.validated || child.key != null) {
|
||
return;
|
||
}
|
||
if (typeof child._store !== "object") {
|
||
throw new Error("React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
child._store.validated = true;
|
||
var componentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||
if (ownerHasKeyUseWarning[componentName]) {
|
||
return;
|
||
}
|
||
ownerHasKeyUseWarning[componentName] = true;
|
||
error('Each child in a list should have a unique "key" prop. See https://reactjs.org/link/warning-keys for more information.');
|
||
};
|
||
}
|
||
function coerceRef(returnFiber, current3, element) {
|
||
var mixedRef = element.ref;
|
||
if (mixedRef !== null && typeof mixedRef !== "function" && typeof mixedRef !== "object") {
|
||
{
|
||
if ((returnFiber.mode & StrictLegacyMode || warnAboutStringRefs) && // We warn in ReactElement.js if owner and self are equal for string refs
|
||
// because these cannot be automatically converted to an arrow function
|
||
// using a codemod. Therefore, we don't have to warn about string refs again.
|
||
!(element._owner && element._self && element._owner.stateNode !== element._self)) {
|
||
var componentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||
if (!didWarnAboutStringRefs[componentName]) {
|
||
{
|
||
error('A string ref, "%s", has been found within a strict mode tree. String refs are a source of potential bugs and should be avoided. We recommend using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', mixedRef);
|
||
}
|
||
didWarnAboutStringRefs[componentName] = true;
|
||
}
|
||
}
|
||
}
|
||
if (element._owner) {
|
||
var owner = element._owner;
|
||
var inst;
|
||
if (owner) {
|
||
var ownerFiber = owner;
|
||
if (ownerFiber.tag !== ClassComponent) {
|
||
throw new Error("Function components cannot have string refs. We recommend using useRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref");
|
||
}
|
||
inst = ownerFiber.stateNode;
|
||
}
|
||
if (!inst) {
|
||
throw new Error("Missing owner for string ref " + mixedRef + ". This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
var resolvedInst = inst;
|
||
{
|
||
checkPropStringCoercion(mixedRef, "ref");
|
||
}
|
||
var stringRef = "" + mixedRef;
|
||
if (current3 !== null && current3.ref !== null && typeof current3.ref === "function" && current3.ref._stringRef === stringRef) {
|
||
return current3.ref;
|
||
}
|
||
var ref = function(value) {
|
||
var refs = resolvedInst.refs;
|
||
if (refs === emptyRefsObject) {
|
||
refs = resolvedInst.refs = {};
|
||
}
|
||
if (value === null) {
|
||
delete refs[stringRef];
|
||
} else {
|
||
refs[stringRef] = value;
|
||
}
|
||
};
|
||
ref._stringRef = stringRef;
|
||
return ref;
|
||
} else {
|
||
if (typeof mixedRef !== "string") {
|
||
throw new Error("Expected ref to be a function, a string, an object returned by React.createRef(), or null.");
|
||
}
|
||
if (!element._owner) {
|
||
throw new Error("Element ref was specified as a string (" + mixedRef + ") but no owner was set. This could happen for one of the following reasons:\n1. You may be adding a ref to a function component\n2. You may be adding a ref to a component that was not created inside a component's render method\n3. You have multiple copies of React loaded\nSee https://reactjs.org/link/refs-must-have-owner for more information.");
|
||
}
|
||
}
|
||
}
|
||
return mixedRef;
|
||
}
|
||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||
var childString = Object.prototype.toString.call(newChild);
|
||
throw new Error("Objects are not valid as a React child (found: " + (childString === "[object Object]" ? "object with keys {" + Object.keys(newChild).join(", ") + "}" : childString) + "). If you meant to render a collection of children, use an array instead.");
|
||
}
|
||
function warnOnFunctionType(returnFiber) {
|
||
{
|
||
var componentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||
if (ownerHasFunctionTypeWarning[componentName]) {
|
||
return;
|
||
}
|
||
ownerHasFunctionTypeWarning[componentName] = true;
|
||
error("Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render. Or maybe you meant to call this function rather than return it.");
|
||
}
|
||
}
|
||
function resolveLazy(lazyType) {
|
||
var payload = lazyType._payload;
|
||
var init = lazyType._init;
|
||
return init(payload);
|
||
}
|
||
function ChildReconciler(shouldTrackSideEffects) {
|
||
function deleteChild(returnFiber, childToDelete) {
|
||
if (!shouldTrackSideEffects) {
|
||
return;
|
||
}
|
||
var deletions = returnFiber.deletions;
|
||
if (deletions === null) {
|
||
returnFiber.deletions = [childToDelete];
|
||
returnFiber.flags |= ChildDeletion;
|
||
} else {
|
||
deletions.push(childToDelete);
|
||
}
|
||
}
|
||
function deleteRemainingChildren(returnFiber, currentFirstChild) {
|
||
if (!shouldTrackSideEffects) {
|
||
return null;
|
||
}
|
||
var childToDelete = currentFirstChild;
|
||
while (childToDelete !== null) {
|
||
deleteChild(returnFiber, childToDelete);
|
||
childToDelete = childToDelete.sibling;
|
||
}
|
||
return null;
|
||
}
|
||
function mapRemainingChildren(returnFiber, currentFirstChild) {
|
||
var existingChildren = /* @__PURE__ */ new Map();
|
||
var existingChild = currentFirstChild;
|
||
while (existingChild !== null) {
|
||
if (existingChild.key !== null) {
|
||
existingChildren.set(existingChild.key, existingChild);
|
||
} else {
|
||
existingChildren.set(existingChild.index, existingChild);
|
||
}
|
||
existingChild = existingChild.sibling;
|
||
}
|
||
return existingChildren;
|
||
}
|
||
function useFiber(fiber, pendingProps) {
|
||
var clone = createWorkInProgress(fiber, pendingProps);
|
||
clone.index = 0;
|
||
clone.sibling = null;
|
||
return clone;
|
||
}
|
||
function placeChild(newFiber, lastPlacedIndex, newIndex) {
|
||
newFiber.index = newIndex;
|
||
if (!shouldTrackSideEffects) {
|
||
newFiber.flags |= Forked;
|
||
return lastPlacedIndex;
|
||
}
|
||
var current3 = newFiber.alternate;
|
||
if (current3 !== null) {
|
||
var oldIndex = current3.index;
|
||
if (oldIndex < lastPlacedIndex) {
|
||
newFiber.flags |= Placement;
|
||
return lastPlacedIndex;
|
||
} else {
|
||
return oldIndex;
|
||
}
|
||
} else {
|
||
newFiber.flags |= Placement;
|
||
return lastPlacedIndex;
|
||
}
|
||
}
|
||
function placeSingleChild(newFiber) {
|
||
if (shouldTrackSideEffects && newFiber.alternate === null) {
|
||
newFiber.flags |= Placement;
|
||
}
|
||
return newFiber;
|
||
}
|
||
function updateTextNode(returnFiber, current3, textContent, lanes) {
|
||
if (current3 === null || current3.tag !== HostText) {
|
||
var created = createFiberFromText(textContent, returnFiber.mode, lanes);
|
||
created.return = returnFiber;
|
||
return created;
|
||
} else {
|
||
var existing = useFiber(current3, textContent);
|
||
existing.return = returnFiber;
|
||
return existing;
|
||
}
|
||
}
|
||
function updateElement(returnFiber, current3, element, lanes) {
|
||
var elementType = element.type;
|
||
if (elementType === REACT_FRAGMENT_TYPE) {
|
||
return updateFragment2(returnFiber, current3, element.props.children, lanes, element.key);
|
||
}
|
||
if (current3 !== null) {
|
||
if (current3.elementType === elementType || // Keep this check inline so it only runs on the false path:
|
||
isCompatibleFamilyForHotReloading(current3, element) || // Lazy types should reconcile their resolved type.
|
||
// We need to do this after the Hot Reloading check above,
|
||
// because hot reloading has different semantics than prod because
|
||
// it doesn't resuspend. So we can't let the call below suspend.
|
||
typeof elementType === "object" && elementType !== null && elementType.$$typeof === REACT_LAZY_TYPE && resolveLazy(elementType) === current3.type) {
|
||
var existing = useFiber(current3, element.props);
|
||
existing.ref = coerceRef(returnFiber, current3, element);
|
||
existing.return = returnFiber;
|
||
{
|
||
existing._debugSource = element._source;
|
||
existing._debugOwner = element._owner;
|
||
}
|
||
return existing;
|
||
}
|
||
}
|
||
var created = createFiberFromElement(element, returnFiber.mode, lanes);
|
||
created.ref = coerceRef(returnFiber, current3, element);
|
||
created.return = returnFiber;
|
||
return created;
|
||
}
|
||
function updatePortal(returnFiber, current3, portal, lanes) {
|
||
if (current3 === null || current3.tag !== HostPortal || current3.stateNode.containerInfo !== portal.containerInfo || current3.stateNode.implementation !== portal.implementation) {
|
||
var created = createFiberFromPortal(portal, returnFiber.mode, lanes);
|
||
created.return = returnFiber;
|
||
return created;
|
||
} else {
|
||
var existing = useFiber(current3, portal.children || []);
|
||
existing.return = returnFiber;
|
||
return existing;
|
||
}
|
||
}
|
||
function updateFragment2(returnFiber, current3, fragment, lanes, key) {
|
||
if (current3 === null || current3.tag !== Fragment3) {
|
||
var created = createFiberFromFragment(fragment, returnFiber.mode, lanes, key);
|
||
created.return = returnFiber;
|
||
return created;
|
||
} else {
|
||
var existing = useFiber(current3, fragment);
|
||
existing.return = returnFiber;
|
||
return existing;
|
||
}
|
||
}
|
||
function createChild(returnFiber, newChild, lanes) {
|
||
if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
|
||
var created = createFiberFromText("" + newChild, returnFiber.mode, lanes);
|
||
created.return = returnFiber;
|
||
return created;
|
||
}
|
||
if (typeof newChild === "object" && newChild !== null) {
|
||
switch (newChild.$$typeof) {
|
||
case REACT_ELEMENT_TYPE: {
|
||
var _created = createFiberFromElement(newChild, returnFiber.mode, lanes);
|
||
_created.ref = coerceRef(returnFiber, null, newChild);
|
||
_created.return = returnFiber;
|
||
return _created;
|
||
}
|
||
case REACT_PORTAL_TYPE: {
|
||
var _created2 = createFiberFromPortal(newChild, returnFiber.mode, lanes);
|
||
_created2.return = returnFiber;
|
||
return _created2;
|
||
}
|
||
case REACT_LAZY_TYPE: {
|
||
var payload = newChild._payload;
|
||
var init = newChild._init;
|
||
return createChild(returnFiber, init(payload), lanes);
|
||
}
|
||
}
|
||
if (isArray(newChild) || getIteratorFn(newChild)) {
|
||
var _created3 = createFiberFromFragment(newChild, returnFiber.mode, lanes, null);
|
||
_created3.return = returnFiber;
|
||
return _created3;
|
||
}
|
||
throwOnInvalidObjectType(returnFiber, newChild);
|
||
}
|
||
{
|
||
if (typeof newChild === "function") {
|
||
warnOnFunctionType(returnFiber);
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function updateSlot(returnFiber, oldFiber, newChild, lanes) {
|
||
var key = oldFiber !== null ? oldFiber.key : null;
|
||
if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
|
||
if (key !== null) {
|
||
return null;
|
||
}
|
||
return updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||
}
|
||
if (typeof newChild === "object" && newChild !== null) {
|
||
switch (newChild.$$typeof) {
|
||
case REACT_ELEMENT_TYPE: {
|
||
if (newChild.key === key) {
|
||
return updateElement(returnFiber, oldFiber, newChild, lanes);
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
case REACT_PORTAL_TYPE: {
|
||
if (newChild.key === key) {
|
||
return updatePortal(returnFiber, oldFiber, newChild, lanes);
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
case REACT_LAZY_TYPE: {
|
||
var payload = newChild._payload;
|
||
var init = newChild._init;
|
||
return updateSlot(returnFiber, oldFiber, init(payload), lanes);
|
||
}
|
||
}
|
||
if (isArray(newChild) || getIteratorFn(newChild)) {
|
||
if (key !== null) {
|
||
return null;
|
||
}
|
||
return updateFragment2(returnFiber, oldFiber, newChild, lanes, null);
|
||
}
|
||
throwOnInvalidObjectType(returnFiber, newChild);
|
||
}
|
||
{
|
||
if (typeof newChild === "function") {
|
||
warnOnFunctionType(returnFiber);
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function updateFromMap(existingChildren, returnFiber, newIdx, newChild, lanes) {
|
||
if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
|
||
var matchedFiber = existingChildren.get(newIdx) || null;
|
||
return updateTextNode(returnFiber, matchedFiber, "" + newChild, lanes);
|
||
}
|
||
if (typeof newChild === "object" && newChild !== null) {
|
||
switch (newChild.$$typeof) {
|
||
case REACT_ELEMENT_TYPE: {
|
||
var _matchedFiber = existingChildren.get(newChild.key === null ? newIdx : newChild.key) || null;
|
||
return updateElement(returnFiber, _matchedFiber, newChild, lanes);
|
||
}
|
||
case REACT_PORTAL_TYPE: {
|
||
var _matchedFiber2 = existingChildren.get(newChild.key === null ? newIdx : newChild.key) || null;
|
||
return updatePortal(returnFiber, _matchedFiber2, newChild, lanes);
|
||
}
|
||
case REACT_LAZY_TYPE:
|
||
var payload = newChild._payload;
|
||
var init = newChild._init;
|
||
return updateFromMap(existingChildren, returnFiber, newIdx, init(payload), lanes);
|
||
}
|
||
if (isArray(newChild) || getIteratorFn(newChild)) {
|
||
var _matchedFiber3 = existingChildren.get(newIdx) || null;
|
||
return updateFragment2(returnFiber, _matchedFiber3, newChild, lanes, null);
|
||
}
|
||
throwOnInvalidObjectType(returnFiber, newChild);
|
||
}
|
||
{
|
||
if (typeof newChild === "function") {
|
||
warnOnFunctionType(returnFiber);
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function warnOnInvalidKey(child, knownKeys, returnFiber) {
|
||
{
|
||
if (typeof child !== "object" || child === null) {
|
||
return knownKeys;
|
||
}
|
||
switch (child.$$typeof) {
|
||
case REACT_ELEMENT_TYPE:
|
||
case REACT_PORTAL_TYPE:
|
||
warnForMissingKey(child, returnFiber);
|
||
var key = child.key;
|
||
if (typeof key !== "string") {
|
||
break;
|
||
}
|
||
if (knownKeys === null) {
|
||
knownKeys = /* @__PURE__ */ new Set();
|
||
knownKeys.add(key);
|
||
break;
|
||
}
|
||
if (!knownKeys.has(key)) {
|
||
knownKeys.add(key);
|
||
break;
|
||
}
|
||
error("Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted \u2014 the behavior is unsupported and could change in a future version.", key);
|
||
break;
|
||
case REACT_LAZY_TYPE:
|
||
var payload = child._payload;
|
||
var init = child._init;
|
||
warnOnInvalidKey(init(payload), knownKeys, returnFiber);
|
||
break;
|
||
}
|
||
}
|
||
return knownKeys;
|
||
}
|
||
function reconcileChildrenArray(returnFiber, currentFirstChild, newChildren, lanes) {
|
||
{
|
||
var knownKeys = null;
|
||
for (var i = 0; i < newChildren.length; i++) {
|
||
var child = newChildren[i];
|
||
knownKeys = warnOnInvalidKey(child, knownKeys, returnFiber);
|
||
}
|
||
}
|
||
var resultingFirstChild = null;
|
||
var previousNewFiber = null;
|
||
var oldFiber = currentFirstChild;
|
||
var lastPlacedIndex = 0;
|
||
var newIdx = 0;
|
||
var nextOldFiber = null;
|
||
for (; oldFiber !== null && newIdx < newChildren.length; newIdx++) {
|
||
if (oldFiber.index > newIdx) {
|
||
nextOldFiber = oldFiber;
|
||
oldFiber = null;
|
||
} else {
|
||
nextOldFiber = oldFiber.sibling;
|
||
}
|
||
var newFiber = updateSlot(returnFiber, oldFiber, newChildren[newIdx], lanes);
|
||
if (newFiber === null) {
|
||
if (oldFiber === null) {
|
||
oldFiber = nextOldFiber;
|
||
}
|
||
break;
|
||
}
|
||
if (shouldTrackSideEffects) {
|
||
if (oldFiber && newFiber.alternate === null) {
|
||
deleteChild(returnFiber, oldFiber);
|
||
}
|
||
}
|
||
lastPlacedIndex = placeChild(newFiber, lastPlacedIndex, newIdx);
|
||
if (previousNewFiber === null) {
|
||
resultingFirstChild = newFiber;
|
||
} else {
|
||
previousNewFiber.sibling = newFiber;
|
||
}
|
||
previousNewFiber = newFiber;
|
||
oldFiber = nextOldFiber;
|
||
}
|
||
if (newIdx === newChildren.length) {
|
||
deleteRemainingChildren(returnFiber, oldFiber);
|
||
if (getIsHydrating()) {
|
||
var numberOfForks = newIdx;
|
||
pushTreeFork(returnFiber, numberOfForks);
|
||
}
|
||
return resultingFirstChild;
|
||
}
|
||
if (oldFiber === null) {
|
||
for (; newIdx < newChildren.length; newIdx++) {
|
||
var _newFiber = createChild(returnFiber, newChildren[newIdx], lanes);
|
||
if (_newFiber === null) {
|
||
continue;
|
||
}
|
||
lastPlacedIndex = placeChild(_newFiber, lastPlacedIndex, newIdx);
|
||
if (previousNewFiber === null) {
|
||
resultingFirstChild = _newFiber;
|
||
} else {
|
||
previousNewFiber.sibling = _newFiber;
|
||
}
|
||
previousNewFiber = _newFiber;
|
||
}
|
||
if (getIsHydrating()) {
|
||
var _numberOfForks = newIdx;
|
||
pushTreeFork(returnFiber, _numberOfForks);
|
||
}
|
||
return resultingFirstChild;
|
||
}
|
||
var existingChildren = mapRemainingChildren(returnFiber, oldFiber);
|
||
for (; newIdx < newChildren.length; newIdx++) {
|
||
var _newFiber2 = updateFromMap(existingChildren, returnFiber, newIdx, newChildren[newIdx], lanes);
|
||
if (_newFiber2 !== null) {
|
||
if (shouldTrackSideEffects) {
|
||
if (_newFiber2.alternate !== null) {
|
||
existingChildren.delete(_newFiber2.key === null ? newIdx : _newFiber2.key);
|
||
}
|
||
}
|
||
lastPlacedIndex = placeChild(_newFiber2, lastPlacedIndex, newIdx);
|
||
if (previousNewFiber === null) {
|
||
resultingFirstChild = _newFiber2;
|
||
} else {
|
||
previousNewFiber.sibling = _newFiber2;
|
||
}
|
||
previousNewFiber = _newFiber2;
|
||
}
|
||
}
|
||
if (shouldTrackSideEffects) {
|
||
existingChildren.forEach(function(child2) {
|
||
return deleteChild(returnFiber, child2);
|
||
});
|
||
}
|
||
if (getIsHydrating()) {
|
||
var _numberOfForks2 = newIdx;
|
||
pushTreeFork(returnFiber, _numberOfForks2);
|
||
}
|
||
return resultingFirstChild;
|
||
}
|
||
function reconcileChildrenIterator(returnFiber, currentFirstChild, newChildrenIterable, lanes) {
|
||
var iteratorFn = getIteratorFn(newChildrenIterable);
|
||
if (typeof iteratorFn !== "function") {
|
||
throw new Error("An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
{
|
||
if (typeof Symbol === "function" && // $FlowFixMe Flow doesn't know about toStringTag
|
||
newChildrenIterable[Symbol.toStringTag] === "Generator") {
|
||
if (!didWarnAboutGenerators) {
|
||
error("Using Generators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. Keep in mind you might need to polyfill these features for older browsers.");
|
||
}
|
||
didWarnAboutGenerators = true;
|
||
}
|
||
if (newChildrenIterable.entries === iteratorFn) {
|
||
if (!didWarnAboutMaps) {
|
||
error("Using Maps as children is not supported. Use an array of keyed ReactElements instead.");
|
||
}
|
||
didWarnAboutMaps = true;
|
||
}
|
||
var _newChildren = iteratorFn.call(newChildrenIterable);
|
||
if (_newChildren) {
|
||
var knownKeys = null;
|
||
var _step = _newChildren.next();
|
||
for (; !_step.done; _step = _newChildren.next()) {
|
||
var child = _step.value;
|
||
knownKeys = warnOnInvalidKey(child, knownKeys, returnFiber);
|
||
}
|
||
}
|
||
}
|
||
var newChildren = iteratorFn.call(newChildrenIterable);
|
||
if (newChildren == null) {
|
||
throw new Error("An iterable object provided no iterator.");
|
||
}
|
||
var resultingFirstChild = null;
|
||
var previousNewFiber = null;
|
||
var oldFiber = currentFirstChild;
|
||
var lastPlacedIndex = 0;
|
||
var newIdx = 0;
|
||
var nextOldFiber = null;
|
||
var step = newChildren.next();
|
||
for (; oldFiber !== null && !step.done; newIdx++, step = newChildren.next()) {
|
||
if (oldFiber.index > newIdx) {
|
||
nextOldFiber = oldFiber;
|
||
oldFiber = null;
|
||
} else {
|
||
nextOldFiber = oldFiber.sibling;
|
||
}
|
||
var newFiber = updateSlot(returnFiber, oldFiber, step.value, lanes);
|
||
if (newFiber === null) {
|
||
if (oldFiber === null) {
|
||
oldFiber = nextOldFiber;
|
||
}
|
||
break;
|
||
}
|
||
if (shouldTrackSideEffects) {
|
||
if (oldFiber && newFiber.alternate === null) {
|
||
deleteChild(returnFiber, oldFiber);
|
||
}
|
||
}
|
||
lastPlacedIndex = placeChild(newFiber, lastPlacedIndex, newIdx);
|
||
if (previousNewFiber === null) {
|
||
resultingFirstChild = newFiber;
|
||
} else {
|
||
previousNewFiber.sibling = newFiber;
|
||
}
|
||
previousNewFiber = newFiber;
|
||
oldFiber = nextOldFiber;
|
||
}
|
||
if (step.done) {
|
||
deleteRemainingChildren(returnFiber, oldFiber);
|
||
if (getIsHydrating()) {
|
||
var numberOfForks = newIdx;
|
||
pushTreeFork(returnFiber, numberOfForks);
|
||
}
|
||
return resultingFirstChild;
|
||
}
|
||
if (oldFiber === null) {
|
||
for (; !step.done; newIdx++, step = newChildren.next()) {
|
||
var _newFiber3 = createChild(returnFiber, step.value, lanes);
|
||
if (_newFiber3 === null) {
|
||
continue;
|
||
}
|
||
lastPlacedIndex = placeChild(_newFiber3, lastPlacedIndex, newIdx);
|
||
if (previousNewFiber === null) {
|
||
resultingFirstChild = _newFiber3;
|
||
} else {
|
||
previousNewFiber.sibling = _newFiber3;
|
||
}
|
||
previousNewFiber = _newFiber3;
|
||
}
|
||
if (getIsHydrating()) {
|
||
var _numberOfForks3 = newIdx;
|
||
pushTreeFork(returnFiber, _numberOfForks3);
|
||
}
|
||
return resultingFirstChild;
|
||
}
|
||
var existingChildren = mapRemainingChildren(returnFiber, oldFiber);
|
||
for (; !step.done; newIdx++, step = newChildren.next()) {
|
||
var _newFiber4 = updateFromMap(existingChildren, returnFiber, newIdx, step.value, lanes);
|
||
if (_newFiber4 !== null) {
|
||
if (shouldTrackSideEffects) {
|
||
if (_newFiber4.alternate !== null) {
|
||
existingChildren.delete(_newFiber4.key === null ? newIdx : _newFiber4.key);
|
||
}
|
||
}
|
||
lastPlacedIndex = placeChild(_newFiber4, lastPlacedIndex, newIdx);
|
||
if (previousNewFiber === null) {
|
||
resultingFirstChild = _newFiber4;
|
||
} else {
|
||
previousNewFiber.sibling = _newFiber4;
|
||
}
|
||
previousNewFiber = _newFiber4;
|
||
}
|
||
}
|
||
if (shouldTrackSideEffects) {
|
||
existingChildren.forEach(function(child2) {
|
||
return deleteChild(returnFiber, child2);
|
||
});
|
||
}
|
||
if (getIsHydrating()) {
|
||
var _numberOfForks4 = newIdx;
|
||
pushTreeFork(returnFiber, _numberOfForks4);
|
||
}
|
||
return resultingFirstChild;
|
||
}
|
||
function reconcileSingleTextNode(returnFiber, currentFirstChild, textContent, lanes) {
|
||
if (currentFirstChild !== null && currentFirstChild.tag === HostText) {
|
||
deleteRemainingChildren(returnFiber, currentFirstChild.sibling);
|
||
var existing = useFiber(currentFirstChild, textContent);
|
||
existing.return = returnFiber;
|
||
return existing;
|
||
}
|
||
deleteRemainingChildren(returnFiber, currentFirstChild);
|
||
var created = createFiberFromText(textContent, returnFiber.mode, lanes);
|
||
created.return = returnFiber;
|
||
return created;
|
||
}
|
||
function reconcileSingleElement(returnFiber, currentFirstChild, element, lanes) {
|
||
var key = element.key;
|
||
var child = currentFirstChild;
|
||
while (child !== null) {
|
||
if (child.key === key) {
|
||
var elementType = element.type;
|
||
if (elementType === REACT_FRAGMENT_TYPE) {
|
||
if (child.tag === Fragment3) {
|
||
deleteRemainingChildren(returnFiber, child.sibling);
|
||
var existing = useFiber(child, element.props.children);
|
||
existing.return = returnFiber;
|
||
{
|
||
existing._debugSource = element._source;
|
||
existing._debugOwner = element._owner;
|
||
}
|
||
return existing;
|
||
}
|
||
} else {
|
||
if (child.elementType === elementType || // Keep this check inline so it only runs on the false path:
|
||
isCompatibleFamilyForHotReloading(child, element) || // Lazy types should reconcile their resolved type.
|
||
// We need to do this after the Hot Reloading check above,
|
||
// because hot reloading has different semantics than prod because
|
||
// it doesn't resuspend. So we can't let the call below suspend.
|
||
typeof elementType === "object" && elementType !== null && elementType.$$typeof === REACT_LAZY_TYPE && resolveLazy(elementType) === child.type) {
|
||
deleteRemainingChildren(returnFiber, child.sibling);
|
||
var _existing = useFiber(child, element.props);
|
||
_existing.ref = coerceRef(returnFiber, child, element);
|
||
_existing.return = returnFiber;
|
||
{
|
||
_existing._debugSource = element._source;
|
||
_existing._debugOwner = element._owner;
|
||
}
|
||
return _existing;
|
||
}
|
||
}
|
||
deleteRemainingChildren(returnFiber, child);
|
||
break;
|
||
} else {
|
||
deleteChild(returnFiber, child);
|
||
}
|
||
child = child.sibling;
|
||
}
|
||
if (element.type === REACT_FRAGMENT_TYPE) {
|
||
var created = createFiberFromFragment(element.props.children, returnFiber.mode, lanes, element.key);
|
||
created.return = returnFiber;
|
||
return created;
|
||
} else {
|
||
var _created4 = createFiberFromElement(element, returnFiber.mode, lanes);
|
||
_created4.ref = coerceRef(returnFiber, currentFirstChild, element);
|
||
_created4.return = returnFiber;
|
||
return _created4;
|
||
}
|
||
}
|
||
function reconcileSinglePortal(returnFiber, currentFirstChild, portal, lanes) {
|
||
var key = portal.key;
|
||
var child = currentFirstChild;
|
||
while (child !== null) {
|
||
if (child.key === key) {
|
||
if (child.tag === HostPortal && child.stateNode.containerInfo === portal.containerInfo && child.stateNode.implementation === portal.implementation) {
|
||
deleteRemainingChildren(returnFiber, child.sibling);
|
||
var existing = useFiber(child, portal.children || []);
|
||
existing.return = returnFiber;
|
||
return existing;
|
||
} else {
|
||
deleteRemainingChildren(returnFiber, child);
|
||
break;
|
||
}
|
||
} else {
|
||
deleteChild(returnFiber, child);
|
||
}
|
||
child = child.sibling;
|
||
}
|
||
var created = createFiberFromPortal(portal, returnFiber.mode, lanes);
|
||
created.return = returnFiber;
|
||
return created;
|
||
}
|
||
function reconcileChildFibers2(returnFiber, currentFirstChild, newChild, lanes) {
|
||
var isUnkeyedTopLevelFragment = typeof newChild === "object" && newChild !== null && newChild.type === REACT_FRAGMENT_TYPE && newChild.key === null;
|
||
if (isUnkeyedTopLevelFragment) {
|
||
newChild = newChild.props.children;
|
||
}
|
||
if (typeof newChild === "object" && newChild !== null) {
|
||
switch (newChild.$$typeof) {
|
||
case REACT_ELEMENT_TYPE:
|
||
return placeSingleChild(reconcileSingleElement(returnFiber, currentFirstChild, newChild, lanes));
|
||
case REACT_PORTAL_TYPE:
|
||
return placeSingleChild(reconcileSinglePortal(returnFiber, currentFirstChild, newChild, lanes));
|
||
case REACT_LAZY_TYPE:
|
||
var payload = newChild._payload;
|
||
var init = newChild._init;
|
||
return reconcileChildFibers2(returnFiber, currentFirstChild, init(payload), lanes);
|
||
}
|
||
if (isArray(newChild)) {
|
||
return reconcileChildrenArray(returnFiber, currentFirstChild, newChild, lanes);
|
||
}
|
||
if (getIteratorFn(newChild)) {
|
||
return reconcileChildrenIterator(returnFiber, currentFirstChild, newChild, lanes);
|
||
}
|
||
throwOnInvalidObjectType(returnFiber, newChild);
|
||
}
|
||
if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
|
||
return placeSingleChild(reconcileSingleTextNode(returnFiber, currentFirstChild, "" + newChild, lanes));
|
||
}
|
||
{
|
||
if (typeof newChild === "function") {
|
||
warnOnFunctionType(returnFiber);
|
||
}
|
||
}
|
||
return deleteRemainingChildren(returnFiber, currentFirstChild);
|
||
}
|
||
return reconcileChildFibers2;
|
||
}
|
||
var reconcileChildFibers = ChildReconciler(true);
|
||
var mountChildFibers = ChildReconciler(false);
|
||
function cloneChildFibers(current3, workInProgress2) {
|
||
if (current3 !== null && workInProgress2.child !== current3.child) {
|
||
throw new Error("Resuming work not yet implemented.");
|
||
}
|
||
if (workInProgress2.child === null) {
|
||
return;
|
||
}
|
||
var currentChild = workInProgress2.child;
|
||
var newChild = createWorkInProgress(currentChild, currentChild.pendingProps);
|
||
workInProgress2.child = newChild;
|
||
newChild.return = workInProgress2;
|
||
while (currentChild.sibling !== null) {
|
||
currentChild = currentChild.sibling;
|
||
newChild = newChild.sibling = createWorkInProgress(currentChild, currentChild.pendingProps);
|
||
newChild.return = workInProgress2;
|
||
}
|
||
newChild.sibling = null;
|
||
}
|
||
function resetChildFibers(workInProgress2, lanes) {
|
||
var child = workInProgress2.child;
|
||
while (child !== null) {
|
||
resetWorkInProgress(child, lanes);
|
||
child = child.sibling;
|
||
}
|
||
}
|
||
var NO_CONTEXT = {};
|
||
var contextStackCursor$1 = createCursor(NO_CONTEXT);
|
||
var contextFiberStackCursor = createCursor(NO_CONTEXT);
|
||
var rootInstanceStackCursor = createCursor(NO_CONTEXT);
|
||
function requiredContext(c) {
|
||
if (c === NO_CONTEXT) {
|
||
throw new Error("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
return c;
|
||
}
|
||
function getRootHostContainer() {
|
||
var rootInstance = requiredContext(rootInstanceStackCursor.current);
|
||
return rootInstance;
|
||
}
|
||
function pushHostContainer(fiber, nextRootInstance) {
|
||
push(rootInstanceStackCursor, nextRootInstance, fiber);
|
||
push(contextFiberStackCursor, fiber, fiber);
|
||
push(contextStackCursor$1, NO_CONTEXT, fiber);
|
||
var nextRootContext = getRootHostContext(nextRootInstance);
|
||
pop(contextStackCursor$1, fiber);
|
||
push(contextStackCursor$1, nextRootContext, fiber);
|
||
}
|
||
function popHostContainer(fiber) {
|
||
pop(contextStackCursor$1, fiber);
|
||
pop(contextFiberStackCursor, fiber);
|
||
pop(rootInstanceStackCursor, fiber);
|
||
}
|
||
function getHostContext() {
|
||
var context = requiredContext(contextStackCursor$1.current);
|
||
return context;
|
||
}
|
||
function pushHostContext(fiber) {
|
||
var rootInstance = requiredContext(rootInstanceStackCursor.current);
|
||
var context = requiredContext(contextStackCursor$1.current);
|
||
var nextContext = getChildHostContext(context, fiber.type);
|
||
if (context === nextContext) {
|
||
return;
|
||
}
|
||
push(contextFiberStackCursor, fiber, fiber);
|
||
push(contextStackCursor$1, nextContext, fiber);
|
||
}
|
||
function popHostContext(fiber) {
|
||
if (contextFiberStackCursor.current !== fiber) {
|
||
return;
|
||
}
|
||
pop(contextStackCursor$1, fiber);
|
||
pop(contextFiberStackCursor, fiber);
|
||
}
|
||
var DefaultSuspenseContext = 0;
|
||
var SubtreeSuspenseContextMask = 1;
|
||
var InvisibleParentSuspenseContext = 1;
|
||
var ForceSuspenseFallback = 2;
|
||
var suspenseStackCursor = createCursor(DefaultSuspenseContext);
|
||
function hasSuspenseContext(parentContext, flag) {
|
||
return (parentContext & flag) !== 0;
|
||
}
|
||
function setDefaultShallowSuspenseContext(parentContext) {
|
||
return parentContext & SubtreeSuspenseContextMask;
|
||
}
|
||
function setShallowSuspenseContext(parentContext, shallowContext) {
|
||
return parentContext & SubtreeSuspenseContextMask | shallowContext;
|
||
}
|
||
function addSubtreeSuspenseContext(parentContext, subtreeContext) {
|
||
return parentContext | subtreeContext;
|
||
}
|
||
function pushSuspenseContext(fiber, newContext) {
|
||
push(suspenseStackCursor, newContext, fiber);
|
||
}
|
||
function popSuspenseContext(fiber) {
|
||
pop(suspenseStackCursor, fiber);
|
||
}
|
||
function shouldCaptureSuspense(workInProgress2, hasInvisibleParent) {
|
||
var nextState = workInProgress2.memoizedState;
|
||
if (nextState !== null) {
|
||
if (nextState.dehydrated !== null) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
var props = workInProgress2.memoizedProps;
|
||
{
|
||
return true;
|
||
}
|
||
}
|
||
function findFirstSuspended(row) {
|
||
var node = row;
|
||
while (node !== null) {
|
||
if (node.tag === SuspenseComponent) {
|
||
var state = node.memoizedState;
|
||
if (state !== null) {
|
||
var dehydrated = state.dehydrated;
|
||
if (dehydrated === null || isSuspenseInstancePending(dehydrated) || isSuspenseInstanceFallback(dehydrated)) {
|
||
return node;
|
||
}
|
||
}
|
||
} else if (node.tag === SuspenseListComponent && // revealOrder undefined can't be trusted because it don't
|
||
// keep track of whether it suspended or not.
|
||
node.memoizedProps.revealOrder !== void 0) {
|
||
var didSuspend = (node.flags & DidCapture) !== NoFlags;
|
||
if (didSuspend) {
|
||
return node;
|
||
}
|
||
} else if (node.child !== null) {
|
||
node.child.return = node;
|
||
node = node.child;
|
||
continue;
|
||
}
|
||
if (node === row) {
|
||
return null;
|
||
}
|
||
while (node.sibling === null) {
|
||
if (node.return === null || node.return === row) {
|
||
return null;
|
||
}
|
||
node = node.return;
|
||
}
|
||
node.sibling.return = node.return;
|
||
node = node.sibling;
|
||
}
|
||
return null;
|
||
}
|
||
var NoFlags$1 = (
|
||
/* */
|
||
0
|
||
);
|
||
var HasEffect = (
|
||
/* */
|
||
1
|
||
);
|
||
var Insertion = (
|
||
/* */
|
||
2
|
||
);
|
||
var Layout = (
|
||
/* */
|
||
4
|
||
);
|
||
var Passive$1 = (
|
||
/* */
|
||
8
|
||
);
|
||
var workInProgressSources = [];
|
||
function resetWorkInProgressVersions() {
|
||
for (var i = 0; i < workInProgressSources.length; i++) {
|
||
var mutableSource = workInProgressSources[i];
|
||
{
|
||
mutableSource._workInProgressVersionPrimary = null;
|
||
}
|
||
}
|
||
workInProgressSources.length = 0;
|
||
}
|
||
function registerMutableSourceForHydration(root2, mutableSource) {
|
||
var getVersion = mutableSource._getVersion;
|
||
var version = getVersion(mutableSource._source);
|
||
if (root2.mutableSourceEagerHydrationData == null) {
|
||
root2.mutableSourceEagerHydrationData = [mutableSource, version];
|
||
} else {
|
||
root2.mutableSourceEagerHydrationData.push(mutableSource, version);
|
||
}
|
||
}
|
||
var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher, ReactCurrentBatchConfig$2 = ReactSharedInternals.ReactCurrentBatchConfig;
|
||
var didWarnAboutMismatchedHooksForComponent;
|
||
var didWarnUncachedGetSnapshot;
|
||
{
|
||
didWarnAboutMismatchedHooksForComponent = /* @__PURE__ */ new Set();
|
||
}
|
||
var renderLanes = NoLanes;
|
||
var currentlyRenderingFiber$1 = null;
|
||
var currentHook = null;
|
||
var workInProgressHook = null;
|
||
var didScheduleRenderPhaseUpdate = false;
|
||
var didScheduleRenderPhaseUpdateDuringThisPass = false;
|
||
var localIdCounter = 0;
|
||
var globalClientIdCounter = 0;
|
||
var RE_RENDER_LIMIT = 25;
|
||
var currentHookNameInDev = null;
|
||
var hookTypesDev = null;
|
||
var hookTypesUpdateIndexDev = -1;
|
||
var ignorePreviousDependencies = false;
|
||
function mountHookTypesDev() {
|
||
{
|
||
var hookName = currentHookNameInDev;
|
||
if (hookTypesDev === null) {
|
||
hookTypesDev = [hookName];
|
||
} else {
|
||
hookTypesDev.push(hookName);
|
||
}
|
||
}
|
||
}
|
||
function updateHookTypesDev() {
|
||
{
|
||
var hookName = currentHookNameInDev;
|
||
if (hookTypesDev !== null) {
|
||
hookTypesUpdateIndexDev++;
|
||
if (hookTypesDev[hookTypesUpdateIndexDev] !== hookName) {
|
||
warnOnHookMismatchInDev(hookName);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function checkDepsAreArrayDev(deps) {
|
||
{
|
||
if (deps !== void 0 && deps !== null && !isArray(deps)) {
|
||
error("%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.", currentHookNameInDev, typeof deps);
|
||
}
|
||
}
|
||
}
|
||
function warnOnHookMismatchInDev(currentHookName) {
|
||
{
|
||
var componentName = getComponentNameFromFiber(currentlyRenderingFiber$1);
|
||
if (!didWarnAboutMismatchedHooksForComponent.has(componentName)) {
|
||
didWarnAboutMismatchedHooksForComponent.add(componentName);
|
||
if (hookTypesDev !== null) {
|
||
var table = "";
|
||
var secondColumnStart = 30;
|
||
for (var i = 0; i <= hookTypesUpdateIndexDev; i++) {
|
||
var oldHookName = hookTypesDev[i];
|
||
var newHookName = i === hookTypesUpdateIndexDev ? currentHookName : oldHookName;
|
||
var row = i + 1 + ". " + oldHookName;
|
||
while (row.length < secondColumnStart) {
|
||
row += " ";
|
||
}
|
||
row += newHookName + "\n";
|
||
table += row;
|
||
}
|
||
error("React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://reactjs.org/link/rules-of-hooks\n\n Previous render Next render\n ------------------------------------------------------\n%s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", componentName, table);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function throwInvalidHookError() {
|
||
throw new Error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.");
|
||
}
|
||
function areHookInputsEqual(nextDeps, prevDeps) {
|
||
{
|
||
if (ignorePreviousDependencies) {
|
||
return false;
|
||
}
|
||
}
|
||
if (prevDeps === null) {
|
||
{
|
||
error("%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.", currentHookNameInDev);
|
||
}
|
||
return false;
|
||
}
|
||
{
|
||
if (nextDeps.length !== prevDeps.length) {
|
||
error("The final argument passed to %s changed size between renders. The order and size of this array must remain constant.\n\nPrevious: %s\nIncoming: %s", currentHookNameInDev, "[" + prevDeps.join(", ") + "]", "[" + nextDeps.join(", ") + "]");
|
||
}
|
||
}
|
||
for (var i = 0; i < prevDeps.length && i < nextDeps.length; i++) {
|
||
if (objectIs(nextDeps[i], prevDeps[i])) {
|
||
continue;
|
||
}
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
function renderWithHooks(current3, workInProgress2, Component2, props, secondArg, nextRenderLanes) {
|
||
renderLanes = nextRenderLanes;
|
||
currentlyRenderingFiber$1 = workInProgress2;
|
||
{
|
||
hookTypesDev = current3 !== null ? current3._debugHookTypes : null;
|
||
hookTypesUpdateIndexDev = -1;
|
||
ignorePreviousDependencies = current3 !== null && current3.type !== workInProgress2.type;
|
||
}
|
||
workInProgress2.memoizedState = null;
|
||
workInProgress2.updateQueue = null;
|
||
workInProgress2.lanes = NoLanes;
|
||
{
|
||
if (current3 !== null && current3.memoizedState !== null) {
|
||
ReactCurrentDispatcher$1.current = HooksDispatcherOnUpdateInDEV;
|
||
} else if (hookTypesDev !== null) {
|
||
ReactCurrentDispatcher$1.current = HooksDispatcherOnMountWithHookTypesInDEV;
|
||
} else {
|
||
ReactCurrentDispatcher$1.current = HooksDispatcherOnMountInDEV;
|
||
}
|
||
}
|
||
var children = Component2(props, secondArg);
|
||
if (didScheduleRenderPhaseUpdateDuringThisPass) {
|
||
var numberOfReRenders = 0;
|
||
do {
|
||
didScheduleRenderPhaseUpdateDuringThisPass = false;
|
||
localIdCounter = 0;
|
||
if (numberOfReRenders >= RE_RENDER_LIMIT) {
|
||
throw new Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");
|
||
}
|
||
numberOfReRenders += 1;
|
||
{
|
||
ignorePreviousDependencies = false;
|
||
}
|
||
currentHook = null;
|
||
workInProgressHook = null;
|
||
workInProgress2.updateQueue = null;
|
||
{
|
||
hookTypesUpdateIndexDev = -1;
|
||
}
|
||
ReactCurrentDispatcher$1.current = HooksDispatcherOnRerenderInDEV;
|
||
children = Component2(props, secondArg);
|
||
} while (didScheduleRenderPhaseUpdateDuringThisPass);
|
||
}
|
||
ReactCurrentDispatcher$1.current = ContextOnlyDispatcher;
|
||
{
|
||
workInProgress2._debugHookTypes = hookTypesDev;
|
||
}
|
||
var didRenderTooFewHooks = currentHook !== null && currentHook.next !== null;
|
||
renderLanes = NoLanes;
|
||
currentlyRenderingFiber$1 = null;
|
||
currentHook = null;
|
||
workInProgressHook = null;
|
||
{
|
||
currentHookNameInDev = null;
|
||
hookTypesDev = null;
|
||
hookTypesUpdateIndexDev = -1;
|
||
if (current3 !== null && (current3.flags & StaticMask) !== (workInProgress2.flags & StaticMask) && // Disable this warning in legacy mode, because legacy Suspense is weird
|
||
// and creates false positives. To make this work in legacy mode, we'd
|
||
// need to mark fibers that commit in an incomplete state, somehow. For
|
||
// now I'll disable the warning that most of the bugs that would trigger
|
||
// it are either exclusive to concurrent mode or exist in both.
|
||
(current3.mode & ConcurrentMode) !== NoMode) {
|
||
error("Internal React error: Expected static flag was missing. Please notify the React team.");
|
||
}
|
||
}
|
||
didScheduleRenderPhaseUpdate = false;
|
||
if (didRenderTooFewHooks) {
|
||
throw new Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement.");
|
||
}
|
||
return children;
|
||
}
|
||
function checkDidRenderIdHook() {
|
||
var didRenderIdHook = localIdCounter !== 0;
|
||
localIdCounter = 0;
|
||
return didRenderIdHook;
|
||
}
|
||
function bailoutHooks(current3, workInProgress2, lanes) {
|
||
workInProgress2.updateQueue = current3.updateQueue;
|
||
if ((workInProgress2.mode & StrictEffectsMode) !== NoMode) {
|
||
workInProgress2.flags &= ~(MountPassiveDev | MountLayoutDev | Passive | Update);
|
||
} else {
|
||
workInProgress2.flags &= ~(Passive | Update);
|
||
}
|
||
current3.lanes = removeLanes(current3.lanes, lanes);
|
||
}
|
||
function resetHooksAfterThrow() {
|
||
ReactCurrentDispatcher$1.current = ContextOnlyDispatcher;
|
||
if (didScheduleRenderPhaseUpdate) {
|
||
var hook = currentlyRenderingFiber$1.memoizedState;
|
||
while (hook !== null) {
|
||
var queue = hook.queue;
|
||
if (queue !== null) {
|
||
queue.pending = null;
|
||
}
|
||
hook = hook.next;
|
||
}
|
||
didScheduleRenderPhaseUpdate = false;
|
||
}
|
||
renderLanes = NoLanes;
|
||
currentlyRenderingFiber$1 = null;
|
||
currentHook = null;
|
||
workInProgressHook = null;
|
||
{
|
||
hookTypesDev = null;
|
||
hookTypesUpdateIndexDev = -1;
|
||
currentHookNameInDev = null;
|
||
isUpdatingOpaqueValueInRenderPhase = false;
|
||
}
|
||
didScheduleRenderPhaseUpdateDuringThisPass = false;
|
||
localIdCounter = 0;
|
||
}
|
||
function mountWorkInProgressHook() {
|
||
var hook = {
|
||
memoizedState: null,
|
||
baseState: null,
|
||
baseQueue: null,
|
||
queue: null,
|
||
next: null
|
||
};
|
||
if (workInProgressHook === null) {
|
||
currentlyRenderingFiber$1.memoizedState = workInProgressHook = hook;
|
||
} else {
|
||
workInProgressHook = workInProgressHook.next = hook;
|
||
}
|
||
return workInProgressHook;
|
||
}
|
||
function updateWorkInProgressHook() {
|
||
var nextCurrentHook;
|
||
if (currentHook === null) {
|
||
var current3 = currentlyRenderingFiber$1.alternate;
|
||
if (current3 !== null) {
|
||
nextCurrentHook = current3.memoizedState;
|
||
} else {
|
||
nextCurrentHook = null;
|
||
}
|
||
} else {
|
||
nextCurrentHook = currentHook.next;
|
||
}
|
||
var nextWorkInProgressHook;
|
||
if (workInProgressHook === null) {
|
||
nextWorkInProgressHook = currentlyRenderingFiber$1.memoizedState;
|
||
} else {
|
||
nextWorkInProgressHook = workInProgressHook.next;
|
||
}
|
||
if (nextWorkInProgressHook !== null) {
|
||
workInProgressHook = nextWorkInProgressHook;
|
||
nextWorkInProgressHook = workInProgressHook.next;
|
||
currentHook = nextCurrentHook;
|
||
} else {
|
||
if (nextCurrentHook === null) {
|
||
throw new Error("Rendered more hooks than during the previous render.");
|
||
}
|
||
currentHook = nextCurrentHook;
|
||
var newHook = {
|
||
memoizedState: currentHook.memoizedState,
|
||
baseState: currentHook.baseState,
|
||
baseQueue: currentHook.baseQueue,
|
||
queue: currentHook.queue,
|
||
next: null
|
||
};
|
||
if (workInProgressHook === null) {
|
||
currentlyRenderingFiber$1.memoizedState = workInProgressHook = newHook;
|
||
} else {
|
||
workInProgressHook = workInProgressHook.next = newHook;
|
||
}
|
||
}
|
||
return workInProgressHook;
|
||
}
|
||
function createFunctionComponentUpdateQueue() {
|
||
return {
|
||
lastEffect: null,
|
||
stores: null
|
||
};
|
||
}
|
||
function basicStateReducer(state, action) {
|
||
return typeof action === "function" ? action(state) : action;
|
||
}
|
||
function mountReducer(reducer, initialArg, init) {
|
||
var hook = mountWorkInProgressHook();
|
||
var initialState;
|
||
if (init !== void 0) {
|
||
initialState = init(initialArg);
|
||
} else {
|
||
initialState = initialArg;
|
||
}
|
||
hook.memoizedState = hook.baseState = initialState;
|
||
var queue = {
|
||
pending: null,
|
||
interleaved: null,
|
||
lanes: NoLanes,
|
||
dispatch: null,
|
||
lastRenderedReducer: reducer,
|
||
lastRenderedState: initialState
|
||
};
|
||
hook.queue = queue;
|
||
var dispatch = queue.dispatch = dispatchReducerAction.bind(null, currentlyRenderingFiber$1, queue);
|
||
return [hook.memoizedState, dispatch];
|
||
}
|
||
function updateReducer(reducer, initialArg, init) {
|
||
var hook = updateWorkInProgressHook();
|
||
var queue = hook.queue;
|
||
if (queue === null) {
|
||
throw new Error("Should have a queue. This is likely a bug in React. Please file an issue.");
|
||
}
|
||
queue.lastRenderedReducer = reducer;
|
||
var current3 = currentHook;
|
||
var baseQueue = current3.baseQueue;
|
||
var pendingQueue = queue.pending;
|
||
if (pendingQueue !== null) {
|
||
if (baseQueue !== null) {
|
||
var baseFirst = baseQueue.next;
|
||
var pendingFirst = pendingQueue.next;
|
||
baseQueue.next = pendingFirst;
|
||
pendingQueue.next = baseFirst;
|
||
}
|
||
{
|
||
if (current3.baseQueue !== baseQueue) {
|
||
error("Internal error: Expected work-in-progress queue to be a clone. This is a bug in React.");
|
||
}
|
||
}
|
||
current3.baseQueue = baseQueue = pendingQueue;
|
||
queue.pending = null;
|
||
}
|
||
if (baseQueue !== null) {
|
||
var first = baseQueue.next;
|
||
var newState = current3.baseState;
|
||
var newBaseState = null;
|
||
var newBaseQueueFirst = null;
|
||
var newBaseQueueLast = null;
|
||
var update = first;
|
||
do {
|
||
var updateLane = update.lane;
|
||
if (!isSubsetOfLanes(renderLanes, updateLane)) {
|
||
var clone = {
|
||
lane: updateLane,
|
||
action: update.action,
|
||
hasEagerState: update.hasEagerState,
|
||
eagerState: update.eagerState,
|
||
next: null
|
||
};
|
||
if (newBaseQueueLast === null) {
|
||
newBaseQueueFirst = newBaseQueueLast = clone;
|
||
newBaseState = newState;
|
||
} else {
|
||
newBaseQueueLast = newBaseQueueLast.next = clone;
|
||
}
|
||
currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, updateLane);
|
||
markSkippedUpdateLanes(updateLane);
|
||
} else {
|
||
if (newBaseQueueLast !== null) {
|
||
var _clone = {
|
||
// This update is going to be committed so we never want uncommit
|
||
// it. Using NoLane works because 0 is a subset of all bitmasks, so
|
||
// this will never be skipped by the check above.
|
||
lane: NoLane,
|
||
action: update.action,
|
||
hasEagerState: update.hasEagerState,
|
||
eagerState: update.eagerState,
|
||
next: null
|
||
};
|
||
newBaseQueueLast = newBaseQueueLast.next = _clone;
|
||
}
|
||
if (update.hasEagerState) {
|
||
newState = update.eagerState;
|
||
} else {
|
||
var action = update.action;
|
||
newState = reducer(newState, action);
|
||
}
|
||
}
|
||
update = update.next;
|
||
} while (update !== null && update !== first);
|
||
if (newBaseQueueLast === null) {
|
||
newBaseState = newState;
|
||
} else {
|
||
newBaseQueueLast.next = newBaseQueueFirst;
|
||
}
|
||
if (!objectIs(newState, hook.memoizedState)) {
|
||
markWorkInProgressReceivedUpdate();
|
||
}
|
||
hook.memoizedState = newState;
|
||
hook.baseState = newBaseState;
|
||
hook.baseQueue = newBaseQueueLast;
|
||
queue.lastRenderedState = newState;
|
||
}
|
||
var lastInterleaved = queue.interleaved;
|
||
if (lastInterleaved !== null) {
|
||
var interleaved = lastInterleaved;
|
||
do {
|
||
var interleavedLane = interleaved.lane;
|
||
currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, interleavedLane);
|
||
markSkippedUpdateLanes(interleavedLane);
|
||
interleaved = interleaved.next;
|
||
} while (interleaved !== lastInterleaved);
|
||
} else if (baseQueue === null) {
|
||
queue.lanes = NoLanes;
|
||
}
|
||
var dispatch = queue.dispatch;
|
||
return [hook.memoizedState, dispatch];
|
||
}
|
||
function rerenderReducer(reducer, initialArg, init) {
|
||
var hook = updateWorkInProgressHook();
|
||
var queue = hook.queue;
|
||
if (queue === null) {
|
||
throw new Error("Should have a queue. This is likely a bug in React. Please file an issue.");
|
||
}
|
||
queue.lastRenderedReducer = reducer;
|
||
var dispatch = queue.dispatch;
|
||
var lastRenderPhaseUpdate = queue.pending;
|
||
var newState = hook.memoizedState;
|
||
if (lastRenderPhaseUpdate !== null) {
|
||
queue.pending = null;
|
||
var firstRenderPhaseUpdate = lastRenderPhaseUpdate.next;
|
||
var update = firstRenderPhaseUpdate;
|
||
do {
|
||
var action = update.action;
|
||
newState = reducer(newState, action);
|
||
update = update.next;
|
||
} while (update !== firstRenderPhaseUpdate);
|
||
if (!objectIs(newState, hook.memoizedState)) {
|
||
markWorkInProgressReceivedUpdate();
|
||
}
|
||
hook.memoizedState = newState;
|
||
if (hook.baseQueue === null) {
|
||
hook.baseState = newState;
|
||
}
|
||
queue.lastRenderedState = newState;
|
||
}
|
||
return [newState, dispatch];
|
||
}
|
||
function mountMutableSource(source, getSnapshot, subscribe) {
|
||
{
|
||
return void 0;
|
||
}
|
||
}
|
||
function updateMutableSource(source, getSnapshot, subscribe) {
|
||
{
|
||
return void 0;
|
||
}
|
||
}
|
||
function mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
||
var fiber = currentlyRenderingFiber$1;
|
||
var hook = mountWorkInProgressHook();
|
||
var nextSnapshot;
|
||
var isHydrating2 = getIsHydrating();
|
||
if (isHydrating2) {
|
||
if (getServerSnapshot === void 0) {
|
||
throw new Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");
|
||
}
|
||
nextSnapshot = getServerSnapshot();
|
||
{
|
||
if (!didWarnUncachedGetSnapshot) {
|
||
if (nextSnapshot !== getServerSnapshot()) {
|
||
error("The result of getServerSnapshot should be cached to avoid an infinite loop");
|
||
didWarnUncachedGetSnapshot = true;
|
||
}
|
||
}
|
||
}
|
||
} else {
|
||
nextSnapshot = getSnapshot();
|
||
{
|
||
if (!didWarnUncachedGetSnapshot) {
|
||
var cachedSnapshot = getSnapshot();
|
||
if (!objectIs(nextSnapshot, cachedSnapshot)) {
|
||
error("The result of getSnapshot should be cached to avoid an infinite loop");
|
||
didWarnUncachedGetSnapshot = true;
|
||
}
|
||
}
|
||
}
|
||
var root2 = getWorkInProgressRoot();
|
||
if (root2 === null) {
|
||
throw new Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");
|
||
}
|
||
if (!includesBlockingLane(root2, renderLanes)) {
|
||
pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
|
||
}
|
||
}
|
||
hook.memoizedState = nextSnapshot;
|
||
var inst = {
|
||
value: nextSnapshot,
|
||
getSnapshot
|
||
};
|
||
hook.queue = inst;
|
||
mountEffect(subscribeToStore.bind(null, fiber, inst, subscribe), [subscribe]);
|
||
fiber.flags |= Passive;
|
||
pushEffect(HasEffect | Passive$1, updateStoreInstance.bind(null, fiber, inst, nextSnapshot, getSnapshot), void 0, null);
|
||
return nextSnapshot;
|
||
}
|
||
function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
||
var fiber = currentlyRenderingFiber$1;
|
||
var hook = updateWorkInProgressHook();
|
||
var nextSnapshot = getSnapshot();
|
||
{
|
||
if (!didWarnUncachedGetSnapshot) {
|
||
var cachedSnapshot = getSnapshot();
|
||
if (!objectIs(nextSnapshot, cachedSnapshot)) {
|
||
error("The result of getSnapshot should be cached to avoid an infinite loop");
|
||
didWarnUncachedGetSnapshot = true;
|
||
}
|
||
}
|
||
}
|
||
var prevSnapshot = hook.memoizedState;
|
||
var snapshotChanged = !objectIs(prevSnapshot, nextSnapshot);
|
||
if (snapshotChanged) {
|
||
hook.memoizedState = nextSnapshot;
|
||
markWorkInProgressReceivedUpdate();
|
||
}
|
||
var inst = hook.queue;
|
||
updateEffect(subscribeToStore.bind(null, fiber, inst, subscribe), [subscribe]);
|
||
if (inst.getSnapshot !== getSnapshot || snapshotChanged || // Check if the susbcribe function changed. We can save some memory by
|
||
// checking whether we scheduled a subscription effect above.
|
||
workInProgressHook !== null && workInProgressHook.memoizedState.tag & HasEffect) {
|
||
fiber.flags |= Passive;
|
||
pushEffect(HasEffect | Passive$1, updateStoreInstance.bind(null, fiber, inst, nextSnapshot, getSnapshot), void 0, null);
|
||
var root2 = getWorkInProgressRoot();
|
||
if (root2 === null) {
|
||
throw new Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");
|
||
}
|
||
if (!includesBlockingLane(root2, renderLanes)) {
|
||
pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
|
||
}
|
||
}
|
||
return nextSnapshot;
|
||
}
|
||
function pushStoreConsistencyCheck(fiber, getSnapshot, renderedSnapshot) {
|
||
fiber.flags |= StoreConsistency;
|
||
var check = {
|
||
getSnapshot,
|
||
value: renderedSnapshot
|
||
};
|
||
var componentUpdateQueue = currentlyRenderingFiber$1.updateQueue;
|
||
if (componentUpdateQueue === null) {
|
||
componentUpdateQueue = createFunctionComponentUpdateQueue();
|
||
currentlyRenderingFiber$1.updateQueue = componentUpdateQueue;
|
||
componentUpdateQueue.stores = [check];
|
||
} else {
|
||
var stores = componentUpdateQueue.stores;
|
||
if (stores === null) {
|
||
componentUpdateQueue.stores = [check];
|
||
} else {
|
||
stores.push(check);
|
||
}
|
||
}
|
||
}
|
||
function updateStoreInstance(fiber, inst, nextSnapshot, getSnapshot) {
|
||
inst.value = nextSnapshot;
|
||
inst.getSnapshot = getSnapshot;
|
||
if (checkIfSnapshotChanged(inst)) {
|
||
forceStoreRerender(fiber);
|
||
}
|
||
}
|
||
function subscribeToStore(fiber, inst, subscribe) {
|
||
var handleStoreChange = function() {
|
||
if (checkIfSnapshotChanged(inst)) {
|
||
forceStoreRerender(fiber);
|
||
}
|
||
};
|
||
return subscribe(handleStoreChange);
|
||
}
|
||
function checkIfSnapshotChanged(inst) {
|
||
var latestGetSnapshot = inst.getSnapshot;
|
||
var prevValue = inst.value;
|
||
try {
|
||
var nextValue = latestGetSnapshot();
|
||
return !objectIs(prevValue, nextValue);
|
||
} catch (error2) {
|
||
return true;
|
||
}
|
||
}
|
||
function forceStoreRerender(fiber) {
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
}
|
||
function mountState(initialState) {
|
||
var hook = mountWorkInProgressHook();
|
||
if (typeof initialState === "function") {
|
||
initialState = initialState();
|
||
}
|
||
hook.memoizedState = hook.baseState = initialState;
|
||
var queue = {
|
||
pending: null,
|
||
interleaved: null,
|
||
lanes: NoLanes,
|
||
dispatch: null,
|
||
lastRenderedReducer: basicStateReducer,
|
||
lastRenderedState: initialState
|
||
};
|
||
hook.queue = queue;
|
||
var dispatch = queue.dispatch = dispatchSetState.bind(null, currentlyRenderingFiber$1, queue);
|
||
return [hook.memoizedState, dispatch];
|
||
}
|
||
function updateState(initialState) {
|
||
return updateReducer(basicStateReducer);
|
||
}
|
||
function rerenderState(initialState) {
|
||
return rerenderReducer(basicStateReducer);
|
||
}
|
||
function pushEffect(tag, create2, destroy, deps) {
|
||
var effect = {
|
||
tag,
|
||
create: create2,
|
||
destroy,
|
||
deps,
|
||
// Circular
|
||
next: null
|
||
};
|
||
var componentUpdateQueue = currentlyRenderingFiber$1.updateQueue;
|
||
if (componentUpdateQueue === null) {
|
||
componentUpdateQueue = createFunctionComponentUpdateQueue();
|
||
currentlyRenderingFiber$1.updateQueue = componentUpdateQueue;
|
||
componentUpdateQueue.lastEffect = effect.next = effect;
|
||
} else {
|
||
var lastEffect = componentUpdateQueue.lastEffect;
|
||
if (lastEffect === null) {
|
||
componentUpdateQueue.lastEffect = effect.next = effect;
|
||
} else {
|
||
var firstEffect = lastEffect.next;
|
||
lastEffect.next = effect;
|
||
effect.next = firstEffect;
|
||
componentUpdateQueue.lastEffect = effect;
|
||
}
|
||
}
|
||
return effect;
|
||
}
|
||
function mountRef(initialValue) {
|
||
var hook = mountWorkInProgressHook();
|
||
{
|
||
var _ref2 = {
|
||
current: initialValue
|
||
};
|
||
hook.memoizedState = _ref2;
|
||
return _ref2;
|
||
}
|
||
}
|
||
function updateRef(initialValue) {
|
||
var hook = updateWorkInProgressHook();
|
||
return hook.memoizedState;
|
||
}
|
||
function mountEffectImpl(fiberFlags, hookFlags, create2, deps) {
|
||
var hook = mountWorkInProgressHook();
|
||
var nextDeps = deps === void 0 ? null : deps;
|
||
currentlyRenderingFiber$1.flags |= fiberFlags;
|
||
hook.memoizedState = pushEffect(HasEffect | hookFlags, create2, void 0, nextDeps);
|
||
}
|
||
function updateEffectImpl(fiberFlags, hookFlags, create2, deps) {
|
||
var hook = updateWorkInProgressHook();
|
||
var nextDeps = deps === void 0 ? null : deps;
|
||
var destroy = void 0;
|
||
if (currentHook !== null) {
|
||
var prevEffect = currentHook.memoizedState;
|
||
destroy = prevEffect.destroy;
|
||
if (nextDeps !== null) {
|
||
var prevDeps = prevEffect.deps;
|
||
if (areHookInputsEqual(nextDeps, prevDeps)) {
|
||
hook.memoizedState = pushEffect(hookFlags, create2, destroy, nextDeps);
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
currentlyRenderingFiber$1.flags |= fiberFlags;
|
||
hook.memoizedState = pushEffect(HasEffect | hookFlags, create2, destroy, nextDeps);
|
||
}
|
||
function mountEffect(create2, deps) {
|
||
if ((currentlyRenderingFiber$1.mode & StrictEffectsMode) !== NoMode) {
|
||
return mountEffectImpl(MountPassiveDev | Passive | PassiveStatic, Passive$1, create2, deps);
|
||
} else {
|
||
return mountEffectImpl(Passive | PassiveStatic, Passive$1, create2, deps);
|
||
}
|
||
}
|
||
function updateEffect(create2, deps) {
|
||
return updateEffectImpl(Passive, Passive$1, create2, deps);
|
||
}
|
||
function mountInsertionEffect(create2, deps) {
|
||
return mountEffectImpl(Update, Insertion, create2, deps);
|
||
}
|
||
function updateInsertionEffect(create2, deps) {
|
||
return updateEffectImpl(Update, Insertion, create2, deps);
|
||
}
|
||
function mountLayoutEffect(create2, deps) {
|
||
var fiberFlags = Update;
|
||
{
|
||
fiberFlags |= LayoutStatic;
|
||
}
|
||
if ((currentlyRenderingFiber$1.mode & StrictEffectsMode) !== NoMode) {
|
||
fiberFlags |= MountLayoutDev;
|
||
}
|
||
return mountEffectImpl(fiberFlags, Layout, create2, deps);
|
||
}
|
||
function updateLayoutEffect(create2, deps) {
|
||
return updateEffectImpl(Update, Layout, create2, deps);
|
||
}
|
||
function imperativeHandleEffect(create2, ref) {
|
||
if (typeof ref === "function") {
|
||
var refCallback = ref;
|
||
var _inst = create2();
|
||
refCallback(_inst);
|
||
return function() {
|
||
refCallback(null);
|
||
};
|
||
} else if (ref !== null && ref !== void 0) {
|
||
var refObject = ref;
|
||
{
|
||
if (!refObject.hasOwnProperty("current")) {
|
||
error("Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.", "an object with keys {" + Object.keys(refObject).join(", ") + "}");
|
||
}
|
||
}
|
||
var _inst2 = create2();
|
||
refObject.current = _inst2;
|
||
return function() {
|
||
refObject.current = null;
|
||
};
|
||
}
|
||
}
|
||
function mountImperativeHandle(ref, create2, deps) {
|
||
{
|
||
if (typeof create2 !== "function") {
|
||
error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.", create2 !== null ? typeof create2 : "null");
|
||
}
|
||
}
|
||
var effectDeps = deps !== null && deps !== void 0 ? deps.concat([ref]) : null;
|
||
var fiberFlags = Update;
|
||
{
|
||
fiberFlags |= LayoutStatic;
|
||
}
|
||
if ((currentlyRenderingFiber$1.mode & StrictEffectsMode) !== NoMode) {
|
||
fiberFlags |= MountLayoutDev;
|
||
}
|
||
return mountEffectImpl(fiberFlags, Layout, imperativeHandleEffect.bind(null, create2, ref), effectDeps);
|
||
}
|
||
function updateImperativeHandle(ref, create2, deps) {
|
||
{
|
||
if (typeof create2 !== "function") {
|
||
error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.", create2 !== null ? typeof create2 : "null");
|
||
}
|
||
}
|
||
var effectDeps = deps !== null && deps !== void 0 ? deps.concat([ref]) : null;
|
||
return updateEffectImpl(Update, Layout, imperativeHandleEffect.bind(null, create2, ref), effectDeps);
|
||
}
|
||
function mountDebugValue(value, formatterFn) {
|
||
}
|
||
var updateDebugValue = mountDebugValue;
|
||
function mountCallback(callback, deps) {
|
||
var hook = mountWorkInProgressHook();
|
||
var nextDeps = deps === void 0 ? null : deps;
|
||
hook.memoizedState = [callback, nextDeps];
|
||
return callback;
|
||
}
|
||
function updateCallback(callback, deps) {
|
||
var hook = updateWorkInProgressHook();
|
||
var nextDeps = deps === void 0 ? null : deps;
|
||
var prevState = hook.memoizedState;
|
||
if (prevState !== null) {
|
||
if (nextDeps !== null) {
|
||
var prevDeps = prevState[1];
|
||
if (areHookInputsEqual(nextDeps, prevDeps)) {
|
||
return prevState[0];
|
||
}
|
||
}
|
||
}
|
||
hook.memoizedState = [callback, nextDeps];
|
||
return callback;
|
||
}
|
||
function mountMemo(nextCreate, deps) {
|
||
var hook = mountWorkInProgressHook();
|
||
var nextDeps = deps === void 0 ? null : deps;
|
||
var nextValue = nextCreate();
|
||
hook.memoizedState = [nextValue, nextDeps];
|
||
return nextValue;
|
||
}
|
||
function updateMemo(nextCreate, deps) {
|
||
var hook = updateWorkInProgressHook();
|
||
var nextDeps = deps === void 0 ? null : deps;
|
||
var prevState = hook.memoizedState;
|
||
if (prevState !== null) {
|
||
if (nextDeps !== null) {
|
||
var prevDeps = prevState[1];
|
||
if (areHookInputsEqual(nextDeps, prevDeps)) {
|
||
return prevState[0];
|
||
}
|
||
}
|
||
}
|
||
var nextValue = nextCreate();
|
||
hook.memoizedState = [nextValue, nextDeps];
|
||
return nextValue;
|
||
}
|
||
function mountDeferredValue(value) {
|
||
var hook = mountWorkInProgressHook();
|
||
hook.memoizedState = value;
|
||
return value;
|
||
}
|
||
function updateDeferredValue(value) {
|
||
var hook = updateWorkInProgressHook();
|
||
var resolvedCurrentHook = currentHook;
|
||
var prevValue = resolvedCurrentHook.memoizedState;
|
||
return updateDeferredValueImpl(hook, prevValue, value);
|
||
}
|
||
function rerenderDeferredValue(value) {
|
||
var hook = updateWorkInProgressHook();
|
||
if (currentHook === null) {
|
||
hook.memoizedState = value;
|
||
return value;
|
||
} else {
|
||
var prevValue = currentHook.memoizedState;
|
||
return updateDeferredValueImpl(hook, prevValue, value);
|
||
}
|
||
}
|
||
function updateDeferredValueImpl(hook, prevValue, value) {
|
||
var shouldDeferValue = !includesOnlyNonUrgentLanes(renderLanes);
|
||
if (shouldDeferValue) {
|
||
if (!objectIs(value, prevValue)) {
|
||
var deferredLane = claimNextTransitionLane();
|
||
currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, deferredLane);
|
||
markSkippedUpdateLanes(deferredLane);
|
||
hook.baseState = true;
|
||
}
|
||
return prevValue;
|
||
} else {
|
||
if (hook.baseState) {
|
||
hook.baseState = false;
|
||
markWorkInProgressReceivedUpdate();
|
||
}
|
||
hook.memoizedState = value;
|
||
return value;
|
||
}
|
||
}
|
||
function startTransition(setPending, callback, options2) {
|
||
var previousPriority = getCurrentUpdatePriority();
|
||
setCurrentUpdatePriority(higherEventPriority(previousPriority, ContinuousEventPriority));
|
||
setPending(true);
|
||
var prevTransition = ReactCurrentBatchConfig$2.transition;
|
||
ReactCurrentBatchConfig$2.transition = {};
|
||
var currentTransition = ReactCurrentBatchConfig$2.transition;
|
||
{
|
||
ReactCurrentBatchConfig$2.transition._updatedFibers = /* @__PURE__ */ new Set();
|
||
}
|
||
try {
|
||
setPending(false);
|
||
callback();
|
||
} finally {
|
||
setCurrentUpdatePriority(previousPriority);
|
||
ReactCurrentBatchConfig$2.transition = prevTransition;
|
||
{
|
||
if (prevTransition === null && currentTransition._updatedFibers) {
|
||
var updatedFibersCount = currentTransition._updatedFibers.size;
|
||
if (updatedFibersCount > 10) {
|
||
warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.");
|
||
}
|
||
currentTransition._updatedFibers.clear();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function mountTransition() {
|
||
var _mountState = mountState(false), isPending = _mountState[0], setPending = _mountState[1];
|
||
var start = startTransition.bind(null, setPending);
|
||
var hook = mountWorkInProgressHook();
|
||
hook.memoizedState = start;
|
||
return [isPending, start];
|
||
}
|
||
function updateTransition() {
|
||
var _updateState = updateState(), isPending = _updateState[0];
|
||
var hook = updateWorkInProgressHook();
|
||
var start = hook.memoizedState;
|
||
return [isPending, start];
|
||
}
|
||
function rerenderTransition() {
|
||
var _rerenderState = rerenderState(), isPending = _rerenderState[0];
|
||
var hook = updateWorkInProgressHook();
|
||
var start = hook.memoizedState;
|
||
return [isPending, start];
|
||
}
|
||
var isUpdatingOpaqueValueInRenderPhase = false;
|
||
function getIsUpdatingOpaqueValueInRenderPhaseInDEV() {
|
||
{
|
||
return isUpdatingOpaqueValueInRenderPhase;
|
||
}
|
||
}
|
||
function mountId() {
|
||
var hook = mountWorkInProgressHook();
|
||
var root2 = getWorkInProgressRoot();
|
||
var identifierPrefix = root2.identifierPrefix;
|
||
var id;
|
||
if (getIsHydrating()) {
|
||
var treeId = getTreeId();
|
||
id = ":" + identifierPrefix + "R" + treeId;
|
||
var localId = localIdCounter++;
|
||
if (localId > 0) {
|
||
id += "H" + localId.toString(32);
|
||
}
|
||
id += ":";
|
||
} else {
|
||
var globalClientId = globalClientIdCounter++;
|
||
id = ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
|
||
}
|
||
hook.memoizedState = id;
|
||
return id;
|
||
}
|
||
function updateId() {
|
||
var hook = updateWorkInProgressHook();
|
||
var id = hook.memoizedState;
|
||
return id;
|
||
}
|
||
function dispatchReducerAction(fiber, queue, action) {
|
||
{
|
||
if (typeof arguments[3] === "function") {
|
||
error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().");
|
||
}
|
||
}
|
||
var lane = requestUpdateLane(fiber);
|
||
var update = {
|
||
lane,
|
||
action,
|
||
hasEagerState: false,
|
||
eagerState: null,
|
||
next: null
|
||
};
|
||
if (isRenderPhaseUpdate(fiber)) {
|
||
enqueueRenderPhaseUpdate(queue, update);
|
||
} else {
|
||
var root2 = enqueueConcurrentHookUpdate(fiber, queue, update, lane);
|
||
if (root2 !== null) {
|
||
var eventTime = requestEventTime();
|
||
scheduleUpdateOnFiber(root2, fiber, lane, eventTime);
|
||
entangleTransitionUpdate(root2, queue, lane);
|
||
}
|
||
}
|
||
markUpdateInDevTools(fiber, lane);
|
||
}
|
||
function dispatchSetState(fiber, queue, action) {
|
||
{
|
||
if (typeof arguments[3] === "function") {
|
||
error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().");
|
||
}
|
||
}
|
||
var lane = requestUpdateLane(fiber);
|
||
var update = {
|
||
lane,
|
||
action,
|
||
hasEagerState: false,
|
||
eagerState: null,
|
||
next: null
|
||
};
|
||
if (isRenderPhaseUpdate(fiber)) {
|
||
enqueueRenderPhaseUpdate(queue, update);
|
||
} else {
|
||
var alternate = fiber.alternate;
|
||
if (fiber.lanes === NoLanes && (alternate === null || alternate.lanes === NoLanes)) {
|
||
var lastRenderedReducer = queue.lastRenderedReducer;
|
||
if (lastRenderedReducer !== null) {
|
||
var prevDispatcher;
|
||
{
|
||
prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
}
|
||
try {
|
||
var currentState = queue.lastRenderedState;
|
||
var eagerState = lastRenderedReducer(currentState, action);
|
||
update.hasEagerState = true;
|
||
update.eagerState = eagerState;
|
||
if (objectIs(eagerState, currentState)) {
|
||
enqueueConcurrentHookUpdateAndEagerlyBailout(fiber, queue, update, lane);
|
||
return;
|
||
}
|
||
} catch (error2) {
|
||
} finally {
|
||
{
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var root2 = enqueueConcurrentHookUpdate(fiber, queue, update, lane);
|
||
if (root2 !== null) {
|
||
var eventTime = requestEventTime();
|
||
scheduleUpdateOnFiber(root2, fiber, lane, eventTime);
|
||
entangleTransitionUpdate(root2, queue, lane);
|
||
}
|
||
}
|
||
markUpdateInDevTools(fiber, lane);
|
||
}
|
||
function isRenderPhaseUpdate(fiber) {
|
||
var alternate = fiber.alternate;
|
||
return fiber === currentlyRenderingFiber$1 || alternate !== null && alternate === currentlyRenderingFiber$1;
|
||
}
|
||
function enqueueRenderPhaseUpdate(queue, update) {
|
||
didScheduleRenderPhaseUpdateDuringThisPass = didScheduleRenderPhaseUpdate = true;
|
||
var pending = queue.pending;
|
||
if (pending === null) {
|
||
update.next = update;
|
||
} else {
|
||
update.next = pending.next;
|
||
pending.next = update;
|
||
}
|
||
queue.pending = update;
|
||
}
|
||
function entangleTransitionUpdate(root2, queue, lane) {
|
||
if (isTransitionLane(lane)) {
|
||
var queueLanes = queue.lanes;
|
||
queueLanes = intersectLanes(queueLanes, root2.pendingLanes);
|
||
var newQueueLanes = mergeLanes(queueLanes, lane);
|
||
queue.lanes = newQueueLanes;
|
||
markRootEntangled(root2, newQueueLanes);
|
||
}
|
||
}
|
||
function markUpdateInDevTools(fiber, lane, action) {
|
||
{
|
||
markStateUpdateScheduled(fiber, lane);
|
||
}
|
||
}
|
||
var ContextOnlyDispatcher = {
|
||
readContext,
|
||
useCallback: throwInvalidHookError,
|
||
useContext: throwInvalidHookError,
|
||
useEffect: throwInvalidHookError,
|
||
useImperativeHandle: throwInvalidHookError,
|
||
useInsertionEffect: throwInvalidHookError,
|
||
useLayoutEffect: throwInvalidHookError,
|
||
useMemo: throwInvalidHookError,
|
||
useReducer: throwInvalidHookError,
|
||
useRef: throwInvalidHookError,
|
||
useState: throwInvalidHookError,
|
||
useDebugValue: throwInvalidHookError,
|
||
useDeferredValue: throwInvalidHookError,
|
||
useTransition: throwInvalidHookError,
|
||
useMutableSource: throwInvalidHookError,
|
||
useSyncExternalStore: throwInvalidHookError,
|
||
useId: throwInvalidHookError,
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
var HooksDispatcherOnMountInDEV = null;
|
||
var HooksDispatcherOnMountWithHookTypesInDEV = null;
|
||
var HooksDispatcherOnUpdateInDEV = null;
|
||
var HooksDispatcherOnRerenderInDEV = null;
|
||
var InvalidNestedHooksDispatcherOnMountInDEV = null;
|
||
var InvalidNestedHooksDispatcherOnUpdateInDEV = null;
|
||
var InvalidNestedHooksDispatcherOnRerenderInDEV = null;
|
||
{
|
||
var warnInvalidContextAccess = function() {
|
||
error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");
|
||
};
|
||
var warnInvalidHookAccess = function() {
|
||
error("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://reactjs.org/link/rules-of-hooks");
|
||
};
|
||
HooksDispatcherOnMountInDEV = {
|
||
readContext: function(context) {
|
||
return readContext(context);
|
||
},
|
||
useCallback: function(callback, deps) {
|
||
currentHookNameInDev = "useCallback";
|
||
mountHookTypesDev();
|
||
checkDepsAreArrayDev(deps);
|
||
return mountCallback(callback, deps);
|
||
},
|
||
useContext: function(context) {
|
||
currentHookNameInDev = "useContext";
|
||
mountHookTypesDev();
|
||
return readContext(context);
|
||
},
|
||
useEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useEffect";
|
||
mountHookTypesDev();
|
||
checkDepsAreArrayDev(deps);
|
||
return mountEffect(create2, deps);
|
||
},
|
||
useImperativeHandle: function(ref, create2, deps) {
|
||
currentHookNameInDev = "useImperativeHandle";
|
||
mountHookTypesDev();
|
||
checkDepsAreArrayDev(deps);
|
||
return mountImperativeHandle(ref, create2, deps);
|
||
},
|
||
useInsertionEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useInsertionEffect";
|
||
mountHookTypesDev();
|
||
checkDepsAreArrayDev(deps);
|
||
return mountInsertionEffect(create2, deps);
|
||
},
|
||
useLayoutEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useLayoutEffect";
|
||
mountHookTypesDev();
|
||
checkDepsAreArrayDev(deps);
|
||
return mountLayoutEffect(create2, deps);
|
||
},
|
||
useMemo: function(create2, deps) {
|
||
currentHookNameInDev = "useMemo";
|
||
mountHookTypesDev();
|
||
checkDepsAreArrayDev(deps);
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountMemo(create2, deps);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useReducer: function(reducer, initialArg, init) {
|
||
currentHookNameInDev = "useReducer";
|
||
mountHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountReducer(reducer, initialArg, init);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useRef: function(initialValue) {
|
||
currentHookNameInDev = "useRef";
|
||
mountHookTypesDev();
|
||
return mountRef(initialValue);
|
||
},
|
||
useState: function(initialState) {
|
||
currentHookNameInDev = "useState";
|
||
mountHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountState(initialState);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useDebugValue: function(value, formatterFn) {
|
||
currentHookNameInDev = "useDebugValue";
|
||
mountHookTypesDev();
|
||
return mountDebugValue();
|
||
},
|
||
useDeferredValue: function(value) {
|
||
currentHookNameInDev = "useDeferredValue";
|
||
mountHookTypesDev();
|
||
return mountDeferredValue(value);
|
||
},
|
||
useTransition: function() {
|
||
currentHookNameInDev = "useTransition";
|
||
mountHookTypesDev();
|
||
return mountTransition();
|
||
},
|
||
useMutableSource: function(source, getSnapshot, subscribe) {
|
||
currentHookNameInDev = "useMutableSource";
|
||
mountHookTypesDev();
|
||
return mountMutableSource();
|
||
},
|
||
useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) {
|
||
currentHookNameInDev = "useSyncExternalStore";
|
||
mountHookTypesDev();
|
||
return mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
|
||
},
|
||
useId: function() {
|
||
currentHookNameInDev = "useId";
|
||
mountHookTypesDev();
|
||
return mountId();
|
||
},
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
HooksDispatcherOnMountWithHookTypesInDEV = {
|
||
readContext: function(context) {
|
||
return readContext(context);
|
||
},
|
||
useCallback: function(callback, deps) {
|
||
currentHookNameInDev = "useCallback";
|
||
updateHookTypesDev();
|
||
return mountCallback(callback, deps);
|
||
},
|
||
useContext: function(context) {
|
||
currentHookNameInDev = "useContext";
|
||
updateHookTypesDev();
|
||
return readContext(context);
|
||
},
|
||
useEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useEffect";
|
||
updateHookTypesDev();
|
||
return mountEffect(create2, deps);
|
||
},
|
||
useImperativeHandle: function(ref, create2, deps) {
|
||
currentHookNameInDev = "useImperativeHandle";
|
||
updateHookTypesDev();
|
||
return mountImperativeHandle(ref, create2, deps);
|
||
},
|
||
useInsertionEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useInsertionEffect";
|
||
updateHookTypesDev();
|
||
return mountInsertionEffect(create2, deps);
|
||
},
|
||
useLayoutEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useLayoutEffect";
|
||
updateHookTypesDev();
|
||
return mountLayoutEffect(create2, deps);
|
||
},
|
||
useMemo: function(create2, deps) {
|
||
currentHookNameInDev = "useMemo";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountMemo(create2, deps);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useReducer: function(reducer, initialArg, init) {
|
||
currentHookNameInDev = "useReducer";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountReducer(reducer, initialArg, init);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useRef: function(initialValue) {
|
||
currentHookNameInDev = "useRef";
|
||
updateHookTypesDev();
|
||
return mountRef(initialValue);
|
||
},
|
||
useState: function(initialState) {
|
||
currentHookNameInDev = "useState";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountState(initialState);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useDebugValue: function(value, formatterFn) {
|
||
currentHookNameInDev = "useDebugValue";
|
||
updateHookTypesDev();
|
||
return mountDebugValue();
|
||
},
|
||
useDeferredValue: function(value) {
|
||
currentHookNameInDev = "useDeferredValue";
|
||
updateHookTypesDev();
|
||
return mountDeferredValue(value);
|
||
},
|
||
useTransition: function() {
|
||
currentHookNameInDev = "useTransition";
|
||
updateHookTypesDev();
|
||
return mountTransition();
|
||
},
|
||
useMutableSource: function(source, getSnapshot, subscribe) {
|
||
currentHookNameInDev = "useMutableSource";
|
||
updateHookTypesDev();
|
||
return mountMutableSource();
|
||
},
|
||
useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) {
|
||
currentHookNameInDev = "useSyncExternalStore";
|
||
updateHookTypesDev();
|
||
return mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
|
||
},
|
||
useId: function() {
|
||
currentHookNameInDev = "useId";
|
||
updateHookTypesDev();
|
||
return mountId();
|
||
},
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
HooksDispatcherOnUpdateInDEV = {
|
||
readContext: function(context) {
|
||
return readContext(context);
|
||
},
|
||
useCallback: function(callback, deps) {
|
||
currentHookNameInDev = "useCallback";
|
||
updateHookTypesDev();
|
||
return updateCallback(callback, deps);
|
||
},
|
||
useContext: function(context) {
|
||
currentHookNameInDev = "useContext";
|
||
updateHookTypesDev();
|
||
return readContext(context);
|
||
},
|
||
useEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useEffect";
|
||
updateHookTypesDev();
|
||
return updateEffect(create2, deps);
|
||
},
|
||
useImperativeHandle: function(ref, create2, deps) {
|
||
currentHookNameInDev = "useImperativeHandle";
|
||
updateHookTypesDev();
|
||
return updateImperativeHandle(ref, create2, deps);
|
||
},
|
||
useInsertionEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useInsertionEffect";
|
||
updateHookTypesDev();
|
||
return updateInsertionEffect(create2, deps);
|
||
},
|
||
useLayoutEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useLayoutEffect";
|
||
updateHookTypesDev();
|
||
return updateLayoutEffect(create2, deps);
|
||
},
|
||
useMemo: function(create2, deps) {
|
||
currentHookNameInDev = "useMemo";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return updateMemo(create2, deps);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useReducer: function(reducer, initialArg, init) {
|
||
currentHookNameInDev = "useReducer";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return updateReducer(reducer, initialArg, init);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useRef: function(initialValue) {
|
||
currentHookNameInDev = "useRef";
|
||
updateHookTypesDev();
|
||
return updateRef();
|
||
},
|
||
useState: function(initialState) {
|
||
currentHookNameInDev = "useState";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return updateState(initialState);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useDebugValue: function(value, formatterFn) {
|
||
currentHookNameInDev = "useDebugValue";
|
||
updateHookTypesDev();
|
||
return updateDebugValue();
|
||
},
|
||
useDeferredValue: function(value) {
|
||
currentHookNameInDev = "useDeferredValue";
|
||
updateHookTypesDev();
|
||
return updateDeferredValue(value);
|
||
},
|
||
useTransition: function() {
|
||
currentHookNameInDev = "useTransition";
|
||
updateHookTypesDev();
|
||
return updateTransition();
|
||
},
|
||
useMutableSource: function(source, getSnapshot, subscribe) {
|
||
currentHookNameInDev = "useMutableSource";
|
||
updateHookTypesDev();
|
||
return updateMutableSource();
|
||
},
|
||
useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) {
|
||
currentHookNameInDev = "useSyncExternalStore";
|
||
updateHookTypesDev();
|
||
return updateSyncExternalStore(subscribe, getSnapshot);
|
||
},
|
||
useId: function() {
|
||
currentHookNameInDev = "useId";
|
||
updateHookTypesDev();
|
||
return updateId();
|
||
},
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
HooksDispatcherOnRerenderInDEV = {
|
||
readContext: function(context) {
|
||
return readContext(context);
|
||
},
|
||
useCallback: function(callback, deps) {
|
||
currentHookNameInDev = "useCallback";
|
||
updateHookTypesDev();
|
||
return updateCallback(callback, deps);
|
||
},
|
||
useContext: function(context) {
|
||
currentHookNameInDev = "useContext";
|
||
updateHookTypesDev();
|
||
return readContext(context);
|
||
},
|
||
useEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useEffect";
|
||
updateHookTypesDev();
|
||
return updateEffect(create2, deps);
|
||
},
|
||
useImperativeHandle: function(ref, create2, deps) {
|
||
currentHookNameInDev = "useImperativeHandle";
|
||
updateHookTypesDev();
|
||
return updateImperativeHandle(ref, create2, deps);
|
||
},
|
||
useInsertionEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useInsertionEffect";
|
||
updateHookTypesDev();
|
||
return updateInsertionEffect(create2, deps);
|
||
},
|
||
useLayoutEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useLayoutEffect";
|
||
updateHookTypesDev();
|
||
return updateLayoutEffect(create2, deps);
|
||
},
|
||
useMemo: function(create2, deps) {
|
||
currentHookNameInDev = "useMemo";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnRerenderInDEV;
|
||
try {
|
||
return updateMemo(create2, deps);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useReducer: function(reducer, initialArg, init) {
|
||
currentHookNameInDev = "useReducer";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnRerenderInDEV;
|
||
try {
|
||
return rerenderReducer(reducer, initialArg, init);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useRef: function(initialValue) {
|
||
currentHookNameInDev = "useRef";
|
||
updateHookTypesDev();
|
||
return updateRef();
|
||
},
|
||
useState: function(initialState) {
|
||
currentHookNameInDev = "useState";
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnRerenderInDEV;
|
||
try {
|
||
return rerenderState(initialState);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useDebugValue: function(value, formatterFn) {
|
||
currentHookNameInDev = "useDebugValue";
|
||
updateHookTypesDev();
|
||
return updateDebugValue();
|
||
},
|
||
useDeferredValue: function(value) {
|
||
currentHookNameInDev = "useDeferredValue";
|
||
updateHookTypesDev();
|
||
return rerenderDeferredValue(value);
|
||
},
|
||
useTransition: function() {
|
||
currentHookNameInDev = "useTransition";
|
||
updateHookTypesDev();
|
||
return rerenderTransition();
|
||
},
|
||
useMutableSource: function(source, getSnapshot, subscribe) {
|
||
currentHookNameInDev = "useMutableSource";
|
||
updateHookTypesDev();
|
||
return updateMutableSource();
|
||
},
|
||
useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) {
|
||
currentHookNameInDev = "useSyncExternalStore";
|
||
updateHookTypesDev();
|
||
return updateSyncExternalStore(subscribe, getSnapshot);
|
||
},
|
||
useId: function() {
|
||
currentHookNameInDev = "useId";
|
||
updateHookTypesDev();
|
||
return updateId();
|
||
},
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
InvalidNestedHooksDispatcherOnMountInDEV = {
|
||
readContext: function(context) {
|
||
warnInvalidContextAccess();
|
||
return readContext(context);
|
||
},
|
||
useCallback: function(callback, deps) {
|
||
currentHookNameInDev = "useCallback";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountCallback(callback, deps);
|
||
},
|
||
useContext: function(context) {
|
||
currentHookNameInDev = "useContext";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return readContext(context);
|
||
},
|
||
useEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useEffect";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountEffect(create2, deps);
|
||
},
|
||
useImperativeHandle: function(ref, create2, deps) {
|
||
currentHookNameInDev = "useImperativeHandle";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountImperativeHandle(ref, create2, deps);
|
||
},
|
||
useInsertionEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useInsertionEffect";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountInsertionEffect(create2, deps);
|
||
},
|
||
useLayoutEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useLayoutEffect";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountLayoutEffect(create2, deps);
|
||
},
|
||
useMemo: function(create2, deps) {
|
||
currentHookNameInDev = "useMemo";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountMemo(create2, deps);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useReducer: function(reducer, initialArg, init) {
|
||
currentHookNameInDev = "useReducer";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountReducer(reducer, initialArg, init);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useRef: function(initialValue) {
|
||
currentHookNameInDev = "useRef";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountRef(initialValue);
|
||
},
|
||
useState: function(initialState) {
|
||
currentHookNameInDev = "useState";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
|
||
try {
|
||
return mountState(initialState);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useDebugValue: function(value, formatterFn) {
|
||
currentHookNameInDev = "useDebugValue";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountDebugValue();
|
||
},
|
||
useDeferredValue: function(value) {
|
||
currentHookNameInDev = "useDeferredValue";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountDeferredValue(value);
|
||
},
|
||
useTransition: function() {
|
||
currentHookNameInDev = "useTransition";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountTransition();
|
||
},
|
||
useMutableSource: function(source, getSnapshot, subscribe) {
|
||
currentHookNameInDev = "useMutableSource";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountMutableSource();
|
||
},
|
||
useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) {
|
||
currentHookNameInDev = "useSyncExternalStore";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
|
||
},
|
||
useId: function() {
|
||
currentHookNameInDev = "useId";
|
||
warnInvalidHookAccess();
|
||
mountHookTypesDev();
|
||
return mountId();
|
||
},
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
InvalidNestedHooksDispatcherOnUpdateInDEV = {
|
||
readContext: function(context) {
|
||
warnInvalidContextAccess();
|
||
return readContext(context);
|
||
},
|
||
useCallback: function(callback, deps) {
|
||
currentHookNameInDev = "useCallback";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateCallback(callback, deps);
|
||
},
|
||
useContext: function(context) {
|
||
currentHookNameInDev = "useContext";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return readContext(context);
|
||
},
|
||
useEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useEffect";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateEffect(create2, deps);
|
||
},
|
||
useImperativeHandle: function(ref, create2, deps) {
|
||
currentHookNameInDev = "useImperativeHandle";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateImperativeHandle(ref, create2, deps);
|
||
},
|
||
useInsertionEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useInsertionEffect";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateInsertionEffect(create2, deps);
|
||
},
|
||
useLayoutEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useLayoutEffect";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateLayoutEffect(create2, deps);
|
||
},
|
||
useMemo: function(create2, deps) {
|
||
currentHookNameInDev = "useMemo";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return updateMemo(create2, deps);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useReducer: function(reducer, initialArg, init) {
|
||
currentHookNameInDev = "useReducer";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return updateReducer(reducer, initialArg, init);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useRef: function(initialValue) {
|
||
currentHookNameInDev = "useRef";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateRef();
|
||
},
|
||
useState: function(initialState) {
|
||
currentHookNameInDev = "useState";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return updateState(initialState);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useDebugValue: function(value, formatterFn) {
|
||
currentHookNameInDev = "useDebugValue";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateDebugValue();
|
||
},
|
||
useDeferredValue: function(value) {
|
||
currentHookNameInDev = "useDeferredValue";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateDeferredValue(value);
|
||
},
|
||
useTransition: function() {
|
||
currentHookNameInDev = "useTransition";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateTransition();
|
||
},
|
||
useMutableSource: function(source, getSnapshot, subscribe) {
|
||
currentHookNameInDev = "useMutableSource";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateMutableSource();
|
||
},
|
||
useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) {
|
||
currentHookNameInDev = "useSyncExternalStore";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateSyncExternalStore(subscribe, getSnapshot);
|
||
},
|
||
useId: function() {
|
||
currentHookNameInDev = "useId";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateId();
|
||
},
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
InvalidNestedHooksDispatcherOnRerenderInDEV = {
|
||
readContext: function(context) {
|
||
warnInvalidContextAccess();
|
||
return readContext(context);
|
||
},
|
||
useCallback: function(callback, deps) {
|
||
currentHookNameInDev = "useCallback";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateCallback(callback, deps);
|
||
},
|
||
useContext: function(context) {
|
||
currentHookNameInDev = "useContext";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return readContext(context);
|
||
},
|
||
useEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useEffect";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateEffect(create2, deps);
|
||
},
|
||
useImperativeHandle: function(ref, create2, deps) {
|
||
currentHookNameInDev = "useImperativeHandle";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateImperativeHandle(ref, create2, deps);
|
||
},
|
||
useInsertionEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useInsertionEffect";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateInsertionEffect(create2, deps);
|
||
},
|
||
useLayoutEffect: function(create2, deps) {
|
||
currentHookNameInDev = "useLayoutEffect";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateLayoutEffect(create2, deps);
|
||
},
|
||
useMemo: function(create2, deps) {
|
||
currentHookNameInDev = "useMemo";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return updateMemo(create2, deps);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useReducer: function(reducer, initialArg, init) {
|
||
currentHookNameInDev = "useReducer";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return rerenderReducer(reducer, initialArg, init);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useRef: function(initialValue) {
|
||
currentHookNameInDev = "useRef";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateRef();
|
||
},
|
||
useState: function(initialState) {
|
||
currentHookNameInDev = "useState";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
var prevDispatcher = ReactCurrentDispatcher$1.current;
|
||
ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
|
||
try {
|
||
return rerenderState(initialState);
|
||
} finally {
|
||
ReactCurrentDispatcher$1.current = prevDispatcher;
|
||
}
|
||
},
|
||
useDebugValue: function(value, formatterFn) {
|
||
currentHookNameInDev = "useDebugValue";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateDebugValue();
|
||
},
|
||
useDeferredValue: function(value) {
|
||
currentHookNameInDev = "useDeferredValue";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return rerenderDeferredValue(value);
|
||
},
|
||
useTransition: function() {
|
||
currentHookNameInDev = "useTransition";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return rerenderTransition();
|
||
},
|
||
useMutableSource: function(source, getSnapshot, subscribe) {
|
||
currentHookNameInDev = "useMutableSource";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateMutableSource();
|
||
},
|
||
useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) {
|
||
currentHookNameInDev = "useSyncExternalStore";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateSyncExternalStore(subscribe, getSnapshot);
|
||
},
|
||
useId: function() {
|
||
currentHookNameInDev = "useId";
|
||
warnInvalidHookAccess();
|
||
updateHookTypesDev();
|
||
return updateId();
|
||
},
|
||
unstable_isNewReconciler: enableNewReconciler
|
||
};
|
||
}
|
||
var now$1 = Scheduler.unstable_now;
|
||
var commitTime = 0;
|
||
var layoutEffectStartTime = -1;
|
||
var profilerStartTime = -1;
|
||
var passiveEffectStartTime = -1;
|
||
var currentUpdateIsNested = false;
|
||
var nestedUpdateScheduled = false;
|
||
function isCurrentUpdateNested() {
|
||
return currentUpdateIsNested;
|
||
}
|
||
function markNestedUpdateScheduled() {
|
||
{
|
||
nestedUpdateScheduled = true;
|
||
}
|
||
}
|
||
function resetNestedUpdateFlag() {
|
||
{
|
||
currentUpdateIsNested = false;
|
||
nestedUpdateScheduled = false;
|
||
}
|
||
}
|
||
function syncNestedUpdateFlag() {
|
||
{
|
||
currentUpdateIsNested = nestedUpdateScheduled;
|
||
nestedUpdateScheduled = false;
|
||
}
|
||
}
|
||
function getCommitTime() {
|
||
return commitTime;
|
||
}
|
||
function recordCommitTime() {
|
||
commitTime = now$1();
|
||
}
|
||
function startProfilerTimer(fiber) {
|
||
profilerStartTime = now$1();
|
||
if (fiber.actualStartTime < 0) {
|
||
fiber.actualStartTime = now$1();
|
||
}
|
||
}
|
||
function stopProfilerTimerIfRunning(fiber) {
|
||
profilerStartTime = -1;
|
||
}
|
||
function stopProfilerTimerIfRunningAndRecordDelta(fiber, overrideBaseTime) {
|
||
if (profilerStartTime >= 0) {
|
||
var elapsedTime = now$1() - profilerStartTime;
|
||
fiber.actualDuration += elapsedTime;
|
||
if (overrideBaseTime) {
|
||
fiber.selfBaseDuration = elapsedTime;
|
||
}
|
||
profilerStartTime = -1;
|
||
}
|
||
}
|
||
function recordLayoutEffectDuration(fiber) {
|
||
if (layoutEffectStartTime >= 0) {
|
||
var elapsedTime = now$1() - layoutEffectStartTime;
|
||
layoutEffectStartTime = -1;
|
||
var parentFiber = fiber.return;
|
||
while (parentFiber !== null) {
|
||
switch (parentFiber.tag) {
|
||
case HostRoot:
|
||
var root2 = parentFiber.stateNode;
|
||
root2.effectDuration += elapsedTime;
|
||
return;
|
||
case Profiler:
|
||
var parentStateNode = parentFiber.stateNode;
|
||
parentStateNode.effectDuration += elapsedTime;
|
||
return;
|
||
}
|
||
parentFiber = parentFiber.return;
|
||
}
|
||
}
|
||
}
|
||
function recordPassiveEffectDuration(fiber) {
|
||
if (passiveEffectStartTime >= 0) {
|
||
var elapsedTime = now$1() - passiveEffectStartTime;
|
||
passiveEffectStartTime = -1;
|
||
var parentFiber = fiber.return;
|
||
while (parentFiber !== null) {
|
||
switch (parentFiber.tag) {
|
||
case HostRoot:
|
||
var root2 = parentFiber.stateNode;
|
||
if (root2 !== null) {
|
||
root2.passiveEffectDuration += elapsedTime;
|
||
}
|
||
return;
|
||
case Profiler:
|
||
var parentStateNode = parentFiber.stateNode;
|
||
if (parentStateNode !== null) {
|
||
parentStateNode.passiveEffectDuration += elapsedTime;
|
||
}
|
||
return;
|
||
}
|
||
parentFiber = parentFiber.return;
|
||
}
|
||
}
|
||
}
|
||
function startLayoutEffectTimer() {
|
||
layoutEffectStartTime = now$1();
|
||
}
|
||
function startPassiveEffectTimer() {
|
||
passiveEffectStartTime = now$1();
|
||
}
|
||
function transferActualDuration(fiber) {
|
||
var child = fiber.child;
|
||
while (child) {
|
||
fiber.actualDuration += child.actualDuration;
|
||
child = child.sibling;
|
||
}
|
||
}
|
||
function createCapturedValueAtFiber(value, source) {
|
||
return {
|
||
value,
|
||
source,
|
||
stack: getStackByFiberInDevAndProd(source),
|
||
digest: null
|
||
};
|
||
}
|
||
function createCapturedValue(value, digest, stack) {
|
||
return {
|
||
value,
|
||
source: null,
|
||
stack: stack != null ? stack : null,
|
||
digest: digest != null ? digest : null
|
||
};
|
||
}
|
||
function showErrorDialog(boundary, errorInfo) {
|
||
return true;
|
||
}
|
||
function logCapturedError(boundary, errorInfo) {
|
||
try {
|
||
var logError = showErrorDialog(boundary, errorInfo);
|
||
if (logError === false) {
|
||
return;
|
||
}
|
||
var error2 = errorInfo.value;
|
||
if (true) {
|
||
var source = errorInfo.source;
|
||
var stack = errorInfo.stack;
|
||
var componentStack = stack !== null ? stack : "";
|
||
if (error2 != null && error2._suppressLogging) {
|
||
if (boundary.tag === ClassComponent) {
|
||
return;
|
||
}
|
||
console["error"](error2);
|
||
}
|
||
var componentName = source ? getComponentNameFromFiber(source) : null;
|
||
var componentNameMessage = componentName ? "The above error occurred in the <" + componentName + "> component:" : "The above error occurred in one of your React components:";
|
||
var errorBoundaryMessage;
|
||
if (boundary.tag === HostRoot) {
|
||
errorBoundaryMessage = "Consider adding an error boundary to your tree to customize error handling behavior.\nVisit https://reactjs.org/link/error-boundaries to learn more about error boundaries.";
|
||
} else {
|
||
var errorBoundaryName = getComponentNameFromFiber(boundary) || "Anonymous";
|
||
errorBoundaryMessage = "React will try to recreate this component tree from scratch " + ("using the error boundary you provided, " + errorBoundaryName + ".");
|
||
}
|
||
var combinedMessage = componentNameMessage + "\n" + componentStack + "\n\n" + ("" + errorBoundaryMessage);
|
||
console["error"](combinedMessage);
|
||
} else {
|
||
console["error"](error2);
|
||
}
|
||
} catch (e) {
|
||
setTimeout(function() {
|
||
throw e;
|
||
});
|
||
}
|
||
}
|
||
var PossiblyWeakMap$1 = typeof WeakMap === "function" ? WeakMap : Map;
|
||
function createRootErrorUpdate(fiber, errorInfo, lane) {
|
||
var update = createUpdate(NoTimestamp, lane);
|
||
update.tag = CaptureUpdate;
|
||
update.payload = {
|
||
element: null
|
||
};
|
||
var error2 = errorInfo.value;
|
||
update.callback = function() {
|
||
onUncaughtError(error2);
|
||
logCapturedError(fiber, errorInfo);
|
||
};
|
||
return update;
|
||
}
|
||
function createClassErrorUpdate(fiber, errorInfo, lane) {
|
||
var update = createUpdate(NoTimestamp, lane);
|
||
update.tag = CaptureUpdate;
|
||
var getDerivedStateFromError = fiber.type.getDerivedStateFromError;
|
||
if (typeof getDerivedStateFromError === "function") {
|
||
var error$1 = errorInfo.value;
|
||
update.payload = function() {
|
||
return getDerivedStateFromError(error$1);
|
||
};
|
||
update.callback = function() {
|
||
{
|
||
markFailedErrorBoundaryForHotReloading(fiber);
|
||
}
|
||
logCapturedError(fiber, errorInfo);
|
||
};
|
||
}
|
||
var inst = fiber.stateNode;
|
||
if (inst !== null && typeof inst.componentDidCatch === "function") {
|
||
update.callback = function callback() {
|
||
{
|
||
markFailedErrorBoundaryForHotReloading(fiber);
|
||
}
|
||
logCapturedError(fiber, errorInfo);
|
||
if (typeof getDerivedStateFromError !== "function") {
|
||
markLegacyErrorBoundaryAsFailed(this);
|
||
}
|
||
var error$12 = errorInfo.value;
|
||
var stack = errorInfo.stack;
|
||
this.componentDidCatch(error$12, {
|
||
componentStack: stack !== null ? stack : ""
|
||
});
|
||
{
|
||
if (typeof getDerivedStateFromError !== "function") {
|
||
if (!includesSomeLane(fiber.lanes, SyncLane)) {
|
||
error("%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.", getComponentNameFromFiber(fiber) || "Unknown");
|
||
}
|
||
}
|
||
}
|
||
};
|
||
}
|
||
return update;
|
||
}
|
||
function attachPingListener(root2, wakeable, lanes) {
|
||
var pingCache = root2.pingCache;
|
||
var threadIDs;
|
||
if (pingCache === null) {
|
||
pingCache = root2.pingCache = new PossiblyWeakMap$1();
|
||
threadIDs = /* @__PURE__ */ new Set();
|
||
pingCache.set(wakeable, threadIDs);
|
||
} else {
|
||
threadIDs = pingCache.get(wakeable);
|
||
if (threadIDs === void 0) {
|
||
threadIDs = /* @__PURE__ */ new Set();
|
||
pingCache.set(wakeable, threadIDs);
|
||
}
|
||
}
|
||
if (!threadIDs.has(lanes)) {
|
||
threadIDs.add(lanes);
|
||
var ping = pingSuspendedRoot.bind(null, root2, wakeable, lanes);
|
||
{
|
||
if (isDevToolsPresent) {
|
||
restorePendingUpdaters(root2, lanes);
|
||
}
|
||
}
|
||
wakeable.then(ping, ping);
|
||
}
|
||
}
|
||
function attachRetryListener(suspenseBoundary, root2, wakeable, lanes) {
|
||
var wakeables = suspenseBoundary.updateQueue;
|
||
if (wakeables === null) {
|
||
var updateQueue = /* @__PURE__ */ new Set();
|
||
updateQueue.add(wakeable);
|
||
suspenseBoundary.updateQueue = updateQueue;
|
||
} else {
|
||
wakeables.add(wakeable);
|
||
}
|
||
}
|
||
function resetSuspendedComponent(sourceFiber, rootRenderLanes) {
|
||
var tag = sourceFiber.tag;
|
||
if ((sourceFiber.mode & ConcurrentMode) === NoMode && (tag === FunctionComponent || tag === ForwardRef || tag === SimpleMemoComponent)) {
|
||
var currentSource = sourceFiber.alternate;
|
||
if (currentSource) {
|
||
sourceFiber.updateQueue = currentSource.updateQueue;
|
||
sourceFiber.memoizedState = currentSource.memoizedState;
|
||
sourceFiber.lanes = currentSource.lanes;
|
||
} else {
|
||
sourceFiber.updateQueue = null;
|
||
sourceFiber.memoizedState = null;
|
||
}
|
||
}
|
||
}
|
||
function getNearestSuspenseBoundaryToCapture(returnFiber) {
|
||
var node = returnFiber;
|
||
do {
|
||
if (node.tag === SuspenseComponent && shouldCaptureSuspense(node)) {
|
||
return node;
|
||
}
|
||
node = node.return;
|
||
} while (node !== null);
|
||
return null;
|
||
}
|
||
function markSuspenseBoundaryShouldCapture(suspenseBoundary, returnFiber, sourceFiber, root2, rootRenderLanes) {
|
||
if ((suspenseBoundary.mode & ConcurrentMode) === NoMode) {
|
||
if (suspenseBoundary === returnFiber) {
|
||
suspenseBoundary.flags |= ShouldCapture;
|
||
} else {
|
||
suspenseBoundary.flags |= DidCapture;
|
||
sourceFiber.flags |= ForceUpdateForLegacySuspense;
|
||
sourceFiber.flags &= ~(LifecycleEffectMask | Incomplete);
|
||
if (sourceFiber.tag === ClassComponent) {
|
||
var currentSourceFiber = sourceFiber.alternate;
|
||
if (currentSourceFiber === null) {
|
||
sourceFiber.tag = IncompleteClassComponent;
|
||
} else {
|
||
var update = createUpdate(NoTimestamp, SyncLane);
|
||
update.tag = ForceUpdate;
|
||
enqueueUpdate(sourceFiber, update, SyncLane);
|
||
}
|
||
}
|
||
sourceFiber.lanes = mergeLanes(sourceFiber.lanes, SyncLane);
|
||
}
|
||
return suspenseBoundary;
|
||
}
|
||
suspenseBoundary.flags |= ShouldCapture;
|
||
suspenseBoundary.lanes = rootRenderLanes;
|
||
return suspenseBoundary;
|
||
}
|
||
function throwException(root2, returnFiber, sourceFiber, value, rootRenderLanes) {
|
||
sourceFiber.flags |= Incomplete;
|
||
{
|
||
if (isDevToolsPresent) {
|
||
restorePendingUpdaters(root2, rootRenderLanes);
|
||
}
|
||
}
|
||
if (value !== null && typeof value === "object" && typeof value.then === "function") {
|
||
var wakeable = value;
|
||
resetSuspendedComponent(sourceFiber);
|
||
{
|
||
if (getIsHydrating() && sourceFiber.mode & ConcurrentMode) {
|
||
markDidThrowWhileHydratingDEV();
|
||
}
|
||
}
|
||
var suspenseBoundary = getNearestSuspenseBoundaryToCapture(returnFiber);
|
||
if (suspenseBoundary !== null) {
|
||
suspenseBoundary.flags &= ~ForceClientRender;
|
||
markSuspenseBoundaryShouldCapture(suspenseBoundary, returnFiber, sourceFiber, root2, rootRenderLanes);
|
||
if (suspenseBoundary.mode & ConcurrentMode) {
|
||
attachPingListener(root2, wakeable, rootRenderLanes);
|
||
}
|
||
attachRetryListener(suspenseBoundary, root2, wakeable);
|
||
return;
|
||
} else {
|
||
if (!includesSyncLane(rootRenderLanes)) {
|
||
attachPingListener(root2, wakeable, rootRenderLanes);
|
||
renderDidSuspendDelayIfPossible();
|
||
return;
|
||
}
|
||
var uncaughtSuspenseError = new Error("A component suspended while responding to synchronous input. This will cause the UI to be replaced with a loading indicator. To fix, updates that suspend should be wrapped with startTransition.");
|
||
value = uncaughtSuspenseError;
|
||
}
|
||
} else {
|
||
if (getIsHydrating() && sourceFiber.mode & ConcurrentMode) {
|
||
markDidThrowWhileHydratingDEV();
|
||
var _suspenseBoundary = getNearestSuspenseBoundaryToCapture(returnFiber);
|
||
if (_suspenseBoundary !== null) {
|
||
if ((_suspenseBoundary.flags & ShouldCapture) === NoFlags) {
|
||
_suspenseBoundary.flags |= ForceClientRender;
|
||
}
|
||
markSuspenseBoundaryShouldCapture(_suspenseBoundary, returnFiber, sourceFiber, root2, rootRenderLanes);
|
||
queueHydrationError(createCapturedValueAtFiber(value, sourceFiber));
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
value = createCapturedValueAtFiber(value, sourceFiber);
|
||
renderDidError(value);
|
||
var workInProgress2 = returnFiber;
|
||
do {
|
||
switch (workInProgress2.tag) {
|
||
case HostRoot: {
|
||
var _errorInfo = value;
|
||
workInProgress2.flags |= ShouldCapture;
|
||
var lane = pickArbitraryLane(rootRenderLanes);
|
||
workInProgress2.lanes = mergeLanes(workInProgress2.lanes, lane);
|
||
var update = createRootErrorUpdate(workInProgress2, _errorInfo, lane);
|
||
enqueueCapturedUpdate(workInProgress2, update);
|
||
return;
|
||
}
|
||
case ClassComponent:
|
||
var errorInfo = value;
|
||
var ctor = workInProgress2.type;
|
||
var instance = workInProgress2.stateNode;
|
||
if ((workInProgress2.flags & DidCapture) === NoFlags && (typeof ctor.getDerivedStateFromError === "function" || instance !== null && typeof instance.componentDidCatch === "function" && !isAlreadyFailedLegacyErrorBoundary(instance))) {
|
||
workInProgress2.flags |= ShouldCapture;
|
||
var _lane = pickArbitraryLane(rootRenderLanes);
|
||
workInProgress2.lanes = mergeLanes(workInProgress2.lanes, _lane);
|
||
var _update = createClassErrorUpdate(workInProgress2, errorInfo, _lane);
|
||
enqueueCapturedUpdate(workInProgress2, _update);
|
||
return;
|
||
}
|
||
break;
|
||
}
|
||
workInProgress2 = workInProgress2.return;
|
||
} while (workInProgress2 !== null);
|
||
}
|
||
function getSuspendedCache() {
|
||
{
|
||
return null;
|
||
}
|
||
}
|
||
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
|
||
var didReceiveUpdate = false;
|
||
var didWarnAboutBadClass;
|
||
var didWarnAboutModulePatternComponent;
|
||
var didWarnAboutContextTypeOnFunctionComponent;
|
||
var didWarnAboutGetDerivedStateOnFunctionComponent;
|
||
var didWarnAboutFunctionRefs;
|
||
var didWarnAboutReassigningProps;
|
||
var didWarnAboutRevealOrder;
|
||
var didWarnAboutTailOptions;
|
||
{
|
||
didWarnAboutBadClass = {};
|
||
didWarnAboutModulePatternComponent = {};
|
||
didWarnAboutContextTypeOnFunctionComponent = {};
|
||
didWarnAboutGetDerivedStateOnFunctionComponent = {};
|
||
didWarnAboutFunctionRefs = {};
|
||
didWarnAboutReassigningProps = false;
|
||
didWarnAboutRevealOrder = {};
|
||
didWarnAboutTailOptions = {};
|
||
}
|
||
function reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2) {
|
||
if (current3 === null) {
|
||
workInProgress2.child = mountChildFibers(workInProgress2, null, nextChildren, renderLanes2);
|
||
} else {
|
||
workInProgress2.child = reconcileChildFibers(workInProgress2, current3.child, nextChildren, renderLanes2);
|
||
}
|
||
}
|
||
function forceUnmountCurrentAndReconcile(current3, workInProgress2, nextChildren, renderLanes2) {
|
||
workInProgress2.child = reconcileChildFibers(workInProgress2, current3.child, null, renderLanes2);
|
||
workInProgress2.child = reconcileChildFibers(workInProgress2, null, nextChildren, renderLanes2);
|
||
}
|
||
function updateForwardRef(current3, workInProgress2, Component2, nextProps, renderLanes2) {
|
||
{
|
||
if (workInProgress2.type !== workInProgress2.elementType) {
|
||
var innerPropTypes = Component2.propTypes;
|
||
if (innerPropTypes) {
|
||
checkPropTypes(
|
||
innerPropTypes,
|
||
nextProps,
|
||
// Resolved props
|
||
"prop",
|
||
getComponentNameFromType(Component2)
|
||
);
|
||
}
|
||
}
|
||
}
|
||
var render2 = Component2.render;
|
||
var ref = workInProgress2.ref;
|
||
var nextChildren;
|
||
var hasId;
|
||
prepareToReadContext(workInProgress2, renderLanes2);
|
||
{
|
||
markComponentRenderStarted(workInProgress2);
|
||
}
|
||
{
|
||
ReactCurrentOwner$1.current = workInProgress2;
|
||
setIsRendering(true);
|
||
nextChildren = renderWithHooks(current3, workInProgress2, render2, nextProps, ref, renderLanes2);
|
||
hasId = checkDidRenderIdHook();
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
nextChildren = renderWithHooks(current3, workInProgress2, render2, nextProps, ref, renderLanes2);
|
||
hasId = checkDidRenderIdHook();
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
setIsRendering(false);
|
||
}
|
||
{
|
||
markComponentRenderStopped();
|
||
}
|
||
if (current3 !== null && !didReceiveUpdate) {
|
||
bailoutHooks(current3, workInProgress2, renderLanes2);
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
}
|
||
if (getIsHydrating() && hasId) {
|
||
pushMaterializedTreeId(workInProgress2);
|
||
}
|
||
workInProgress2.flags |= PerformedWork;
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function updateMemoComponent(current3, workInProgress2, Component2, nextProps, renderLanes2) {
|
||
if (current3 === null) {
|
||
var type = Component2.type;
|
||
if (isSimpleFunctionComponent(type) && Component2.compare === null && // SimpleMemoComponent codepath doesn't resolve outer props either.
|
||
Component2.defaultProps === void 0) {
|
||
var resolvedType = type;
|
||
{
|
||
resolvedType = resolveFunctionForHotReloading(type);
|
||
}
|
||
workInProgress2.tag = SimpleMemoComponent;
|
||
workInProgress2.type = resolvedType;
|
||
{
|
||
validateFunctionComponentInDev(workInProgress2, type);
|
||
}
|
||
return updateSimpleMemoComponent(current3, workInProgress2, resolvedType, nextProps, renderLanes2);
|
||
}
|
||
{
|
||
var innerPropTypes = type.propTypes;
|
||
if (innerPropTypes) {
|
||
checkPropTypes(
|
||
innerPropTypes,
|
||
nextProps,
|
||
// Resolved props
|
||
"prop",
|
||
getComponentNameFromType(type)
|
||
);
|
||
}
|
||
}
|
||
var child = createFiberFromTypeAndProps(Component2.type, null, nextProps, workInProgress2, workInProgress2.mode, renderLanes2);
|
||
child.ref = workInProgress2.ref;
|
||
child.return = workInProgress2;
|
||
workInProgress2.child = child;
|
||
return child;
|
||
}
|
||
{
|
||
var _type = Component2.type;
|
||
var _innerPropTypes = _type.propTypes;
|
||
if (_innerPropTypes) {
|
||
checkPropTypes(
|
||
_innerPropTypes,
|
||
nextProps,
|
||
// Resolved props
|
||
"prop",
|
||
getComponentNameFromType(_type)
|
||
);
|
||
}
|
||
}
|
||
var currentChild = current3.child;
|
||
var hasScheduledUpdateOrContext = checkScheduledUpdateOrContext(current3, renderLanes2);
|
||
if (!hasScheduledUpdateOrContext) {
|
||
var prevProps = currentChild.memoizedProps;
|
||
var compare = Component2.compare;
|
||
compare = compare !== null ? compare : shallowEqual;
|
||
if (compare(prevProps, nextProps) && current3.ref === workInProgress2.ref) {
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
}
|
||
}
|
||
workInProgress2.flags |= PerformedWork;
|
||
var newChild = createWorkInProgress(currentChild, nextProps);
|
||
newChild.ref = workInProgress2.ref;
|
||
newChild.return = workInProgress2;
|
||
workInProgress2.child = newChild;
|
||
return newChild;
|
||
}
|
||
function updateSimpleMemoComponent(current3, workInProgress2, Component2, nextProps, renderLanes2) {
|
||
{
|
||
if (workInProgress2.type !== workInProgress2.elementType) {
|
||
var outerMemoType = workInProgress2.elementType;
|
||
if (outerMemoType.$$typeof === REACT_LAZY_TYPE) {
|
||
var lazyComponent = outerMemoType;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
try {
|
||
outerMemoType = init(payload);
|
||
} catch (x) {
|
||
outerMemoType = null;
|
||
}
|
||
var outerPropTypes = outerMemoType && outerMemoType.propTypes;
|
||
if (outerPropTypes) {
|
||
checkPropTypes(
|
||
outerPropTypes,
|
||
nextProps,
|
||
// Resolved (SimpleMemoComponent has no defaultProps)
|
||
"prop",
|
||
getComponentNameFromType(outerMemoType)
|
||
);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (current3 !== null) {
|
||
var prevProps = current3.memoizedProps;
|
||
if (shallowEqual(prevProps, nextProps) && current3.ref === workInProgress2.ref && // Prevent bailout if the implementation changed due to hot reload.
|
||
workInProgress2.type === current3.type) {
|
||
didReceiveUpdate = false;
|
||
workInProgress2.pendingProps = nextProps = prevProps;
|
||
if (!checkScheduledUpdateOrContext(current3, renderLanes2)) {
|
||
workInProgress2.lanes = current3.lanes;
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
} else if ((current3.flags & ForceUpdateForLegacySuspense) !== NoFlags) {
|
||
didReceiveUpdate = true;
|
||
}
|
||
}
|
||
}
|
||
return updateFunctionComponent(current3, workInProgress2, Component2, nextProps, renderLanes2);
|
||
}
|
||
function updateOffscreenComponent(current3, workInProgress2, renderLanes2) {
|
||
var nextProps = workInProgress2.pendingProps;
|
||
var nextChildren = nextProps.children;
|
||
var prevState = current3 !== null ? current3.memoizedState : null;
|
||
if (nextProps.mode === "hidden" || enableLegacyHidden) {
|
||
if ((workInProgress2.mode & ConcurrentMode) === NoMode) {
|
||
var nextState = {
|
||
baseLanes: NoLanes,
|
||
cachePool: null,
|
||
transitions: null
|
||
};
|
||
workInProgress2.memoizedState = nextState;
|
||
pushRenderLanes(workInProgress2, renderLanes2);
|
||
} else if (!includesSomeLane(renderLanes2, OffscreenLane)) {
|
||
var spawnedCachePool = null;
|
||
var nextBaseLanes;
|
||
if (prevState !== null) {
|
||
var prevBaseLanes = prevState.baseLanes;
|
||
nextBaseLanes = mergeLanes(prevBaseLanes, renderLanes2);
|
||
} else {
|
||
nextBaseLanes = renderLanes2;
|
||
}
|
||
workInProgress2.lanes = workInProgress2.childLanes = laneToLanes(OffscreenLane);
|
||
var _nextState = {
|
||
baseLanes: nextBaseLanes,
|
||
cachePool: spawnedCachePool,
|
||
transitions: null
|
||
};
|
||
workInProgress2.memoizedState = _nextState;
|
||
workInProgress2.updateQueue = null;
|
||
pushRenderLanes(workInProgress2, nextBaseLanes);
|
||
return null;
|
||
} else {
|
||
var _nextState2 = {
|
||
baseLanes: NoLanes,
|
||
cachePool: null,
|
||
transitions: null
|
||
};
|
||
workInProgress2.memoizedState = _nextState2;
|
||
var subtreeRenderLanes2 = prevState !== null ? prevState.baseLanes : renderLanes2;
|
||
pushRenderLanes(workInProgress2, subtreeRenderLanes2);
|
||
}
|
||
} else {
|
||
var _subtreeRenderLanes;
|
||
if (prevState !== null) {
|
||
_subtreeRenderLanes = mergeLanes(prevState.baseLanes, renderLanes2);
|
||
workInProgress2.memoizedState = null;
|
||
} else {
|
||
_subtreeRenderLanes = renderLanes2;
|
||
}
|
||
pushRenderLanes(workInProgress2, _subtreeRenderLanes);
|
||
}
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function updateFragment(current3, workInProgress2, renderLanes2) {
|
||
var nextChildren = workInProgress2.pendingProps;
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function updateMode(current3, workInProgress2, renderLanes2) {
|
||
var nextChildren = workInProgress2.pendingProps.children;
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function updateProfiler(current3, workInProgress2, renderLanes2) {
|
||
{
|
||
workInProgress2.flags |= Update;
|
||
{
|
||
var stateNode = workInProgress2.stateNode;
|
||
stateNode.effectDuration = 0;
|
||
stateNode.passiveEffectDuration = 0;
|
||
}
|
||
}
|
||
var nextProps = workInProgress2.pendingProps;
|
||
var nextChildren = nextProps.children;
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function markRef(current3, workInProgress2) {
|
||
var ref = workInProgress2.ref;
|
||
if (current3 === null && ref !== null || current3 !== null && current3.ref !== ref) {
|
||
workInProgress2.flags |= Ref;
|
||
{
|
||
workInProgress2.flags |= RefStatic;
|
||
}
|
||
}
|
||
}
|
||
function updateFunctionComponent(current3, workInProgress2, Component2, nextProps, renderLanes2) {
|
||
{
|
||
if (workInProgress2.type !== workInProgress2.elementType) {
|
||
var innerPropTypes = Component2.propTypes;
|
||
if (innerPropTypes) {
|
||
checkPropTypes(
|
||
innerPropTypes,
|
||
nextProps,
|
||
// Resolved props
|
||
"prop",
|
||
getComponentNameFromType(Component2)
|
||
);
|
||
}
|
||
}
|
||
}
|
||
var context;
|
||
{
|
||
var unmaskedContext = getUnmaskedContext(workInProgress2, Component2, true);
|
||
context = getMaskedContext(workInProgress2, unmaskedContext);
|
||
}
|
||
var nextChildren;
|
||
var hasId;
|
||
prepareToReadContext(workInProgress2, renderLanes2);
|
||
{
|
||
markComponentRenderStarted(workInProgress2);
|
||
}
|
||
{
|
||
ReactCurrentOwner$1.current = workInProgress2;
|
||
setIsRendering(true);
|
||
nextChildren = renderWithHooks(current3, workInProgress2, Component2, nextProps, context, renderLanes2);
|
||
hasId = checkDidRenderIdHook();
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
nextChildren = renderWithHooks(current3, workInProgress2, Component2, nextProps, context, renderLanes2);
|
||
hasId = checkDidRenderIdHook();
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
setIsRendering(false);
|
||
}
|
||
{
|
||
markComponentRenderStopped();
|
||
}
|
||
if (current3 !== null && !didReceiveUpdate) {
|
||
bailoutHooks(current3, workInProgress2, renderLanes2);
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
}
|
||
if (getIsHydrating() && hasId) {
|
||
pushMaterializedTreeId(workInProgress2);
|
||
}
|
||
workInProgress2.flags |= PerformedWork;
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function updateClassComponent(current3, workInProgress2, Component2, nextProps, renderLanes2) {
|
||
{
|
||
switch (shouldError(workInProgress2)) {
|
||
case false: {
|
||
var _instance = workInProgress2.stateNode;
|
||
var ctor = workInProgress2.type;
|
||
var tempInstance = new ctor(workInProgress2.memoizedProps, _instance.context);
|
||
var state = tempInstance.state;
|
||
_instance.updater.enqueueSetState(_instance, state, null);
|
||
break;
|
||
}
|
||
case true: {
|
||
workInProgress2.flags |= DidCapture;
|
||
workInProgress2.flags |= ShouldCapture;
|
||
var error$1 = new Error("Simulated error coming from DevTools");
|
||
var lane = pickArbitraryLane(renderLanes2);
|
||
workInProgress2.lanes = mergeLanes(workInProgress2.lanes, lane);
|
||
var update = createClassErrorUpdate(workInProgress2, createCapturedValueAtFiber(error$1, workInProgress2), lane);
|
||
enqueueCapturedUpdate(workInProgress2, update);
|
||
break;
|
||
}
|
||
}
|
||
if (workInProgress2.type !== workInProgress2.elementType) {
|
||
var innerPropTypes = Component2.propTypes;
|
||
if (innerPropTypes) {
|
||
checkPropTypes(
|
||
innerPropTypes,
|
||
nextProps,
|
||
// Resolved props
|
||
"prop",
|
||
getComponentNameFromType(Component2)
|
||
);
|
||
}
|
||
}
|
||
}
|
||
var hasContext;
|
||
if (isContextProvider(Component2)) {
|
||
hasContext = true;
|
||
pushContextProvider(workInProgress2);
|
||
} else {
|
||
hasContext = false;
|
||
}
|
||
prepareToReadContext(workInProgress2, renderLanes2);
|
||
var instance = workInProgress2.stateNode;
|
||
var shouldUpdate;
|
||
if (instance === null) {
|
||
resetSuspendedCurrentOnMountInLegacyMode(current3, workInProgress2);
|
||
constructClassInstance(workInProgress2, Component2, nextProps);
|
||
mountClassInstance(workInProgress2, Component2, nextProps, renderLanes2);
|
||
shouldUpdate = true;
|
||
} else if (current3 === null) {
|
||
shouldUpdate = resumeMountClassInstance(workInProgress2, Component2, nextProps, renderLanes2);
|
||
} else {
|
||
shouldUpdate = updateClassInstance(current3, workInProgress2, Component2, nextProps, renderLanes2);
|
||
}
|
||
var nextUnitOfWork = finishClassComponent(current3, workInProgress2, Component2, shouldUpdate, hasContext, renderLanes2);
|
||
{
|
||
var inst = workInProgress2.stateNode;
|
||
if (shouldUpdate && inst.props !== nextProps) {
|
||
if (!didWarnAboutReassigningProps) {
|
||
error("It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.", getComponentNameFromFiber(workInProgress2) || "a component");
|
||
}
|
||
didWarnAboutReassigningProps = true;
|
||
}
|
||
}
|
||
return nextUnitOfWork;
|
||
}
|
||
function finishClassComponent(current3, workInProgress2, Component2, shouldUpdate, hasContext, renderLanes2) {
|
||
markRef(current3, workInProgress2);
|
||
var didCaptureError = (workInProgress2.flags & DidCapture) !== NoFlags;
|
||
if (!shouldUpdate && !didCaptureError) {
|
||
if (hasContext) {
|
||
invalidateContextProvider(workInProgress2, Component2, false);
|
||
}
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
}
|
||
var instance = workInProgress2.stateNode;
|
||
ReactCurrentOwner$1.current = workInProgress2;
|
||
var nextChildren;
|
||
if (didCaptureError && typeof Component2.getDerivedStateFromError !== "function") {
|
||
nextChildren = null;
|
||
{
|
||
stopProfilerTimerIfRunning();
|
||
}
|
||
} else {
|
||
{
|
||
markComponentRenderStarted(workInProgress2);
|
||
}
|
||
{
|
||
setIsRendering(true);
|
||
nextChildren = instance.render();
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
instance.render();
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
setIsRendering(false);
|
||
}
|
||
{
|
||
markComponentRenderStopped();
|
||
}
|
||
}
|
||
workInProgress2.flags |= PerformedWork;
|
||
if (current3 !== null && didCaptureError) {
|
||
forceUnmountCurrentAndReconcile(current3, workInProgress2, nextChildren, renderLanes2);
|
||
} else {
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
}
|
||
workInProgress2.memoizedState = instance.state;
|
||
if (hasContext) {
|
||
invalidateContextProvider(workInProgress2, Component2, true);
|
||
}
|
||
return workInProgress2.child;
|
||
}
|
||
function pushHostRootContext(workInProgress2) {
|
||
var root2 = workInProgress2.stateNode;
|
||
if (root2.pendingContext) {
|
||
pushTopLevelContextObject(workInProgress2, root2.pendingContext, root2.pendingContext !== root2.context);
|
||
} else if (root2.context) {
|
||
pushTopLevelContextObject(workInProgress2, root2.context, false);
|
||
}
|
||
pushHostContainer(workInProgress2, root2.containerInfo);
|
||
}
|
||
function updateHostRoot(current3, workInProgress2, renderLanes2) {
|
||
pushHostRootContext(workInProgress2);
|
||
if (current3 === null) {
|
||
throw new Error("Should have a current fiber. This is a bug in React.");
|
||
}
|
||
var nextProps = workInProgress2.pendingProps;
|
||
var prevState = workInProgress2.memoizedState;
|
||
var prevChildren = prevState.element;
|
||
cloneUpdateQueue(current3, workInProgress2);
|
||
processUpdateQueue(workInProgress2, nextProps, null, renderLanes2);
|
||
var nextState = workInProgress2.memoizedState;
|
||
var root2 = workInProgress2.stateNode;
|
||
var nextChildren = nextState.element;
|
||
if (prevState.isDehydrated) {
|
||
var overrideState = {
|
||
element: nextChildren,
|
||
isDehydrated: false,
|
||
cache: nextState.cache,
|
||
pendingSuspenseBoundaries: nextState.pendingSuspenseBoundaries,
|
||
transitions: nextState.transitions
|
||
};
|
||
var updateQueue = workInProgress2.updateQueue;
|
||
updateQueue.baseState = overrideState;
|
||
workInProgress2.memoizedState = overrideState;
|
||
if (workInProgress2.flags & ForceClientRender) {
|
||
var recoverableError = createCapturedValueAtFiber(new Error("There was an error while hydrating. Because the error happened outside of a Suspense boundary, the entire root will switch to client rendering."), workInProgress2);
|
||
return mountHostRootWithoutHydrating(current3, workInProgress2, nextChildren, renderLanes2, recoverableError);
|
||
} else if (nextChildren !== prevChildren) {
|
||
var _recoverableError = createCapturedValueAtFiber(new Error("This root received an early update, before anything was able hydrate. Switched the entire root to client rendering."), workInProgress2);
|
||
return mountHostRootWithoutHydrating(current3, workInProgress2, nextChildren, renderLanes2, _recoverableError);
|
||
} else {
|
||
enterHydrationState(workInProgress2);
|
||
var child = mountChildFibers(workInProgress2, null, nextChildren, renderLanes2);
|
||
workInProgress2.child = child;
|
||
var node = child;
|
||
while (node) {
|
||
node.flags = node.flags & ~Placement | Hydrating;
|
||
node = node.sibling;
|
||
}
|
||
}
|
||
} else {
|
||
resetHydrationState();
|
||
if (nextChildren === prevChildren) {
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
}
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
}
|
||
return workInProgress2.child;
|
||
}
|
||
function mountHostRootWithoutHydrating(current3, workInProgress2, nextChildren, renderLanes2, recoverableError) {
|
||
resetHydrationState();
|
||
queueHydrationError(recoverableError);
|
||
workInProgress2.flags |= ForceClientRender;
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function updateHostComponent(current3, workInProgress2, renderLanes2) {
|
||
pushHostContext(workInProgress2);
|
||
if (current3 === null) {
|
||
tryToClaimNextHydratableInstance(workInProgress2);
|
||
}
|
||
var type = workInProgress2.type;
|
||
var nextProps = workInProgress2.pendingProps;
|
||
var prevProps = current3 !== null ? current3.memoizedProps : null;
|
||
var nextChildren = nextProps.children;
|
||
var isDirectTextChild = shouldSetTextContent(type, nextProps);
|
||
if (isDirectTextChild) {
|
||
nextChildren = null;
|
||
} else if (prevProps !== null && shouldSetTextContent(type, prevProps)) {
|
||
workInProgress2.flags |= ContentReset;
|
||
}
|
||
markRef(current3, workInProgress2);
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function updateHostText(current3, workInProgress2) {
|
||
if (current3 === null) {
|
||
tryToClaimNextHydratableInstance(workInProgress2);
|
||
}
|
||
return null;
|
||
}
|
||
function mountLazyComponent(_current, workInProgress2, elementType, renderLanes2) {
|
||
resetSuspendedCurrentOnMountInLegacyMode(_current, workInProgress2);
|
||
var props = workInProgress2.pendingProps;
|
||
var lazyComponent = elementType;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
var Component2 = init(payload);
|
||
workInProgress2.type = Component2;
|
||
var resolvedTag = workInProgress2.tag = resolveLazyComponentTag(Component2);
|
||
var resolvedProps = resolveDefaultProps(Component2, props);
|
||
var child;
|
||
switch (resolvedTag) {
|
||
case FunctionComponent: {
|
||
{
|
||
validateFunctionComponentInDev(workInProgress2, Component2);
|
||
workInProgress2.type = Component2 = resolveFunctionForHotReloading(Component2);
|
||
}
|
||
child = updateFunctionComponent(null, workInProgress2, Component2, resolvedProps, renderLanes2);
|
||
return child;
|
||
}
|
||
case ClassComponent: {
|
||
{
|
||
workInProgress2.type = Component2 = resolveClassForHotReloading(Component2);
|
||
}
|
||
child = updateClassComponent(null, workInProgress2, Component2, resolvedProps, renderLanes2);
|
||
return child;
|
||
}
|
||
case ForwardRef: {
|
||
{
|
||
workInProgress2.type = Component2 = resolveForwardRefForHotReloading(Component2);
|
||
}
|
||
child = updateForwardRef(null, workInProgress2, Component2, resolvedProps, renderLanes2);
|
||
return child;
|
||
}
|
||
case MemoComponent: {
|
||
{
|
||
if (workInProgress2.type !== workInProgress2.elementType) {
|
||
var outerPropTypes = Component2.propTypes;
|
||
if (outerPropTypes) {
|
||
checkPropTypes(
|
||
outerPropTypes,
|
||
resolvedProps,
|
||
// Resolved for outer only
|
||
"prop",
|
||
getComponentNameFromType(Component2)
|
||
);
|
||
}
|
||
}
|
||
}
|
||
child = updateMemoComponent(
|
||
null,
|
||
workInProgress2,
|
||
Component2,
|
||
resolveDefaultProps(Component2.type, resolvedProps),
|
||
// The inner type can have defaults too
|
||
renderLanes2
|
||
);
|
||
return child;
|
||
}
|
||
}
|
||
var hint = "";
|
||
{
|
||
if (Component2 !== null && typeof Component2 === "object" && Component2.$$typeof === REACT_LAZY_TYPE) {
|
||
hint = " Did you wrap a component in React.lazy() more than once?";
|
||
}
|
||
}
|
||
throw new Error("Element type is invalid. Received a promise that resolves to: " + Component2 + ". " + ("Lazy element type must resolve to a class or function." + hint));
|
||
}
|
||
function mountIncompleteClassComponent(_current, workInProgress2, Component2, nextProps, renderLanes2) {
|
||
resetSuspendedCurrentOnMountInLegacyMode(_current, workInProgress2);
|
||
workInProgress2.tag = ClassComponent;
|
||
var hasContext;
|
||
if (isContextProvider(Component2)) {
|
||
hasContext = true;
|
||
pushContextProvider(workInProgress2);
|
||
} else {
|
||
hasContext = false;
|
||
}
|
||
prepareToReadContext(workInProgress2, renderLanes2);
|
||
constructClassInstance(workInProgress2, Component2, nextProps);
|
||
mountClassInstance(workInProgress2, Component2, nextProps, renderLanes2);
|
||
return finishClassComponent(null, workInProgress2, Component2, true, hasContext, renderLanes2);
|
||
}
|
||
function mountIndeterminateComponent(_current, workInProgress2, Component2, renderLanes2) {
|
||
resetSuspendedCurrentOnMountInLegacyMode(_current, workInProgress2);
|
||
var props = workInProgress2.pendingProps;
|
||
var context;
|
||
{
|
||
var unmaskedContext = getUnmaskedContext(workInProgress2, Component2, false);
|
||
context = getMaskedContext(workInProgress2, unmaskedContext);
|
||
}
|
||
prepareToReadContext(workInProgress2, renderLanes2);
|
||
var value;
|
||
var hasId;
|
||
{
|
||
markComponentRenderStarted(workInProgress2);
|
||
}
|
||
{
|
||
if (Component2.prototype && typeof Component2.prototype.render === "function") {
|
||
var componentName = getComponentNameFromType(Component2) || "Unknown";
|
||
if (!didWarnAboutBadClass[componentName]) {
|
||
error("The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.", componentName, componentName);
|
||
didWarnAboutBadClass[componentName] = true;
|
||
}
|
||
}
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
ReactStrictModeWarnings.recordLegacyContextWarning(workInProgress2, null);
|
||
}
|
||
setIsRendering(true);
|
||
ReactCurrentOwner$1.current = workInProgress2;
|
||
value = renderWithHooks(null, workInProgress2, Component2, props, context, renderLanes2);
|
||
hasId = checkDidRenderIdHook();
|
||
setIsRendering(false);
|
||
}
|
||
{
|
||
markComponentRenderStopped();
|
||
}
|
||
workInProgress2.flags |= PerformedWork;
|
||
{
|
||
if (typeof value === "object" && value !== null && typeof value.render === "function" && value.$$typeof === void 0) {
|
||
var _componentName = getComponentNameFromType(Component2) || "Unknown";
|
||
if (!didWarnAboutModulePatternComponent[_componentName]) {
|
||
error("The <%s /> component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can't use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don't use an arrow function since it cannot be called with `new` by React.", _componentName, _componentName, _componentName);
|
||
didWarnAboutModulePatternComponent[_componentName] = true;
|
||
}
|
||
}
|
||
}
|
||
if (
|
||
// Run these checks in production only if the flag is off.
|
||
// Eventually we'll delete this branch altogether.
|
||
typeof value === "object" && value !== null && typeof value.render === "function" && value.$$typeof === void 0
|
||
) {
|
||
{
|
||
var _componentName2 = getComponentNameFromType(Component2) || "Unknown";
|
||
if (!didWarnAboutModulePatternComponent[_componentName2]) {
|
||
error("The <%s /> component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can't use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don't use an arrow function since it cannot be called with `new` by React.", _componentName2, _componentName2, _componentName2);
|
||
didWarnAboutModulePatternComponent[_componentName2] = true;
|
||
}
|
||
}
|
||
workInProgress2.tag = ClassComponent;
|
||
workInProgress2.memoizedState = null;
|
||
workInProgress2.updateQueue = null;
|
||
var hasContext = false;
|
||
if (isContextProvider(Component2)) {
|
||
hasContext = true;
|
||
pushContextProvider(workInProgress2);
|
||
} else {
|
||
hasContext = false;
|
||
}
|
||
workInProgress2.memoizedState = value.state !== null && value.state !== void 0 ? value.state : null;
|
||
initializeUpdateQueue(workInProgress2);
|
||
adoptClassInstance(workInProgress2, value);
|
||
mountClassInstance(workInProgress2, Component2, props, renderLanes2);
|
||
return finishClassComponent(null, workInProgress2, Component2, true, hasContext, renderLanes2);
|
||
} else {
|
||
workInProgress2.tag = FunctionComponent;
|
||
{
|
||
if (workInProgress2.mode & StrictLegacyMode) {
|
||
setIsStrictModeForDevtools(true);
|
||
try {
|
||
value = renderWithHooks(null, workInProgress2, Component2, props, context, renderLanes2);
|
||
hasId = checkDidRenderIdHook();
|
||
} finally {
|
||
setIsStrictModeForDevtools(false);
|
||
}
|
||
}
|
||
}
|
||
if (getIsHydrating() && hasId) {
|
||
pushMaterializedTreeId(workInProgress2);
|
||
}
|
||
reconcileChildren(null, workInProgress2, value, renderLanes2);
|
||
{
|
||
validateFunctionComponentInDev(workInProgress2, Component2);
|
||
}
|
||
return workInProgress2.child;
|
||
}
|
||
}
|
||
function validateFunctionComponentInDev(workInProgress2, Component2) {
|
||
{
|
||
if (Component2) {
|
||
if (Component2.childContextTypes) {
|
||
error("%s(...): childContextTypes cannot be defined on a function component.", Component2.displayName || Component2.name || "Component");
|
||
}
|
||
}
|
||
if (workInProgress2.ref !== null) {
|
||
var info = "";
|
||
var ownerName = getCurrentFiberOwnerNameInDevOrNull();
|
||
if (ownerName) {
|
||
info += "\n\nCheck the render method of `" + ownerName + "`.";
|
||
}
|
||
var warningKey = ownerName || "";
|
||
var debugSource = workInProgress2._debugSource;
|
||
if (debugSource) {
|
||
warningKey = debugSource.fileName + ":" + debugSource.lineNumber;
|
||
}
|
||
if (!didWarnAboutFunctionRefs[warningKey]) {
|
||
didWarnAboutFunctionRefs[warningKey] = true;
|
||
error("Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?%s", info);
|
||
}
|
||
}
|
||
if (typeof Component2.getDerivedStateFromProps === "function") {
|
||
var _componentName3 = getComponentNameFromType(Component2) || "Unknown";
|
||
if (!didWarnAboutGetDerivedStateOnFunctionComponent[_componentName3]) {
|
||
error("%s: Function components do not support getDerivedStateFromProps.", _componentName3);
|
||
didWarnAboutGetDerivedStateOnFunctionComponent[_componentName3] = true;
|
||
}
|
||
}
|
||
if (typeof Component2.contextType === "object" && Component2.contextType !== null) {
|
||
var _componentName4 = getComponentNameFromType(Component2) || "Unknown";
|
||
if (!didWarnAboutContextTypeOnFunctionComponent[_componentName4]) {
|
||
error("%s: Function components do not support contextType.", _componentName4);
|
||
didWarnAboutContextTypeOnFunctionComponent[_componentName4] = true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var SUSPENDED_MARKER = {
|
||
dehydrated: null,
|
||
treeContext: null,
|
||
retryLane: NoLane
|
||
};
|
||
function mountSuspenseOffscreenState(renderLanes2) {
|
||
return {
|
||
baseLanes: renderLanes2,
|
||
cachePool: getSuspendedCache(),
|
||
transitions: null
|
||
};
|
||
}
|
||
function updateSuspenseOffscreenState(prevOffscreenState, renderLanes2) {
|
||
var cachePool = null;
|
||
return {
|
||
baseLanes: mergeLanes(prevOffscreenState.baseLanes, renderLanes2),
|
||
cachePool,
|
||
transitions: prevOffscreenState.transitions
|
||
};
|
||
}
|
||
function shouldRemainOnFallback(suspenseContext, current3, workInProgress2, renderLanes2) {
|
||
if (current3 !== null) {
|
||
var suspenseState = current3.memoizedState;
|
||
if (suspenseState === null) {
|
||
return false;
|
||
}
|
||
}
|
||
return hasSuspenseContext(suspenseContext, ForceSuspenseFallback);
|
||
}
|
||
function getRemainingWorkInPrimaryTree(current3, renderLanes2) {
|
||
return removeLanes(current3.childLanes, renderLanes2);
|
||
}
|
||
function updateSuspenseComponent(current3, workInProgress2, renderLanes2) {
|
||
var nextProps = workInProgress2.pendingProps;
|
||
{
|
||
if (shouldSuspend(workInProgress2)) {
|
||
workInProgress2.flags |= DidCapture;
|
||
}
|
||
}
|
||
var suspenseContext = suspenseStackCursor.current;
|
||
var showFallback = false;
|
||
var didSuspend = (workInProgress2.flags & DidCapture) !== NoFlags;
|
||
if (didSuspend || shouldRemainOnFallback(suspenseContext, current3)) {
|
||
showFallback = true;
|
||
workInProgress2.flags &= ~DidCapture;
|
||
} else {
|
||
if (current3 === null || current3.memoizedState !== null) {
|
||
{
|
||
suspenseContext = addSubtreeSuspenseContext(suspenseContext, InvisibleParentSuspenseContext);
|
||
}
|
||
}
|
||
}
|
||
suspenseContext = setDefaultShallowSuspenseContext(suspenseContext);
|
||
pushSuspenseContext(workInProgress2, suspenseContext);
|
||
if (current3 === null) {
|
||
tryToClaimNextHydratableInstance(workInProgress2);
|
||
var suspenseState = workInProgress2.memoizedState;
|
||
if (suspenseState !== null) {
|
||
var dehydrated = suspenseState.dehydrated;
|
||
if (dehydrated !== null) {
|
||
return mountDehydratedSuspenseComponent(workInProgress2, dehydrated);
|
||
}
|
||
}
|
||
var nextPrimaryChildren = nextProps.children;
|
||
var nextFallbackChildren = nextProps.fallback;
|
||
if (showFallback) {
|
||
var fallbackFragment = mountSuspenseFallbackChildren(workInProgress2, nextPrimaryChildren, nextFallbackChildren, renderLanes2);
|
||
var primaryChildFragment = workInProgress2.child;
|
||
primaryChildFragment.memoizedState = mountSuspenseOffscreenState(renderLanes2);
|
||
workInProgress2.memoizedState = SUSPENDED_MARKER;
|
||
return fallbackFragment;
|
||
} else {
|
||
return mountSuspensePrimaryChildren(workInProgress2, nextPrimaryChildren);
|
||
}
|
||
} else {
|
||
var prevState = current3.memoizedState;
|
||
if (prevState !== null) {
|
||
var _dehydrated = prevState.dehydrated;
|
||
if (_dehydrated !== null) {
|
||
return updateDehydratedSuspenseComponent(current3, workInProgress2, didSuspend, nextProps, _dehydrated, prevState, renderLanes2);
|
||
}
|
||
}
|
||
if (showFallback) {
|
||
var _nextFallbackChildren = nextProps.fallback;
|
||
var _nextPrimaryChildren = nextProps.children;
|
||
var fallbackChildFragment = updateSuspenseFallbackChildren(current3, workInProgress2, _nextPrimaryChildren, _nextFallbackChildren, renderLanes2);
|
||
var _primaryChildFragment2 = workInProgress2.child;
|
||
var prevOffscreenState = current3.child.memoizedState;
|
||
_primaryChildFragment2.memoizedState = prevOffscreenState === null ? mountSuspenseOffscreenState(renderLanes2) : updateSuspenseOffscreenState(prevOffscreenState, renderLanes2);
|
||
_primaryChildFragment2.childLanes = getRemainingWorkInPrimaryTree(current3, renderLanes2);
|
||
workInProgress2.memoizedState = SUSPENDED_MARKER;
|
||
return fallbackChildFragment;
|
||
} else {
|
||
var _nextPrimaryChildren2 = nextProps.children;
|
||
var _primaryChildFragment3 = updateSuspensePrimaryChildren(current3, workInProgress2, _nextPrimaryChildren2, renderLanes2);
|
||
workInProgress2.memoizedState = null;
|
||
return _primaryChildFragment3;
|
||
}
|
||
}
|
||
}
|
||
function mountSuspensePrimaryChildren(workInProgress2, primaryChildren, renderLanes2) {
|
||
var mode = workInProgress2.mode;
|
||
var primaryChildProps = {
|
||
mode: "visible",
|
||
children: primaryChildren
|
||
};
|
||
var primaryChildFragment = mountWorkInProgressOffscreenFiber(primaryChildProps, mode);
|
||
primaryChildFragment.return = workInProgress2;
|
||
workInProgress2.child = primaryChildFragment;
|
||
return primaryChildFragment;
|
||
}
|
||
function mountSuspenseFallbackChildren(workInProgress2, primaryChildren, fallbackChildren, renderLanes2) {
|
||
var mode = workInProgress2.mode;
|
||
var progressedPrimaryFragment = workInProgress2.child;
|
||
var primaryChildProps = {
|
||
mode: "hidden",
|
||
children: primaryChildren
|
||
};
|
||
var primaryChildFragment;
|
||
var fallbackChildFragment;
|
||
if ((mode & ConcurrentMode) === NoMode && progressedPrimaryFragment !== null) {
|
||
primaryChildFragment = progressedPrimaryFragment;
|
||
primaryChildFragment.childLanes = NoLanes;
|
||
primaryChildFragment.pendingProps = primaryChildProps;
|
||
if (workInProgress2.mode & ProfileMode) {
|
||
primaryChildFragment.actualDuration = 0;
|
||
primaryChildFragment.actualStartTime = -1;
|
||
primaryChildFragment.selfBaseDuration = 0;
|
||
primaryChildFragment.treeBaseDuration = 0;
|
||
}
|
||
fallbackChildFragment = createFiberFromFragment(fallbackChildren, mode, renderLanes2, null);
|
||
} else {
|
||
primaryChildFragment = mountWorkInProgressOffscreenFiber(primaryChildProps, mode);
|
||
fallbackChildFragment = createFiberFromFragment(fallbackChildren, mode, renderLanes2, null);
|
||
}
|
||
primaryChildFragment.return = workInProgress2;
|
||
fallbackChildFragment.return = workInProgress2;
|
||
primaryChildFragment.sibling = fallbackChildFragment;
|
||
workInProgress2.child = primaryChildFragment;
|
||
return fallbackChildFragment;
|
||
}
|
||
function mountWorkInProgressOffscreenFiber(offscreenProps, mode, renderLanes2) {
|
||
return createFiberFromOffscreen(offscreenProps, mode, NoLanes, null);
|
||
}
|
||
function updateWorkInProgressOffscreenFiber(current3, offscreenProps) {
|
||
return createWorkInProgress(current3, offscreenProps);
|
||
}
|
||
function updateSuspensePrimaryChildren(current3, workInProgress2, primaryChildren, renderLanes2) {
|
||
var currentPrimaryChildFragment = current3.child;
|
||
var currentFallbackChildFragment = currentPrimaryChildFragment.sibling;
|
||
var primaryChildFragment = updateWorkInProgressOffscreenFiber(currentPrimaryChildFragment, {
|
||
mode: "visible",
|
||
children: primaryChildren
|
||
});
|
||
if ((workInProgress2.mode & ConcurrentMode) === NoMode) {
|
||
primaryChildFragment.lanes = renderLanes2;
|
||
}
|
||
primaryChildFragment.return = workInProgress2;
|
||
primaryChildFragment.sibling = null;
|
||
if (currentFallbackChildFragment !== null) {
|
||
var deletions = workInProgress2.deletions;
|
||
if (deletions === null) {
|
||
workInProgress2.deletions = [currentFallbackChildFragment];
|
||
workInProgress2.flags |= ChildDeletion;
|
||
} else {
|
||
deletions.push(currentFallbackChildFragment);
|
||
}
|
||
}
|
||
workInProgress2.child = primaryChildFragment;
|
||
return primaryChildFragment;
|
||
}
|
||
function updateSuspenseFallbackChildren(current3, workInProgress2, primaryChildren, fallbackChildren, renderLanes2) {
|
||
var mode = workInProgress2.mode;
|
||
var currentPrimaryChildFragment = current3.child;
|
||
var currentFallbackChildFragment = currentPrimaryChildFragment.sibling;
|
||
var primaryChildProps = {
|
||
mode: "hidden",
|
||
children: primaryChildren
|
||
};
|
||
var primaryChildFragment;
|
||
if (
|
||
// In legacy mode, we commit the primary tree as if it successfully
|
||
// completed, even though it's in an inconsistent state.
|
||
(mode & ConcurrentMode) === NoMode && // Make sure we're on the second pass, i.e. the primary child fragment was
|
||
// already cloned. In legacy mode, the only case where this isn't true is
|
||
// when DevTools forces us to display a fallback; we skip the first render
|
||
// pass entirely and go straight to rendering the fallback. (In Concurrent
|
||
// Mode, SuspenseList can also trigger this scenario, but this is a legacy-
|
||
// only codepath.)
|
||
workInProgress2.child !== currentPrimaryChildFragment
|
||
) {
|
||
var progressedPrimaryFragment = workInProgress2.child;
|
||
primaryChildFragment = progressedPrimaryFragment;
|
||
primaryChildFragment.childLanes = NoLanes;
|
||
primaryChildFragment.pendingProps = primaryChildProps;
|
||
if (workInProgress2.mode & ProfileMode) {
|
||
primaryChildFragment.actualDuration = 0;
|
||
primaryChildFragment.actualStartTime = -1;
|
||
primaryChildFragment.selfBaseDuration = currentPrimaryChildFragment.selfBaseDuration;
|
||
primaryChildFragment.treeBaseDuration = currentPrimaryChildFragment.treeBaseDuration;
|
||
}
|
||
workInProgress2.deletions = null;
|
||
} else {
|
||
primaryChildFragment = updateWorkInProgressOffscreenFiber(currentPrimaryChildFragment, primaryChildProps);
|
||
primaryChildFragment.subtreeFlags = currentPrimaryChildFragment.subtreeFlags & StaticMask;
|
||
}
|
||
var fallbackChildFragment;
|
||
if (currentFallbackChildFragment !== null) {
|
||
fallbackChildFragment = createWorkInProgress(currentFallbackChildFragment, fallbackChildren);
|
||
} else {
|
||
fallbackChildFragment = createFiberFromFragment(fallbackChildren, mode, renderLanes2, null);
|
||
fallbackChildFragment.flags |= Placement;
|
||
}
|
||
fallbackChildFragment.return = workInProgress2;
|
||
primaryChildFragment.return = workInProgress2;
|
||
primaryChildFragment.sibling = fallbackChildFragment;
|
||
workInProgress2.child = primaryChildFragment;
|
||
return fallbackChildFragment;
|
||
}
|
||
function retrySuspenseComponentWithoutHydrating(current3, workInProgress2, renderLanes2, recoverableError) {
|
||
if (recoverableError !== null) {
|
||
queueHydrationError(recoverableError);
|
||
}
|
||
reconcileChildFibers(workInProgress2, current3.child, null, renderLanes2);
|
||
var nextProps = workInProgress2.pendingProps;
|
||
var primaryChildren = nextProps.children;
|
||
var primaryChildFragment = mountSuspensePrimaryChildren(workInProgress2, primaryChildren);
|
||
primaryChildFragment.flags |= Placement;
|
||
workInProgress2.memoizedState = null;
|
||
return primaryChildFragment;
|
||
}
|
||
function mountSuspenseFallbackAfterRetryWithoutHydrating(current3, workInProgress2, primaryChildren, fallbackChildren, renderLanes2) {
|
||
var fiberMode = workInProgress2.mode;
|
||
var primaryChildProps = {
|
||
mode: "visible",
|
||
children: primaryChildren
|
||
};
|
||
var primaryChildFragment = mountWorkInProgressOffscreenFiber(primaryChildProps, fiberMode);
|
||
var fallbackChildFragment = createFiberFromFragment(fallbackChildren, fiberMode, renderLanes2, null);
|
||
fallbackChildFragment.flags |= Placement;
|
||
primaryChildFragment.return = workInProgress2;
|
||
fallbackChildFragment.return = workInProgress2;
|
||
primaryChildFragment.sibling = fallbackChildFragment;
|
||
workInProgress2.child = primaryChildFragment;
|
||
if ((workInProgress2.mode & ConcurrentMode) !== NoMode) {
|
||
reconcileChildFibers(workInProgress2, current3.child, null, renderLanes2);
|
||
}
|
||
return fallbackChildFragment;
|
||
}
|
||
function mountDehydratedSuspenseComponent(workInProgress2, suspenseInstance, renderLanes2) {
|
||
if ((workInProgress2.mode & ConcurrentMode) === NoMode) {
|
||
{
|
||
error("Cannot hydrate Suspense in legacy mode. Switch from ReactDOM.hydrate(element, container) to ReactDOMClient.hydrateRoot(container, <App />).render(element) or remove the Suspense components from the server rendered components.");
|
||
}
|
||
workInProgress2.lanes = laneToLanes(SyncLane);
|
||
} else if (isSuspenseInstanceFallback(suspenseInstance)) {
|
||
workInProgress2.lanes = laneToLanes(DefaultHydrationLane);
|
||
} else {
|
||
workInProgress2.lanes = laneToLanes(OffscreenLane);
|
||
}
|
||
return null;
|
||
}
|
||
function updateDehydratedSuspenseComponent(current3, workInProgress2, didSuspend, nextProps, suspenseInstance, suspenseState, renderLanes2) {
|
||
if (!didSuspend) {
|
||
warnIfHydrating();
|
||
if ((workInProgress2.mode & ConcurrentMode) === NoMode) {
|
||
return retrySuspenseComponentWithoutHydrating(
|
||
current3,
|
||
workInProgress2,
|
||
renderLanes2,
|
||
// TODO: When we delete legacy mode, we should make this error argument
|
||
// required — every concurrent mode path that causes hydration to
|
||
// de-opt to client rendering should have an error message.
|
||
null
|
||
);
|
||
}
|
||
if (isSuspenseInstanceFallback(suspenseInstance)) {
|
||
var digest, message, stack;
|
||
{
|
||
var _getSuspenseInstanceF = getSuspenseInstanceFallbackErrorDetails(suspenseInstance);
|
||
digest = _getSuspenseInstanceF.digest;
|
||
message = _getSuspenseInstanceF.message;
|
||
stack = _getSuspenseInstanceF.stack;
|
||
}
|
||
var error2;
|
||
if (message) {
|
||
error2 = new Error(message);
|
||
} else {
|
||
error2 = new Error("The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering.");
|
||
}
|
||
var capturedValue = createCapturedValue(error2, digest, stack);
|
||
return retrySuspenseComponentWithoutHydrating(current3, workInProgress2, renderLanes2, capturedValue);
|
||
}
|
||
var hasContextChanged2 = includesSomeLane(renderLanes2, current3.childLanes);
|
||
if (didReceiveUpdate || hasContextChanged2) {
|
||
var root2 = getWorkInProgressRoot();
|
||
if (root2 !== null) {
|
||
var attemptHydrationAtLane = getBumpedLaneForHydration(root2, renderLanes2);
|
||
if (attemptHydrationAtLane !== NoLane && attemptHydrationAtLane !== suspenseState.retryLane) {
|
||
suspenseState.retryLane = attemptHydrationAtLane;
|
||
var eventTime = NoTimestamp;
|
||
enqueueConcurrentRenderForLane(current3, attemptHydrationAtLane);
|
||
scheduleUpdateOnFiber(root2, current3, attemptHydrationAtLane, eventTime);
|
||
}
|
||
}
|
||
renderDidSuspendDelayIfPossible();
|
||
var _capturedValue = createCapturedValue(new Error("This Suspense boundary received an update before it finished hydrating. This caused the boundary to switch to client rendering. The usual way to fix this is to wrap the original update in startTransition."));
|
||
return retrySuspenseComponentWithoutHydrating(current3, workInProgress2, renderLanes2, _capturedValue);
|
||
} else if (isSuspenseInstancePending(suspenseInstance)) {
|
||
workInProgress2.flags |= DidCapture;
|
||
workInProgress2.child = current3.child;
|
||
var retry = retryDehydratedSuspenseBoundary.bind(null, current3);
|
||
registerSuspenseInstanceRetry(suspenseInstance, retry);
|
||
return null;
|
||
} else {
|
||
reenterHydrationStateFromDehydratedSuspenseInstance(workInProgress2, suspenseInstance, suspenseState.treeContext);
|
||
var primaryChildren = nextProps.children;
|
||
var primaryChildFragment = mountSuspensePrimaryChildren(workInProgress2, primaryChildren);
|
||
primaryChildFragment.flags |= Hydrating;
|
||
return primaryChildFragment;
|
||
}
|
||
} else {
|
||
if (workInProgress2.flags & ForceClientRender) {
|
||
workInProgress2.flags &= ~ForceClientRender;
|
||
var _capturedValue2 = createCapturedValue(new Error("There was an error while hydrating this Suspense boundary. Switched to client rendering."));
|
||
return retrySuspenseComponentWithoutHydrating(current3, workInProgress2, renderLanes2, _capturedValue2);
|
||
} else if (workInProgress2.memoizedState !== null) {
|
||
workInProgress2.child = current3.child;
|
||
workInProgress2.flags |= DidCapture;
|
||
return null;
|
||
} else {
|
||
var nextPrimaryChildren = nextProps.children;
|
||
var nextFallbackChildren = nextProps.fallback;
|
||
var fallbackChildFragment = mountSuspenseFallbackAfterRetryWithoutHydrating(current3, workInProgress2, nextPrimaryChildren, nextFallbackChildren, renderLanes2);
|
||
var _primaryChildFragment4 = workInProgress2.child;
|
||
_primaryChildFragment4.memoizedState = mountSuspenseOffscreenState(renderLanes2);
|
||
workInProgress2.memoizedState = SUSPENDED_MARKER;
|
||
return fallbackChildFragment;
|
||
}
|
||
}
|
||
}
|
||
function scheduleSuspenseWorkOnFiber(fiber, renderLanes2, propagationRoot) {
|
||
fiber.lanes = mergeLanes(fiber.lanes, renderLanes2);
|
||
var alternate = fiber.alternate;
|
||
if (alternate !== null) {
|
||
alternate.lanes = mergeLanes(alternate.lanes, renderLanes2);
|
||
}
|
||
scheduleContextWorkOnParentPath(fiber.return, renderLanes2, propagationRoot);
|
||
}
|
||
function propagateSuspenseContextChange(workInProgress2, firstChild, renderLanes2) {
|
||
var node = firstChild;
|
||
while (node !== null) {
|
||
if (node.tag === SuspenseComponent) {
|
||
var state = node.memoizedState;
|
||
if (state !== null) {
|
||
scheduleSuspenseWorkOnFiber(node, renderLanes2, workInProgress2);
|
||
}
|
||
} else if (node.tag === SuspenseListComponent) {
|
||
scheduleSuspenseWorkOnFiber(node, renderLanes2, workInProgress2);
|
||
} else if (node.child !== null) {
|
||
node.child.return = node;
|
||
node = node.child;
|
||
continue;
|
||
}
|
||
if (node === workInProgress2) {
|
||
return;
|
||
}
|
||
while (node.sibling === null) {
|
||
if (node.return === null || node.return === workInProgress2) {
|
||
return;
|
||
}
|
||
node = node.return;
|
||
}
|
||
node.sibling.return = node.return;
|
||
node = node.sibling;
|
||
}
|
||
}
|
||
function findLastContentRow(firstChild) {
|
||
var row = firstChild;
|
||
var lastContentRow = null;
|
||
while (row !== null) {
|
||
var currentRow = row.alternate;
|
||
if (currentRow !== null && findFirstSuspended(currentRow) === null) {
|
||
lastContentRow = row;
|
||
}
|
||
row = row.sibling;
|
||
}
|
||
return lastContentRow;
|
||
}
|
||
function validateRevealOrder(revealOrder) {
|
||
{
|
||
if (revealOrder !== void 0 && revealOrder !== "forwards" && revealOrder !== "backwards" && revealOrder !== "together" && !didWarnAboutRevealOrder[revealOrder]) {
|
||
didWarnAboutRevealOrder[revealOrder] = true;
|
||
if (typeof revealOrder === "string") {
|
||
switch (revealOrder.toLowerCase()) {
|
||
case "together":
|
||
case "forwards":
|
||
case "backwards": {
|
||
error('"%s" is not a valid value for revealOrder on <SuspenseList />. Use lowercase "%s" instead.', revealOrder, revealOrder.toLowerCase());
|
||
break;
|
||
}
|
||
case "forward":
|
||
case "backward": {
|
||
error('"%s" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use "%ss" instead.', revealOrder, revealOrder.toLowerCase());
|
||
break;
|
||
}
|
||
default:
|
||
error('"%s" is not a supported revealOrder on <SuspenseList />. Did you mean "together", "forwards" or "backwards"?', revealOrder);
|
||
break;
|
||
}
|
||
} else {
|
||
error('%s is not a supported value for revealOrder on <SuspenseList />. Did you mean "together", "forwards" or "backwards"?', revealOrder);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function validateTailOptions(tailMode, revealOrder) {
|
||
{
|
||
if (tailMode !== void 0 && !didWarnAboutTailOptions[tailMode]) {
|
||
if (tailMode !== "collapsed" && tailMode !== "hidden") {
|
||
didWarnAboutTailOptions[tailMode] = true;
|
||
error('"%s" is not a supported value for tail on <SuspenseList />. Did you mean "collapsed" or "hidden"?', tailMode);
|
||
} else if (revealOrder !== "forwards" && revealOrder !== "backwards") {
|
||
didWarnAboutTailOptions[tailMode] = true;
|
||
error('<SuspenseList tail="%s" /> is only valid if revealOrder is "forwards" or "backwards". Did you mean to specify revealOrder="forwards"?', tailMode);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function validateSuspenseListNestedChild(childSlot, index2) {
|
||
{
|
||
var isAnArray = isArray(childSlot);
|
||
var isIterable = !isAnArray && typeof getIteratorFn(childSlot) === "function";
|
||
if (isAnArray || isIterable) {
|
||
var type = isAnArray ? "array" : "iterable";
|
||
error("A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>", type, index2, type);
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function validateSuspenseListChildren(children, revealOrder) {
|
||
{
|
||
if ((revealOrder === "forwards" || revealOrder === "backwards") && children !== void 0 && children !== null && children !== false) {
|
||
if (isArray(children)) {
|
||
for (var i = 0; i < children.length; i++) {
|
||
if (!validateSuspenseListNestedChild(children[i], i)) {
|
||
return;
|
||
}
|
||
}
|
||
} else {
|
||
var iteratorFn = getIteratorFn(children);
|
||
if (typeof iteratorFn === "function") {
|
||
var childrenIterator = iteratorFn.call(children);
|
||
if (childrenIterator) {
|
||
var step = childrenIterator.next();
|
||
var _i = 0;
|
||
for (; !step.done; step = childrenIterator.next()) {
|
||
if (!validateSuspenseListNestedChild(step.value, _i)) {
|
||
return;
|
||
}
|
||
_i++;
|
||
}
|
||
}
|
||
} else {
|
||
error('A single row was passed to a <SuspenseList revealOrder="%s" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?', revealOrder);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function initSuspenseListRenderState(workInProgress2, isBackwards, tail, lastContentRow, tailMode) {
|
||
var renderState = workInProgress2.memoizedState;
|
||
if (renderState === null) {
|
||
workInProgress2.memoizedState = {
|
||
isBackwards,
|
||
rendering: null,
|
||
renderingStartTime: 0,
|
||
last: lastContentRow,
|
||
tail,
|
||
tailMode
|
||
};
|
||
} else {
|
||
renderState.isBackwards = isBackwards;
|
||
renderState.rendering = null;
|
||
renderState.renderingStartTime = 0;
|
||
renderState.last = lastContentRow;
|
||
renderState.tail = tail;
|
||
renderState.tailMode = tailMode;
|
||
}
|
||
}
|
||
function updateSuspenseListComponent(current3, workInProgress2, renderLanes2) {
|
||
var nextProps = workInProgress2.pendingProps;
|
||
var revealOrder = nextProps.revealOrder;
|
||
var tailMode = nextProps.tail;
|
||
var newChildren = nextProps.children;
|
||
validateRevealOrder(revealOrder);
|
||
validateTailOptions(tailMode, revealOrder);
|
||
validateSuspenseListChildren(newChildren, revealOrder);
|
||
reconcileChildren(current3, workInProgress2, newChildren, renderLanes2);
|
||
var suspenseContext = suspenseStackCursor.current;
|
||
var shouldForceFallback = hasSuspenseContext(suspenseContext, ForceSuspenseFallback);
|
||
if (shouldForceFallback) {
|
||
suspenseContext = setShallowSuspenseContext(suspenseContext, ForceSuspenseFallback);
|
||
workInProgress2.flags |= DidCapture;
|
||
} else {
|
||
var didSuspendBefore = current3 !== null && (current3.flags & DidCapture) !== NoFlags;
|
||
if (didSuspendBefore) {
|
||
propagateSuspenseContextChange(workInProgress2, workInProgress2.child, renderLanes2);
|
||
}
|
||
suspenseContext = setDefaultShallowSuspenseContext(suspenseContext);
|
||
}
|
||
pushSuspenseContext(workInProgress2, suspenseContext);
|
||
if ((workInProgress2.mode & ConcurrentMode) === NoMode) {
|
||
workInProgress2.memoizedState = null;
|
||
} else {
|
||
switch (revealOrder) {
|
||
case "forwards": {
|
||
var lastContentRow = findLastContentRow(workInProgress2.child);
|
||
var tail;
|
||
if (lastContentRow === null) {
|
||
tail = workInProgress2.child;
|
||
workInProgress2.child = null;
|
||
} else {
|
||
tail = lastContentRow.sibling;
|
||
lastContentRow.sibling = null;
|
||
}
|
||
initSuspenseListRenderState(
|
||
workInProgress2,
|
||
false,
|
||
// isBackwards
|
||
tail,
|
||
lastContentRow,
|
||
tailMode
|
||
);
|
||
break;
|
||
}
|
||
case "backwards": {
|
||
var _tail = null;
|
||
var row = workInProgress2.child;
|
||
workInProgress2.child = null;
|
||
while (row !== null) {
|
||
var currentRow = row.alternate;
|
||
if (currentRow !== null && findFirstSuspended(currentRow) === null) {
|
||
workInProgress2.child = row;
|
||
break;
|
||
}
|
||
var nextRow = row.sibling;
|
||
row.sibling = _tail;
|
||
_tail = row;
|
||
row = nextRow;
|
||
}
|
||
initSuspenseListRenderState(
|
||
workInProgress2,
|
||
true,
|
||
// isBackwards
|
||
_tail,
|
||
null,
|
||
// last
|
||
tailMode
|
||
);
|
||
break;
|
||
}
|
||
case "together": {
|
||
initSuspenseListRenderState(
|
||
workInProgress2,
|
||
false,
|
||
// isBackwards
|
||
null,
|
||
// tail
|
||
null,
|
||
// last
|
||
void 0
|
||
);
|
||
break;
|
||
}
|
||
default: {
|
||
workInProgress2.memoizedState = null;
|
||
}
|
||
}
|
||
}
|
||
return workInProgress2.child;
|
||
}
|
||
function updatePortalComponent(current3, workInProgress2, renderLanes2) {
|
||
pushHostContainer(workInProgress2, workInProgress2.stateNode.containerInfo);
|
||
var nextChildren = workInProgress2.pendingProps;
|
||
if (current3 === null) {
|
||
workInProgress2.child = reconcileChildFibers(workInProgress2, null, nextChildren, renderLanes2);
|
||
} else {
|
||
reconcileChildren(current3, workInProgress2, nextChildren, renderLanes2);
|
||
}
|
||
return workInProgress2.child;
|
||
}
|
||
var hasWarnedAboutUsingNoValuePropOnContextProvider = false;
|
||
function updateContextProvider(current3, workInProgress2, renderLanes2) {
|
||
var providerType = workInProgress2.type;
|
||
var context = providerType._context;
|
||
var newProps = workInProgress2.pendingProps;
|
||
var oldProps = workInProgress2.memoizedProps;
|
||
var newValue = newProps.value;
|
||
{
|
||
if (!("value" in newProps)) {
|
||
if (!hasWarnedAboutUsingNoValuePropOnContextProvider) {
|
||
hasWarnedAboutUsingNoValuePropOnContextProvider = true;
|
||
error("The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?");
|
||
}
|
||
}
|
||
var providerPropTypes = workInProgress2.type.propTypes;
|
||
if (providerPropTypes) {
|
||
checkPropTypes(providerPropTypes, newProps, "prop", "Context.Provider");
|
||
}
|
||
}
|
||
pushProvider(workInProgress2, context, newValue);
|
||
{
|
||
if (oldProps !== null) {
|
||
var oldValue = oldProps.value;
|
||
if (objectIs(oldValue, newValue)) {
|
||
if (oldProps.children === newProps.children && !hasContextChanged()) {
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
}
|
||
} else {
|
||
propagateContextChange(workInProgress2, context, renderLanes2);
|
||
}
|
||
}
|
||
}
|
||
var newChildren = newProps.children;
|
||
reconcileChildren(current3, workInProgress2, newChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
var hasWarnedAboutUsingContextAsConsumer = false;
|
||
function updateContextConsumer(current3, workInProgress2, renderLanes2) {
|
||
var context = workInProgress2.type;
|
||
{
|
||
if (context._context === void 0) {
|
||
if (context !== context.Consumer) {
|
||
if (!hasWarnedAboutUsingContextAsConsumer) {
|
||
hasWarnedAboutUsingContextAsConsumer = true;
|
||
error("Rendering <Context> directly is not supported and will be removed in a future major release. Did you mean to render <Context.Consumer> instead?");
|
||
}
|
||
}
|
||
} else {
|
||
context = context._context;
|
||
}
|
||
}
|
||
var newProps = workInProgress2.pendingProps;
|
||
var render2 = newProps.children;
|
||
{
|
||
if (typeof render2 !== "function") {
|
||
error("A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it.");
|
||
}
|
||
}
|
||
prepareToReadContext(workInProgress2, renderLanes2);
|
||
var newValue = readContext(context);
|
||
{
|
||
markComponentRenderStarted(workInProgress2);
|
||
}
|
||
var newChildren;
|
||
{
|
||
ReactCurrentOwner$1.current = workInProgress2;
|
||
setIsRendering(true);
|
||
newChildren = render2(newValue);
|
||
setIsRendering(false);
|
||
}
|
||
{
|
||
markComponentRenderStopped();
|
||
}
|
||
workInProgress2.flags |= PerformedWork;
|
||
reconcileChildren(current3, workInProgress2, newChildren, renderLanes2);
|
||
return workInProgress2.child;
|
||
}
|
||
function markWorkInProgressReceivedUpdate() {
|
||
didReceiveUpdate = true;
|
||
}
|
||
function resetSuspendedCurrentOnMountInLegacyMode(current3, workInProgress2) {
|
||
if ((workInProgress2.mode & ConcurrentMode) === NoMode) {
|
||
if (current3 !== null) {
|
||
current3.alternate = null;
|
||
workInProgress2.alternate = null;
|
||
workInProgress2.flags |= Placement;
|
||
}
|
||
}
|
||
}
|
||
function bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2) {
|
||
if (current3 !== null) {
|
||
workInProgress2.dependencies = current3.dependencies;
|
||
}
|
||
{
|
||
stopProfilerTimerIfRunning();
|
||
}
|
||
markSkippedUpdateLanes(workInProgress2.lanes);
|
||
if (!includesSomeLane(renderLanes2, workInProgress2.childLanes)) {
|
||
{
|
||
return null;
|
||
}
|
||
}
|
||
cloneChildFibers(current3, workInProgress2);
|
||
return workInProgress2.child;
|
||
}
|
||
function remountFiber(current3, oldWorkInProgress, newWorkInProgress) {
|
||
{
|
||
var returnFiber = oldWorkInProgress.return;
|
||
if (returnFiber === null) {
|
||
throw new Error("Cannot swap the root fiber.");
|
||
}
|
||
current3.alternate = null;
|
||
oldWorkInProgress.alternate = null;
|
||
newWorkInProgress.index = oldWorkInProgress.index;
|
||
newWorkInProgress.sibling = oldWorkInProgress.sibling;
|
||
newWorkInProgress.return = oldWorkInProgress.return;
|
||
newWorkInProgress.ref = oldWorkInProgress.ref;
|
||
if (oldWorkInProgress === returnFiber.child) {
|
||
returnFiber.child = newWorkInProgress;
|
||
} else {
|
||
var prevSibling = returnFiber.child;
|
||
if (prevSibling === null) {
|
||
throw new Error("Expected parent to have a child.");
|
||
}
|
||
while (prevSibling.sibling !== oldWorkInProgress) {
|
||
prevSibling = prevSibling.sibling;
|
||
if (prevSibling === null) {
|
||
throw new Error("Expected to find the previous sibling.");
|
||
}
|
||
}
|
||
prevSibling.sibling = newWorkInProgress;
|
||
}
|
||
var deletions = returnFiber.deletions;
|
||
if (deletions === null) {
|
||
returnFiber.deletions = [current3];
|
||
returnFiber.flags |= ChildDeletion;
|
||
} else {
|
||
deletions.push(current3);
|
||
}
|
||
newWorkInProgress.flags |= Placement;
|
||
return newWorkInProgress;
|
||
}
|
||
}
|
||
function checkScheduledUpdateOrContext(current3, renderLanes2) {
|
||
var updateLanes = current3.lanes;
|
||
if (includesSomeLane(updateLanes, renderLanes2)) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
function attemptEarlyBailoutIfNoScheduledUpdate(current3, workInProgress2, renderLanes2) {
|
||
switch (workInProgress2.tag) {
|
||
case HostRoot:
|
||
pushHostRootContext(workInProgress2);
|
||
var root2 = workInProgress2.stateNode;
|
||
resetHydrationState();
|
||
break;
|
||
case HostComponent:
|
||
pushHostContext(workInProgress2);
|
||
break;
|
||
case ClassComponent: {
|
||
var Component2 = workInProgress2.type;
|
||
if (isContextProvider(Component2)) {
|
||
pushContextProvider(workInProgress2);
|
||
}
|
||
break;
|
||
}
|
||
case HostPortal:
|
||
pushHostContainer(workInProgress2, workInProgress2.stateNode.containerInfo);
|
||
break;
|
||
case ContextProvider: {
|
||
var newValue = workInProgress2.memoizedProps.value;
|
||
var context = workInProgress2.type._context;
|
||
pushProvider(workInProgress2, context, newValue);
|
||
break;
|
||
}
|
||
case Profiler:
|
||
{
|
||
var hasChildWork = includesSomeLane(renderLanes2, workInProgress2.childLanes);
|
||
if (hasChildWork) {
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
{
|
||
var stateNode = workInProgress2.stateNode;
|
||
stateNode.effectDuration = 0;
|
||
stateNode.passiveEffectDuration = 0;
|
||
}
|
||
}
|
||
break;
|
||
case SuspenseComponent: {
|
||
var state = workInProgress2.memoizedState;
|
||
if (state !== null) {
|
||
if (state.dehydrated !== null) {
|
||
pushSuspenseContext(workInProgress2, setDefaultShallowSuspenseContext(suspenseStackCursor.current));
|
||
workInProgress2.flags |= DidCapture;
|
||
return null;
|
||
}
|
||
var primaryChildFragment = workInProgress2.child;
|
||
var primaryChildLanes = primaryChildFragment.childLanes;
|
||
if (includesSomeLane(renderLanes2, primaryChildLanes)) {
|
||
return updateSuspenseComponent(current3, workInProgress2, renderLanes2);
|
||
} else {
|
||
pushSuspenseContext(workInProgress2, setDefaultShallowSuspenseContext(suspenseStackCursor.current));
|
||
var child = bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
if (child !== null) {
|
||
return child.sibling;
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
} else {
|
||
pushSuspenseContext(workInProgress2, setDefaultShallowSuspenseContext(suspenseStackCursor.current));
|
||
}
|
||
break;
|
||
}
|
||
case SuspenseListComponent: {
|
||
var didSuspendBefore = (current3.flags & DidCapture) !== NoFlags;
|
||
var _hasChildWork = includesSomeLane(renderLanes2, workInProgress2.childLanes);
|
||
if (didSuspendBefore) {
|
||
if (_hasChildWork) {
|
||
return updateSuspenseListComponent(current3, workInProgress2, renderLanes2);
|
||
}
|
||
workInProgress2.flags |= DidCapture;
|
||
}
|
||
var renderState = workInProgress2.memoizedState;
|
||
if (renderState !== null) {
|
||
renderState.rendering = null;
|
||
renderState.tail = null;
|
||
renderState.lastEffect = null;
|
||
}
|
||
pushSuspenseContext(workInProgress2, suspenseStackCursor.current);
|
||
if (_hasChildWork) {
|
||
break;
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
case OffscreenComponent:
|
||
case LegacyHiddenComponent: {
|
||
workInProgress2.lanes = NoLanes;
|
||
return updateOffscreenComponent(current3, workInProgress2, renderLanes2);
|
||
}
|
||
}
|
||
return bailoutOnAlreadyFinishedWork(current3, workInProgress2, renderLanes2);
|
||
}
|
||
function beginWork(current3, workInProgress2, renderLanes2) {
|
||
{
|
||
if (workInProgress2._debugNeedsRemount && current3 !== null) {
|
||
return remountFiber(current3, workInProgress2, createFiberFromTypeAndProps(workInProgress2.type, workInProgress2.key, workInProgress2.pendingProps, workInProgress2._debugOwner || null, workInProgress2.mode, workInProgress2.lanes));
|
||
}
|
||
}
|
||
if (current3 !== null) {
|
||
var oldProps = current3.memoizedProps;
|
||
var newProps = workInProgress2.pendingProps;
|
||
if (oldProps !== newProps || hasContextChanged() || // Force a re-render if the implementation changed due to hot reload:
|
||
workInProgress2.type !== current3.type) {
|
||
didReceiveUpdate = true;
|
||
} else {
|
||
var hasScheduledUpdateOrContext = checkScheduledUpdateOrContext(current3, renderLanes2);
|
||
if (!hasScheduledUpdateOrContext && // If this is the second pass of an error or suspense boundary, there
|
||
// may not be work scheduled on `current`, so we check for this flag.
|
||
(workInProgress2.flags & DidCapture) === NoFlags) {
|
||
didReceiveUpdate = false;
|
||
return attemptEarlyBailoutIfNoScheduledUpdate(current3, workInProgress2, renderLanes2);
|
||
}
|
||
if ((current3.flags & ForceUpdateForLegacySuspense) !== NoFlags) {
|
||
didReceiveUpdate = true;
|
||
} else {
|
||
didReceiveUpdate = false;
|
||
}
|
||
}
|
||
} else {
|
||
didReceiveUpdate = false;
|
||
if (getIsHydrating() && isForkedChild(workInProgress2)) {
|
||
var slotIndex = workInProgress2.index;
|
||
var numberOfForks = getForksAtLevel();
|
||
pushTreeId(workInProgress2, numberOfForks, slotIndex);
|
||
}
|
||
}
|
||
workInProgress2.lanes = NoLanes;
|
||
switch (workInProgress2.tag) {
|
||
case IndeterminateComponent: {
|
||
return mountIndeterminateComponent(current3, workInProgress2, workInProgress2.type, renderLanes2);
|
||
}
|
||
case LazyComponent: {
|
||
var elementType = workInProgress2.elementType;
|
||
return mountLazyComponent(current3, workInProgress2, elementType, renderLanes2);
|
||
}
|
||
case FunctionComponent: {
|
||
var Component2 = workInProgress2.type;
|
||
var unresolvedProps = workInProgress2.pendingProps;
|
||
var resolvedProps = workInProgress2.elementType === Component2 ? unresolvedProps : resolveDefaultProps(Component2, unresolvedProps);
|
||
return updateFunctionComponent(current3, workInProgress2, Component2, resolvedProps, renderLanes2);
|
||
}
|
||
case ClassComponent: {
|
||
var _Component = workInProgress2.type;
|
||
var _unresolvedProps = workInProgress2.pendingProps;
|
||
var _resolvedProps = workInProgress2.elementType === _Component ? _unresolvedProps : resolveDefaultProps(_Component, _unresolvedProps);
|
||
return updateClassComponent(current3, workInProgress2, _Component, _resolvedProps, renderLanes2);
|
||
}
|
||
case HostRoot:
|
||
return updateHostRoot(current3, workInProgress2, renderLanes2);
|
||
case HostComponent:
|
||
return updateHostComponent(current3, workInProgress2, renderLanes2);
|
||
case HostText:
|
||
return updateHostText(current3, workInProgress2);
|
||
case SuspenseComponent:
|
||
return updateSuspenseComponent(current3, workInProgress2, renderLanes2);
|
||
case HostPortal:
|
||
return updatePortalComponent(current3, workInProgress2, renderLanes2);
|
||
case ForwardRef: {
|
||
var type = workInProgress2.type;
|
||
var _unresolvedProps2 = workInProgress2.pendingProps;
|
||
var _resolvedProps2 = workInProgress2.elementType === type ? _unresolvedProps2 : resolveDefaultProps(type, _unresolvedProps2);
|
||
return updateForwardRef(current3, workInProgress2, type, _resolvedProps2, renderLanes2);
|
||
}
|
||
case Fragment3:
|
||
return updateFragment(current3, workInProgress2, renderLanes2);
|
||
case Mode:
|
||
return updateMode(current3, workInProgress2, renderLanes2);
|
||
case Profiler:
|
||
return updateProfiler(current3, workInProgress2, renderLanes2);
|
||
case ContextProvider:
|
||
return updateContextProvider(current3, workInProgress2, renderLanes2);
|
||
case ContextConsumer:
|
||
return updateContextConsumer(current3, workInProgress2, renderLanes2);
|
||
case MemoComponent: {
|
||
var _type2 = workInProgress2.type;
|
||
var _unresolvedProps3 = workInProgress2.pendingProps;
|
||
var _resolvedProps3 = resolveDefaultProps(_type2, _unresolvedProps3);
|
||
{
|
||
if (workInProgress2.type !== workInProgress2.elementType) {
|
||
var outerPropTypes = _type2.propTypes;
|
||
if (outerPropTypes) {
|
||
checkPropTypes(
|
||
outerPropTypes,
|
||
_resolvedProps3,
|
||
// Resolved for outer only
|
||
"prop",
|
||
getComponentNameFromType(_type2)
|
||
);
|
||
}
|
||
}
|
||
}
|
||
_resolvedProps3 = resolveDefaultProps(_type2.type, _resolvedProps3);
|
||
return updateMemoComponent(current3, workInProgress2, _type2, _resolvedProps3, renderLanes2);
|
||
}
|
||
case SimpleMemoComponent: {
|
||
return updateSimpleMemoComponent(current3, workInProgress2, workInProgress2.type, workInProgress2.pendingProps, renderLanes2);
|
||
}
|
||
case IncompleteClassComponent: {
|
||
var _Component2 = workInProgress2.type;
|
||
var _unresolvedProps4 = workInProgress2.pendingProps;
|
||
var _resolvedProps4 = workInProgress2.elementType === _Component2 ? _unresolvedProps4 : resolveDefaultProps(_Component2, _unresolvedProps4);
|
||
return mountIncompleteClassComponent(current3, workInProgress2, _Component2, _resolvedProps4, renderLanes2);
|
||
}
|
||
case SuspenseListComponent: {
|
||
return updateSuspenseListComponent(current3, workInProgress2, renderLanes2);
|
||
}
|
||
case ScopeComponent: {
|
||
break;
|
||
}
|
||
case OffscreenComponent: {
|
||
return updateOffscreenComponent(current3, workInProgress2, renderLanes2);
|
||
}
|
||
}
|
||
throw new Error("Unknown unit of work tag (" + workInProgress2.tag + "). This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
function markUpdate(workInProgress2) {
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
function markRef$1(workInProgress2) {
|
||
workInProgress2.flags |= Ref;
|
||
{
|
||
workInProgress2.flags |= RefStatic;
|
||
}
|
||
}
|
||
var appendAllChildren;
|
||
var updateHostContainer;
|
||
var updateHostComponent$1;
|
||
var updateHostText$1;
|
||
{
|
||
appendAllChildren = function(parent, workInProgress2, needsVisibilityToggle, isHidden) {
|
||
var node = workInProgress2.child;
|
||
while (node !== null) {
|
||
if (node.tag === HostComponent || node.tag === HostText) {
|
||
appendInitialChild(parent, node.stateNode);
|
||
} else if (node.tag === HostPortal)
|
||
;
|
||
else if (node.child !== null) {
|
||
node.child.return = node;
|
||
node = node.child;
|
||
continue;
|
||
}
|
||
if (node === workInProgress2) {
|
||
return;
|
||
}
|
||
while (node.sibling === null) {
|
||
if (node.return === null || node.return === workInProgress2) {
|
||
return;
|
||
}
|
||
node = node.return;
|
||
}
|
||
node.sibling.return = node.return;
|
||
node = node.sibling;
|
||
}
|
||
};
|
||
updateHostContainer = function(current3, workInProgress2) {
|
||
};
|
||
updateHostComponent$1 = function(current3, workInProgress2, type, newProps, rootContainerInstance) {
|
||
var oldProps = current3.memoizedProps;
|
||
if (oldProps === newProps) {
|
||
return;
|
||
}
|
||
var instance = workInProgress2.stateNode;
|
||
var currentHostContext = getHostContext();
|
||
var updatePayload = prepareUpdate(instance, type, oldProps, newProps, rootContainerInstance, currentHostContext);
|
||
workInProgress2.updateQueue = updatePayload;
|
||
if (updatePayload) {
|
||
markUpdate(workInProgress2);
|
||
}
|
||
};
|
||
updateHostText$1 = function(current3, workInProgress2, oldText, newText) {
|
||
if (oldText !== newText) {
|
||
markUpdate(workInProgress2);
|
||
}
|
||
};
|
||
}
|
||
function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||
if (getIsHydrating()) {
|
||
return;
|
||
}
|
||
switch (renderState.tailMode) {
|
||
case "hidden": {
|
||
var tailNode = renderState.tail;
|
||
var lastTailNode = null;
|
||
while (tailNode !== null) {
|
||
if (tailNode.alternate !== null) {
|
||
lastTailNode = tailNode;
|
||
}
|
||
tailNode = tailNode.sibling;
|
||
}
|
||
if (lastTailNode === null) {
|
||
renderState.tail = null;
|
||
} else {
|
||
lastTailNode.sibling = null;
|
||
}
|
||
break;
|
||
}
|
||
case "collapsed": {
|
||
var _tailNode = renderState.tail;
|
||
var _lastTailNode = null;
|
||
while (_tailNode !== null) {
|
||
if (_tailNode.alternate !== null) {
|
||
_lastTailNode = _tailNode;
|
||
}
|
||
_tailNode = _tailNode.sibling;
|
||
}
|
||
if (_lastTailNode === null) {
|
||
if (!hasRenderedATailFallback && renderState.tail !== null) {
|
||
renderState.tail.sibling = null;
|
||
} else {
|
||
renderState.tail = null;
|
||
}
|
||
} else {
|
||
_lastTailNode.sibling = null;
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function bubbleProperties(completedWork) {
|
||
var didBailout = completedWork.alternate !== null && completedWork.alternate.child === completedWork.child;
|
||
var newChildLanes = NoLanes;
|
||
var subtreeFlags = NoFlags;
|
||
if (!didBailout) {
|
||
if ((completedWork.mode & ProfileMode) !== NoMode) {
|
||
var actualDuration = completedWork.actualDuration;
|
||
var treeBaseDuration = completedWork.selfBaseDuration;
|
||
var child = completedWork.child;
|
||
while (child !== null) {
|
||
newChildLanes = mergeLanes(newChildLanes, mergeLanes(child.lanes, child.childLanes));
|
||
subtreeFlags |= child.subtreeFlags;
|
||
subtreeFlags |= child.flags;
|
||
actualDuration += child.actualDuration;
|
||
treeBaseDuration += child.treeBaseDuration;
|
||
child = child.sibling;
|
||
}
|
||
completedWork.actualDuration = actualDuration;
|
||
completedWork.treeBaseDuration = treeBaseDuration;
|
||
} else {
|
||
var _child = completedWork.child;
|
||
while (_child !== null) {
|
||
newChildLanes = mergeLanes(newChildLanes, mergeLanes(_child.lanes, _child.childLanes));
|
||
subtreeFlags |= _child.subtreeFlags;
|
||
subtreeFlags |= _child.flags;
|
||
_child.return = completedWork;
|
||
_child = _child.sibling;
|
||
}
|
||
}
|
||
completedWork.subtreeFlags |= subtreeFlags;
|
||
} else {
|
||
if ((completedWork.mode & ProfileMode) !== NoMode) {
|
||
var _treeBaseDuration = completedWork.selfBaseDuration;
|
||
var _child2 = completedWork.child;
|
||
while (_child2 !== null) {
|
||
newChildLanes = mergeLanes(newChildLanes, mergeLanes(_child2.lanes, _child2.childLanes));
|
||
subtreeFlags |= _child2.subtreeFlags & StaticMask;
|
||
subtreeFlags |= _child2.flags & StaticMask;
|
||
_treeBaseDuration += _child2.treeBaseDuration;
|
||
_child2 = _child2.sibling;
|
||
}
|
||
completedWork.treeBaseDuration = _treeBaseDuration;
|
||
} else {
|
||
var _child3 = completedWork.child;
|
||
while (_child3 !== null) {
|
||
newChildLanes = mergeLanes(newChildLanes, mergeLanes(_child3.lanes, _child3.childLanes));
|
||
subtreeFlags |= _child3.subtreeFlags & StaticMask;
|
||
subtreeFlags |= _child3.flags & StaticMask;
|
||
_child3.return = completedWork;
|
||
_child3 = _child3.sibling;
|
||
}
|
||
}
|
||
completedWork.subtreeFlags |= subtreeFlags;
|
||
}
|
||
completedWork.childLanes = newChildLanes;
|
||
return didBailout;
|
||
}
|
||
function completeDehydratedSuspenseBoundary(current3, workInProgress2, nextState) {
|
||
if (hasUnhydratedTailNodes() && (workInProgress2.mode & ConcurrentMode) !== NoMode && (workInProgress2.flags & DidCapture) === NoFlags) {
|
||
warnIfUnhydratedTailNodes(workInProgress2);
|
||
resetHydrationState();
|
||
workInProgress2.flags |= ForceClientRender | Incomplete | ShouldCapture;
|
||
return false;
|
||
}
|
||
var wasHydrated = popHydrationState(workInProgress2);
|
||
if (nextState !== null && nextState.dehydrated !== null) {
|
||
if (current3 === null) {
|
||
if (!wasHydrated) {
|
||
throw new Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");
|
||
}
|
||
prepareToHydrateHostSuspenseInstance(workInProgress2);
|
||
bubbleProperties(workInProgress2);
|
||
{
|
||
if ((workInProgress2.mode & ProfileMode) !== NoMode) {
|
||
var isTimedOutSuspense = nextState !== null;
|
||
if (isTimedOutSuspense) {
|
||
var primaryChildFragment = workInProgress2.child;
|
||
if (primaryChildFragment !== null) {
|
||
workInProgress2.treeBaseDuration -= primaryChildFragment.treeBaseDuration;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
} else {
|
||
resetHydrationState();
|
||
if ((workInProgress2.flags & DidCapture) === NoFlags) {
|
||
workInProgress2.memoizedState = null;
|
||
}
|
||
workInProgress2.flags |= Update;
|
||
bubbleProperties(workInProgress2);
|
||
{
|
||
if ((workInProgress2.mode & ProfileMode) !== NoMode) {
|
||
var _isTimedOutSuspense = nextState !== null;
|
||
if (_isTimedOutSuspense) {
|
||
var _primaryChildFragment = workInProgress2.child;
|
||
if (_primaryChildFragment !== null) {
|
||
workInProgress2.treeBaseDuration -= _primaryChildFragment.treeBaseDuration;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
} else {
|
||
upgradeHydrationErrorsToRecoverable();
|
||
return true;
|
||
}
|
||
}
|
||
function completeWork(current3, workInProgress2, renderLanes2) {
|
||
var newProps = workInProgress2.pendingProps;
|
||
popTreeContext(workInProgress2);
|
||
switch (workInProgress2.tag) {
|
||
case IndeterminateComponent:
|
||
case LazyComponent:
|
||
case SimpleMemoComponent:
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case Fragment3:
|
||
case Mode:
|
||
case Profiler:
|
||
case ContextConsumer:
|
||
case MemoComponent:
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
case ClassComponent: {
|
||
var Component2 = workInProgress2.type;
|
||
if (isContextProvider(Component2)) {
|
||
popContext(workInProgress2);
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
case HostRoot: {
|
||
var fiberRoot = workInProgress2.stateNode;
|
||
popHostContainer(workInProgress2);
|
||
popTopLevelContextObject(workInProgress2);
|
||
resetWorkInProgressVersions();
|
||
if (fiberRoot.pendingContext) {
|
||
fiberRoot.context = fiberRoot.pendingContext;
|
||
fiberRoot.pendingContext = null;
|
||
}
|
||
if (current3 === null || current3.child === null) {
|
||
var wasHydrated = popHydrationState(workInProgress2);
|
||
if (wasHydrated) {
|
||
markUpdate(workInProgress2);
|
||
} else {
|
||
if (current3 !== null) {
|
||
var prevState = current3.memoizedState;
|
||
if (
|
||
// Check if this is a client root
|
||
!prevState.isDehydrated || // Check if we reverted to client rendering (e.g. due to an error)
|
||
(workInProgress2.flags & ForceClientRender) !== NoFlags
|
||
) {
|
||
workInProgress2.flags |= Snapshot;
|
||
upgradeHydrationErrorsToRecoverable();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
updateHostContainer(current3, workInProgress2);
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
case HostComponent: {
|
||
popHostContext(workInProgress2);
|
||
var rootContainerInstance = getRootHostContainer();
|
||
var type = workInProgress2.type;
|
||
if (current3 !== null && workInProgress2.stateNode != null) {
|
||
updateHostComponent$1(current3, workInProgress2, type, newProps, rootContainerInstance);
|
||
if (current3.ref !== workInProgress2.ref) {
|
||
markRef$1(workInProgress2);
|
||
}
|
||
} else {
|
||
if (!newProps) {
|
||
if (workInProgress2.stateNode === null) {
|
||
throw new Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
var currentHostContext = getHostContext();
|
||
var _wasHydrated = popHydrationState(workInProgress2);
|
||
if (_wasHydrated) {
|
||
if (prepareToHydrateHostInstance(workInProgress2, rootContainerInstance, currentHostContext)) {
|
||
markUpdate(workInProgress2);
|
||
}
|
||
} else {
|
||
var instance = createInstance(type, newProps, rootContainerInstance, currentHostContext, workInProgress2);
|
||
appendAllChildren(instance, workInProgress2, false, false);
|
||
workInProgress2.stateNode = instance;
|
||
if (finalizeInitialChildren(instance, type, newProps, rootContainerInstance)) {
|
||
markUpdate(workInProgress2);
|
||
}
|
||
}
|
||
if (workInProgress2.ref !== null) {
|
||
markRef$1(workInProgress2);
|
||
}
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
case HostText: {
|
||
var newText = newProps;
|
||
if (current3 && workInProgress2.stateNode != null) {
|
||
var oldText = current3.memoizedProps;
|
||
updateHostText$1(current3, workInProgress2, oldText, newText);
|
||
} else {
|
||
if (typeof newText !== "string") {
|
||
if (workInProgress2.stateNode === null) {
|
||
throw new Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
var _rootContainerInstance = getRootHostContainer();
|
||
var _currentHostContext = getHostContext();
|
||
var _wasHydrated2 = popHydrationState(workInProgress2);
|
||
if (_wasHydrated2) {
|
||
if (prepareToHydrateHostTextInstance(workInProgress2)) {
|
||
markUpdate(workInProgress2);
|
||
}
|
||
} else {
|
||
workInProgress2.stateNode = createTextInstance(newText, _rootContainerInstance, _currentHostContext, workInProgress2);
|
||
}
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
case SuspenseComponent: {
|
||
popSuspenseContext(workInProgress2);
|
||
var nextState = workInProgress2.memoizedState;
|
||
if (current3 === null || current3.memoizedState !== null && current3.memoizedState.dehydrated !== null) {
|
||
var fallthroughToNormalSuspensePath = completeDehydratedSuspenseBoundary(current3, workInProgress2, nextState);
|
||
if (!fallthroughToNormalSuspensePath) {
|
||
if (workInProgress2.flags & ShouldCapture) {
|
||
return workInProgress2;
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
}
|
||
if ((workInProgress2.flags & DidCapture) !== NoFlags) {
|
||
workInProgress2.lanes = renderLanes2;
|
||
if ((workInProgress2.mode & ProfileMode) !== NoMode) {
|
||
transferActualDuration(workInProgress2);
|
||
}
|
||
return workInProgress2;
|
||
}
|
||
var nextDidTimeout = nextState !== null;
|
||
var prevDidTimeout = current3 !== null && current3.memoizedState !== null;
|
||
if (nextDidTimeout !== prevDidTimeout) {
|
||
if (nextDidTimeout) {
|
||
var _offscreenFiber2 = workInProgress2.child;
|
||
_offscreenFiber2.flags |= Visibility;
|
||
if ((workInProgress2.mode & ConcurrentMode) !== NoMode) {
|
||
var hasInvisibleChildContext = current3 === null && (workInProgress2.memoizedProps.unstable_avoidThisFallback !== true || !enableSuspenseAvoidThisFallback);
|
||
if (hasInvisibleChildContext || hasSuspenseContext(suspenseStackCursor.current, InvisibleParentSuspenseContext)) {
|
||
renderDidSuspend();
|
||
} else {
|
||
renderDidSuspendDelayIfPossible();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var wakeables = workInProgress2.updateQueue;
|
||
if (wakeables !== null) {
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
{
|
||
if ((workInProgress2.mode & ProfileMode) !== NoMode) {
|
||
if (nextDidTimeout) {
|
||
var primaryChildFragment = workInProgress2.child;
|
||
if (primaryChildFragment !== null) {
|
||
workInProgress2.treeBaseDuration -= primaryChildFragment.treeBaseDuration;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
case HostPortal:
|
||
popHostContainer(workInProgress2);
|
||
updateHostContainer(current3, workInProgress2);
|
||
if (current3 === null) {
|
||
preparePortalMount(workInProgress2.stateNode.containerInfo);
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
case ContextProvider:
|
||
var context = workInProgress2.type._context;
|
||
popProvider(context, workInProgress2);
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
case IncompleteClassComponent: {
|
||
var _Component = workInProgress2.type;
|
||
if (isContextProvider(_Component)) {
|
||
popContext(workInProgress2);
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
case SuspenseListComponent: {
|
||
popSuspenseContext(workInProgress2);
|
||
var renderState = workInProgress2.memoizedState;
|
||
if (renderState === null) {
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
var didSuspendAlready = (workInProgress2.flags & DidCapture) !== NoFlags;
|
||
var renderedTail = renderState.rendering;
|
||
if (renderedTail === null) {
|
||
if (!didSuspendAlready) {
|
||
var cannotBeSuspended = renderHasNotSuspendedYet() && (current3 === null || (current3.flags & DidCapture) === NoFlags);
|
||
if (!cannotBeSuspended) {
|
||
var row = workInProgress2.child;
|
||
while (row !== null) {
|
||
var suspended = findFirstSuspended(row);
|
||
if (suspended !== null) {
|
||
didSuspendAlready = true;
|
||
workInProgress2.flags |= DidCapture;
|
||
cutOffTailIfNeeded(renderState, false);
|
||
var newThenables = suspended.updateQueue;
|
||
if (newThenables !== null) {
|
||
workInProgress2.updateQueue = newThenables;
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
workInProgress2.subtreeFlags = NoFlags;
|
||
resetChildFibers(workInProgress2, renderLanes2);
|
||
pushSuspenseContext(workInProgress2, setShallowSuspenseContext(suspenseStackCursor.current, ForceSuspenseFallback));
|
||
return workInProgress2.child;
|
||
}
|
||
row = row.sibling;
|
||
}
|
||
}
|
||
if (renderState.tail !== null && now() > getRenderTargetTime()) {
|
||
workInProgress2.flags |= DidCapture;
|
||
didSuspendAlready = true;
|
||
cutOffTailIfNeeded(renderState, false);
|
||
workInProgress2.lanes = SomeRetryLane;
|
||
}
|
||
} else {
|
||
cutOffTailIfNeeded(renderState, false);
|
||
}
|
||
} else {
|
||
if (!didSuspendAlready) {
|
||
var _suspended = findFirstSuspended(renderedTail);
|
||
if (_suspended !== null) {
|
||
workInProgress2.flags |= DidCapture;
|
||
didSuspendAlready = true;
|
||
var _newThenables = _suspended.updateQueue;
|
||
if (_newThenables !== null) {
|
||
workInProgress2.updateQueue = _newThenables;
|
||
workInProgress2.flags |= Update;
|
||
}
|
||
cutOffTailIfNeeded(renderState, true);
|
||
if (renderState.tail === null && renderState.tailMode === "hidden" && !renderedTail.alternate && !getIsHydrating()) {
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
} else if (
|
||
// The time it took to render last row is greater than the remaining
|
||
// time we have to render. So rendering one more row would likely
|
||
// exceed it.
|
||
now() * 2 - renderState.renderingStartTime > getRenderTargetTime() && renderLanes2 !== OffscreenLane
|
||
) {
|
||
workInProgress2.flags |= DidCapture;
|
||
didSuspendAlready = true;
|
||
cutOffTailIfNeeded(renderState, false);
|
||
workInProgress2.lanes = SomeRetryLane;
|
||
}
|
||
}
|
||
if (renderState.isBackwards) {
|
||
renderedTail.sibling = workInProgress2.child;
|
||
workInProgress2.child = renderedTail;
|
||
} else {
|
||
var previousSibling = renderState.last;
|
||
if (previousSibling !== null) {
|
||
previousSibling.sibling = renderedTail;
|
||
} else {
|
||
workInProgress2.child = renderedTail;
|
||
}
|
||
renderState.last = renderedTail;
|
||
}
|
||
}
|
||
if (renderState.tail !== null) {
|
||
var next = renderState.tail;
|
||
renderState.rendering = next;
|
||
renderState.tail = next.sibling;
|
||
renderState.renderingStartTime = now();
|
||
next.sibling = null;
|
||
var suspenseContext = suspenseStackCursor.current;
|
||
if (didSuspendAlready) {
|
||
suspenseContext = setShallowSuspenseContext(suspenseContext, ForceSuspenseFallback);
|
||
} else {
|
||
suspenseContext = setDefaultShallowSuspenseContext(suspenseContext);
|
||
}
|
||
pushSuspenseContext(workInProgress2, suspenseContext);
|
||
return next;
|
||
}
|
||
bubbleProperties(workInProgress2);
|
||
return null;
|
||
}
|
||
case ScopeComponent: {
|
||
break;
|
||
}
|
||
case OffscreenComponent:
|
||
case LegacyHiddenComponent: {
|
||
popRenderLanes(workInProgress2);
|
||
var _nextState = workInProgress2.memoizedState;
|
||
var nextIsHidden = _nextState !== null;
|
||
if (current3 !== null) {
|
||
var _prevState = current3.memoizedState;
|
||
var prevIsHidden = _prevState !== null;
|
||
if (prevIsHidden !== nextIsHidden && // LegacyHidden doesn't do any hiding — it only pre-renders.
|
||
!enableLegacyHidden) {
|
||
workInProgress2.flags |= Visibility;
|
||
}
|
||
}
|
||
if (!nextIsHidden || (workInProgress2.mode & ConcurrentMode) === NoMode) {
|
||
bubbleProperties(workInProgress2);
|
||
} else {
|
||
if (includesSomeLane(subtreeRenderLanes, OffscreenLane)) {
|
||
bubbleProperties(workInProgress2);
|
||
{
|
||
if (workInProgress2.subtreeFlags & (Placement | Update)) {
|
||
workInProgress2.flags |= Visibility;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
case CacheComponent: {
|
||
return null;
|
||
}
|
||
case TracingMarkerComponent: {
|
||
return null;
|
||
}
|
||
}
|
||
throw new Error("Unknown unit of work tag (" + workInProgress2.tag + "). This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
function unwindWork(current3, workInProgress2, renderLanes2) {
|
||
popTreeContext(workInProgress2);
|
||
switch (workInProgress2.tag) {
|
||
case ClassComponent: {
|
||
var Component2 = workInProgress2.type;
|
||
if (isContextProvider(Component2)) {
|
||
popContext(workInProgress2);
|
||
}
|
||
var flags = workInProgress2.flags;
|
||
if (flags & ShouldCapture) {
|
||
workInProgress2.flags = flags & ~ShouldCapture | DidCapture;
|
||
if ((workInProgress2.mode & ProfileMode) !== NoMode) {
|
||
transferActualDuration(workInProgress2);
|
||
}
|
||
return workInProgress2;
|
||
}
|
||
return null;
|
||
}
|
||
case HostRoot: {
|
||
var root2 = workInProgress2.stateNode;
|
||
popHostContainer(workInProgress2);
|
||
popTopLevelContextObject(workInProgress2);
|
||
resetWorkInProgressVersions();
|
||
var _flags = workInProgress2.flags;
|
||
if ((_flags & ShouldCapture) !== NoFlags && (_flags & DidCapture) === NoFlags) {
|
||
workInProgress2.flags = _flags & ~ShouldCapture | DidCapture;
|
||
return workInProgress2;
|
||
}
|
||
return null;
|
||
}
|
||
case HostComponent: {
|
||
popHostContext(workInProgress2);
|
||
return null;
|
||
}
|
||
case SuspenseComponent: {
|
||
popSuspenseContext(workInProgress2);
|
||
var suspenseState = workInProgress2.memoizedState;
|
||
if (suspenseState !== null && suspenseState.dehydrated !== null) {
|
||
if (workInProgress2.alternate === null) {
|
||
throw new Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");
|
||
}
|
||
resetHydrationState();
|
||
}
|
||
var _flags2 = workInProgress2.flags;
|
||
if (_flags2 & ShouldCapture) {
|
||
workInProgress2.flags = _flags2 & ~ShouldCapture | DidCapture;
|
||
if ((workInProgress2.mode & ProfileMode) !== NoMode) {
|
||
transferActualDuration(workInProgress2);
|
||
}
|
||
return workInProgress2;
|
||
}
|
||
return null;
|
||
}
|
||
case SuspenseListComponent: {
|
||
popSuspenseContext(workInProgress2);
|
||
return null;
|
||
}
|
||
case HostPortal:
|
||
popHostContainer(workInProgress2);
|
||
return null;
|
||
case ContextProvider:
|
||
var context = workInProgress2.type._context;
|
||
popProvider(context, workInProgress2);
|
||
return null;
|
||
case OffscreenComponent:
|
||
case LegacyHiddenComponent:
|
||
popRenderLanes(workInProgress2);
|
||
return null;
|
||
case CacheComponent:
|
||
return null;
|
||
default:
|
||
return null;
|
||
}
|
||
}
|
||
function unwindInterruptedWork(current3, interruptedWork, renderLanes2) {
|
||
popTreeContext(interruptedWork);
|
||
switch (interruptedWork.tag) {
|
||
case ClassComponent: {
|
||
var childContextTypes = interruptedWork.type.childContextTypes;
|
||
if (childContextTypes !== null && childContextTypes !== void 0) {
|
||
popContext(interruptedWork);
|
||
}
|
||
break;
|
||
}
|
||
case HostRoot: {
|
||
var root2 = interruptedWork.stateNode;
|
||
popHostContainer(interruptedWork);
|
||
popTopLevelContextObject(interruptedWork);
|
||
resetWorkInProgressVersions();
|
||
break;
|
||
}
|
||
case HostComponent: {
|
||
popHostContext(interruptedWork);
|
||
break;
|
||
}
|
||
case HostPortal:
|
||
popHostContainer(interruptedWork);
|
||
break;
|
||
case SuspenseComponent:
|
||
popSuspenseContext(interruptedWork);
|
||
break;
|
||
case SuspenseListComponent:
|
||
popSuspenseContext(interruptedWork);
|
||
break;
|
||
case ContextProvider:
|
||
var context = interruptedWork.type._context;
|
||
popProvider(context, interruptedWork);
|
||
break;
|
||
case OffscreenComponent:
|
||
case LegacyHiddenComponent:
|
||
popRenderLanes(interruptedWork);
|
||
break;
|
||
}
|
||
}
|
||
var didWarnAboutUndefinedSnapshotBeforeUpdate = null;
|
||
{
|
||
didWarnAboutUndefinedSnapshotBeforeUpdate = /* @__PURE__ */ new Set();
|
||
}
|
||
var offscreenSubtreeIsHidden = false;
|
||
var offscreenSubtreeWasHidden = false;
|
||
var PossiblyWeakSet = typeof WeakSet === "function" ? WeakSet : Set;
|
||
var nextEffect = null;
|
||
var inProgressLanes = null;
|
||
var inProgressRoot = null;
|
||
function reportUncaughtErrorInDEV(error2) {
|
||
{
|
||
invokeGuardedCallback(null, function() {
|
||
throw error2;
|
||
});
|
||
clearCaughtError();
|
||
}
|
||
}
|
||
var callComponentWillUnmountWithTimer = function(current3, instance) {
|
||
instance.props = current3.memoizedProps;
|
||
instance.state = current3.memoizedState;
|
||
if (current3.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
instance.componentWillUnmount();
|
||
} finally {
|
||
recordLayoutEffectDuration(current3);
|
||
}
|
||
} else {
|
||
instance.componentWillUnmount();
|
||
}
|
||
};
|
||
function safelyCallCommitHookLayoutEffectListMount(current3, nearestMountedAncestor) {
|
||
try {
|
||
commitHookEffectListMount(Layout, current3);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(current3, nearestMountedAncestor, error2);
|
||
}
|
||
}
|
||
function safelyCallComponentWillUnmount(current3, nearestMountedAncestor, instance) {
|
||
try {
|
||
callComponentWillUnmountWithTimer(current3, instance);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(current3, nearestMountedAncestor, error2);
|
||
}
|
||
}
|
||
function safelyCallComponentDidMount(current3, nearestMountedAncestor, instance) {
|
||
try {
|
||
instance.componentDidMount();
|
||
} catch (error2) {
|
||
captureCommitPhaseError(current3, nearestMountedAncestor, error2);
|
||
}
|
||
}
|
||
function safelyAttachRef(current3, nearestMountedAncestor) {
|
||
try {
|
||
commitAttachRef(current3);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(current3, nearestMountedAncestor, error2);
|
||
}
|
||
}
|
||
function safelyDetachRef(current3, nearestMountedAncestor) {
|
||
var ref = current3.ref;
|
||
if (ref !== null) {
|
||
if (typeof ref === "function") {
|
||
var retVal;
|
||
try {
|
||
if (enableProfilerTimer && enableProfilerCommitHooks && current3.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
retVal = ref(null);
|
||
} finally {
|
||
recordLayoutEffectDuration(current3);
|
||
}
|
||
} else {
|
||
retVal = ref(null);
|
||
}
|
||
} catch (error2) {
|
||
captureCommitPhaseError(current3, nearestMountedAncestor, error2);
|
||
}
|
||
{
|
||
if (typeof retVal === "function") {
|
||
error("Unexpected return value from a callback ref in %s. A callback ref should not return a function.", getComponentNameFromFiber(current3));
|
||
}
|
||
}
|
||
} else {
|
||
ref.current = null;
|
||
}
|
||
}
|
||
}
|
||
function safelyCallDestroy(current3, nearestMountedAncestor, destroy) {
|
||
try {
|
||
destroy();
|
||
} catch (error2) {
|
||
captureCommitPhaseError(current3, nearestMountedAncestor, error2);
|
||
}
|
||
}
|
||
var focusedInstanceHandle = null;
|
||
var shouldFireAfterActiveInstanceBlur = false;
|
||
function commitBeforeMutationEffects(root2, firstChild) {
|
||
focusedInstanceHandle = prepareForCommit(root2.containerInfo);
|
||
nextEffect = firstChild;
|
||
commitBeforeMutationEffects_begin();
|
||
var shouldFire = shouldFireAfterActiveInstanceBlur;
|
||
shouldFireAfterActiveInstanceBlur = false;
|
||
focusedInstanceHandle = null;
|
||
return shouldFire;
|
||
}
|
||
function commitBeforeMutationEffects_begin() {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
var child = fiber.child;
|
||
if ((fiber.subtreeFlags & BeforeMutationMask) !== NoFlags && child !== null) {
|
||
child.return = fiber;
|
||
nextEffect = child;
|
||
} else {
|
||
commitBeforeMutationEffects_complete();
|
||
}
|
||
}
|
||
}
|
||
function commitBeforeMutationEffects_complete() {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
setCurrentFiber(fiber);
|
||
try {
|
||
commitBeforeMutationEffectsOnFiber(fiber);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
resetCurrentFiber();
|
||
var sibling = fiber.sibling;
|
||
if (sibling !== null) {
|
||
sibling.return = fiber.return;
|
||
nextEffect = sibling;
|
||
return;
|
||
}
|
||
nextEffect = fiber.return;
|
||
}
|
||
}
|
||
function commitBeforeMutationEffectsOnFiber(finishedWork) {
|
||
var current3 = finishedWork.alternate;
|
||
var flags = finishedWork.flags;
|
||
if ((flags & Snapshot) !== NoFlags) {
|
||
setCurrentFiber(finishedWork);
|
||
switch (finishedWork.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
break;
|
||
}
|
||
case ClassComponent: {
|
||
if (current3 !== null) {
|
||
var prevProps = current3.memoizedProps;
|
||
var prevState = current3.memoizedState;
|
||
var instance = finishedWork.stateNode;
|
||
{
|
||
if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
|
||
if (instance.props !== finishedWork.memoizedProps) {
|
||
error("Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
if (instance.state !== finishedWork.memoizedState) {
|
||
error("Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
}
|
||
}
|
||
var snapshot = instance.getSnapshotBeforeUpdate(finishedWork.elementType === finishedWork.type ? prevProps : resolveDefaultProps(finishedWork.type, prevProps), prevState);
|
||
{
|
||
var didWarnSet = didWarnAboutUndefinedSnapshotBeforeUpdate;
|
||
if (snapshot === void 0 && !didWarnSet.has(finishedWork.type)) {
|
||
didWarnSet.add(finishedWork.type);
|
||
error("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.", getComponentNameFromFiber(finishedWork));
|
||
}
|
||
}
|
||
instance.__reactInternalSnapshotBeforeUpdate = snapshot;
|
||
}
|
||
break;
|
||
}
|
||
case HostRoot: {
|
||
{
|
||
var root2 = finishedWork.stateNode;
|
||
clearContainer(root2.containerInfo);
|
||
}
|
||
break;
|
||
}
|
||
case HostComponent:
|
||
case HostText:
|
||
case HostPortal:
|
||
case IncompleteClassComponent:
|
||
break;
|
||
default: {
|
||
throw new Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
resetCurrentFiber();
|
||
}
|
||
}
|
||
function commitHookEffectListUnmount(flags, finishedWork, nearestMountedAncestor) {
|
||
var updateQueue = finishedWork.updateQueue;
|
||
var lastEffect = updateQueue !== null ? updateQueue.lastEffect : null;
|
||
if (lastEffect !== null) {
|
||
var firstEffect = lastEffect.next;
|
||
var effect = firstEffect;
|
||
do {
|
||
if ((effect.tag & flags) === flags) {
|
||
var destroy = effect.destroy;
|
||
effect.destroy = void 0;
|
||
if (destroy !== void 0) {
|
||
{
|
||
if ((flags & Passive$1) !== NoFlags$1) {
|
||
markComponentPassiveEffectUnmountStarted(finishedWork);
|
||
} else if ((flags & Layout) !== NoFlags$1) {
|
||
markComponentLayoutEffectUnmountStarted(finishedWork);
|
||
}
|
||
}
|
||
{
|
||
if ((flags & Insertion) !== NoFlags$1) {
|
||
setIsRunningInsertionEffect(true);
|
||
}
|
||
}
|
||
safelyCallDestroy(finishedWork, nearestMountedAncestor, destroy);
|
||
{
|
||
if ((flags & Insertion) !== NoFlags$1) {
|
||
setIsRunningInsertionEffect(false);
|
||
}
|
||
}
|
||
{
|
||
if ((flags & Passive$1) !== NoFlags$1) {
|
||
markComponentPassiveEffectUnmountStopped();
|
||
} else if ((flags & Layout) !== NoFlags$1) {
|
||
markComponentLayoutEffectUnmountStopped();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
effect = effect.next;
|
||
} while (effect !== firstEffect);
|
||
}
|
||
}
|
||
function commitHookEffectListMount(flags, finishedWork) {
|
||
var updateQueue = finishedWork.updateQueue;
|
||
var lastEffect = updateQueue !== null ? updateQueue.lastEffect : null;
|
||
if (lastEffect !== null) {
|
||
var firstEffect = lastEffect.next;
|
||
var effect = firstEffect;
|
||
do {
|
||
if ((effect.tag & flags) === flags) {
|
||
{
|
||
if ((flags & Passive$1) !== NoFlags$1) {
|
||
markComponentPassiveEffectMountStarted(finishedWork);
|
||
} else if ((flags & Layout) !== NoFlags$1) {
|
||
markComponentLayoutEffectMountStarted(finishedWork);
|
||
}
|
||
}
|
||
var create2 = effect.create;
|
||
{
|
||
if ((flags & Insertion) !== NoFlags$1) {
|
||
setIsRunningInsertionEffect(true);
|
||
}
|
||
}
|
||
effect.destroy = create2();
|
||
{
|
||
if ((flags & Insertion) !== NoFlags$1) {
|
||
setIsRunningInsertionEffect(false);
|
||
}
|
||
}
|
||
{
|
||
if ((flags & Passive$1) !== NoFlags$1) {
|
||
markComponentPassiveEffectMountStopped();
|
||
} else if ((flags & Layout) !== NoFlags$1) {
|
||
markComponentLayoutEffectMountStopped();
|
||
}
|
||
}
|
||
{
|
||
var destroy = effect.destroy;
|
||
if (destroy !== void 0 && typeof destroy !== "function") {
|
||
var hookName = void 0;
|
||
if ((effect.tag & Layout) !== NoFlags) {
|
||
hookName = "useLayoutEffect";
|
||
} else if ((effect.tag & Insertion) !== NoFlags) {
|
||
hookName = "useInsertionEffect";
|
||
} else {
|
||
hookName = "useEffect";
|
||
}
|
||
var addendum = void 0;
|
||
if (destroy === null) {
|
||
addendum = " You returned null. If your effect does not require clean up, return undefined (or nothing).";
|
||
} else if (typeof destroy.then === "function") {
|
||
addendum = "\n\nIt looks like you wrote " + hookName + "(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:\n\n" + hookName + "(() => {\n async function fetchData() {\n // You can await here\n const response = await MyAPI.getData(someId);\n // ...\n }\n fetchData();\n}, [someId]); // Or [] if effect doesn't need props or state\n\nLearn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-fetching";
|
||
} else {
|
||
addendum = " You returned: " + destroy;
|
||
}
|
||
error("%s must not return anything besides a function, which is used for clean-up.%s", hookName, addendum);
|
||
}
|
||
}
|
||
}
|
||
effect = effect.next;
|
||
} while (effect !== firstEffect);
|
||
}
|
||
}
|
||
function commitPassiveEffectDurations(finishedRoot, finishedWork) {
|
||
{
|
||
if ((finishedWork.flags & Update) !== NoFlags) {
|
||
switch (finishedWork.tag) {
|
||
case Profiler: {
|
||
var passiveEffectDuration = finishedWork.stateNode.passiveEffectDuration;
|
||
var _finishedWork$memoize = finishedWork.memoizedProps, id = _finishedWork$memoize.id, onPostCommit = _finishedWork$memoize.onPostCommit;
|
||
var commitTime2 = getCommitTime();
|
||
var phase = finishedWork.alternate === null ? "mount" : "update";
|
||
{
|
||
if (isCurrentUpdateNested()) {
|
||
phase = "nested-update";
|
||
}
|
||
}
|
||
if (typeof onPostCommit === "function") {
|
||
onPostCommit(id, phase, passiveEffectDuration, commitTime2);
|
||
}
|
||
var parentFiber = finishedWork.return;
|
||
outer:
|
||
while (parentFiber !== null) {
|
||
switch (parentFiber.tag) {
|
||
case HostRoot:
|
||
var root2 = parentFiber.stateNode;
|
||
root2.passiveEffectDuration += passiveEffectDuration;
|
||
break outer;
|
||
case Profiler:
|
||
var parentStateNode = parentFiber.stateNode;
|
||
parentStateNode.passiveEffectDuration += passiveEffectDuration;
|
||
break outer;
|
||
}
|
||
parentFiber = parentFiber.return;
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function commitLayoutEffectOnFiber(finishedRoot, current3, finishedWork, committedLanes) {
|
||
if ((finishedWork.flags & LayoutMask) !== NoFlags) {
|
||
switch (finishedWork.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
if (!offscreenSubtreeWasHidden) {
|
||
if (finishedWork.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
commitHookEffectListMount(Layout | HasEffect, finishedWork);
|
||
} finally {
|
||
recordLayoutEffectDuration(finishedWork);
|
||
}
|
||
} else {
|
||
commitHookEffectListMount(Layout | HasEffect, finishedWork);
|
||
}
|
||
}
|
||
break;
|
||
}
|
||
case ClassComponent: {
|
||
var instance = finishedWork.stateNode;
|
||
if (finishedWork.flags & Update) {
|
||
if (!offscreenSubtreeWasHidden) {
|
||
if (current3 === null) {
|
||
{
|
||
if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
|
||
if (instance.props !== finishedWork.memoizedProps) {
|
||
error("Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
if (instance.state !== finishedWork.memoizedState) {
|
||
error("Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
}
|
||
}
|
||
if (finishedWork.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
instance.componentDidMount();
|
||
} finally {
|
||
recordLayoutEffectDuration(finishedWork);
|
||
}
|
||
} else {
|
||
instance.componentDidMount();
|
||
}
|
||
} else {
|
||
var prevProps = finishedWork.elementType === finishedWork.type ? current3.memoizedProps : resolveDefaultProps(finishedWork.type, current3.memoizedProps);
|
||
var prevState = current3.memoizedState;
|
||
{
|
||
if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
|
||
if (instance.props !== finishedWork.memoizedProps) {
|
||
error("Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
if (instance.state !== finishedWork.memoizedState) {
|
||
error("Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
}
|
||
}
|
||
if (finishedWork.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
instance.componentDidUpdate(prevProps, prevState, instance.__reactInternalSnapshotBeforeUpdate);
|
||
} finally {
|
||
recordLayoutEffectDuration(finishedWork);
|
||
}
|
||
} else {
|
||
instance.componentDidUpdate(prevProps, prevState, instance.__reactInternalSnapshotBeforeUpdate);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var updateQueue = finishedWork.updateQueue;
|
||
if (updateQueue !== null) {
|
||
{
|
||
if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
|
||
if (instance.props !== finishedWork.memoizedProps) {
|
||
error("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
if (instance.state !== finishedWork.memoizedState) {
|
||
error("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
|
||
}
|
||
}
|
||
}
|
||
commitUpdateQueue(finishedWork, updateQueue, instance);
|
||
}
|
||
break;
|
||
}
|
||
case HostRoot: {
|
||
var _updateQueue = finishedWork.updateQueue;
|
||
if (_updateQueue !== null) {
|
||
var _instance = null;
|
||
if (finishedWork.child !== null) {
|
||
switch (finishedWork.child.tag) {
|
||
case HostComponent:
|
||
_instance = getPublicInstance(finishedWork.child.stateNode);
|
||
break;
|
||
case ClassComponent:
|
||
_instance = finishedWork.child.stateNode;
|
||
break;
|
||
}
|
||
}
|
||
commitUpdateQueue(finishedWork, _updateQueue, _instance);
|
||
}
|
||
break;
|
||
}
|
||
case HostComponent: {
|
||
var _instance2 = finishedWork.stateNode;
|
||
if (current3 === null && finishedWork.flags & Update) {
|
||
var type = finishedWork.type;
|
||
var props = finishedWork.memoizedProps;
|
||
commitMount(_instance2, type, props);
|
||
}
|
||
break;
|
||
}
|
||
case HostText: {
|
||
break;
|
||
}
|
||
case HostPortal: {
|
||
break;
|
||
}
|
||
case Profiler: {
|
||
{
|
||
var _finishedWork$memoize2 = finishedWork.memoizedProps, onCommit = _finishedWork$memoize2.onCommit, onRender = _finishedWork$memoize2.onRender;
|
||
var effectDuration = finishedWork.stateNode.effectDuration;
|
||
var commitTime2 = getCommitTime();
|
||
var phase = current3 === null ? "mount" : "update";
|
||
{
|
||
if (isCurrentUpdateNested()) {
|
||
phase = "nested-update";
|
||
}
|
||
}
|
||
if (typeof onRender === "function") {
|
||
onRender(finishedWork.memoizedProps.id, phase, finishedWork.actualDuration, finishedWork.treeBaseDuration, finishedWork.actualStartTime, commitTime2);
|
||
}
|
||
{
|
||
if (typeof onCommit === "function") {
|
||
onCommit(finishedWork.memoizedProps.id, phase, effectDuration, commitTime2);
|
||
}
|
||
enqueuePendingPassiveProfilerEffect(finishedWork);
|
||
var parentFiber = finishedWork.return;
|
||
outer:
|
||
while (parentFiber !== null) {
|
||
switch (parentFiber.tag) {
|
||
case HostRoot:
|
||
var root2 = parentFiber.stateNode;
|
||
root2.effectDuration += effectDuration;
|
||
break outer;
|
||
case Profiler:
|
||
var parentStateNode = parentFiber.stateNode;
|
||
parentStateNode.effectDuration += effectDuration;
|
||
break outer;
|
||
}
|
||
parentFiber = parentFiber.return;
|
||
}
|
||
}
|
||
}
|
||
break;
|
||
}
|
||
case SuspenseComponent: {
|
||
commitSuspenseHydrationCallbacks(finishedRoot, finishedWork);
|
||
break;
|
||
}
|
||
case SuspenseListComponent:
|
||
case IncompleteClassComponent:
|
||
case ScopeComponent:
|
||
case OffscreenComponent:
|
||
case LegacyHiddenComponent:
|
||
case TracingMarkerComponent: {
|
||
break;
|
||
}
|
||
default:
|
||
throw new Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
if (!offscreenSubtreeWasHidden) {
|
||
{
|
||
if (finishedWork.flags & Ref) {
|
||
commitAttachRef(finishedWork);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function reappearLayoutEffectsOnFiber(node) {
|
||
switch (node.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
if (node.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
safelyCallCommitHookLayoutEffectListMount(node, node.return);
|
||
} finally {
|
||
recordLayoutEffectDuration(node);
|
||
}
|
||
} else {
|
||
safelyCallCommitHookLayoutEffectListMount(node, node.return);
|
||
}
|
||
break;
|
||
}
|
||
case ClassComponent: {
|
||
var instance = node.stateNode;
|
||
if (typeof instance.componentDidMount === "function") {
|
||
safelyCallComponentDidMount(node, node.return, instance);
|
||
}
|
||
safelyAttachRef(node, node.return);
|
||
break;
|
||
}
|
||
case HostComponent: {
|
||
safelyAttachRef(node, node.return);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function hideOrUnhideAllChildren(finishedWork, isHidden) {
|
||
var hostSubtreeRoot = null;
|
||
{
|
||
var node = finishedWork;
|
||
while (true) {
|
||
if (node.tag === HostComponent) {
|
||
if (hostSubtreeRoot === null) {
|
||
hostSubtreeRoot = node;
|
||
try {
|
||
var instance = node.stateNode;
|
||
if (isHidden) {
|
||
hideInstance(instance);
|
||
} else {
|
||
unhideInstance(node.stateNode, node.memoizedProps);
|
||
}
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
}
|
||
} else if (node.tag === HostText) {
|
||
if (hostSubtreeRoot === null) {
|
||
try {
|
||
var _instance3 = node.stateNode;
|
||
if (isHidden) {
|
||
hideTextInstance(_instance3);
|
||
} else {
|
||
unhideTextInstance(_instance3, node.memoizedProps);
|
||
}
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
}
|
||
} else if ((node.tag === OffscreenComponent || node.tag === LegacyHiddenComponent) && node.memoizedState !== null && node !== finishedWork)
|
||
;
|
||
else if (node.child !== null) {
|
||
node.child.return = node;
|
||
node = node.child;
|
||
continue;
|
||
}
|
||
if (node === finishedWork) {
|
||
return;
|
||
}
|
||
while (node.sibling === null) {
|
||
if (node.return === null || node.return === finishedWork) {
|
||
return;
|
||
}
|
||
if (hostSubtreeRoot === node) {
|
||
hostSubtreeRoot = null;
|
||
}
|
||
node = node.return;
|
||
}
|
||
if (hostSubtreeRoot === node) {
|
||
hostSubtreeRoot = null;
|
||
}
|
||
node.sibling.return = node.return;
|
||
node = node.sibling;
|
||
}
|
||
}
|
||
}
|
||
function commitAttachRef(finishedWork) {
|
||
var ref = finishedWork.ref;
|
||
if (ref !== null) {
|
||
var instance = finishedWork.stateNode;
|
||
var instanceToUse;
|
||
switch (finishedWork.tag) {
|
||
case HostComponent:
|
||
instanceToUse = getPublicInstance(instance);
|
||
break;
|
||
default:
|
||
instanceToUse = instance;
|
||
}
|
||
if (typeof ref === "function") {
|
||
var retVal;
|
||
if (finishedWork.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
retVal = ref(instanceToUse);
|
||
} finally {
|
||
recordLayoutEffectDuration(finishedWork);
|
||
}
|
||
} else {
|
||
retVal = ref(instanceToUse);
|
||
}
|
||
{
|
||
if (typeof retVal === "function") {
|
||
error("Unexpected return value from a callback ref in %s. A callback ref should not return a function.", getComponentNameFromFiber(finishedWork));
|
||
}
|
||
}
|
||
} else {
|
||
{
|
||
if (!ref.hasOwnProperty("current")) {
|
||
error("Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().", getComponentNameFromFiber(finishedWork));
|
||
}
|
||
}
|
||
ref.current = instanceToUse;
|
||
}
|
||
}
|
||
}
|
||
function detachFiberMutation(fiber) {
|
||
var alternate = fiber.alternate;
|
||
if (alternate !== null) {
|
||
alternate.return = null;
|
||
}
|
||
fiber.return = null;
|
||
}
|
||
function detachFiberAfterEffects(fiber) {
|
||
var alternate = fiber.alternate;
|
||
if (alternate !== null) {
|
||
fiber.alternate = null;
|
||
detachFiberAfterEffects(alternate);
|
||
}
|
||
{
|
||
fiber.child = null;
|
||
fiber.deletions = null;
|
||
fiber.sibling = null;
|
||
if (fiber.tag === HostComponent) {
|
||
var hostInstance = fiber.stateNode;
|
||
if (hostInstance !== null) {
|
||
detachDeletedInstance(hostInstance);
|
||
}
|
||
}
|
||
fiber.stateNode = null;
|
||
{
|
||
fiber._debugOwner = null;
|
||
}
|
||
{
|
||
fiber.return = null;
|
||
fiber.dependencies = null;
|
||
fiber.memoizedProps = null;
|
||
fiber.memoizedState = null;
|
||
fiber.pendingProps = null;
|
||
fiber.stateNode = null;
|
||
fiber.updateQueue = null;
|
||
}
|
||
}
|
||
}
|
||
function getHostParentFiber(fiber) {
|
||
var parent = fiber.return;
|
||
while (parent !== null) {
|
||
if (isHostParent(parent)) {
|
||
return parent;
|
||
}
|
||
parent = parent.return;
|
||
}
|
||
throw new Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
function isHostParent(fiber) {
|
||
return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal;
|
||
}
|
||
function getHostSibling(fiber) {
|
||
var node = fiber;
|
||
siblings:
|
||
while (true) {
|
||
while (node.sibling === null) {
|
||
if (node.return === null || isHostParent(node.return)) {
|
||
return null;
|
||
}
|
||
node = node.return;
|
||
}
|
||
node.sibling.return = node.return;
|
||
node = node.sibling;
|
||
while (node.tag !== HostComponent && node.tag !== HostText && node.tag !== DehydratedFragment) {
|
||
if (node.flags & Placement) {
|
||
continue siblings;
|
||
}
|
||
if (node.child === null || node.tag === HostPortal) {
|
||
continue siblings;
|
||
} else {
|
||
node.child.return = node;
|
||
node = node.child;
|
||
}
|
||
}
|
||
if (!(node.flags & Placement)) {
|
||
return node.stateNode;
|
||
}
|
||
}
|
||
}
|
||
function commitPlacement(finishedWork) {
|
||
var parentFiber = getHostParentFiber(finishedWork);
|
||
switch (parentFiber.tag) {
|
||
case HostComponent: {
|
||
var parent = parentFiber.stateNode;
|
||
if (parentFiber.flags & ContentReset) {
|
||
resetTextContent(parent);
|
||
parentFiber.flags &= ~ContentReset;
|
||
}
|
||
var before = getHostSibling(finishedWork);
|
||
insertOrAppendPlacementNode(finishedWork, before, parent);
|
||
break;
|
||
}
|
||
case HostRoot:
|
||
case HostPortal: {
|
||
var _parent = parentFiber.stateNode.containerInfo;
|
||
var _before = getHostSibling(finishedWork);
|
||
insertOrAppendPlacementNodeIntoContainer(finishedWork, _before, _parent);
|
||
break;
|
||
}
|
||
default:
|
||
throw new Error("Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
function insertOrAppendPlacementNodeIntoContainer(node, before, parent) {
|
||
var tag = node.tag;
|
||
var isHost = tag === HostComponent || tag === HostText;
|
||
if (isHost) {
|
||
var stateNode = node.stateNode;
|
||
if (before) {
|
||
insertInContainerBefore(parent, stateNode, before);
|
||
} else {
|
||
appendChildToContainer(parent, stateNode);
|
||
}
|
||
} else if (tag === HostPortal)
|
||
;
|
||
else {
|
||
var child = node.child;
|
||
if (child !== null) {
|
||
insertOrAppendPlacementNodeIntoContainer(child, before, parent);
|
||
var sibling = child.sibling;
|
||
while (sibling !== null) {
|
||
insertOrAppendPlacementNodeIntoContainer(sibling, before, parent);
|
||
sibling = sibling.sibling;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function insertOrAppendPlacementNode(node, before, parent) {
|
||
var tag = node.tag;
|
||
var isHost = tag === HostComponent || tag === HostText;
|
||
if (isHost) {
|
||
var stateNode = node.stateNode;
|
||
if (before) {
|
||
insertBefore(parent, stateNode, before);
|
||
} else {
|
||
appendChild(parent, stateNode);
|
||
}
|
||
} else if (tag === HostPortal)
|
||
;
|
||
else {
|
||
var child = node.child;
|
||
if (child !== null) {
|
||
insertOrAppendPlacementNode(child, before, parent);
|
||
var sibling = child.sibling;
|
||
while (sibling !== null) {
|
||
insertOrAppendPlacementNode(sibling, before, parent);
|
||
sibling = sibling.sibling;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var hostParent = null;
|
||
var hostParentIsContainer = false;
|
||
function commitDeletionEffects(root2, returnFiber, deletedFiber) {
|
||
{
|
||
var parent = returnFiber;
|
||
findParent:
|
||
while (parent !== null) {
|
||
switch (parent.tag) {
|
||
case HostComponent: {
|
||
hostParent = parent.stateNode;
|
||
hostParentIsContainer = false;
|
||
break findParent;
|
||
}
|
||
case HostRoot: {
|
||
hostParent = parent.stateNode.containerInfo;
|
||
hostParentIsContainer = true;
|
||
break findParent;
|
||
}
|
||
case HostPortal: {
|
||
hostParent = parent.stateNode.containerInfo;
|
||
hostParentIsContainer = true;
|
||
break findParent;
|
||
}
|
||
}
|
||
parent = parent.return;
|
||
}
|
||
if (hostParent === null) {
|
||
throw new Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
commitDeletionEffectsOnFiber(root2, returnFiber, deletedFiber);
|
||
hostParent = null;
|
||
hostParentIsContainer = false;
|
||
}
|
||
detachFiberMutation(deletedFiber);
|
||
}
|
||
function recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, parent) {
|
||
var child = parent.child;
|
||
while (child !== null) {
|
||
commitDeletionEffectsOnFiber(finishedRoot, nearestMountedAncestor, child);
|
||
child = child.sibling;
|
||
}
|
||
}
|
||
function commitDeletionEffectsOnFiber(finishedRoot, nearestMountedAncestor, deletedFiber) {
|
||
onCommitUnmount(deletedFiber);
|
||
switch (deletedFiber.tag) {
|
||
case HostComponent: {
|
||
if (!offscreenSubtreeWasHidden) {
|
||
safelyDetachRef(deletedFiber, nearestMountedAncestor);
|
||
}
|
||
}
|
||
case HostText: {
|
||
{
|
||
var prevHostParent = hostParent;
|
||
var prevHostParentIsContainer = hostParentIsContainer;
|
||
hostParent = null;
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
hostParent = prevHostParent;
|
||
hostParentIsContainer = prevHostParentIsContainer;
|
||
if (hostParent !== null) {
|
||
if (hostParentIsContainer) {
|
||
removeChildFromContainer(hostParent, deletedFiber.stateNode);
|
||
} else {
|
||
removeChild(hostParent, deletedFiber.stateNode);
|
||
}
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case DehydratedFragment: {
|
||
{
|
||
if (hostParent !== null) {
|
||
if (hostParentIsContainer) {
|
||
clearSuspenseBoundaryFromContainer(hostParent, deletedFiber.stateNode);
|
||
} else {
|
||
clearSuspenseBoundary(hostParent, deletedFiber.stateNode);
|
||
}
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case HostPortal: {
|
||
{
|
||
var _prevHostParent = hostParent;
|
||
var _prevHostParentIsContainer = hostParentIsContainer;
|
||
hostParent = deletedFiber.stateNode.containerInfo;
|
||
hostParentIsContainer = true;
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
hostParent = _prevHostParent;
|
||
hostParentIsContainer = _prevHostParentIsContainer;
|
||
}
|
||
return;
|
||
}
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case MemoComponent:
|
||
case SimpleMemoComponent: {
|
||
if (!offscreenSubtreeWasHidden) {
|
||
var updateQueue = deletedFiber.updateQueue;
|
||
if (updateQueue !== null) {
|
||
var lastEffect = updateQueue.lastEffect;
|
||
if (lastEffect !== null) {
|
||
var firstEffect = lastEffect.next;
|
||
var effect = firstEffect;
|
||
do {
|
||
var _effect = effect, destroy = _effect.destroy, tag = _effect.tag;
|
||
if (destroy !== void 0) {
|
||
if ((tag & Insertion) !== NoFlags$1) {
|
||
safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy);
|
||
} else if ((tag & Layout) !== NoFlags$1) {
|
||
{
|
||
markComponentLayoutEffectUnmountStarted(deletedFiber);
|
||
}
|
||
if (deletedFiber.mode & ProfileMode) {
|
||
startLayoutEffectTimer();
|
||
safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy);
|
||
recordLayoutEffectDuration(deletedFiber);
|
||
} else {
|
||
safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy);
|
||
}
|
||
{
|
||
markComponentLayoutEffectUnmountStopped();
|
||
}
|
||
}
|
||
}
|
||
effect = effect.next;
|
||
} while (effect !== firstEffect);
|
||
}
|
||
}
|
||
}
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
return;
|
||
}
|
||
case ClassComponent: {
|
||
if (!offscreenSubtreeWasHidden) {
|
||
safelyDetachRef(deletedFiber, nearestMountedAncestor);
|
||
var instance = deletedFiber.stateNode;
|
||
if (typeof instance.componentWillUnmount === "function") {
|
||
safelyCallComponentWillUnmount(deletedFiber, nearestMountedAncestor, instance);
|
||
}
|
||
}
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
return;
|
||
}
|
||
case ScopeComponent: {
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
return;
|
||
}
|
||
case OffscreenComponent: {
|
||
if (
|
||
// TODO: Remove this dead flag
|
||
deletedFiber.mode & ConcurrentMode
|
||
) {
|
||
var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden;
|
||
offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || deletedFiber.memoizedState !== null;
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;
|
||
} else {
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
}
|
||
break;
|
||
}
|
||
default: {
|
||
recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
function commitSuspenseCallback(finishedWork) {
|
||
var newState = finishedWork.memoizedState;
|
||
}
|
||
function commitSuspenseHydrationCallbacks(finishedRoot, finishedWork) {
|
||
var newState = finishedWork.memoizedState;
|
||
if (newState === null) {
|
||
var current3 = finishedWork.alternate;
|
||
if (current3 !== null) {
|
||
var prevState = current3.memoizedState;
|
||
if (prevState !== null) {
|
||
var suspenseInstance = prevState.dehydrated;
|
||
if (suspenseInstance !== null) {
|
||
commitHydratedSuspenseInstance(suspenseInstance);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function attachSuspenseRetryListeners(finishedWork) {
|
||
var wakeables = finishedWork.updateQueue;
|
||
if (wakeables !== null) {
|
||
finishedWork.updateQueue = null;
|
||
var retryCache = finishedWork.stateNode;
|
||
if (retryCache === null) {
|
||
retryCache = finishedWork.stateNode = new PossiblyWeakSet();
|
||
}
|
||
wakeables.forEach(function(wakeable) {
|
||
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
||
if (!retryCache.has(wakeable)) {
|
||
retryCache.add(wakeable);
|
||
{
|
||
if (isDevToolsPresent) {
|
||
if (inProgressLanes !== null && inProgressRoot !== null) {
|
||
restorePendingUpdaters(inProgressRoot, inProgressLanes);
|
||
} else {
|
||
throw Error("Expected finished root and lanes to be set. This is a bug in React.");
|
||
}
|
||
}
|
||
}
|
||
wakeable.then(retry, retry);
|
||
}
|
||
});
|
||
}
|
||
}
|
||
function commitMutationEffects(root2, finishedWork, committedLanes) {
|
||
inProgressLanes = committedLanes;
|
||
inProgressRoot = root2;
|
||
setCurrentFiber(finishedWork);
|
||
commitMutationEffectsOnFiber(finishedWork, root2);
|
||
setCurrentFiber(finishedWork);
|
||
inProgressLanes = null;
|
||
inProgressRoot = null;
|
||
}
|
||
function recursivelyTraverseMutationEffects(root2, parentFiber, lanes) {
|
||
var deletions = parentFiber.deletions;
|
||
if (deletions !== null) {
|
||
for (var i = 0; i < deletions.length; i++) {
|
||
var childToDelete = deletions[i];
|
||
try {
|
||
commitDeletionEffects(root2, parentFiber, childToDelete);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(childToDelete, parentFiber, error2);
|
||
}
|
||
}
|
||
}
|
||
var prevDebugFiber = getCurrentFiber();
|
||
if (parentFiber.subtreeFlags & MutationMask) {
|
||
var child = parentFiber.child;
|
||
while (child !== null) {
|
||
setCurrentFiber(child);
|
||
commitMutationEffectsOnFiber(child, root2);
|
||
child = child.sibling;
|
||
}
|
||
}
|
||
setCurrentFiber(prevDebugFiber);
|
||
}
|
||
function commitMutationEffectsOnFiber(finishedWork, root2, lanes) {
|
||
var current3 = finishedWork.alternate;
|
||
var flags = finishedWork.flags;
|
||
switch (finishedWork.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case MemoComponent:
|
||
case SimpleMemoComponent: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
if (flags & Update) {
|
||
try {
|
||
commitHookEffectListUnmount(Insertion | HasEffect, finishedWork, finishedWork.return);
|
||
commitHookEffectListMount(Insertion | HasEffect, finishedWork);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
if (finishedWork.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
commitHookEffectListUnmount(Layout | HasEffect, finishedWork, finishedWork.return);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
recordLayoutEffectDuration(finishedWork);
|
||
} else {
|
||
try {
|
||
commitHookEffectListUnmount(Layout | HasEffect, finishedWork, finishedWork.return);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case ClassComponent: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
if (flags & Ref) {
|
||
if (current3 !== null) {
|
||
safelyDetachRef(current3, current3.return);
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case HostComponent: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
if (flags & Ref) {
|
||
if (current3 !== null) {
|
||
safelyDetachRef(current3, current3.return);
|
||
}
|
||
}
|
||
{
|
||
if (finishedWork.flags & ContentReset) {
|
||
var instance = finishedWork.stateNode;
|
||
try {
|
||
resetTextContent(instance);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
}
|
||
if (flags & Update) {
|
||
var _instance4 = finishedWork.stateNode;
|
||
if (_instance4 != null) {
|
||
var newProps = finishedWork.memoizedProps;
|
||
var oldProps = current3 !== null ? current3.memoizedProps : newProps;
|
||
var type = finishedWork.type;
|
||
var updatePayload = finishedWork.updateQueue;
|
||
finishedWork.updateQueue = null;
|
||
if (updatePayload !== null) {
|
||
try {
|
||
commitUpdate(_instance4, updatePayload, type, oldProps, newProps, finishedWork);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case HostText: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
if (flags & Update) {
|
||
{
|
||
if (finishedWork.stateNode === null) {
|
||
throw new Error("This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
var textInstance = finishedWork.stateNode;
|
||
var newText = finishedWork.memoizedProps;
|
||
var oldText = current3 !== null ? current3.memoizedProps : newText;
|
||
try {
|
||
commitTextUpdate(textInstance, oldText, newText);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case HostRoot: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
if (flags & Update) {
|
||
{
|
||
if (current3 !== null) {
|
||
var prevRootState = current3.memoizedState;
|
||
if (prevRootState.isDehydrated) {
|
||
try {
|
||
commitHydratedContainer(root2.containerInfo);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case HostPortal: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
return;
|
||
}
|
||
case SuspenseComponent: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
var offscreenFiber = finishedWork.child;
|
||
if (offscreenFiber.flags & Visibility) {
|
||
var offscreenInstance = offscreenFiber.stateNode;
|
||
var newState = offscreenFiber.memoizedState;
|
||
var isHidden = newState !== null;
|
||
offscreenInstance.isHidden = isHidden;
|
||
if (isHidden) {
|
||
var wasHidden = offscreenFiber.alternate !== null && offscreenFiber.alternate.memoizedState !== null;
|
||
if (!wasHidden) {
|
||
markCommitTimeOfFallback();
|
||
}
|
||
}
|
||
}
|
||
if (flags & Update) {
|
||
try {
|
||
commitSuspenseCallback(finishedWork);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
attachSuspenseRetryListeners(finishedWork);
|
||
}
|
||
return;
|
||
}
|
||
case OffscreenComponent: {
|
||
var _wasHidden = current3 !== null && current3.memoizedState !== null;
|
||
if (
|
||
// TODO: Remove this dead flag
|
||
finishedWork.mode & ConcurrentMode
|
||
) {
|
||
var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden;
|
||
offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || _wasHidden;
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;
|
||
} else {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
}
|
||
commitReconciliationEffects(finishedWork);
|
||
if (flags & Visibility) {
|
||
var _offscreenInstance = finishedWork.stateNode;
|
||
var _newState = finishedWork.memoizedState;
|
||
var _isHidden = _newState !== null;
|
||
var offscreenBoundary = finishedWork;
|
||
_offscreenInstance.isHidden = _isHidden;
|
||
{
|
||
if (_isHidden) {
|
||
if (!_wasHidden) {
|
||
if ((offscreenBoundary.mode & ConcurrentMode) !== NoMode) {
|
||
nextEffect = offscreenBoundary;
|
||
var offscreenChild = offscreenBoundary.child;
|
||
while (offscreenChild !== null) {
|
||
nextEffect = offscreenChild;
|
||
disappearLayoutEffects_begin(offscreenChild);
|
||
offscreenChild = offscreenChild.sibling;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
{
|
||
hideOrUnhideAllChildren(offscreenBoundary, _isHidden);
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
case SuspenseListComponent: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
if (flags & Update) {
|
||
attachSuspenseRetryListeners(finishedWork);
|
||
}
|
||
return;
|
||
}
|
||
case ScopeComponent: {
|
||
return;
|
||
}
|
||
default: {
|
||
recursivelyTraverseMutationEffects(root2, finishedWork);
|
||
commitReconciliationEffects(finishedWork);
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
function commitReconciliationEffects(finishedWork) {
|
||
var flags = finishedWork.flags;
|
||
if (flags & Placement) {
|
||
try {
|
||
commitPlacement(finishedWork);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(finishedWork, finishedWork.return, error2);
|
||
}
|
||
finishedWork.flags &= ~Placement;
|
||
}
|
||
if (flags & Hydrating) {
|
||
finishedWork.flags &= ~Hydrating;
|
||
}
|
||
}
|
||
function commitLayoutEffects(finishedWork, root2, committedLanes) {
|
||
inProgressLanes = committedLanes;
|
||
inProgressRoot = root2;
|
||
nextEffect = finishedWork;
|
||
commitLayoutEffects_begin(finishedWork, root2, committedLanes);
|
||
inProgressLanes = null;
|
||
inProgressRoot = null;
|
||
}
|
||
function commitLayoutEffects_begin(subtreeRoot, root2, committedLanes) {
|
||
var isModernRoot = (subtreeRoot.mode & ConcurrentMode) !== NoMode;
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
var firstChild = fiber.child;
|
||
if (fiber.tag === OffscreenComponent && isModernRoot) {
|
||
var isHidden = fiber.memoizedState !== null;
|
||
var newOffscreenSubtreeIsHidden = isHidden || offscreenSubtreeIsHidden;
|
||
if (newOffscreenSubtreeIsHidden) {
|
||
commitLayoutMountEffects_complete(subtreeRoot, root2, committedLanes);
|
||
continue;
|
||
} else {
|
||
var current3 = fiber.alternate;
|
||
var wasHidden = current3 !== null && current3.memoizedState !== null;
|
||
var newOffscreenSubtreeWasHidden = wasHidden || offscreenSubtreeWasHidden;
|
||
var prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden;
|
||
var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden;
|
||
offscreenSubtreeIsHidden = newOffscreenSubtreeIsHidden;
|
||
offscreenSubtreeWasHidden = newOffscreenSubtreeWasHidden;
|
||
if (offscreenSubtreeWasHidden && !prevOffscreenSubtreeWasHidden) {
|
||
nextEffect = fiber;
|
||
reappearLayoutEffects_begin(fiber);
|
||
}
|
||
var child = firstChild;
|
||
while (child !== null) {
|
||
nextEffect = child;
|
||
commitLayoutEffects_begin(
|
||
child,
|
||
// New root; bubble back up to here and stop.
|
||
root2,
|
||
committedLanes
|
||
);
|
||
child = child.sibling;
|
||
}
|
||
nextEffect = fiber;
|
||
offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden;
|
||
offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;
|
||
commitLayoutMountEffects_complete(subtreeRoot, root2, committedLanes);
|
||
continue;
|
||
}
|
||
}
|
||
if ((fiber.subtreeFlags & LayoutMask) !== NoFlags && firstChild !== null) {
|
||
firstChild.return = fiber;
|
||
nextEffect = firstChild;
|
||
} else {
|
||
commitLayoutMountEffects_complete(subtreeRoot, root2, committedLanes);
|
||
}
|
||
}
|
||
}
|
||
function commitLayoutMountEffects_complete(subtreeRoot, root2, committedLanes) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
if ((fiber.flags & LayoutMask) !== NoFlags) {
|
||
var current3 = fiber.alternate;
|
||
setCurrentFiber(fiber);
|
||
try {
|
||
commitLayoutEffectOnFiber(root2, current3, fiber, committedLanes);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
resetCurrentFiber();
|
||
}
|
||
if (fiber === subtreeRoot) {
|
||
nextEffect = null;
|
||
return;
|
||
}
|
||
var sibling = fiber.sibling;
|
||
if (sibling !== null) {
|
||
sibling.return = fiber.return;
|
||
nextEffect = sibling;
|
||
return;
|
||
}
|
||
nextEffect = fiber.return;
|
||
}
|
||
}
|
||
function disappearLayoutEffects_begin(subtreeRoot) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
var firstChild = fiber.child;
|
||
switch (fiber.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case MemoComponent:
|
||
case SimpleMemoComponent: {
|
||
if (fiber.mode & ProfileMode) {
|
||
try {
|
||
startLayoutEffectTimer();
|
||
commitHookEffectListUnmount(Layout, fiber, fiber.return);
|
||
} finally {
|
||
recordLayoutEffectDuration(fiber);
|
||
}
|
||
} else {
|
||
commitHookEffectListUnmount(Layout, fiber, fiber.return);
|
||
}
|
||
break;
|
||
}
|
||
case ClassComponent: {
|
||
safelyDetachRef(fiber, fiber.return);
|
||
var instance = fiber.stateNode;
|
||
if (typeof instance.componentWillUnmount === "function") {
|
||
safelyCallComponentWillUnmount(fiber, fiber.return, instance);
|
||
}
|
||
break;
|
||
}
|
||
case HostComponent: {
|
||
safelyDetachRef(fiber, fiber.return);
|
||
break;
|
||
}
|
||
case OffscreenComponent: {
|
||
var isHidden = fiber.memoizedState !== null;
|
||
if (isHidden) {
|
||
disappearLayoutEffects_complete(subtreeRoot);
|
||
continue;
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
if (firstChild !== null) {
|
||
firstChild.return = fiber;
|
||
nextEffect = firstChild;
|
||
} else {
|
||
disappearLayoutEffects_complete(subtreeRoot);
|
||
}
|
||
}
|
||
}
|
||
function disappearLayoutEffects_complete(subtreeRoot) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
if (fiber === subtreeRoot) {
|
||
nextEffect = null;
|
||
return;
|
||
}
|
||
var sibling = fiber.sibling;
|
||
if (sibling !== null) {
|
||
sibling.return = fiber.return;
|
||
nextEffect = sibling;
|
||
return;
|
||
}
|
||
nextEffect = fiber.return;
|
||
}
|
||
}
|
||
function reappearLayoutEffects_begin(subtreeRoot) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
var firstChild = fiber.child;
|
||
if (fiber.tag === OffscreenComponent) {
|
||
var isHidden = fiber.memoizedState !== null;
|
||
if (isHidden) {
|
||
reappearLayoutEffects_complete(subtreeRoot);
|
||
continue;
|
||
}
|
||
}
|
||
if (firstChild !== null) {
|
||
firstChild.return = fiber;
|
||
nextEffect = firstChild;
|
||
} else {
|
||
reappearLayoutEffects_complete(subtreeRoot);
|
||
}
|
||
}
|
||
}
|
||
function reappearLayoutEffects_complete(subtreeRoot) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
setCurrentFiber(fiber);
|
||
try {
|
||
reappearLayoutEffectsOnFiber(fiber);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
resetCurrentFiber();
|
||
if (fiber === subtreeRoot) {
|
||
nextEffect = null;
|
||
return;
|
||
}
|
||
var sibling = fiber.sibling;
|
||
if (sibling !== null) {
|
||
sibling.return = fiber.return;
|
||
nextEffect = sibling;
|
||
return;
|
||
}
|
||
nextEffect = fiber.return;
|
||
}
|
||
}
|
||
function commitPassiveMountEffects(root2, finishedWork, committedLanes, committedTransitions) {
|
||
nextEffect = finishedWork;
|
||
commitPassiveMountEffects_begin(finishedWork, root2, committedLanes, committedTransitions);
|
||
}
|
||
function commitPassiveMountEffects_begin(subtreeRoot, root2, committedLanes, committedTransitions) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
var firstChild = fiber.child;
|
||
if ((fiber.subtreeFlags & PassiveMask) !== NoFlags && firstChild !== null) {
|
||
firstChild.return = fiber;
|
||
nextEffect = firstChild;
|
||
} else {
|
||
commitPassiveMountEffects_complete(subtreeRoot, root2, committedLanes, committedTransitions);
|
||
}
|
||
}
|
||
}
|
||
function commitPassiveMountEffects_complete(subtreeRoot, root2, committedLanes, committedTransitions) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
if ((fiber.flags & Passive) !== NoFlags) {
|
||
setCurrentFiber(fiber);
|
||
try {
|
||
commitPassiveMountOnFiber(root2, fiber, committedLanes, committedTransitions);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
resetCurrentFiber();
|
||
}
|
||
if (fiber === subtreeRoot) {
|
||
nextEffect = null;
|
||
return;
|
||
}
|
||
var sibling = fiber.sibling;
|
||
if (sibling !== null) {
|
||
sibling.return = fiber.return;
|
||
nextEffect = sibling;
|
||
return;
|
||
}
|
||
nextEffect = fiber.return;
|
||
}
|
||
}
|
||
function commitPassiveMountOnFiber(finishedRoot, finishedWork, committedLanes, committedTransitions) {
|
||
switch (finishedWork.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
if (finishedWork.mode & ProfileMode) {
|
||
startPassiveEffectTimer();
|
||
try {
|
||
commitHookEffectListMount(Passive$1 | HasEffect, finishedWork);
|
||
} finally {
|
||
recordPassiveEffectDuration(finishedWork);
|
||
}
|
||
} else {
|
||
commitHookEffectListMount(Passive$1 | HasEffect, finishedWork);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function commitPassiveUnmountEffects(firstChild) {
|
||
nextEffect = firstChild;
|
||
commitPassiveUnmountEffects_begin();
|
||
}
|
||
function commitPassiveUnmountEffects_begin() {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
var child = fiber.child;
|
||
if ((nextEffect.flags & ChildDeletion) !== NoFlags) {
|
||
var deletions = fiber.deletions;
|
||
if (deletions !== null) {
|
||
for (var i = 0; i < deletions.length; i++) {
|
||
var fiberToDelete = deletions[i];
|
||
nextEffect = fiberToDelete;
|
||
commitPassiveUnmountEffectsInsideOfDeletedTree_begin(fiberToDelete, fiber);
|
||
}
|
||
{
|
||
var previousFiber = fiber.alternate;
|
||
if (previousFiber !== null) {
|
||
var detachedChild = previousFiber.child;
|
||
if (detachedChild !== null) {
|
||
previousFiber.child = null;
|
||
do {
|
||
var detachedSibling = detachedChild.sibling;
|
||
detachedChild.sibling = null;
|
||
detachedChild = detachedSibling;
|
||
} while (detachedChild !== null);
|
||
}
|
||
}
|
||
}
|
||
nextEffect = fiber;
|
||
}
|
||
}
|
||
if ((fiber.subtreeFlags & PassiveMask) !== NoFlags && child !== null) {
|
||
child.return = fiber;
|
||
nextEffect = child;
|
||
} else {
|
||
commitPassiveUnmountEffects_complete();
|
||
}
|
||
}
|
||
}
|
||
function commitPassiveUnmountEffects_complete() {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
if ((fiber.flags & Passive) !== NoFlags) {
|
||
setCurrentFiber(fiber);
|
||
commitPassiveUnmountOnFiber(fiber);
|
||
resetCurrentFiber();
|
||
}
|
||
var sibling = fiber.sibling;
|
||
if (sibling !== null) {
|
||
sibling.return = fiber.return;
|
||
nextEffect = sibling;
|
||
return;
|
||
}
|
||
nextEffect = fiber.return;
|
||
}
|
||
}
|
||
function commitPassiveUnmountOnFiber(finishedWork) {
|
||
switch (finishedWork.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
if (finishedWork.mode & ProfileMode) {
|
||
startPassiveEffectTimer();
|
||
commitHookEffectListUnmount(Passive$1 | HasEffect, finishedWork, finishedWork.return);
|
||
recordPassiveEffectDuration(finishedWork);
|
||
} else {
|
||
commitHookEffectListUnmount(Passive$1 | HasEffect, finishedWork, finishedWork.return);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function commitPassiveUnmountEffectsInsideOfDeletedTree_begin(deletedSubtreeRoot, nearestMountedAncestor) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
setCurrentFiber(fiber);
|
||
commitPassiveUnmountInsideDeletedTreeOnFiber(fiber, nearestMountedAncestor);
|
||
resetCurrentFiber();
|
||
var child = fiber.child;
|
||
if (child !== null) {
|
||
child.return = fiber;
|
||
nextEffect = child;
|
||
} else {
|
||
commitPassiveUnmountEffectsInsideOfDeletedTree_complete(deletedSubtreeRoot);
|
||
}
|
||
}
|
||
}
|
||
function commitPassiveUnmountEffectsInsideOfDeletedTree_complete(deletedSubtreeRoot) {
|
||
while (nextEffect !== null) {
|
||
var fiber = nextEffect;
|
||
var sibling = fiber.sibling;
|
||
var returnFiber = fiber.return;
|
||
{
|
||
detachFiberAfterEffects(fiber);
|
||
if (fiber === deletedSubtreeRoot) {
|
||
nextEffect = null;
|
||
return;
|
||
}
|
||
}
|
||
if (sibling !== null) {
|
||
sibling.return = returnFiber;
|
||
nextEffect = sibling;
|
||
return;
|
||
}
|
||
nextEffect = returnFiber;
|
||
}
|
||
}
|
||
function commitPassiveUnmountInsideDeletedTreeOnFiber(current3, nearestMountedAncestor) {
|
||
switch (current3.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
if (current3.mode & ProfileMode) {
|
||
startPassiveEffectTimer();
|
||
commitHookEffectListUnmount(Passive$1, current3, nearestMountedAncestor);
|
||
recordPassiveEffectDuration(current3);
|
||
} else {
|
||
commitHookEffectListUnmount(Passive$1, current3, nearestMountedAncestor);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function invokeLayoutEffectMountInDEV(fiber) {
|
||
{
|
||
switch (fiber.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
try {
|
||
commitHookEffectListMount(Layout | HasEffect, fiber);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
break;
|
||
}
|
||
case ClassComponent: {
|
||
var instance = fiber.stateNode;
|
||
try {
|
||
instance.componentDidMount();
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function invokePassiveEffectMountInDEV(fiber) {
|
||
{
|
||
switch (fiber.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
try {
|
||
commitHookEffectListMount(Passive$1 | HasEffect, fiber);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function invokeLayoutEffectUnmountInDEV(fiber) {
|
||
{
|
||
switch (fiber.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
try {
|
||
commitHookEffectListUnmount(Layout | HasEffect, fiber, fiber.return);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
break;
|
||
}
|
||
case ClassComponent: {
|
||
var instance = fiber.stateNode;
|
||
if (typeof instance.componentWillUnmount === "function") {
|
||
safelyCallComponentWillUnmount(fiber, fiber.return, instance);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function invokePassiveEffectUnmountInDEV(fiber) {
|
||
{
|
||
switch (fiber.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
try {
|
||
commitHookEffectListUnmount(Passive$1 | HasEffect, fiber, fiber.return);
|
||
} catch (error2) {
|
||
captureCommitPhaseError(fiber, fiber.return, error2);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var COMPONENT_TYPE = 0;
|
||
var HAS_PSEUDO_CLASS_TYPE = 1;
|
||
var ROLE_TYPE = 2;
|
||
var TEST_NAME_TYPE = 3;
|
||
var TEXT_TYPE = 4;
|
||
if (typeof Symbol === "function" && Symbol.for) {
|
||
var symbolFor = Symbol.for;
|
||
COMPONENT_TYPE = symbolFor("selector.component");
|
||
HAS_PSEUDO_CLASS_TYPE = symbolFor("selector.has_pseudo_class");
|
||
ROLE_TYPE = symbolFor("selector.role");
|
||
TEST_NAME_TYPE = symbolFor("selector.test_id");
|
||
TEXT_TYPE = symbolFor("selector.text");
|
||
}
|
||
var commitHooks = [];
|
||
function onCommitRoot$1() {
|
||
{
|
||
commitHooks.forEach(function(commitHook) {
|
||
return commitHook();
|
||
});
|
||
}
|
||
}
|
||
var ReactCurrentActQueue = ReactSharedInternals.ReactCurrentActQueue;
|
||
function isLegacyActEnvironment(fiber) {
|
||
{
|
||
var isReactActEnvironmentGlobal = (
|
||
// $FlowExpectedError – Flow doesn't know about IS_REACT_ACT_ENVIRONMENT global
|
||
typeof IS_REACT_ACT_ENVIRONMENT !== "undefined" ? IS_REACT_ACT_ENVIRONMENT : void 0
|
||
);
|
||
var jestIsDefined = typeof jest !== "undefined";
|
||
return jestIsDefined && isReactActEnvironmentGlobal !== false;
|
||
}
|
||
}
|
||
function isConcurrentActEnvironment() {
|
||
{
|
||
var isReactActEnvironmentGlobal = (
|
||
// $FlowExpectedError – Flow doesn't know about IS_REACT_ACT_ENVIRONMENT global
|
||
typeof IS_REACT_ACT_ENVIRONMENT !== "undefined" ? IS_REACT_ACT_ENVIRONMENT : void 0
|
||
);
|
||
if (!isReactActEnvironmentGlobal && ReactCurrentActQueue.current !== null) {
|
||
error("The current testing environment is not configured to support act(...)");
|
||
}
|
||
return isReactActEnvironmentGlobal;
|
||
}
|
||
}
|
||
var ceil = Math.ceil;
|
||
var ReactCurrentDispatcher$2 = ReactSharedInternals.ReactCurrentDispatcher, ReactCurrentOwner$2 = ReactSharedInternals.ReactCurrentOwner, ReactCurrentBatchConfig$3 = ReactSharedInternals.ReactCurrentBatchConfig, ReactCurrentActQueue$1 = ReactSharedInternals.ReactCurrentActQueue;
|
||
var NoContext = (
|
||
/* */
|
||
0
|
||
);
|
||
var BatchedContext = (
|
||
/* */
|
||
1
|
||
);
|
||
var RenderContext = (
|
||
/* */
|
||
2
|
||
);
|
||
var CommitContext = (
|
||
/* */
|
||
4
|
||
);
|
||
var RootInProgress = 0;
|
||
var RootFatalErrored = 1;
|
||
var RootErrored = 2;
|
||
var RootSuspended = 3;
|
||
var RootSuspendedWithDelay = 4;
|
||
var RootCompleted = 5;
|
||
var RootDidNotComplete = 6;
|
||
var executionContext = NoContext;
|
||
var workInProgressRoot = null;
|
||
var workInProgress = null;
|
||
var workInProgressRootRenderLanes = NoLanes;
|
||
var subtreeRenderLanes = NoLanes;
|
||
var subtreeRenderLanesCursor = createCursor(NoLanes);
|
||
var workInProgressRootExitStatus = RootInProgress;
|
||
var workInProgressRootFatalError = null;
|
||
var workInProgressRootIncludedLanes = NoLanes;
|
||
var workInProgressRootSkippedLanes = NoLanes;
|
||
var workInProgressRootInterleavedUpdatedLanes = NoLanes;
|
||
var workInProgressRootPingedLanes = NoLanes;
|
||
var workInProgressRootConcurrentErrors = null;
|
||
var workInProgressRootRecoverableErrors = null;
|
||
var globalMostRecentFallbackTime = 0;
|
||
var FALLBACK_THROTTLE_MS = 500;
|
||
var workInProgressRootRenderTargetTime = Infinity;
|
||
var RENDER_TIMEOUT_MS = 500;
|
||
var workInProgressTransitions = null;
|
||
function resetRenderTimer() {
|
||
workInProgressRootRenderTargetTime = now() + RENDER_TIMEOUT_MS;
|
||
}
|
||
function getRenderTargetTime() {
|
||
return workInProgressRootRenderTargetTime;
|
||
}
|
||
var hasUncaughtError = false;
|
||
var firstUncaughtError = null;
|
||
var legacyErrorBoundariesThatAlreadyFailed = null;
|
||
var rootDoesHavePassiveEffects = false;
|
||
var rootWithPendingPassiveEffects = null;
|
||
var pendingPassiveEffectsLanes = NoLanes;
|
||
var pendingPassiveProfilerEffects = [];
|
||
var pendingPassiveTransitions = null;
|
||
var NESTED_UPDATE_LIMIT = 50;
|
||
var nestedUpdateCount = 0;
|
||
var rootWithNestedUpdates = null;
|
||
var isFlushingPassiveEffects = false;
|
||
var didScheduleUpdateDuringPassiveEffects = false;
|
||
var NESTED_PASSIVE_UPDATE_LIMIT = 50;
|
||
var nestedPassiveUpdateCount = 0;
|
||
var rootWithPassiveNestedUpdates = null;
|
||
var currentEventTime = NoTimestamp;
|
||
var currentEventTransitionLane = NoLanes;
|
||
var isRunningInsertionEffect = false;
|
||
function getWorkInProgressRoot() {
|
||
return workInProgressRoot;
|
||
}
|
||
function requestEventTime() {
|
||
if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
|
||
return now();
|
||
}
|
||
if (currentEventTime !== NoTimestamp) {
|
||
return currentEventTime;
|
||
}
|
||
currentEventTime = now();
|
||
return currentEventTime;
|
||
}
|
||
function requestUpdateLane(fiber) {
|
||
var mode = fiber.mode;
|
||
if ((mode & ConcurrentMode) === NoMode) {
|
||
return SyncLane;
|
||
} else if ((executionContext & RenderContext) !== NoContext && workInProgressRootRenderLanes !== NoLanes) {
|
||
return pickArbitraryLane(workInProgressRootRenderLanes);
|
||
}
|
||
var isTransition = requestCurrentTransition() !== NoTransition;
|
||
if (isTransition) {
|
||
if (ReactCurrentBatchConfig$3.transition !== null) {
|
||
var transition = ReactCurrentBatchConfig$3.transition;
|
||
if (!transition._updatedFibers) {
|
||
transition._updatedFibers = /* @__PURE__ */ new Set();
|
||
}
|
||
transition._updatedFibers.add(fiber);
|
||
}
|
||
if (currentEventTransitionLane === NoLane) {
|
||
currentEventTransitionLane = claimNextTransitionLane();
|
||
}
|
||
return currentEventTransitionLane;
|
||
}
|
||
var updateLane = getCurrentUpdatePriority();
|
||
if (updateLane !== NoLane) {
|
||
return updateLane;
|
||
}
|
||
var eventLane = getCurrentEventPriority();
|
||
return eventLane;
|
||
}
|
||
function requestRetryLane(fiber) {
|
||
var mode = fiber.mode;
|
||
if ((mode & ConcurrentMode) === NoMode) {
|
||
return SyncLane;
|
||
}
|
||
return claimNextRetryLane();
|
||
}
|
||
function scheduleUpdateOnFiber(root2, fiber, lane, eventTime) {
|
||
checkForNestedUpdates();
|
||
{
|
||
if (isRunningInsertionEffect) {
|
||
error("useInsertionEffect must not schedule updates.");
|
||
}
|
||
}
|
||
{
|
||
if (isFlushingPassiveEffects) {
|
||
didScheduleUpdateDuringPassiveEffects = true;
|
||
}
|
||
}
|
||
markRootUpdated(root2, lane, eventTime);
|
||
if ((executionContext & RenderContext) !== NoLanes && root2 === workInProgressRoot) {
|
||
warnAboutRenderPhaseUpdatesInDEV(fiber);
|
||
} else {
|
||
{
|
||
if (isDevToolsPresent) {
|
||
addFiberToLanesMap(root2, fiber, lane);
|
||
}
|
||
}
|
||
warnIfUpdatesNotWrappedWithActDEV(fiber);
|
||
if (root2 === workInProgressRoot) {
|
||
if ((executionContext & RenderContext) === NoContext) {
|
||
workInProgressRootInterleavedUpdatedLanes = mergeLanes(workInProgressRootInterleavedUpdatedLanes, lane);
|
||
}
|
||
if (workInProgressRootExitStatus === RootSuspendedWithDelay) {
|
||
markRootSuspended$1(root2, workInProgressRootRenderLanes);
|
||
}
|
||
}
|
||
ensureRootIsScheduled(root2, eventTime);
|
||
if (lane === SyncLane && executionContext === NoContext && (fiber.mode & ConcurrentMode) === NoMode && // Treat `act` as if it's inside `batchedUpdates`, even in legacy mode.
|
||
!ReactCurrentActQueue$1.isBatchingLegacy) {
|
||
resetRenderTimer();
|
||
flushSyncCallbacksOnlyInLegacyMode();
|
||
}
|
||
}
|
||
}
|
||
function scheduleInitialHydrationOnRoot(root2, lane, eventTime) {
|
||
var current3 = root2.current;
|
||
current3.lanes = lane;
|
||
markRootUpdated(root2, lane, eventTime);
|
||
ensureRootIsScheduled(root2, eventTime);
|
||
}
|
||
function isUnsafeClassRenderPhaseUpdate(fiber) {
|
||
return (
|
||
// TODO: Remove outdated deferRenderPhaseUpdateToNextBatch experiment. We
|
||
// decided not to enable it.
|
||
(executionContext & RenderContext) !== NoContext
|
||
);
|
||
}
|
||
function ensureRootIsScheduled(root2, currentTime) {
|
||
var existingCallbackNode = root2.callbackNode;
|
||
markStarvedLanesAsExpired(root2, currentTime);
|
||
var nextLanes = getNextLanes(root2, root2 === workInProgressRoot ? workInProgressRootRenderLanes : NoLanes);
|
||
if (nextLanes === NoLanes) {
|
||
if (existingCallbackNode !== null) {
|
||
cancelCallback$1(existingCallbackNode);
|
||
}
|
||
root2.callbackNode = null;
|
||
root2.callbackPriority = NoLane;
|
||
return;
|
||
}
|
||
var newCallbackPriority = getHighestPriorityLane(nextLanes);
|
||
var existingCallbackPriority = root2.callbackPriority;
|
||
if (existingCallbackPriority === newCallbackPriority && // Special case related to `act`. If the currently scheduled task is a
|
||
// Scheduler task, rather than an `act` task, cancel it and re-scheduled
|
||
// on the `act` queue.
|
||
!(ReactCurrentActQueue$1.current !== null && existingCallbackNode !== fakeActCallbackNode)) {
|
||
{
|
||
if (existingCallbackNode == null && existingCallbackPriority !== SyncLane) {
|
||
error("Expected scheduled callback to exist. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
if (existingCallbackNode != null) {
|
||
cancelCallback$1(existingCallbackNode);
|
||
}
|
||
var newCallbackNode;
|
||
if (newCallbackPriority === SyncLane) {
|
||
if (root2.tag === LegacyRoot) {
|
||
if (ReactCurrentActQueue$1.isBatchingLegacy !== null) {
|
||
ReactCurrentActQueue$1.didScheduleLegacyUpdate = true;
|
||
}
|
||
scheduleLegacySyncCallback(performSyncWorkOnRoot.bind(null, root2));
|
||
} else {
|
||
scheduleSyncCallback(performSyncWorkOnRoot.bind(null, root2));
|
||
}
|
||
{
|
||
if (ReactCurrentActQueue$1.current !== null) {
|
||
ReactCurrentActQueue$1.current.push(flushSyncCallbacks);
|
||
} else {
|
||
scheduleMicrotask(function() {
|
||
if ((executionContext & (RenderContext | CommitContext)) === NoContext) {
|
||
flushSyncCallbacks();
|
||
}
|
||
});
|
||
}
|
||
}
|
||
newCallbackNode = null;
|
||
} else {
|
||
var schedulerPriorityLevel;
|
||
switch (lanesToEventPriority(nextLanes)) {
|
||
case DiscreteEventPriority:
|
||
schedulerPriorityLevel = ImmediatePriority;
|
||
break;
|
||
case ContinuousEventPriority:
|
||
schedulerPriorityLevel = UserBlockingPriority;
|
||
break;
|
||
case DefaultEventPriority:
|
||
schedulerPriorityLevel = NormalPriority;
|
||
break;
|
||
case IdleEventPriority:
|
||
schedulerPriorityLevel = IdlePriority;
|
||
break;
|
||
default:
|
||
schedulerPriorityLevel = NormalPriority;
|
||
break;
|
||
}
|
||
newCallbackNode = scheduleCallback$1(schedulerPriorityLevel, performConcurrentWorkOnRoot.bind(null, root2));
|
||
}
|
||
root2.callbackPriority = newCallbackPriority;
|
||
root2.callbackNode = newCallbackNode;
|
||
}
|
||
function performConcurrentWorkOnRoot(root2, didTimeout) {
|
||
{
|
||
resetNestedUpdateFlag();
|
||
}
|
||
currentEventTime = NoTimestamp;
|
||
currentEventTransitionLane = NoLanes;
|
||
if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
|
||
throw new Error("Should not already be working.");
|
||
}
|
||
var originalCallbackNode = root2.callbackNode;
|
||
var didFlushPassiveEffects = flushPassiveEffects();
|
||
if (didFlushPassiveEffects) {
|
||
if (root2.callbackNode !== originalCallbackNode) {
|
||
return null;
|
||
}
|
||
}
|
||
var lanes = getNextLanes(root2, root2 === workInProgressRoot ? workInProgressRootRenderLanes : NoLanes);
|
||
if (lanes === NoLanes) {
|
||
return null;
|
||
}
|
||
var shouldTimeSlice = !includesBlockingLane(root2, lanes) && !includesExpiredLane(root2, lanes) && !didTimeout;
|
||
var exitStatus = shouldTimeSlice ? renderRootConcurrent(root2, lanes) : renderRootSync(root2, lanes);
|
||
if (exitStatus !== RootInProgress) {
|
||
if (exitStatus === RootErrored) {
|
||
var errorRetryLanes = getLanesToRetrySynchronouslyOnError(root2);
|
||
if (errorRetryLanes !== NoLanes) {
|
||
lanes = errorRetryLanes;
|
||
exitStatus = recoverFromConcurrentError(root2, errorRetryLanes);
|
||
}
|
||
}
|
||
if (exitStatus === RootFatalErrored) {
|
||
var fatalError = workInProgressRootFatalError;
|
||
prepareFreshStack(root2, NoLanes);
|
||
markRootSuspended$1(root2, lanes);
|
||
ensureRootIsScheduled(root2, now());
|
||
throw fatalError;
|
||
}
|
||
if (exitStatus === RootDidNotComplete) {
|
||
markRootSuspended$1(root2, lanes);
|
||
} else {
|
||
var renderWasConcurrent = !includesBlockingLane(root2, lanes);
|
||
var finishedWork = root2.current.alternate;
|
||
if (renderWasConcurrent && !isRenderConsistentWithExternalStores(finishedWork)) {
|
||
exitStatus = renderRootSync(root2, lanes);
|
||
if (exitStatus === RootErrored) {
|
||
var _errorRetryLanes = getLanesToRetrySynchronouslyOnError(root2);
|
||
if (_errorRetryLanes !== NoLanes) {
|
||
lanes = _errorRetryLanes;
|
||
exitStatus = recoverFromConcurrentError(root2, _errorRetryLanes);
|
||
}
|
||
}
|
||
if (exitStatus === RootFatalErrored) {
|
||
var _fatalError = workInProgressRootFatalError;
|
||
prepareFreshStack(root2, NoLanes);
|
||
markRootSuspended$1(root2, lanes);
|
||
ensureRootIsScheduled(root2, now());
|
||
throw _fatalError;
|
||
}
|
||
}
|
||
root2.finishedWork = finishedWork;
|
||
root2.finishedLanes = lanes;
|
||
finishConcurrentRender(root2, exitStatus, lanes);
|
||
}
|
||
}
|
||
ensureRootIsScheduled(root2, now());
|
||
if (root2.callbackNode === originalCallbackNode) {
|
||
return performConcurrentWorkOnRoot.bind(null, root2);
|
||
}
|
||
return null;
|
||
}
|
||
function recoverFromConcurrentError(root2, errorRetryLanes) {
|
||
var errorsFromFirstAttempt = workInProgressRootConcurrentErrors;
|
||
if (isRootDehydrated(root2)) {
|
||
var rootWorkInProgress = prepareFreshStack(root2, errorRetryLanes);
|
||
rootWorkInProgress.flags |= ForceClientRender;
|
||
{
|
||
errorHydratingContainer(root2.containerInfo);
|
||
}
|
||
}
|
||
var exitStatus = renderRootSync(root2, errorRetryLanes);
|
||
if (exitStatus !== RootErrored) {
|
||
var errorsFromSecondAttempt = workInProgressRootRecoverableErrors;
|
||
workInProgressRootRecoverableErrors = errorsFromFirstAttempt;
|
||
if (errorsFromSecondAttempt !== null) {
|
||
queueRecoverableErrors(errorsFromSecondAttempt);
|
||
}
|
||
}
|
||
return exitStatus;
|
||
}
|
||
function queueRecoverableErrors(errors2) {
|
||
if (workInProgressRootRecoverableErrors === null) {
|
||
workInProgressRootRecoverableErrors = errors2;
|
||
} else {
|
||
workInProgressRootRecoverableErrors.push.apply(workInProgressRootRecoverableErrors, errors2);
|
||
}
|
||
}
|
||
function finishConcurrentRender(root2, exitStatus, lanes) {
|
||
switch (exitStatus) {
|
||
case RootInProgress:
|
||
case RootFatalErrored: {
|
||
throw new Error("Root did not complete. This is a bug in React.");
|
||
}
|
||
case RootErrored: {
|
||
commitRoot(root2, workInProgressRootRecoverableErrors, workInProgressTransitions);
|
||
break;
|
||
}
|
||
case RootSuspended: {
|
||
markRootSuspended$1(root2, lanes);
|
||
if (includesOnlyRetries(lanes) && // do not delay if we're inside an act() scope
|
||
!shouldForceFlushFallbacksInDEV()) {
|
||
var msUntilTimeout = globalMostRecentFallbackTime + FALLBACK_THROTTLE_MS - now();
|
||
if (msUntilTimeout > 10) {
|
||
var nextLanes = getNextLanes(root2, NoLanes);
|
||
if (nextLanes !== NoLanes) {
|
||
break;
|
||
}
|
||
var suspendedLanes = root2.suspendedLanes;
|
||
if (!isSubsetOfLanes(suspendedLanes, lanes)) {
|
||
var eventTime = requestEventTime();
|
||
markRootPinged(root2, suspendedLanes);
|
||
break;
|
||
}
|
||
root2.timeoutHandle = scheduleTimeout(commitRoot.bind(null, root2, workInProgressRootRecoverableErrors, workInProgressTransitions), msUntilTimeout);
|
||
break;
|
||
}
|
||
}
|
||
commitRoot(root2, workInProgressRootRecoverableErrors, workInProgressTransitions);
|
||
break;
|
||
}
|
||
case RootSuspendedWithDelay: {
|
||
markRootSuspended$1(root2, lanes);
|
||
if (includesOnlyTransitions(lanes)) {
|
||
break;
|
||
}
|
||
if (!shouldForceFlushFallbacksInDEV()) {
|
||
var mostRecentEventTime = getMostRecentEventTime(root2, lanes);
|
||
var eventTimeMs = mostRecentEventTime;
|
||
var timeElapsedMs = now() - eventTimeMs;
|
||
var _msUntilTimeout = jnd(timeElapsedMs) - timeElapsedMs;
|
||
if (_msUntilTimeout > 10) {
|
||
root2.timeoutHandle = scheduleTimeout(commitRoot.bind(null, root2, workInProgressRootRecoverableErrors, workInProgressTransitions), _msUntilTimeout);
|
||
break;
|
||
}
|
||
}
|
||
commitRoot(root2, workInProgressRootRecoverableErrors, workInProgressTransitions);
|
||
break;
|
||
}
|
||
case RootCompleted: {
|
||
commitRoot(root2, workInProgressRootRecoverableErrors, workInProgressTransitions);
|
||
break;
|
||
}
|
||
default: {
|
||
throw new Error("Unknown root exit status.");
|
||
}
|
||
}
|
||
}
|
||
function isRenderConsistentWithExternalStores(finishedWork) {
|
||
var node = finishedWork;
|
||
while (true) {
|
||
if (node.flags & StoreConsistency) {
|
||
var updateQueue = node.updateQueue;
|
||
if (updateQueue !== null) {
|
||
var checks = updateQueue.stores;
|
||
if (checks !== null) {
|
||
for (var i = 0; i < checks.length; i++) {
|
||
var check = checks[i];
|
||
var getSnapshot = check.getSnapshot;
|
||
var renderedValue = check.value;
|
||
try {
|
||
if (!objectIs(getSnapshot(), renderedValue)) {
|
||
return false;
|
||
}
|
||
} catch (error2) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var child = node.child;
|
||
if (node.subtreeFlags & StoreConsistency && child !== null) {
|
||
child.return = node;
|
||
node = child;
|
||
continue;
|
||
}
|
||
if (node === finishedWork) {
|
||
return true;
|
||
}
|
||
while (node.sibling === null) {
|
||
if (node.return === null || node.return === finishedWork) {
|
||
return true;
|
||
}
|
||
node = node.return;
|
||
}
|
||
node.sibling.return = node.return;
|
||
node = node.sibling;
|
||
}
|
||
return true;
|
||
}
|
||
function markRootSuspended$1(root2, suspendedLanes) {
|
||
suspendedLanes = removeLanes(suspendedLanes, workInProgressRootPingedLanes);
|
||
suspendedLanes = removeLanes(suspendedLanes, workInProgressRootInterleavedUpdatedLanes);
|
||
markRootSuspended(root2, suspendedLanes);
|
||
}
|
||
function performSyncWorkOnRoot(root2) {
|
||
{
|
||
syncNestedUpdateFlag();
|
||
}
|
||
if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
|
||
throw new Error("Should not already be working.");
|
||
}
|
||
flushPassiveEffects();
|
||
var lanes = getNextLanes(root2, NoLanes);
|
||
if (!includesSomeLane(lanes, SyncLane)) {
|
||
ensureRootIsScheduled(root2, now());
|
||
return null;
|
||
}
|
||
var exitStatus = renderRootSync(root2, lanes);
|
||
if (root2.tag !== LegacyRoot && exitStatus === RootErrored) {
|
||
var errorRetryLanes = getLanesToRetrySynchronouslyOnError(root2);
|
||
if (errorRetryLanes !== NoLanes) {
|
||
lanes = errorRetryLanes;
|
||
exitStatus = recoverFromConcurrentError(root2, errorRetryLanes);
|
||
}
|
||
}
|
||
if (exitStatus === RootFatalErrored) {
|
||
var fatalError = workInProgressRootFatalError;
|
||
prepareFreshStack(root2, NoLanes);
|
||
markRootSuspended$1(root2, lanes);
|
||
ensureRootIsScheduled(root2, now());
|
||
throw fatalError;
|
||
}
|
||
if (exitStatus === RootDidNotComplete) {
|
||
throw new Error("Root did not complete. This is a bug in React.");
|
||
}
|
||
var finishedWork = root2.current.alternate;
|
||
root2.finishedWork = finishedWork;
|
||
root2.finishedLanes = lanes;
|
||
commitRoot(root2, workInProgressRootRecoverableErrors, workInProgressTransitions);
|
||
ensureRootIsScheduled(root2, now());
|
||
return null;
|
||
}
|
||
function flushRoot(root2, lanes) {
|
||
if (lanes !== NoLanes) {
|
||
markRootEntangled(root2, mergeLanes(lanes, SyncLane));
|
||
ensureRootIsScheduled(root2, now());
|
||
if ((executionContext & (RenderContext | CommitContext)) === NoContext) {
|
||
resetRenderTimer();
|
||
flushSyncCallbacks();
|
||
}
|
||
}
|
||
}
|
||
function batchedUpdates$1(fn, a) {
|
||
var prevExecutionContext = executionContext;
|
||
executionContext |= BatchedContext;
|
||
try {
|
||
return fn(a);
|
||
} finally {
|
||
executionContext = prevExecutionContext;
|
||
if (executionContext === NoContext && // Treat `act` as if it's inside `batchedUpdates`, even in legacy mode.
|
||
!ReactCurrentActQueue$1.isBatchingLegacy) {
|
||
resetRenderTimer();
|
||
flushSyncCallbacksOnlyInLegacyMode();
|
||
}
|
||
}
|
||
}
|
||
function discreteUpdates(fn, a, b, c, d) {
|
||
var previousPriority = getCurrentUpdatePriority();
|
||
var prevTransition = ReactCurrentBatchConfig$3.transition;
|
||
try {
|
||
ReactCurrentBatchConfig$3.transition = null;
|
||
setCurrentUpdatePriority(DiscreteEventPriority);
|
||
return fn(a, b, c, d);
|
||
} finally {
|
||
setCurrentUpdatePriority(previousPriority);
|
||
ReactCurrentBatchConfig$3.transition = prevTransition;
|
||
if (executionContext === NoContext) {
|
||
resetRenderTimer();
|
||
}
|
||
}
|
||
}
|
||
function flushSync(fn) {
|
||
if (rootWithPendingPassiveEffects !== null && rootWithPendingPassiveEffects.tag === LegacyRoot && (executionContext & (RenderContext | CommitContext)) === NoContext) {
|
||
flushPassiveEffects();
|
||
}
|
||
var prevExecutionContext = executionContext;
|
||
executionContext |= BatchedContext;
|
||
var prevTransition = ReactCurrentBatchConfig$3.transition;
|
||
var previousPriority = getCurrentUpdatePriority();
|
||
try {
|
||
ReactCurrentBatchConfig$3.transition = null;
|
||
setCurrentUpdatePriority(DiscreteEventPriority);
|
||
if (fn) {
|
||
return fn();
|
||
} else {
|
||
return void 0;
|
||
}
|
||
} finally {
|
||
setCurrentUpdatePriority(previousPriority);
|
||
ReactCurrentBatchConfig$3.transition = prevTransition;
|
||
executionContext = prevExecutionContext;
|
||
if ((executionContext & (RenderContext | CommitContext)) === NoContext) {
|
||
flushSyncCallbacks();
|
||
}
|
||
}
|
||
}
|
||
function isAlreadyRendering() {
|
||
return (executionContext & (RenderContext | CommitContext)) !== NoContext;
|
||
}
|
||
function pushRenderLanes(fiber, lanes) {
|
||
push(subtreeRenderLanesCursor, subtreeRenderLanes, fiber);
|
||
subtreeRenderLanes = mergeLanes(subtreeRenderLanes, lanes);
|
||
workInProgressRootIncludedLanes = mergeLanes(workInProgressRootIncludedLanes, lanes);
|
||
}
|
||
function popRenderLanes(fiber) {
|
||
subtreeRenderLanes = subtreeRenderLanesCursor.current;
|
||
pop(subtreeRenderLanesCursor, fiber);
|
||
}
|
||
function prepareFreshStack(root2, lanes) {
|
||
root2.finishedWork = null;
|
||
root2.finishedLanes = NoLanes;
|
||
var timeoutHandle = root2.timeoutHandle;
|
||
if (timeoutHandle !== noTimeout) {
|
||
root2.timeoutHandle = noTimeout;
|
||
cancelTimeout(timeoutHandle);
|
||
}
|
||
if (workInProgress !== null) {
|
||
var interruptedWork = workInProgress.return;
|
||
while (interruptedWork !== null) {
|
||
var current3 = interruptedWork.alternate;
|
||
unwindInterruptedWork(current3, interruptedWork);
|
||
interruptedWork = interruptedWork.return;
|
||
}
|
||
}
|
||
workInProgressRoot = root2;
|
||
var rootWorkInProgress = createWorkInProgress(root2.current, null);
|
||
workInProgress = rootWorkInProgress;
|
||
workInProgressRootRenderLanes = subtreeRenderLanes = workInProgressRootIncludedLanes = lanes;
|
||
workInProgressRootExitStatus = RootInProgress;
|
||
workInProgressRootFatalError = null;
|
||
workInProgressRootSkippedLanes = NoLanes;
|
||
workInProgressRootInterleavedUpdatedLanes = NoLanes;
|
||
workInProgressRootPingedLanes = NoLanes;
|
||
workInProgressRootConcurrentErrors = null;
|
||
workInProgressRootRecoverableErrors = null;
|
||
finishQueueingConcurrentUpdates();
|
||
{
|
||
ReactStrictModeWarnings.discardPendingWarnings();
|
||
}
|
||
return rootWorkInProgress;
|
||
}
|
||
function handleError(root2, thrownValue) {
|
||
do {
|
||
var erroredWork = workInProgress;
|
||
try {
|
||
resetContextDependencies();
|
||
resetHooksAfterThrow();
|
||
resetCurrentFiber();
|
||
ReactCurrentOwner$2.current = null;
|
||
if (erroredWork === null || erroredWork.return === null) {
|
||
workInProgressRootExitStatus = RootFatalErrored;
|
||
workInProgressRootFatalError = thrownValue;
|
||
workInProgress = null;
|
||
return;
|
||
}
|
||
if (enableProfilerTimer && erroredWork.mode & ProfileMode) {
|
||
stopProfilerTimerIfRunningAndRecordDelta(erroredWork, true);
|
||
}
|
||
if (enableSchedulingProfiler) {
|
||
markComponentRenderStopped();
|
||
if (thrownValue !== null && typeof thrownValue === "object" && typeof thrownValue.then === "function") {
|
||
var wakeable = thrownValue;
|
||
markComponentSuspended(erroredWork, wakeable, workInProgressRootRenderLanes);
|
||
} else {
|
||
markComponentErrored(erroredWork, thrownValue, workInProgressRootRenderLanes);
|
||
}
|
||
}
|
||
throwException(root2, erroredWork.return, erroredWork, thrownValue, workInProgressRootRenderLanes);
|
||
completeUnitOfWork(erroredWork);
|
||
} catch (yetAnotherThrownValue) {
|
||
thrownValue = yetAnotherThrownValue;
|
||
if (workInProgress === erroredWork && erroredWork !== null) {
|
||
erroredWork = erroredWork.return;
|
||
workInProgress = erroredWork;
|
||
} else {
|
||
erroredWork = workInProgress;
|
||
}
|
||
continue;
|
||
}
|
||
return;
|
||
} while (true);
|
||
}
|
||
function pushDispatcher() {
|
||
var prevDispatcher = ReactCurrentDispatcher$2.current;
|
||
ReactCurrentDispatcher$2.current = ContextOnlyDispatcher;
|
||
if (prevDispatcher === null) {
|
||
return ContextOnlyDispatcher;
|
||
} else {
|
||
return prevDispatcher;
|
||
}
|
||
}
|
||
function popDispatcher(prevDispatcher) {
|
||
ReactCurrentDispatcher$2.current = prevDispatcher;
|
||
}
|
||
function markCommitTimeOfFallback() {
|
||
globalMostRecentFallbackTime = now();
|
||
}
|
||
function markSkippedUpdateLanes(lane) {
|
||
workInProgressRootSkippedLanes = mergeLanes(lane, workInProgressRootSkippedLanes);
|
||
}
|
||
function renderDidSuspend() {
|
||
if (workInProgressRootExitStatus === RootInProgress) {
|
||
workInProgressRootExitStatus = RootSuspended;
|
||
}
|
||
}
|
||
function renderDidSuspendDelayIfPossible() {
|
||
if (workInProgressRootExitStatus === RootInProgress || workInProgressRootExitStatus === RootSuspended || workInProgressRootExitStatus === RootErrored) {
|
||
workInProgressRootExitStatus = RootSuspendedWithDelay;
|
||
}
|
||
if (workInProgressRoot !== null && (includesNonIdleWork(workInProgressRootSkippedLanes) || includesNonIdleWork(workInProgressRootInterleavedUpdatedLanes))) {
|
||
markRootSuspended$1(workInProgressRoot, workInProgressRootRenderLanes);
|
||
}
|
||
}
|
||
function renderDidError(error2) {
|
||
if (workInProgressRootExitStatus !== RootSuspendedWithDelay) {
|
||
workInProgressRootExitStatus = RootErrored;
|
||
}
|
||
if (workInProgressRootConcurrentErrors === null) {
|
||
workInProgressRootConcurrentErrors = [error2];
|
||
} else {
|
||
workInProgressRootConcurrentErrors.push(error2);
|
||
}
|
||
}
|
||
function renderHasNotSuspendedYet() {
|
||
return workInProgressRootExitStatus === RootInProgress;
|
||
}
|
||
function renderRootSync(root2, lanes) {
|
||
var prevExecutionContext = executionContext;
|
||
executionContext |= RenderContext;
|
||
var prevDispatcher = pushDispatcher();
|
||
if (workInProgressRoot !== root2 || workInProgressRootRenderLanes !== lanes) {
|
||
{
|
||
if (isDevToolsPresent) {
|
||
var memoizedUpdaters = root2.memoizedUpdaters;
|
||
if (memoizedUpdaters.size > 0) {
|
||
restorePendingUpdaters(root2, workInProgressRootRenderLanes);
|
||
memoizedUpdaters.clear();
|
||
}
|
||
movePendingFibersToMemoized(root2, lanes);
|
||
}
|
||
}
|
||
workInProgressTransitions = getTransitionsForLanes();
|
||
prepareFreshStack(root2, lanes);
|
||
}
|
||
{
|
||
markRenderStarted(lanes);
|
||
}
|
||
do {
|
||
try {
|
||
workLoopSync();
|
||
break;
|
||
} catch (thrownValue) {
|
||
handleError(root2, thrownValue);
|
||
}
|
||
} while (true);
|
||
resetContextDependencies();
|
||
executionContext = prevExecutionContext;
|
||
popDispatcher(prevDispatcher);
|
||
if (workInProgress !== null) {
|
||
throw new Error("Cannot commit an incomplete root. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
{
|
||
markRenderStopped();
|
||
}
|
||
workInProgressRoot = null;
|
||
workInProgressRootRenderLanes = NoLanes;
|
||
return workInProgressRootExitStatus;
|
||
}
|
||
function workLoopSync() {
|
||
while (workInProgress !== null) {
|
||
performUnitOfWork(workInProgress);
|
||
}
|
||
}
|
||
function renderRootConcurrent(root2, lanes) {
|
||
var prevExecutionContext = executionContext;
|
||
executionContext |= RenderContext;
|
||
var prevDispatcher = pushDispatcher();
|
||
if (workInProgressRoot !== root2 || workInProgressRootRenderLanes !== lanes) {
|
||
{
|
||
if (isDevToolsPresent) {
|
||
var memoizedUpdaters = root2.memoizedUpdaters;
|
||
if (memoizedUpdaters.size > 0) {
|
||
restorePendingUpdaters(root2, workInProgressRootRenderLanes);
|
||
memoizedUpdaters.clear();
|
||
}
|
||
movePendingFibersToMemoized(root2, lanes);
|
||
}
|
||
}
|
||
workInProgressTransitions = getTransitionsForLanes();
|
||
resetRenderTimer();
|
||
prepareFreshStack(root2, lanes);
|
||
}
|
||
{
|
||
markRenderStarted(lanes);
|
||
}
|
||
do {
|
||
try {
|
||
workLoopConcurrent();
|
||
break;
|
||
} catch (thrownValue) {
|
||
handleError(root2, thrownValue);
|
||
}
|
||
} while (true);
|
||
resetContextDependencies();
|
||
popDispatcher(prevDispatcher);
|
||
executionContext = prevExecutionContext;
|
||
if (workInProgress !== null) {
|
||
{
|
||
markRenderYielded();
|
||
}
|
||
return RootInProgress;
|
||
} else {
|
||
{
|
||
markRenderStopped();
|
||
}
|
||
workInProgressRoot = null;
|
||
workInProgressRootRenderLanes = NoLanes;
|
||
return workInProgressRootExitStatus;
|
||
}
|
||
}
|
||
function workLoopConcurrent() {
|
||
while (workInProgress !== null && !shouldYield()) {
|
||
performUnitOfWork(workInProgress);
|
||
}
|
||
}
|
||
function performUnitOfWork(unitOfWork) {
|
||
var current3 = unitOfWork.alternate;
|
||
setCurrentFiber(unitOfWork);
|
||
var next;
|
||
if ((unitOfWork.mode & ProfileMode) !== NoMode) {
|
||
startProfilerTimer(unitOfWork);
|
||
next = beginWork$1(current3, unitOfWork, subtreeRenderLanes);
|
||
stopProfilerTimerIfRunningAndRecordDelta(unitOfWork, true);
|
||
} else {
|
||
next = beginWork$1(current3, unitOfWork, subtreeRenderLanes);
|
||
}
|
||
resetCurrentFiber();
|
||
unitOfWork.memoizedProps = unitOfWork.pendingProps;
|
||
if (next === null) {
|
||
completeUnitOfWork(unitOfWork);
|
||
} else {
|
||
workInProgress = next;
|
||
}
|
||
ReactCurrentOwner$2.current = null;
|
||
}
|
||
function completeUnitOfWork(unitOfWork) {
|
||
var completedWork = unitOfWork;
|
||
do {
|
||
var current3 = completedWork.alternate;
|
||
var returnFiber = completedWork.return;
|
||
if ((completedWork.flags & Incomplete) === NoFlags) {
|
||
setCurrentFiber(completedWork);
|
||
var next = void 0;
|
||
if ((completedWork.mode & ProfileMode) === NoMode) {
|
||
next = completeWork(current3, completedWork, subtreeRenderLanes);
|
||
} else {
|
||
startProfilerTimer(completedWork);
|
||
next = completeWork(current3, completedWork, subtreeRenderLanes);
|
||
stopProfilerTimerIfRunningAndRecordDelta(completedWork, false);
|
||
}
|
||
resetCurrentFiber();
|
||
if (next !== null) {
|
||
workInProgress = next;
|
||
return;
|
||
}
|
||
} else {
|
||
var _next = unwindWork(current3, completedWork);
|
||
if (_next !== null) {
|
||
_next.flags &= HostEffectMask;
|
||
workInProgress = _next;
|
||
return;
|
||
}
|
||
if ((completedWork.mode & ProfileMode) !== NoMode) {
|
||
stopProfilerTimerIfRunningAndRecordDelta(completedWork, false);
|
||
var actualDuration = completedWork.actualDuration;
|
||
var child = completedWork.child;
|
||
while (child !== null) {
|
||
actualDuration += child.actualDuration;
|
||
child = child.sibling;
|
||
}
|
||
completedWork.actualDuration = actualDuration;
|
||
}
|
||
if (returnFiber !== null) {
|
||
returnFiber.flags |= Incomplete;
|
||
returnFiber.subtreeFlags = NoFlags;
|
||
returnFiber.deletions = null;
|
||
} else {
|
||
workInProgressRootExitStatus = RootDidNotComplete;
|
||
workInProgress = null;
|
||
return;
|
||
}
|
||
}
|
||
var siblingFiber = completedWork.sibling;
|
||
if (siblingFiber !== null) {
|
||
workInProgress = siblingFiber;
|
||
return;
|
||
}
|
||
completedWork = returnFiber;
|
||
workInProgress = completedWork;
|
||
} while (completedWork !== null);
|
||
if (workInProgressRootExitStatus === RootInProgress) {
|
||
workInProgressRootExitStatus = RootCompleted;
|
||
}
|
||
}
|
||
function commitRoot(root2, recoverableErrors, transitions) {
|
||
var previousUpdateLanePriority = getCurrentUpdatePriority();
|
||
var prevTransition = ReactCurrentBatchConfig$3.transition;
|
||
try {
|
||
ReactCurrentBatchConfig$3.transition = null;
|
||
setCurrentUpdatePriority(DiscreteEventPriority);
|
||
commitRootImpl(root2, recoverableErrors, transitions, previousUpdateLanePriority);
|
||
} finally {
|
||
ReactCurrentBatchConfig$3.transition = prevTransition;
|
||
setCurrentUpdatePriority(previousUpdateLanePriority);
|
||
}
|
||
return null;
|
||
}
|
||
function commitRootImpl(root2, recoverableErrors, transitions, renderPriorityLevel) {
|
||
do {
|
||
flushPassiveEffects();
|
||
} while (rootWithPendingPassiveEffects !== null);
|
||
flushRenderPhaseStrictModeWarningsInDEV();
|
||
if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
|
||
throw new Error("Should not already be working.");
|
||
}
|
||
var finishedWork = root2.finishedWork;
|
||
var lanes = root2.finishedLanes;
|
||
{
|
||
markCommitStarted(lanes);
|
||
}
|
||
if (finishedWork === null) {
|
||
{
|
||
markCommitStopped();
|
||
}
|
||
return null;
|
||
} else {
|
||
{
|
||
if (lanes === NoLanes) {
|
||
error("root.finishedLanes should not be empty during a commit. This is a bug in React.");
|
||
}
|
||
}
|
||
}
|
||
root2.finishedWork = null;
|
||
root2.finishedLanes = NoLanes;
|
||
if (finishedWork === root2.current) {
|
||
throw new Error("Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.");
|
||
}
|
||
root2.callbackNode = null;
|
||
root2.callbackPriority = NoLane;
|
||
var remainingLanes = mergeLanes(finishedWork.lanes, finishedWork.childLanes);
|
||
markRootFinished(root2, remainingLanes);
|
||
if (root2 === workInProgressRoot) {
|
||
workInProgressRoot = null;
|
||
workInProgress = null;
|
||
workInProgressRootRenderLanes = NoLanes;
|
||
}
|
||
if ((finishedWork.subtreeFlags & PassiveMask) !== NoFlags || (finishedWork.flags & PassiveMask) !== NoFlags) {
|
||
if (!rootDoesHavePassiveEffects) {
|
||
rootDoesHavePassiveEffects = true;
|
||
pendingPassiveTransitions = transitions;
|
||
scheduleCallback$1(NormalPriority, function() {
|
||
flushPassiveEffects();
|
||
return null;
|
||
});
|
||
}
|
||
}
|
||
var subtreeHasEffects = (finishedWork.subtreeFlags & (BeforeMutationMask | MutationMask | LayoutMask | PassiveMask)) !== NoFlags;
|
||
var rootHasEffect = (finishedWork.flags & (BeforeMutationMask | MutationMask | LayoutMask | PassiveMask)) !== NoFlags;
|
||
if (subtreeHasEffects || rootHasEffect) {
|
||
var prevTransition = ReactCurrentBatchConfig$3.transition;
|
||
ReactCurrentBatchConfig$3.transition = null;
|
||
var previousPriority = getCurrentUpdatePriority();
|
||
setCurrentUpdatePriority(DiscreteEventPriority);
|
||
var prevExecutionContext = executionContext;
|
||
executionContext |= CommitContext;
|
||
ReactCurrentOwner$2.current = null;
|
||
var shouldFireAfterActiveInstanceBlur2 = commitBeforeMutationEffects(root2, finishedWork);
|
||
{
|
||
recordCommitTime();
|
||
}
|
||
commitMutationEffects(root2, finishedWork, lanes);
|
||
resetAfterCommit(root2.containerInfo);
|
||
root2.current = finishedWork;
|
||
{
|
||
markLayoutEffectsStarted(lanes);
|
||
}
|
||
commitLayoutEffects(finishedWork, root2, lanes);
|
||
{
|
||
markLayoutEffectsStopped();
|
||
}
|
||
requestPaint();
|
||
executionContext = prevExecutionContext;
|
||
setCurrentUpdatePriority(previousPriority);
|
||
ReactCurrentBatchConfig$3.transition = prevTransition;
|
||
} else {
|
||
root2.current = finishedWork;
|
||
{
|
||
recordCommitTime();
|
||
}
|
||
}
|
||
var rootDidHavePassiveEffects = rootDoesHavePassiveEffects;
|
||
if (rootDoesHavePassiveEffects) {
|
||
rootDoesHavePassiveEffects = false;
|
||
rootWithPendingPassiveEffects = root2;
|
||
pendingPassiveEffectsLanes = lanes;
|
||
} else {
|
||
{
|
||
nestedPassiveUpdateCount = 0;
|
||
rootWithPassiveNestedUpdates = null;
|
||
}
|
||
}
|
||
remainingLanes = root2.pendingLanes;
|
||
if (remainingLanes === NoLanes) {
|
||
legacyErrorBoundariesThatAlreadyFailed = null;
|
||
}
|
||
{
|
||
if (!rootDidHavePassiveEffects) {
|
||
commitDoubleInvokeEffectsInDEV(root2.current, false);
|
||
}
|
||
}
|
||
onCommitRoot(finishedWork.stateNode, renderPriorityLevel);
|
||
{
|
||
if (isDevToolsPresent) {
|
||
root2.memoizedUpdaters.clear();
|
||
}
|
||
}
|
||
{
|
||
onCommitRoot$1();
|
||
}
|
||
ensureRootIsScheduled(root2, now());
|
||
if (recoverableErrors !== null) {
|
||
var onRecoverableError = root2.onRecoverableError;
|
||
for (var i = 0; i < recoverableErrors.length; i++) {
|
||
var recoverableError = recoverableErrors[i];
|
||
var componentStack = recoverableError.stack;
|
||
var digest = recoverableError.digest;
|
||
onRecoverableError(recoverableError.value, {
|
||
componentStack,
|
||
digest
|
||
});
|
||
}
|
||
}
|
||
if (hasUncaughtError) {
|
||
hasUncaughtError = false;
|
||
var error$1 = firstUncaughtError;
|
||
firstUncaughtError = null;
|
||
throw error$1;
|
||
}
|
||
if (includesSomeLane(pendingPassiveEffectsLanes, SyncLane) && root2.tag !== LegacyRoot) {
|
||
flushPassiveEffects();
|
||
}
|
||
remainingLanes = root2.pendingLanes;
|
||
if (includesSomeLane(remainingLanes, SyncLane)) {
|
||
{
|
||
markNestedUpdateScheduled();
|
||
}
|
||
if (root2 === rootWithNestedUpdates) {
|
||
nestedUpdateCount++;
|
||
} else {
|
||
nestedUpdateCount = 0;
|
||
rootWithNestedUpdates = root2;
|
||
}
|
||
} else {
|
||
nestedUpdateCount = 0;
|
||
}
|
||
flushSyncCallbacks();
|
||
{
|
||
markCommitStopped();
|
||
}
|
||
return null;
|
||
}
|
||
function flushPassiveEffects() {
|
||
if (rootWithPendingPassiveEffects !== null) {
|
||
var renderPriority = lanesToEventPriority(pendingPassiveEffectsLanes);
|
||
var priority = lowerEventPriority(DefaultEventPriority, renderPriority);
|
||
var prevTransition = ReactCurrentBatchConfig$3.transition;
|
||
var previousPriority = getCurrentUpdatePriority();
|
||
try {
|
||
ReactCurrentBatchConfig$3.transition = null;
|
||
setCurrentUpdatePriority(priority);
|
||
return flushPassiveEffectsImpl();
|
||
} finally {
|
||
setCurrentUpdatePriority(previousPriority);
|
||
ReactCurrentBatchConfig$3.transition = prevTransition;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function enqueuePendingPassiveProfilerEffect(fiber) {
|
||
{
|
||
pendingPassiveProfilerEffects.push(fiber);
|
||
if (!rootDoesHavePassiveEffects) {
|
||
rootDoesHavePassiveEffects = true;
|
||
scheduleCallback$1(NormalPriority, function() {
|
||
flushPassiveEffects();
|
||
return null;
|
||
});
|
||
}
|
||
}
|
||
}
|
||
function flushPassiveEffectsImpl() {
|
||
if (rootWithPendingPassiveEffects === null) {
|
||
return false;
|
||
}
|
||
var transitions = pendingPassiveTransitions;
|
||
pendingPassiveTransitions = null;
|
||
var root2 = rootWithPendingPassiveEffects;
|
||
var lanes = pendingPassiveEffectsLanes;
|
||
rootWithPendingPassiveEffects = null;
|
||
pendingPassiveEffectsLanes = NoLanes;
|
||
if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
|
||
throw new Error("Cannot flush passive effects while already rendering.");
|
||
}
|
||
{
|
||
isFlushingPassiveEffects = true;
|
||
didScheduleUpdateDuringPassiveEffects = false;
|
||
}
|
||
{
|
||
markPassiveEffectsStarted(lanes);
|
||
}
|
||
var prevExecutionContext = executionContext;
|
||
executionContext |= CommitContext;
|
||
commitPassiveUnmountEffects(root2.current);
|
||
commitPassiveMountEffects(root2, root2.current, lanes, transitions);
|
||
{
|
||
var profilerEffects = pendingPassiveProfilerEffects;
|
||
pendingPassiveProfilerEffects = [];
|
||
for (var i = 0; i < profilerEffects.length; i++) {
|
||
var _fiber = profilerEffects[i];
|
||
commitPassiveEffectDurations(root2, _fiber);
|
||
}
|
||
}
|
||
{
|
||
markPassiveEffectsStopped();
|
||
}
|
||
{
|
||
commitDoubleInvokeEffectsInDEV(root2.current, true);
|
||
}
|
||
executionContext = prevExecutionContext;
|
||
flushSyncCallbacks();
|
||
{
|
||
if (didScheduleUpdateDuringPassiveEffects) {
|
||
if (root2 === rootWithPassiveNestedUpdates) {
|
||
nestedPassiveUpdateCount++;
|
||
} else {
|
||
nestedPassiveUpdateCount = 0;
|
||
rootWithPassiveNestedUpdates = root2;
|
||
}
|
||
} else {
|
||
nestedPassiveUpdateCount = 0;
|
||
}
|
||
isFlushingPassiveEffects = false;
|
||
didScheduleUpdateDuringPassiveEffects = false;
|
||
}
|
||
onPostCommitRoot(root2);
|
||
{
|
||
var stateNode = root2.current.stateNode;
|
||
stateNode.effectDuration = 0;
|
||
stateNode.passiveEffectDuration = 0;
|
||
}
|
||
return true;
|
||
}
|
||
function isAlreadyFailedLegacyErrorBoundary(instance) {
|
||
return legacyErrorBoundariesThatAlreadyFailed !== null && legacyErrorBoundariesThatAlreadyFailed.has(instance);
|
||
}
|
||
function markLegacyErrorBoundaryAsFailed(instance) {
|
||
if (legacyErrorBoundariesThatAlreadyFailed === null) {
|
||
legacyErrorBoundariesThatAlreadyFailed = /* @__PURE__ */ new Set([instance]);
|
||
} else {
|
||
legacyErrorBoundariesThatAlreadyFailed.add(instance);
|
||
}
|
||
}
|
||
function prepareToThrowUncaughtError(error2) {
|
||
if (!hasUncaughtError) {
|
||
hasUncaughtError = true;
|
||
firstUncaughtError = error2;
|
||
}
|
||
}
|
||
var onUncaughtError = prepareToThrowUncaughtError;
|
||
function captureCommitPhaseErrorOnRoot(rootFiber, sourceFiber, error2) {
|
||
var errorInfo = createCapturedValueAtFiber(error2, sourceFiber);
|
||
var update = createRootErrorUpdate(rootFiber, errorInfo, SyncLane);
|
||
var root2 = enqueueUpdate(rootFiber, update, SyncLane);
|
||
var eventTime = requestEventTime();
|
||
if (root2 !== null) {
|
||
markRootUpdated(root2, SyncLane, eventTime);
|
||
ensureRootIsScheduled(root2, eventTime);
|
||
}
|
||
}
|
||
function captureCommitPhaseError(sourceFiber, nearestMountedAncestor, error$1) {
|
||
{
|
||
reportUncaughtErrorInDEV(error$1);
|
||
setIsRunningInsertionEffect(false);
|
||
}
|
||
if (sourceFiber.tag === HostRoot) {
|
||
captureCommitPhaseErrorOnRoot(sourceFiber, sourceFiber, error$1);
|
||
return;
|
||
}
|
||
var fiber = null;
|
||
{
|
||
fiber = nearestMountedAncestor;
|
||
}
|
||
while (fiber !== null) {
|
||
if (fiber.tag === HostRoot) {
|
||
captureCommitPhaseErrorOnRoot(fiber, sourceFiber, error$1);
|
||
return;
|
||
} else if (fiber.tag === ClassComponent) {
|
||
var ctor = fiber.type;
|
||
var instance = fiber.stateNode;
|
||
if (typeof ctor.getDerivedStateFromError === "function" || typeof instance.componentDidCatch === "function" && !isAlreadyFailedLegacyErrorBoundary(instance)) {
|
||
var errorInfo = createCapturedValueAtFiber(error$1, sourceFiber);
|
||
var update = createClassErrorUpdate(fiber, errorInfo, SyncLane);
|
||
var root2 = enqueueUpdate(fiber, update, SyncLane);
|
||
var eventTime = requestEventTime();
|
||
if (root2 !== null) {
|
||
markRootUpdated(root2, SyncLane, eventTime);
|
||
ensureRootIsScheduled(root2, eventTime);
|
||
}
|
||
return;
|
||
}
|
||
}
|
||
fiber = fiber.return;
|
||
}
|
||
{
|
||
error("Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Likely causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.\n\nError message:\n\n%s", error$1);
|
||
}
|
||
}
|
||
function pingSuspendedRoot(root2, wakeable, pingedLanes) {
|
||
var pingCache = root2.pingCache;
|
||
if (pingCache !== null) {
|
||
pingCache.delete(wakeable);
|
||
}
|
||
var eventTime = requestEventTime();
|
||
markRootPinged(root2, pingedLanes);
|
||
warnIfSuspenseResolutionNotWrappedWithActDEV(root2);
|
||
if (workInProgressRoot === root2 && isSubsetOfLanes(workInProgressRootRenderLanes, pingedLanes)) {
|
||
if (workInProgressRootExitStatus === RootSuspendedWithDelay || workInProgressRootExitStatus === RootSuspended && includesOnlyRetries(workInProgressRootRenderLanes) && now() - globalMostRecentFallbackTime < FALLBACK_THROTTLE_MS) {
|
||
prepareFreshStack(root2, NoLanes);
|
||
} else {
|
||
workInProgressRootPingedLanes = mergeLanes(workInProgressRootPingedLanes, pingedLanes);
|
||
}
|
||
}
|
||
ensureRootIsScheduled(root2, eventTime);
|
||
}
|
||
function retryTimedOutBoundary(boundaryFiber, retryLane) {
|
||
if (retryLane === NoLane) {
|
||
retryLane = requestRetryLane(boundaryFiber);
|
||
}
|
||
var eventTime = requestEventTime();
|
||
var root2 = enqueueConcurrentRenderForLane(boundaryFiber, retryLane);
|
||
if (root2 !== null) {
|
||
markRootUpdated(root2, retryLane, eventTime);
|
||
ensureRootIsScheduled(root2, eventTime);
|
||
}
|
||
}
|
||
function retryDehydratedSuspenseBoundary(boundaryFiber) {
|
||
var suspenseState = boundaryFiber.memoizedState;
|
||
var retryLane = NoLane;
|
||
if (suspenseState !== null) {
|
||
retryLane = suspenseState.retryLane;
|
||
}
|
||
retryTimedOutBoundary(boundaryFiber, retryLane);
|
||
}
|
||
function resolveRetryWakeable(boundaryFiber, wakeable) {
|
||
var retryLane = NoLane;
|
||
var retryCache;
|
||
switch (boundaryFiber.tag) {
|
||
case SuspenseComponent:
|
||
retryCache = boundaryFiber.stateNode;
|
||
var suspenseState = boundaryFiber.memoizedState;
|
||
if (suspenseState !== null) {
|
||
retryLane = suspenseState.retryLane;
|
||
}
|
||
break;
|
||
case SuspenseListComponent:
|
||
retryCache = boundaryFiber.stateNode;
|
||
break;
|
||
default:
|
||
throw new Error("Pinged unknown suspense boundary type. This is probably a bug in React.");
|
||
}
|
||
if (retryCache !== null) {
|
||
retryCache.delete(wakeable);
|
||
}
|
||
retryTimedOutBoundary(boundaryFiber, retryLane);
|
||
}
|
||
function jnd(timeElapsed) {
|
||
return timeElapsed < 120 ? 120 : timeElapsed < 480 ? 480 : timeElapsed < 1080 ? 1080 : timeElapsed < 1920 ? 1920 : timeElapsed < 3e3 ? 3e3 : timeElapsed < 4320 ? 4320 : ceil(timeElapsed / 1960) * 1960;
|
||
}
|
||
function checkForNestedUpdates() {
|
||
if (nestedUpdateCount > NESTED_UPDATE_LIMIT) {
|
||
nestedUpdateCount = 0;
|
||
rootWithNestedUpdates = null;
|
||
throw new Error("Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.");
|
||
}
|
||
{
|
||
if (nestedPassiveUpdateCount > NESTED_PASSIVE_UPDATE_LIMIT) {
|
||
nestedPassiveUpdateCount = 0;
|
||
rootWithPassiveNestedUpdates = null;
|
||
error("Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.");
|
||
}
|
||
}
|
||
}
|
||
function flushRenderPhaseStrictModeWarningsInDEV() {
|
||
{
|
||
ReactStrictModeWarnings.flushLegacyContextWarning();
|
||
{
|
||
ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings();
|
||
}
|
||
}
|
||
}
|
||
function commitDoubleInvokeEffectsInDEV(fiber, hasPassiveEffects) {
|
||
{
|
||
setCurrentFiber(fiber);
|
||
invokeEffectsInDev(fiber, MountLayoutDev, invokeLayoutEffectUnmountInDEV);
|
||
if (hasPassiveEffects) {
|
||
invokeEffectsInDev(fiber, MountPassiveDev, invokePassiveEffectUnmountInDEV);
|
||
}
|
||
invokeEffectsInDev(fiber, MountLayoutDev, invokeLayoutEffectMountInDEV);
|
||
if (hasPassiveEffects) {
|
||
invokeEffectsInDev(fiber, MountPassiveDev, invokePassiveEffectMountInDEV);
|
||
}
|
||
resetCurrentFiber();
|
||
}
|
||
}
|
||
function invokeEffectsInDev(firstChild, fiberFlags, invokeEffectFn) {
|
||
{
|
||
var current3 = firstChild;
|
||
var subtreeRoot = null;
|
||
while (current3 !== null) {
|
||
var primarySubtreeFlag = current3.subtreeFlags & fiberFlags;
|
||
if (current3 !== subtreeRoot && current3.child !== null && primarySubtreeFlag !== NoFlags) {
|
||
current3 = current3.child;
|
||
} else {
|
||
if ((current3.flags & fiberFlags) !== NoFlags) {
|
||
invokeEffectFn(current3);
|
||
}
|
||
if (current3.sibling !== null) {
|
||
current3 = current3.sibling;
|
||
} else {
|
||
current3 = subtreeRoot = current3.return;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var didWarnStateUpdateForNotYetMountedComponent = null;
|
||
function warnAboutUpdateOnNotYetMountedFiberInDEV(fiber) {
|
||
{
|
||
if ((executionContext & RenderContext) !== NoContext) {
|
||
return;
|
||
}
|
||
if (!(fiber.mode & ConcurrentMode)) {
|
||
return;
|
||
}
|
||
var tag = fiber.tag;
|
||
if (tag !== IndeterminateComponent && tag !== HostRoot && tag !== ClassComponent && tag !== FunctionComponent && tag !== ForwardRef && tag !== MemoComponent && tag !== SimpleMemoComponent) {
|
||
return;
|
||
}
|
||
var componentName = getComponentNameFromFiber(fiber) || "ReactComponent";
|
||
if (didWarnStateUpdateForNotYetMountedComponent !== null) {
|
||
if (didWarnStateUpdateForNotYetMountedComponent.has(componentName)) {
|
||
return;
|
||
}
|
||
didWarnStateUpdateForNotYetMountedComponent.add(componentName);
|
||
} else {
|
||
didWarnStateUpdateForNotYetMountedComponent = /* @__PURE__ */ new Set([componentName]);
|
||
}
|
||
var previousFiber = current2;
|
||
try {
|
||
setCurrentFiber(fiber);
|
||
error("Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead.");
|
||
} finally {
|
||
if (previousFiber) {
|
||
setCurrentFiber(fiber);
|
||
} else {
|
||
resetCurrentFiber();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var beginWork$1;
|
||
{
|
||
var dummyFiber = null;
|
||
beginWork$1 = function(current3, unitOfWork, lanes) {
|
||
var originalWorkInProgressCopy = assignFiberPropertiesInDEV(dummyFiber, unitOfWork);
|
||
try {
|
||
return beginWork(current3, unitOfWork, lanes);
|
||
} catch (originalError) {
|
||
if (didSuspendOrErrorWhileHydratingDEV() || originalError !== null && typeof originalError === "object" && typeof originalError.then === "function") {
|
||
throw originalError;
|
||
}
|
||
resetContextDependencies();
|
||
resetHooksAfterThrow();
|
||
unwindInterruptedWork(current3, unitOfWork);
|
||
assignFiberPropertiesInDEV(unitOfWork, originalWorkInProgressCopy);
|
||
if (unitOfWork.mode & ProfileMode) {
|
||
startProfilerTimer(unitOfWork);
|
||
}
|
||
invokeGuardedCallback(null, beginWork, null, current3, unitOfWork, lanes);
|
||
if (hasCaughtError()) {
|
||
var replayError = clearCaughtError();
|
||
if (typeof replayError === "object" && replayError !== null && replayError._suppressLogging && typeof originalError === "object" && originalError !== null && !originalError._suppressLogging) {
|
||
originalError._suppressLogging = true;
|
||
}
|
||
}
|
||
throw originalError;
|
||
}
|
||
};
|
||
}
|
||
var didWarnAboutUpdateInRender = false;
|
||
var didWarnAboutUpdateInRenderForAnotherComponent;
|
||
{
|
||
didWarnAboutUpdateInRenderForAnotherComponent = /* @__PURE__ */ new Set();
|
||
}
|
||
function warnAboutRenderPhaseUpdatesInDEV(fiber) {
|
||
{
|
||
if (isRendering && !getIsUpdatingOpaqueValueInRenderPhaseInDEV()) {
|
||
switch (fiber.tag) {
|
||
case FunctionComponent:
|
||
case ForwardRef:
|
||
case SimpleMemoComponent: {
|
||
var renderingComponentName = workInProgress && getComponentNameFromFiber(workInProgress) || "Unknown";
|
||
var dedupeKey = renderingComponentName;
|
||
if (!didWarnAboutUpdateInRenderForAnotherComponent.has(dedupeKey)) {
|
||
didWarnAboutUpdateInRenderForAnotherComponent.add(dedupeKey);
|
||
var setStateComponentName = getComponentNameFromFiber(fiber) || "Unknown";
|
||
error("Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://reactjs.org/link/setstate-in-render", setStateComponentName, renderingComponentName, renderingComponentName);
|
||
}
|
||
break;
|
||
}
|
||
case ClassComponent: {
|
||
if (!didWarnAboutUpdateInRender) {
|
||
error("Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state.");
|
||
didWarnAboutUpdateInRender = true;
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function restorePendingUpdaters(root2, lanes) {
|
||
{
|
||
if (isDevToolsPresent) {
|
||
var memoizedUpdaters = root2.memoizedUpdaters;
|
||
memoizedUpdaters.forEach(function(schedulingFiber) {
|
||
addFiberToLanesMap(root2, schedulingFiber, lanes);
|
||
});
|
||
}
|
||
}
|
||
}
|
||
var fakeActCallbackNode = {};
|
||
function scheduleCallback$1(priorityLevel, callback) {
|
||
{
|
||
var actQueue = ReactCurrentActQueue$1.current;
|
||
if (actQueue !== null) {
|
||
actQueue.push(callback);
|
||
return fakeActCallbackNode;
|
||
} else {
|
||
return scheduleCallback(priorityLevel, callback);
|
||
}
|
||
}
|
||
}
|
||
function cancelCallback$1(callbackNode) {
|
||
if (callbackNode === fakeActCallbackNode) {
|
||
return;
|
||
}
|
||
return cancelCallback(callbackNode);
|
||
}
|
||
function shouldForceFlushFallbacksInDEV() {
|
||
return ReactCurrentActQueue$1.current !== null;
|
||
}
|
||
function warnIfUpdatesNotWrappedWithActDEV(fiber) {
|
||
{
|
||
if (fiber.mode & ConcurrentMode) {
|
||
if (!isConcurrentActEnvironment()) {
|
||
return;
|
||
}
|
||
} else {
|
||
if (!isLegacyActEnvironment()) {
|
||
return;
|
||
}
|
||
if (executionContext !== NoContext) {
|
||
return;
|
||
}
|
||
if (fiber.tag !== FunctionComponent && fiber.tag !== ForwardRef && fiber.tag !== SimpleMemoComponent) {
|
||
return;
|
||
}
|
||
}
|
||
if (ReactCurrentActQueue$1.current === null) {
|
||
var previousFiber = current2;
|
||
try {
|
||
setCurrentFiber(fiber);
|
||
error("An update to %s inside a test was not wrapped in act(...).\n\nWhen testing, code that causes React state updates should be wrapped into act(...):\n\nact(() => {\n /* fire events that update state */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act", getComponentNameFromFiber(fiber));
|
||
} finally {
|
||
if (previousFiber) {
|
||
setCurrentFiber(fiber);
|
||
} else {
|
||
resetCurrentFiber();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function warnIfSuspenseResolutionNotWrappedWithActDEV(root2) {
|
||
{
|
||
if (root2.tag !== LegacyRoot && isConcurrentActEnvironment() && ReactCurrentActQueue$1.current === null) {
|
||
error("A suspended resource finished loading inside a test, but the event was not wrapped in act(...).\n\nWhen testing, code that resolves suspended data should be wrapped into act(...):\n\nact(() => {\n /* finish loading suspended data */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act");
|
||
}
|
||
}
|
||
}
|
||
function setIsRunningInsertionEffect(isRunning) {
|
||
{
|
||
isRunningInsertionEffect = isRunning;
|
||
}
|
||
}
|
||
var resolveFamily = null;
|
||
var failedBoundaries = null;
|
||
var setRefreshHandler = function(handler) {
|
||
{
|
||
resolveFamily = handler;
|
||
}
|
||
};
|
||
function resolveFunctionForHotReloading(type) {
|
||
{
|
||
if (resolveFamily === null) {
|
||
return type;
|
||
}
|
||
var family = resolveFamily(type);
|
||
if (family === void 0) {
|
||
return type;
|
||
}
|
||
return family.current;
|
||
}
|
||
}
|
||
function resolveClassForHotReloading(type) {
|
||
return resolveFunctionForHotReloading(type);
|
||
}
|
||
function resolveForwardRefForHotReloading(type) {
|
||
{
|
||
if (resolveFamily === null) {
|
||
return type;
|
||
}
|
||
var family = resolveFamily(type);
|
||
if (family === void 0) {
|
||
if (type !== null && type !== void 0 && typeof type.render === "function") {
|
||
var currentRender = resolveFunctionForHotReloading(type.render);
|
||
if (type.render !== currentRender) {
|
||
var syntheticType = {
|
||
$$typeof: REACT_FORWARD_REF_TYPE,
|
||
render: currentRender
|
||
};
|
||
if (type.displayName !== void 0) {
|
||
syntheticType.displayName = type.displayName;
|
||
}
|
||
return syntheticType;
|
||
}
|
||
}
|
||
return type;
|
||
}
|
||
return family.current;
|
||
}
|
||
}
|
||
function isCompatibleFamilyForHotReloading(fiber, element) {
|
||
{
|
||
if (resolveFamily === null) {
|
||
return false;
|
||
}
|
||
var prevType = fiber.elementType;
|
||
var nextType = element.type;
|
||
var needsCompareFamilies = false;
|
||
var $$typeofNextType = typeof nextType === "object" && nextType !== null ? nextType.$$typeof : null;
|
||
switch (fiber.tag) {
|
||
case ClassComponent: {
|
||
if (typeof nextType === "function") {
|
||
needsCompareFamilies = true;
|
||
}
|
||
break;
|
||
}
|
||
case FunctionComponent: {
|
||
if (typeof nextType === "function") {
|
||
needsCompareFamilies = true;
|
||
} else if ($$typeofNextType === REACT_LAZY_TYPE) {
|
||
needsCompareFamilies = true;
|
||
}
|
||
break;
|
||
}
|
||
case ForwardRef: {
|
||
if ($$typeofNextType === REACT_FORWARD_REF_TYPE) {
|
||
needsCompareFamilies = true;
|
||
} else if ($$typeofNextType === REACT_LAZY_TYPE) {
|
||
needsCompareFamilies = true;
|
||
}
|
||
break;
|
||
}
|
||
case MemoComponent:
|
||
case SimpleMemoComponent: {
|
||
if ($$typeofNextType === REACT_MEMO_TYPE) {
|
||
needsCompareFamilies = true;
|
||
} else if ($$typeofNextType === REACT_LAZY_TYPE) {
|
||
needsCompareFamilies = true;
|
||
}
|
||
break;
|
||
}
|
||
default:
|
||
return false;
|
||
}
|
||
if (needsCompareFamilies) {
|
||
var prevFamily = resolveFamily(prevType);
|
||
if (prevFamily !== void 0 && prevFamily === resolveFamily(nextType)) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
function markFailedErrorBoundaryForHotReloading(fiber) {
|
||
{
|
||
if (resolveFamily === null) {
|
||
return;
|
||
}
|
||
if (typeof WeakSet !== "function") {
|
||
return;
|
||
}
|
||
if (failedBoundaries === null) {
|
||
failedBoundaries = /* @__PURE__ */ new WeakSet();
|
||
}
|
||
failedBoundaries.add(fiber);
|
||
}
|
||
}
|
||
var scheduleRefresh = function(root2, update) {
|
||
{
|
||
if (resolveFamily === null) {
|
||
return;
|
||
}
|
||
var staleFamilies = update.staleFamilies, updatedFamilies = update.updatedFamilies;
|
||
flushPassiveEffects();
|
||
flushSync(function() {
|
||
scheduleFibersWithFamiliesRecursively(root2.current, updatedFamilies, staleFamilies);
|
||
});
|
||
}
|
||
};
|
||
var scheduleRoot = function(root2, element) {
|
||
{
|
||
if (root2.context !== emptyContextObject) {
|
||
return;
|
||
}
|
||
flushPassiveEffects();
|
||
flushSync(function() {
|
||
updateContainer(element, root2, null, null);
|
||
});
|
||
}
|
||
};
|
||
function scheduleFibersWithFamiliesRecursively(fiber, updatedFamilies, staleFamilies) {
|
||
{
|
||
var alternate = fiber.alternate, child = fiber.child, sibling = fiber.sibling, tag = fiber.tag, type = fiber.type;
|
||
var candidateType = null;
|
||
switch (tag) {
|
||
case FunctionComponent:
|
||
case SimpleMemoComponent:
|
||
case ClassComponent:
|
||
candidateType = type;
|
||
break;
|
||
case ForwardRef:
|
||
candidateType = type.render;
|
||
break;
|
||
}
|
||
if (resolveFamily === null) {
|
||
throw new Error("Expected resolveFamily to be set during hot reload.");
|
||
}
|
||
var needsRender = false;
|
||
var needsRemount = false;
|
||
if (candidateType !== null) {
|
||
var family = resolveFamily(candidateType);
|
||
if (family !== void 0) {
|
||
if (staleFamilies.has(family)) {
|
||
needsRemount = true;
|
||
} else if (updatedFamilies.has(family)) {
|
||
if (tag === ClassComponent) {
|
||
needsRemount = true;
|
||
} else {
|
||
needsRender = true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (failedBoundaries !== null) {
|
||
if (failedBoundaries.has(fiber) || alternate !== null && failedBoundaries.has(alternate)) {
|
||
needsRemount = true;
|
||
}
|
||
}
|
||
if (needsRemount) {
|
||
fiber._debugNeedsRemount = true;
|
||
}
|
||
if (needsRemount || needsRender) {
|
||
var _root = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (_root !== null) {
|
||
scheduleUpdateOnFiber(_root, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
}
|
||
if (child !== null && !needsRemount) {
|
||
scheduleFibersWithFamiliesRecursively(child, updatedFamilies, staleFamilies);
|
||
}
|
||
if (sibling !== null) {
|
||
scheduleFibersWithFamiliesRecursively(sibling, updatedFamilies, staleFamilies);
|
||
}
|
||
}
|
||
}
|
||
var findHostInstancesForRefresh = function(root2, families) {
|
||
{
|
||
var hostInstances = /* @__PURE__ */ new Set();
|
||
var types = new Set(families.map(function(family) {
|
||
return family.current;
|
||
}));
|
||
findHostInstancesForMatchingFibersRecursively(root2.current, types, hostInstances);
|
||
return hostInstances;
|
||
}
|
||
};
|
||
function findHostInstancesForMatchingFibersRecursively(fiber, types, hostInstances) {
|
||
{
|
||
var child = fiber.child, sibling = fiber.sibling, tag = fiber.tag, type = fiber.type;
|
||
var candidateType = null;
|
||
switch (tag) {
|
||
case FunctionComponent:
|
||
case SimpleMemoComponent:
|
||
case ClassComponent:
|
||
candidateType = type;
|
||
break;
|
||
case ForwardRef:
|
||
candidateType = type.render;
|
||
break;
|
||
}
|
||
var didMatch = false;
|
||
if (candidateType !== null) {
|
||
if (types.has(candidateType)) {
|
||
didMatch = true;
|
||
}
|
||
}
|
||
if (didMatch) {
|
||
findHostInstancesForFiberShallowly(fiber, hostInstances);
|
||
} else {
|
||
if (child !== null) {
|
||
findHostInstancesForMatchingFibersRecursively(child, types, hostInstances);
|
||
}
|
||
}
|
||
if (sibling !== null) {
|
||
findHostInstancesForMatchingFibersRecursively(sibling, types, hostInstances);
|
||
}
|
||
}
|
||
}
|
||
function findHostInstancesForFiberShallowly(fiber, hostInstances) {
|
||
{
|
||
var foundHostInstances = findChildHostInstancesForFiberShallowly(fiber, hostInstances);
|
||
if (foundHostInstances) {
|
||
return;
|
||
}
|
||
var node = fiber;
|
||
while (true) {
|
||
switch (node.tag) {
|
||
case HostComponent:
|
||
hostInstances.add(node.stateNode);
|
||
return;
|
||
case HostPortal:
|
||
hostInstances.add(node.stateNode.containerInfo);
|
||
return;
|
||
case HostRoot:
|
||
hostInstances.add(node.stateNode.containerInfo);
|
||
return;
|
||
}
|
||
if (node.return === null) {
|
||
throw new Error("Expected to reach root first.");
|
||
}
|
||
node = node.return;
|
||
}
|
||
}
|
||
}
|
||
function findChildHostInstancesForFiberShallowly(fiber, hostInstances) {
|
||
{
|
||
var node = fiber;
|
||
var foundHostInstances = false;
|
||
while (true) {
|
||
if (node.tag === HostComponent) {
|
||
foundHostInstances = true;
|
||
hostInstances.add(node.stateNode);
|
||
} else if (node.child !== null) {
|
||
node.child.return = node;
|
||
node = node.child;
|
||
continue;
|
||
}
|
||
if (node === fiber) {
|
||
return foundHostInstances;
|
||
}
|
||
while (node.sibling === null) {
|
||
if (node.return === null || node.return === fiber) {
|
||
return foundHostInstances;
|
||
}
|
||
node = node.return;
|
||
}
|
||
node.sibling.return = node.return;
|
||
node = node.sibling;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
var hasBadMapPolyfill;
|
||
{
|
||
hasBadMapPolyfill = false;
|
||
try {
|
||
var nonExtensibleObject = Object.preventExtensions({});
|
||
/* @__PURE__ */ new Map([[nonExtensibleObject, null]]);
|
||
/* @__PURE__ */ new Set([nonExtensibleObject]);
|
||
} catch (e) {
|
||
hasBadMapPolyfill = true;
|
||
}
|
||
}
|
||
function FiberNode(tag, pendingProps, key, mode) {
|
||
this.tag = tag;
|
||
this.key = key;
|
||
this.elementType = null;
|
||
this.type = null;
|
||
this.stateNode = null;
|
||
this.return = null;
|
||
this.child = null;
|
||
this.sibling = null;
|
||
this.index = 0;
|
||
this.ref = null;
|
||
this.pendingProps = pendingProps;
|
||
this.memoizedProps = null;
|
||
this.updateQueue = null;
|
||
this.memoizedState = null;
|
||
this.dependencies = null;
|
||
this.mode = mode;
|
||
this.flags = NoFlags;
|
||
this.subtreeFlags = NoFlags;
|
||
this.deletions = null;
|
||
this.lanes = NoLanes;
|
||
this.childLanes = NoLanes;
|
||
this.alternate = null;
|
||
{
|
||
this.actualDuration = Number.NaN;
|
||
this.actualStartTime = Number.NaN;
|
||
this.selfBaseDuration = Number.NaN;
|
||
this.treeBaseDuration = Number.NaN;
|
||
this.actualDuration = 0;
|
||
this.actualStartTime = -1;
|
||
this.selfBaseDuration = 0;
|
||
this.treeBaseDuration = 0;
|
||
}
|
||
{
|
||
this._debugSource = null;
|
||
this._debugOwner = null;
|
||
this._debugNeedsRemount = false;
|
||
this._debugHookTypes = null;
|
||
if (!hasBadMapPolyfill && typeof Object.preventExtensions === "function") {
|
||
Object.preventExtensions(this);
|
||
}
|
||
}
|
||
}
|
||
var createFiber = function(tag, pendingProps, key, mode) {
|
||
return new FiberNode(tag, pendingProps, key, mode);
|
||
};
|
||
function shouldConstruct$1(Component2) {
|
||
var prototype = Component2.prototype;
|
||
return !!(prototype && prototype.isReactComponent);
|
||
}
|
||
function isSimpleFunctionComponent(type) {
|
||
return typeof type === "function" && !shouldConstruct$1(type) && type.defaultProps === void 0;
|
||
}
|
||
function resolveLazyComponentTag(Component2) {
|
||
if (typeof Component2 === "function") {
|
||
return shouldConstruct$1(Component2) ? ClassComponent : FunctionComponent;
|
||
} else if (Component2 !== void 0 && Component2 !== null) {
|
||
var $$typeof = Component2.$$typeof;
|
||
if ($$typeof === REACT_FORWARD_REF_TYPE) {
|
||
return ForwardRef;
|
||
}
|
||
if ($$typeof === REACT_MEMO_TYPE) {
|
||
return MemoComponent;
|
||
}
|
||
}
|
||
return IndeterminateComponent;
|
||
}
|
||
function createWorkInProgress(current3, pendingProps) {
|
||
var workInProgress2 = current3.alternate;
|
||
if (workInProgress2 === null) {
|
||
workInProgress2 = createFiber(current3.tag, pendingProps, current3.key, current3.mode);
|
||
workInProgress2.elementType = current3.elementType;
|
||
workInProgress2.type = current3.type;
|
||
workInProgress2.stateNode = current3.stateNode;
|
||
{
|
||
workInProgress2._debugSource = current3._debugSource;
|
||
workInProgress2._debugOwner = current3._debugOwner;
|
||
workInProgress2._debugHookTypes = current3._debugHookTypes;
|
||
}
|
||
workInProgress2.alternate = current3;
|
||
current3.alternate = workInProgress2;
|
||
} else {
|
||
workInProgress2.pendingProps = pendingProps;
|
||
workInProgress2.type = current3.type;
|
||
workInProgress2.flags = NoFlags;
|
||
workInProgress2.subtreeFlags = NoFlags;
|
||
workInProgress2.deletions = null;
|
||
{
|
||
workInProgress2.actualDuration = 0;
|
||
workInProgress2.actualStartTime = -1;
|
||
}
|
||
}
|
||
workInProgress2.flags = current3.flags & StaticMask;
|
||
workInProgress2.childLanes = current3.childLanes;
|
||
workInProgress2.lanes = current3.lanes;
|
||
workInProgress2.child = current3.child;
|
||
workInProgress2.memoizedProps = current3.memoizedProps;
|
||
workInProgress2.memoizedState = current3.memoizedState;
|
||
workInProgress2.updateQueue = current3.updateQueue;
|
||
var currentDependencies = current3.dependencies;
|
||
workInProgress2.dependencies = currentDependencies === null ? null : {
|
||
lanes: currentDependencies.lanes,
|
||
firstContext: currentDependencies.firstContext
|
||
};
|
||
workInProgress2.sibling = current3.sibling;
|
||
workInProgress2.index = current3.index;
|
||
workInProgress2.ref = current3.ref;
|
||
{
|
||
workInProgress2.selfBaseDuration = current3.selfBaseDuration;
|
||
workInProgress2.treeBaseDuration = current3.treeBaseDuration;
|
||
}
|
||
{
|
||
workInProgress2._debugNeedsRemount = current3._debugNeedsRemount;
|
||
switch (workInProgress2.tag) {
|
||
case IndeterminateComponent:
|
||
case FunctionComponent:
|
||
case SimpleMemoComponent:
|
||
workInProgress2.type = resolveFunctionForHotReloading(current3.type);
|
||
break;
|
||
case ClassComponent:
|
||
workInProgress2.type = resolveClassForHotReloading(current3.type);
|
||
break;
|
||
case ForwardRef:
|
||
workInProgress2.type = resolveForwardRefForHotReloading(current3.type);
|
||
break;
|
||
}
|
||
}
|
||
return workInProgress2;
|
||
}
|
||
function resetWorkInProgress(workInProgress2, renderLanes2) {
|
||
workInProgress2.flags &= StaticMask | Placement;
|
||
var current3 = workInProgress2.alternate;
|
||
if (current3 === null) {
|
||
workInProgress2.childLanes = NoLanes;
|
||
workInProgress2.lanes = renderLanes2;
|
||
workInProgress2.child = null;
|
||
workInProgress2.subtreeFlags = NoFlags;
|
||
workInProgress2.memoizedProps = null;
|
||
workInProgress2.memoizedState = null;
|
||
workInProgress2.updateQueue = null;
|
||
workInProgress2.dependencies = null;
|
||
workInProgress2.stateNode = null;
|
||
{
|
||
workInProgress2.selfBaseDuration = 0;
|
||
workInProgress2.treeBaseDuration = 0;
|
||
}
|
||
} else {
|
||
workInProgress2.childLanes = current3.childLanes;
|
||
workInProgress2.lanes = current3.lanes;
|
||
workInProgress2.child = current3.child;
|
||
workInProgress2.subtreeFlags = NoFlags;
|
||
workInProgress2.deletions = null;
|
||
workInProgress2.memoizedProps = current3.memoizedProps;
|
||
workInProgress2.memoizedState = current3.memoizedState;
|
||
workInProgress2.updateQueue = current3.updateQueue;
|
||
workInProgress2.type = current3.type;
|
||
var currentDependencies = current3.dependencies;
|
||
workInProgress2.dependencies = currentDependencies === null ? null : {
|
||
lanes: currentDependencies.lanes,
|
||
firstContext: currentDependencies.firstContext
|
||
};
|
||
{
|
||
workInProgress2.selfBaseDuration = current3.selfBaseDuration;
|
||
workInProgress2.treeBaseDuration = current3.treeBaseDuration;
|
||
}
|
||
}
|
||
return workInProgress2;
|
||
}
|
||
function createHostRootFiber(tag, isStrictMode, concurrentUpdatesByDefaultOverride) {
|
||
var mode;
|
||
if (tag === ConcurrentRoot) {
|
||
mode = ConcurrentMode;
|
||
if (isStrictMode === true) {
|
||
mode |= StrictLegacyMode;
|
||
{
|
||
mode |= StrictEffectsMode;
|
||
}
|
||
}
|
||
} else {
|
||
mode = NoMode;
|
||
}
|
||
if (isDevToolsPresent) {
|
||
mode |= ProfileMode;
|
||
}
|
||
return createFiber(HostRoot, null, null, mode);
|
||
}
|
||
function createFiberFromTypeAndProps(type, key, pendingProps, owner, mode, lanes) {
|
||
var fiberTag = IndeterminateComponent;
|
||
var resolvedType = type;
|
||
if (typeof type === "function") {
|
||
if (shouldConstruct$1(type)) {
|
||
fiberTag = ClassComponent;
|
||
{
|
||
resolvedType = resolveClassForHotReloading(resolvedType);
|
||
}
|
||
} else {
|
||
{
|
||
resolvedType = resolveFunctionForHotReloading(resolvedType);
|
||
}
|
||
}
|
||
} else if (typeof type === "string") {
|
||
fiberTag = HostComponent;
|
||
} else {
|
||
getTag:
|
||
switch (type) {
|
||
case REACT_FRAGMENT_TYPE:
|
||
return createFiberFromFragment(pendingProps.children, mode, lanes, key);
|
||
case REACT_STRICT_MODE_TYPE:
|
||
fiberTag = Mode;
|
||
mode |= StrictLegacyMode;
|
||
if ((mode & ConcurrentMode) !== NoMode) {
|
||
mode |= StrictEffectsMode;
|
||
}
|
||
break;
|
||
case REACT_PROFILER_TYPE:
|
||
return createFiberFromProfiler(pendingProps, mode, lanes, key);
|
||
case REACT_SUSPENSE_TYPE:
|
||
return createFiberFromSuspense(pendingProps, mode, lanes, key);
|
||
case REACT_SUSPENSE_LIST_TYPE:
|
||
return createFiberFromSuspenseList(pendingProps, mode, lanes, key);
|
||
case REACT_OFFSCREEN_TYPE:
|
||
return createFiberFromOffscreen(pendingProps, mode, lanes, key);
|
||
case REACT_LEGACY_HIDDEN_TYPE:
|
||
case REACT_SCOPE_TYPE:
|
||
case REACT_CACHE_TYPE:
|
||
case REACT_TRACING_MARKER_TYPE:
|
||
case REACT_DEBUG_TRACING_MODE_TYPE:
|
||
default: {
|
||
if (typeof type === "object" && type !== null) {
|
||
switch (type.$$typeof) {
|
||
case REACT_PROVIDER_TYPE:
|
||
fiberTag = ContextProvider;
|
||
break getTag;
|
||
case REACT_CONTEXT_TYPE:
|
||
fiberTag = ContextConsumer;
|
||
break getTag;
|
||
case REACT_FORWARD_REF_TYPE:
|
||
fiberTag = ForwardRef;
|
||
{
|
||
resolvedType = resolveForwardRefForHotReloading(resolvedType);
|
||
}
|
||
break getTag;
|
||
case REACT_MEMO_TYPE:
|
||
fiberTag = MemoComponent;
|
||
break getTag;
|
||
case REACT_LAZY_TYPE:
|
||
fiberTag = LazyComponent;
|
||
resolvedType = null;
|
||
break getTag;
|
||
}
|
||
}
|
||
var info = "";
|
||
{
|
||
if (type === void 0 || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
|
||
info += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";
|
||
}
|
||
var ownerName = owner ? getComponentNameFromFiber(owner) : null;
|
||
if (ownerName) {
|
||
info += "\n\nCheck the render method of `" + ownerName + "`.";
|
||
}
|
||
}
|
||
throw new Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) " + ("but got: " + (type == null ? type : typeof type) + "." + info));
|
||
}
|
||
}
|
||
}
|
||
var fiber = createFiber(fiberTag, pendingProps, key, mode);
|
||
fiber.elementType = type;
|
||
fiber.type = resolvedType;
|
||
fiber.lanes = lanes;
|
||
{
|
||
fiber._debugOwner = owner;
|
||
}
|
||
return fiber;
|
||
}
|
||
function createFiberFromElement(element, mode, lanes) {
|
||
var owner = null;
|
||
{
|
||
owner = element._owner;
|
||
}
|
||
var type = element.type;
|
||
var key = element.key;
|
||
var pendingProps = element.props;
|
||
var fiber = createFiberFromTypeAndProps(type, key, pendingProps, owner, mode, lanes);
|
||
{
|
||
fiber._debugSource = element._source;
|
||
fiber._debugOwner = element._owner;
|
||
}
|
||
return fiber;
|
||
}
|
||
function createFiberFromFragment(elements, mode, lanes, key) {
|
||
var fiber = createFiber(Fragment3, elements, key, mode);
|
||
fiber.lanes = lanes;
|
||
return fiber;
|
||
}
|
||
function createFiberFromProfiler(pendingProps, mode, lanes, key) {
|
||
{
|
||
if (typeof pendingProps.id !== "string") {
|
||
error('Profiler must specify an "id" of type `string` as a prop. Received the type `%s` instead.', typeof pendingProps.id);
|
||
}
|
||
}
|
||
var fiber = createFiber(Profiler, pendingProps, key, mode | ProfileMode);
|
||
fiber.elementType = REACT_PROFILER_TYPE;
|
||
fiber.lanes = lanes;
|
||
{
|
||
fiber.stateNode = {
|
||
effectDuration: 0,
|
||
passiveEffectDuration: 0
|
||
};
|
||
}
|
||
return fiber;
|
||
}
|
||
function createFiberFromSuspense(pendingProps, mode, lanes, key) {
|
||
var fiber = createFiber(SuspenseComponent, pendingProps, key, mode);
|
||
fiber.elementType = REACT_SUSPENSE_TYPE;
|
||
fiber.lanes = lanes;
|
||
return fiber;
|
||
}
|
||
function createFiberFromSuspenseList(pendingProps, mode, lanes, key) {
|
||
var fiber = createFiber(SuspenseListComponent, pendingProps, key, mode);
|
||
fiber.elementType = REACT_SUSPENSE_LIST_TYPE;
|
||
fiber.lanes = lanes;
|
||
return fiber;
|
||
}
|
||
function createFiberFromOffscreen(pendingProps, mode, lanes, key) {
|
||
var fiber = createFiber(OffscreenComponent, pendingProps, key, mode);
|
||
fiber.elementType = REACT_OFFSCREEN_TYPE;
|
||
fiber.lanes = lanes;
|
||
var primaryChildInstance = {
|
||
isHidden: false
|
||
};
|
||
fiber.stateNode = primaryChildInstance;
|
||
return fiber;
|
||
}
|
||
function createFiberFromText(content, mode, lanes) {
|
||
var fiber = createFiber(HostText, content, null, mode);
|
||
fiber.lanes = lanes;
|
||
return fiber;
|
||
}
|
||
function createFiberFromHostInstanceForDeletion() {
|
||
var fiber = createFiber(HostComponent, null, null, NoMode);
|
||
fiber.elementType = "DELETED";
|
||
return fiber;
|
||
}
|
||
function createFiberFromDehydratedFragment(dehydratedNode) {
|
||
var fiber = createFiber(DehydratedFragment, null, null, NoMode);
|
||
fiber.stateNode = dehydratedNode;
|
||
return fiber;
|
||
}
|
||
function createFiberFromPortal(portal, mode, lanes) {
|
||
var pendingProps = portal.children !== null ? portal.children : [];
|
||
var fiber = createFiber(HostPortal, pendingProps, portal.key, mode);
|
||
fiber.lanes = lanes;
|
||
fiber.stateNode = {
|
||
containerInfo: portal.containerInfo,
|
||
pendingChildren: null,
|
||
// Used by persistent updates
|
||
implementation: portal.implementation
|
||
};
|
||
return fiber;
|
||
}
|
||
function assignFiberPropertiesInDEV(target, source) {
|
||
if (target === null) {
|
||
target = createFiber(IndeterminateComponent, null, null, NoMode);
|
||
}
|
||
target.tag = source.tag;
|
||
target.key = source.key;
|
||
target.elementType = source.elementType;
|
||
target.type = source.type;
|
||
target.stateNode = source.stateNode;
|
||
target.return = source.return;
|
||
target.child = source.child;
|
||
target.sibling = source.sibling;
|
||
target.index = source.index;
|
||
target.ref = source.ref;
|
||
target.pendingProps = source.pendingProps;
|
||
target.memoizedProps = source.memoizedProps;
|
||
target.updateQueue = source.updateQueue;
|
||
target.memoizedState = source.memoizedState;
|
||
target.dependencies = source.dependencies;
|
||
target.mode = source.mode;
|
||
target.flags = source.flags;
|
||
target.subtreeFlags = source.subtreeFlags;
|
||
target.deletions = source.deletions;
|
||
target.lanes = source.lanes;
|
||
target.childLanes = source.childLanes;
|
||
target.alternate = source.alternate;
|
||
{
|
||
target.actualDuration = source.actualDuration;
|
||
target.actualStartTime = source.actualStartTime;
|
||
target.selfBaseDuration = source.selfBaseDuration;
|
||
target.treeBaseDuration = source.treeBaseDuration;
|
||
}
|
||
target._debugSource = source._debugSource;
|
||
target._debugOwner = source._debugOwner;
|
||
target._debugNeedsRemount = source._debugNeedsRemount;
|
||
target._debugHookTypes = source._debugHookTypes;
|
||
return target;
|
||
}
|
||
function FiberRootNode(containerInfo, tag, hydrate2, identifierPrefix, onRecoverableError) {
|
||
this.tag = tag;
|
||
this.containerInfo = containerInfo;
|
||
this.pendingChildren = null;
|
||
this.current = null;
|
||
this.pingCache = null;
|
||
this.finishedWork = null;
|
||
this.timeoutHandle = noTimeout;
|
||
this.context = null;
|
||
this.pendingContext = null;
|
||
this.callbackNode = null;
|
||
this.callbackPriority = NoLane;
|
||
this.eventTimes = createLaneMap(NoLanes);
|
||
this.expirationTimes = createLaneMap(NoTimestamp);
|
||
this.pendingLanes = NoLanes;
|
||
this.suspendedLanes = NoLanes;
|
||
this.pingedLanes = NoLanes;
|
||
this.expiredLanes = NoLanes;
|
||
this.mutableReadLanes = NoLanes;
|
||
this.finishedLanes = NoLanes;
|
||
this.entangledLanes = NoLanes;
|
||
this.entanglements = createLaneMap(NoLanes);
|
||
this.identifierPrefix = identifierPrefix;
|
||
this.onRecoverableError = onRecoverableError;
|
||
{
|
||
this.mutableSourceEagerHydrationData = null;
|
||
}
|
||
{
|
||
this.effectDuration = 0;
|
||
this.passiveEffectDuration = 0;
|
||
}
|
||
{
|
||
this.memoizedUpdaters = /* @__PURE__ */ new Set();
|
||
var pendingUpdatersLaneMap = this.pendingUpdatersLaneMap = [];
|
||
for (var _i = 0; _i < TotalLanes; _i++) {
|
||
pendingUpdatersLaneMap.push(/* @__PURE__ */ new Set());
|
||
}
|
||
}
|
||
{
|
||
switch (tag) {
|
||
case ConcurrentRoot:
|
||
this._debugRootType = hydrate2 ? "hydrateRoot()" : "createRoot()";
|
||
break;
|
||
case LegacyRoot:
|
||
this._debugRootType = hydrate2 ? "hydrate()" : "render()";
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function createFiberRoot(containerInfo, tag, hydrate2, initialChildren, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError, transitionCallbacks) {
|
||
var root2 = new FiberRootNode(containerInfo, tag, hydrate2, identifierPrefix, onRecoverableError);
|
||
var uninitializedFiber = createHostRootFiber(tag, isStrictMode);
|
||
root2.current = uninitializedFiber;
|
||
uninitializedFiber.stateNode = root2;
|
||
{
|
||
var _initialState = {
|
||
element: initialChildren,
|
||
isDehydrated: hydrate2,
|
||
cache: null,
|
||
// not enabled yet
|
||
transitions: null,
|
||
pendingSuspenseBoundaries: null
|
||
};
|
||
uninitializedFiber.memoizedState = _initialState;
|
||
}
|
||
initializeUpdateQueue(uninitializedFiber);
|
||
return root2;
|
||
}
|
||
var ReactVersion = "18.2.0";
|
||
function createPortal(children, containerInfo, implementation) {
|
||
var key = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : null;
|
||
{
|
||
checkKeyStringCoercion(key);
|
||
}
|
||
return {
|
||
// This tag allow us to uniquely identify this as a React Portal
|
||
$$typeof: REACT_PORTAL_TYPE,
|
||
key: key == null ? null : "" + key,
|
||
children,
|
||
containerInfo,
|
||
implementation
|
||
};
|
||
}
|
||
var didWarnAboutNestedUpdates;
|
||
var didWarnAboutFindNodeInStrictMode;
|
||
{
|
||
didWarnAboutNestedUpdates = false;
|
||
didWarnAboutFindNodeInStrictMode = {};
|
||
}
|
||
function getContextForSubtree(parentComponent) {
|
||
if (!parentComponent) {
|
||
return emptyContextObject;
|
||
}
|
||
var fiber = get(parentComponent);
|
||
var parentContext = findCurrentUnmaskedContext(fiber);
|
||
if (fiber.tag === ClassComponent) {
|
||
var Component2 = fiber.type;
|
||
if (isContextProvider(Component2)) {
|
||
return processChildContext(fiber, Component2, parentContext);
|
||
}
|
||
}
|
||
return parentContext;
|
||
}
|
||
function findHostInstanceWithWarning(component, methodName) {
|
||
{
|
||
var fiber = get(component);
|
||
if (fiber === void 0) {
|
||
if (typeof component.render === "function") {
|
||
throw new Error("Unable to find node on an unmounted component.");
|
||
} else {
|
||
var keys = Object.keys(component).join(",");
|
||
throw new Error("Argument appears to not be a ReactComponent. Keys: " + keys);
|
||
}
|
||
}
|
||
var hostFiber = findCurrentHostFiber(fiber);
|
||
if (hostFiber === null) {
|
||
return null;
|
||
}
|
||
if (hostFiber.mode & StrictLegacyMode) {
|
||
var componentName = getComponentNameFromFiber(fiber) || "Component";
|
||
if (!didWarnAboutFindNodeInStrictMode[componentName]) {
|
||
didWarnAboutFindNodeInStrictMode[componentName] = true;
|
||
var previousFiber = current2;
|
||
try {
|
||
setCurrentFiber(hostFiber);
|
||
if (fiber.mode & StrictLegacyMode) {
|
||
error("%s is deprecated in StrictMode. %s was passed an instance of %s which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node", methodName, methodName, componentName);
|
||
} else {
|
||
error("%s is deprecated in StrictMode. %s was passed an instance of %s which renders StrictMode children. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node", methodName, methodName, componentName);
|
||
}
|
||
} finally {
|
||
if (previousFiber) {
|
||
setCurrentFiber(previousFiber);
|
||
} else {
|
||
resetCurrentFiber();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return hostFiber.stateNode;
|
||
}
|
||
}
|
||
function createContainer(containerInfo, tag, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError, transitionCallbacks) {
|
||
var hydrate2 = false;
|
||
var initialChildren = null;
|
||
return createFiberRoot(containerInfo, tag, hydrate2, initialChildren, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError);
|
||
}
|
||
function createHydrationContainer(initialChildren, callback, containerInfo, tag, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError, transitionCallbacks) {
|
||
var hydrate2 = true;
|
||
var root2 = createFiberRoot(containerInfo, tag, hydrate2, initialChildren, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError);
|
||
root2.context = getContextForSubtree(null);
|
||
var current3 = root2.current;
|
||
var eventTime = requestEventTime();
|
||
var lane = requestUpdateLane(current3);
|
||
var update = createUpdate(eventTime, lane);
|
||
update.callback = callback !== void 0 && callback !== null ? callback : null;
|
||
enqueueUpdate(current3, update, lane);
|
||
scheduleInitialHydrationOnRoot(root2, lane, eventTime);
|
||
return root2;
|
||
}
|
||
function updateContainer(element, container, parentComponent, callback) {
|
||
{
|
||
onScheduleRoot(container, element);
|
||
}
|
||
var current$1 = container.current;
|
||
var eventTime = requestEventTime();
|
||
var lane = requestUpdateLane(current$1);
|
||
{
|
||
markRenderScheduled(lane);
|
||
}
|
||
var context = getContextForSubtree(parentComponent);
|
||
if (container.context === null) {
|
||
container.context = context;
|
||
} else {
|
||
container.pendingContext = context;
|
||
}
|
||
{
|
||
if (isRendering && current2 !== null && !didWarnAboutNestedUpdates) {
|
||
didWarnAboutNestedUpdates = true;
|
||
error("Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.\n\nCheck the render method of %s.", getComponentNameFromFiber(current2) || "Unknown");
|
||
}
|
||
}
|
||
var update = createUpdate(eventTime, lane);
|
||
update.payload = {
|
||
element
|
||
};
|
||
callback = callback === void 0 ? null : callback;
|
||
if (callback !== null) {
|
||
{
|
||
if (typeof callback !== "function") {
|
||
error("render(...): Expected the last optional `callback` argument to be a function. Instead received: %s.", callback);
|
||
}
|
||
}
|
||
update.callback = callback;
|
||
}
|
||
var root2 = enqueueUpdate(current$1, update, lane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, current$1, lane, eventTime);
|
||
entangleTransitions(root2, current$1, lane);
|
||
}
|
||
return lane;
|
||
}
|
||
function getPublicRootInstance(container) {
|
||
var containerFiber = container.current;
|
||
if (!containerFiber.child) {
|
||
return null;
|
||
}
|
||
switch (containerFiber.child.tag) {
|
||
case HostComponent:
|
||
return getPublicInstance(containerFiber.child.stateNode);
|
||
default:
|
||
return containerFiber.child.stateNode;
|
||
}
|
||
}
|
||
function attemptSynchronousHydration$1(fiber) {
|
||
switch (fiber.tag) {
|
||
case HostRoot: {
|
||
var root2 = fiber.stateNode;
|
||
if (isRootDehydrated(root2)) {
|
||
var lanes = getHighestPriorityPendingLanes(root2);
|
||
flushRoot(root2, lanes);
|
||
}
|
||
break;
|
||
}
|
||
case SuspenseComponent: {
|
||
flushSync(function() {
|
||
var root3 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root3 !== null) {
|
||
var eventTime = requestEventTime();
|
||
scheduleUpdateOnFiber(root3, fiber, SyncLane, eventTime);
|
||
}
|
||
});
|
||
var retryLane = SyncLane;
|
||
markRetryLaneIfNotHydrated(fiber, retryLane);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
function markRetryLaneImpl(fiber, retryLane) {
|
||
var suspenseState = fiber.memoizedState;
|
||
if (suspenseState !== null && suspenseState.dehydrated !== null) {
|
||
suspenseState.retryLane = higherPriorityLane(suspenseState.retryLane, retryLane);
|
||
}
|
||
}
|
||
function markRetryLaneIfNotHydrated(fiber, retryLane) {
|
||
markRetryLaneImpl(fiber, retryLane);
|
||
var alternate = fiber.alternate;
|
||
if (alternate) {
|
||
markRetryLaneImpl(alternate, retryLane);
|
||
}
|
||
}
|
||
function attemptContinuousHydration$1(fiber) {
|
||
if (fiber.tag !== SuspenseComponent) {
|
||
return;
|
||
}
|
||
var lane = SelectiveHydrationLane;
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, lane);
|
||
if (root2 !== null) {
|
||
var eventTime = requestEventTime();
|
||
scheduleUpdateOnFiber(root2, fiber, lane, eventTime);
|
||
}
|
||
markRetryLaneIfNotHydrated(fiber, lane);
|
||
}
|
||
function attemptHydrationAtCurrentPriority$1(fiber) {
|
||
if (fiber.tag !== SuspenseComponent) {
|
||
return;
|
||
}
|
||
var lane = requestUpdateLane(fiber);
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, lane);
|
||
if (root2 !== null) {
|
||
var eventTime = requestEventTime();
|
||
scheduleUpdateOnFiber(root2, fiber, lane, eventTime);
|
||
}
|
||
markRetryLaneIfNotHydrated(fiber, lane);
|
||
}
|
||
function findHostInstanceWithNoPortals(fiber) {
|
||
var hostFiber = findCurrentHostFiberWithNoPortals(fiber);
|
||
if (hostFiber === null) {
|
||
return null;
|
||
}
|
||
return hostFiber.stateNode;
|
||
}
|
||
var shouldErrorImpl = function(fiber) {
|
||
return null;
|
||
};
|
||
function shouldError(fiber) {
|
||
return shouldErrorImpl(fiber);
|
||
}
|
||
var shouldSuspendImpl = function(fiber) {
|
||
return false;
|
||
};
|
||
function shouldSuspend(fiber) {
|
||
return shouldSuspendImpl(fiber);
|
||
}
|
||
var overrideHookState = null;
|
||
var overrideHookStateDeletePath = null;
|
||
var overrideHookStateRenamePath = null;
|
||
var overrideProps = null;
|
||
var overridePropsDeletePath = null;
|
||
var overridePropsRenamePath = null;
|
||
var scheduleUpdate = null;
|
||
var setErrorHandler = null;
|
||
var setSuspenseHandler = null;
|
||
{
|
||
var copyWithDeleteImpl = function(obj, path, index2) {
|
||
var key = path[index2];
|
||
var updated = isArray(obj) ? obj.slice() : assign({}, obj);
|
||
if (index2 + 1 === path.length) {
|
||
if (isArray(updated)) {
|
||
updated.splice(key, 1);
|
||
} else {
|
||
delete updated[key];
|
||
}
|
||
return updated;
|
||
}
|
||
updated[key] = copyWithDeleteImpl(obj[key], path, index2 + 1);
|
||
return updated;
|
||
};
|
||
var copyWithDelete = function(obj, path) {
|
||
return copyWithDeleteImpl(obj, path, 0);
|
||
};
|
||
var copyWithRenameImpl = function(obj, oldPath, newPath, index2) {
|
||
var oldKey = oldPath[index2];
|
||
var updated = isArray(obj) ? obj.slice() : assign({}, obj);
|
||
if (index2 + 1 === oldPath.length) {
|
||
var newKey = newPath[index2];
|
||
updated[newKey] = updated[oldKey];
|
||
if (isArray(updated)) {
|
||
updated.splice(oldKey, 1);
|
||
} else {
|
||
delete updated[oldKey];
|
||
}
|
||
} else {
|
||
updated[oldKey] = copyWithRenameImpl(
|
||
// $FlowFixMe number or string is fine here
|
||
obj[oldKey],
|
||
oldPath,
|
||
newPath,
|
||
index2 + 1
|
||
);
|
||
}
|
||
return updated;
|
||
};
|
||
var copyWithRename = function(obj, oldPath, newPath) {
|
||
if (oldPath.length !== newPath.length) {
|
||
warn("copyWithRename() expects paths of the same length");
|
||
return;
|
||
} else {
|
||
for (var i = 0; i < newPath.length - 1; i++) {
|
||
if (oldPath[i] !== newPath[i]) {
|
||
warn("copyWithRename() expects paths to be the same except for the deepest key");
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
return copyWithRenameImpl(obj, oldPath, newPath, 0);
|
||
};
|
||
var copyWithSetImpl = function(obj, path, index2, value) {
|
||
if (index2 >= path.length) {
|
||
return value;
|
||
}
|
||
var key = path[index2];
|
||
var updated = isArray(obj) ? obj.slice() : assign({}, obj);
|
||
updated[key] = copyWithSetImpl(obj[key], path, index2 + 1, value);
|
||
return updated;
|
||
};
|
||
var copyWithSet = function(obj, path, value) {
|
||
return copyWithSetImpl(obj, path, 0, value);
|
||
};
|
||
var findHook = function(fiber, id) {
|
||
var currentHook2 = fiber.memoizedState;
|
||
while (currentHook2 !== null && id > 0) {
|
||
currentHook2 = currentHook2.next;
|
||
id--;
|
||
}
|
||
return currentHook2;
|
||
};
|
||
overrideHookState = function(fiber, id, path, value) {
|
||
var hook = findHook(fiber, id);
|
||
if (hook !== null) {
|
||
var newState = copyWithSet(hook.memoizedState, path, value);
|
||
hook.memoizedState = newState;
|
||
hook.baseState = newState;
|
||
fiber.memoizedProps = assign({}, fiber.memoizedProps);
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
}
|
||
};
|
||
overrideHookStateDeletePath = function(fiber, id, path) {
|
||
var hook = findHook(fiber, id);
|
||
if (hook !== null) {
|
||
var newState = copyWithDelete(hook.memoizedState, path);
|
||
hook.memoizedState = newState;
|
||
hook.baseState = newState;
|
||
fiber.memoizedProps = assign({}, fiber.memoizedProps);
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
}
|
||
};
|
||
overrideHookStateRenamePath = function(fiber, id, oldPath, newPath) {
|
||
var hook = findHook(fiber, id);
|
||
if (hook !== null) {
|
||
var newState = copyWithRename(hook.memoizedState, oldPath, newPath);
|
||
hook.memoizedState = newState;
|
||
hook.baseState = newState;
|
||
fiber.memoizedProps = assign({}, fiber.memoizedProps);
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
}
|
||
};
|
||
overrideProps = function(fiber, path, value) {
|
||
fiber.pendingProps = copyWithSet(fiber.memoizedProps, path, value);
|
||
if (fiber.alternate) {
|
||
fiber.alternate.pendingProps = fiber.pendingProps;
|
||
}
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
};
|
||
overridePropsDeletePath = function(fiber, path) {
|
||
fiber.pendingProps = copyWithDelete(fiber.memoizedProps, path);
|
||
if (fiber.alternate) {
|
||
fiber.alternate.pendingProps = fiber.pendingProps;
|
||
}
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
};
|
||
overridePropsRenamePath = function(fiber, oldPath, newPath) {
|
||
fiber.pendingProps = copyWithRename(fiber.memoizedProps, oldPath, newPath);
|
||
if (fiber.alternate) {
|
||
fiber.alternate.pendingProps = fiber.pendingProps;
|
||
}
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
};
|
||
scheduleUpdate = function(fiber) {
|
||
var root2 = enqueueConcurrentRenderForLane(fiber, SyncLane);
|
||
if (root2 !== null) {
|
||
scheduleUpdateOnFiber(root2, fiber, SyncLane, NoTimestamp);
|
||
}
|
||
};
|
||
setErrorHandler = function(newShouldErrorImpl) {
|
||
shouldErrorImpl = newShouldErrorImpl;
|
||
};
|
||
setSuspenseHandler = function(newShouldSuspendImpl) {
|
||
shouldSuspendImpl = newShouldSuspendImpl;
|
||
};
|
||
}
|
||
function findHostInstanceByFiber(fiber) {
|
||
var hostFiber = findCurrentHostFiber(fiber);
|
||
if (hostFiber === null) {
|
||
return null;
|
||
}
|
||
return hostFiber.stateNode;
|
||
}
|
||
function emptyFindFiberByHostInstance(instance) {
|
||
return null;
|
||
}
|
||
function getCurrentFiberForDevTools() {
|
||
return current2;
|
||
}
|
||
function injectIntoDevTools(devToolsConfig) {
|
||
var findFiberByHostInstance = devToolsConfig.findFiberByHostInstance;
|
||
var ReactCurrentDispatcher2 = ReactSharedInternals.ReactCurrentDispatcher;
|
||
return injectInternals({
|
||
bundleType: devToolsConfig.bundleType,
|
||
version: devToolsConfig.version,
|
||
rendererPackageName: devToolsConfig.rendererPackageName,
|
||
rendererConfig: devToolsConfig.rendererConfig,
|
||
overrideHookState,
|
||
overrideHookStateDeletePath,
|
||
overrideHookStateRenamePath,
|
||
overrideProps,
|
||
overridePropsDeletePath,
|
||
overridePropsRenamePath,
|
||
setErrorHandler,
|
||
setSuspenseHandler,
|
||
scheduleUpdate,
|
||
currentDispatcherRef: ReactCurrentDispatcher2,
|
||
findHostInstanceByFiber,
|
||
findFiberByHostInstance: findFiberByHostInstance || emptyFindFiberByHostInstance,
|
||
// React Refresh
|
||
findHostInstancesForRefresh,
|
||
scheduleRefresh,
|
||
scheduleRoot,
|
||
setRefreshHandler,
|
||
// Enables DevTools to append owner stacks to error messages in DEV mode.
|
||
getCurrentFiber: getCurrentFiberForDevTools,
|
||
// Enables DevTools to detect reconciler version rather than renderer version
|
||
// which may not match for third party renderers.
|
||
reconcilerVersion: ReactVersion
|
||
});
|
||
}
|
||
var defaultOnRecoverableError = typeof reportError === "function" ? (
|
||
// In modern browsers, reportError will dispatch an error event,
|
||
// emulating an uncaught JavaScript error.
|
||
reportError
|
||
) : function(error2) {
|
||
console["error"](error2);
|
||
};
|
||
function ReactDOMRoot(internalRoot) {
|
||
this._internalRoot = internalRoot;
|
||
}
|
||
ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render = function(children) {
|
||
var root2 = this._internalRoot;
|
||
if (root2 === null) {
|
||
throw new Error("Cannot update an unmounted root.");
|
||
}
|
||
{
|
||
if (typeof arguments[1] === "function") {
|
||
error("render(...): does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().");
|
||
} else if (isValidContainer(arguments[1])) {
|
||
error("You passed a container to the second argument of root.render(...). You don't need to pass it again since you already passed it to create the root.");
|
||
} else if (typeof arguments[1] !== "undefined") {
|
||
error("You passed a second argument to root.render(...) but it only accepts one argument.");
|
||
}
|
||
var container = root2.containerInfo;
|
||
if (container.nodeType !== COMMENT_NODE) {
|
||
var hostInstance = findHostInstanceWithNoPortals(root2.current);
|
||
if (hostInstance) {
|
||
if (hostInstance.parentNode !== container) {
|
||
error("render(...): It looks like the React-rendered content of the root container was removed without using React. This is not supported and will cause errors. Instead, call root.unmount() to empty a root's container.");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
updateContainer(children, root2, null, null);
|
||
};
|
||
ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount = function() {
|
||
{
|
||
if (typeof arguments[0] === "function") {
|
||
error("unmount(...): does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().");
|
||
}
|
||
}
|
||
var root2 = this._internalRoot;
|
||
if (root2 !== null) {
|
||
this._internalRoot = null;
|
||
var container = root2.containerInfo;
|
||
{
|
||
if (isAlreadyRendering()) {
|
||
error("Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition.");
|
||
}
|
||
}
|
||
flushSync(function() {
|
||
updateContainer(null, root2, null, null);
|
||
});
|
||
unmarkContainerAsRoot(container);
|
||
}
|
||
};
|
||
function createRoot2(container, options2) {
|
||
if (!isValidContainer(container)) {
|
||
throw new Error("createRoot(...): Target container is not a DOM element.");
|
||
}
|
||
warnIfReactDOMContainerInDEV(container);
|
||
var isStrictMode = false;
|
||
var concurrentUpdatesByDefaultOverride = false;
|
||
var identifierPrefix = "";
|
||
var onRecoverableError = defaultOnRecoverableError;
|
||
var transitionCallbacks = null;
|
||
if (options2 !== null && options2 !== void 0) {
|
||
{
|
||
if (options2.hydrate) {
|
||
warn("hydrate through createRoot is deprecated. Use ReactDOMClient.hydrateRoot(container, <App />) instead.");
|
||
} else {
|
||
if (typeof options2 === "object" && options2 !== null && options2.$$typeof === REACT_ELEMENT_TYPE) {
|
||
error("You passed a JSX element to createRoot. You probably meant to call root.render instead. Example usage:\n\n let root = createRoot(domContainer);\n root.render(<App />);");
|
||
}
|
||
}
|
||
}
|
||
if (options2.unstable_strictMode === true) {
|
||
isStrictMode = true;
|
||
}
|
||
if (options2.identifierPrefix !== void 0) {
|
||
identifierPrefix = options2.identifierPrefix;
|
||
}
|
||
if (options2.onRecoverableError !== void 0) {
|
||
onRecoverableError = options2.onRecoverableError;
|
||
}
|
||
if (options2.transitionCallbacks !== void 0) {
|
||
transitionCallbacks = options2.transitionCallbacks;
|
||
}
|
||
}
|
||
var root2 = createContainer(container, ConcurrentRoot, null, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError);
|
||
markContainerAsRoot(root2.current, container);
|
||
var rootContainerElement = container.nodeType === COMMENT_NODE ? container.parentNode : container;
|
||
listenToAllSupportedEvents(rootContainerElement);
|
||
return new ReactDOMRoot(root2);
|
||
}
|
||
function ReactDOMHydrationRoot(internalRoot) {
|
||
this._internalRoot = internalRoot;
|
||
}
|
||
function scheduleHydration(target) {
|
||
if (target) {
|
||
queueExplicitHydrationTarget(target);
|
||
}
|
||
}
|
||
ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = scheduleHydration;
|
||
function hydrateRoot(container, initialChildren, options2) {
|
||
if (!isValidContainer(container)) {
|
||
throw new Error("hydrateRoot(...): Target container is not a DOM element.");
|
||
}
|
||
warnIfReactDOMContainerInDEV(container);
|
||
{
|
||
if (initialChildren === void 0) {
|
||
error("Must provide initial children as second argument to hydrateRoot. Example usage: hydrateRoot(domContainer, <App />)");
|
||
}
|
||
}
|
||
var hydrationCallbacks = options2 != null ? options2 : null;
|
||
var mutableSources = options2 != null && options2.hydratedSources || null;
|
||
var isStrictMode = false;
|
||
var concurrentUpdatesByDefaultOverride = false;
|
||
var identifierPrefix = "";
|
||
var onRecoverableError = defaultOnRecoverableError;
|
||
if (options2 !== null && options2 !== void 0) {
|
||
if (options2.unstable_strictMode === true) {
|
||
isStrictMode = true;
|
||
}
|
||
if (options2.identifierPrefix !== void 0) {
|
||
identifierPrefix = options2.identifierPrefix;
|
||
}
|
||
if (options2.onRecoverableError !== void 0) {
|
||
onRecoverableError = options2.onRecoverableError;
|
||
}
|
||
}
|
||
var root2 = createHydrationContainer(initialChildren, null, container, ConcurrentRoot, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError);
|
||
markContainerAsRoot(root2.current, container);
|
||
listenToAllSupportedEvents(container);
|
||
if (mutableSources) {
|
||
for (var i = 0; i < mutableSources.length; i++) {
|
||
var mutableSource = mutableSources[i];
|
||
registerMutableSourceForHydration(root2, mutableSource);
|
||
}
|
||
}
|
||
return new ReactDOMHydrationRoot(root2);
|
||
}
|
||
function isValidContainer(node) {
|
||
return !!(node && (node.nodeType === ELEMENT_NODE || node.nodeType === DOCUMENT_NODE || node.nodeType === DOCUMENT_FRAGMENT_NODE || !disableCommentsAsDOMContainers));
|
||
}
|
||
function isValidContainerLegacy(node) {
|
||
return !!(node && (node.nodeType === ELEMENT_NODE || node.nodeType === DOCUMENT_NODE || node.nodeType === DOCUMENT_FRAGMENT_NODE || node.nodeType === COMMENT_NODE && node.nodeValue === " react-mount-point-unstable "));
|
||
}
|
||
function warnIfReactDOMContainerInDEV(container) {
|
||
{
|
||
if (container.nodeType === ELEMENT_NODE && container.tagName && container.tagName.toUpperCase() === "BODY") {
|
||
error("createRoot(): Creating roots directly with document.body is discouraged, since its children are often manipulated by third-party scripts and browser extensions. This may lead to subtle reconciliation issues. Try using a container element created for your app.");
|
||
}
|
||
if (isContainerMarkedAsRoot(container)) {
|
||
if (container._reactRootContainer) {
|
||
error("You are calling ReactDOMClient.createRoot() on a container that was previously passed to ReactDOM.render(). This is not supported.");
|
||
} else {
|
||
error("You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it.");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var ReactCurrentOwner$3 = ReactSharedInternals.ReactCurrentOwner;
|
||
var topLevelUpdateWarnings;
|
||
{
|
||
topLevelUpdateWarnings = function(container) {
|
||
if (container._reactRootContainer && container.nodeType !== COMMENT_NODE) {
|
||
var hostInstance = findHostInstanceWithNoPortals(container._reactRootContainer.current);
|
||
if (hostInstance) {
|
||
if (hostInstance.parentNode !== container) {
|
||
error("render(...): It looks like the React-rendered content of this container was removed without using React. This is not supported and will cause errors. Instead, call ReactDOM.unmountComponentAtNode to empty a container.");
|
||
}
|
||
}
|
||
}
|
||
var isRootRenderedBySomeReact = !!container._reactRootContainer;
|
||
var rootEl = getReactRootElementInContainer(container);
|
||
var hasNonRootReactChild = !!(rootEl && getInstanceFromNode(rootEl));
|
||
if (hasNonRootReactChild && !isRootRenderedBySomeReact) {
|
||
error("render(...): Replacing React-rendered children with a new root component. If you intended to update the children of this node, you should instead have the existing children update their state and render the new components instead of calling ReactDOM.render.");
|
||
}
|
||
if (container.nodeType === ELEMENT_NODE && container.tagName && container.tagName.toUpperCase() === "BODY") {
|
||
error("render(): Rendering components directly into document.body is discouraged, since its children are often manipulated by third-party scripts and browser extensions. This may lead to subtle reconciliation issues. Try rendering into a container element created for your app.");
|
||
}
|
||
};
|
||
}
|
||
function getReactRootElementInContainer(container) {
|
||
if (!container) {
|
||
return null;
|
||
}
|
||
if (container.nodeType === DOCUMENT_NODE) {
|
||
return container.documentElement;
|
||
} else {
|
||
return container.firstChild;
|
||
}
|
||
}
|
||
function noopOnRecoverableError() {
|
||
}
|
||
function legacyCreateRootFromDOMContainer(container, initialChildren, parentComponent, callback, isHydrationContainer) {
|
||
if (isHydrationContainer) {
|
||
if (typeof callback === "function") {
|
||
var originalCallback = callback;
|
||
callback = function() {
|
||
var instance = getPublicRootInstance(root2);
|
||
originalCallback.call(instance);
|
||
};
|
||
}
|
||
var root2 = createHydrationContainer(
|
||
initialChildren,
|
||
callback,
|
||
container,
|
||
LegacyRoot,
|
||
null,
|
||
// hydrationCallbacks
|
||
false,
|
||
// isStrictMode
|
||
false,
|
||
// concurrentUpdatesByDefaultOverride,
|
||
"",
|
||
// identifierPrefix
|
||
noopOnRecoverableError
|
||
);
|
||
container._reactRootContainer = root2;
|
||
markContainerAsRoot(root2.current, container);
|
||
var rootContainerElement = container.nodeType === COMMENT_NODE ? container.parentNode : container;
|
||
listenToAllSupportedEvents(rootContainerElement);
|
||
flushSync();
|
||
return root2;
|
||
} else {
|
||
var rootSibling;
|
||
while (rootSibling = container.lastChild) {
|
||
container.removeChild(rootSibling);
|
||
}
|
||
if (typeof callback === "function") {
|
||
var _originalCallback = callback;
|
||
callback = function() {
|
||
var instance = getPublicRootInstance(_root);
|
||
_originalCallback.call(instance);
|
||
};
|
||
}
|
||
var _root = createContainer(
|
||
container,
|
||
LegacyRoot,
|
||
null,
|
||
// hydrationCallbacks
|
||
false,
|
||
// isStrictMode
|
||
false,
|
||
// concurrentUpdatesByDefaultOverride,
|
||
"",
|
||
// identifierPrefix
|
||
noopOnRecoverableError
|
||
);
|
||
container._reactRootContainer = _root;
|
||
markContainerAsRoot(_root.current, container);
|
||
var _rootContainerElement = container.nodeType === COMMENT_NODE ? container.parentNode : container;
|
||
listenToAllSupportedEvents(_rootContainerElement);
|
||
flushSync(function() {
|
||
updateContainer(initialChildren, _root, parentComponent, callback);
|
||
});
|
||
return _root;
|
||
}
|
||
}
|
||
function warnOnInvalidCallback$1(callback, callerName) {
|
||
{
|
||
if (callback !== null && typeof callback !== "function") {
|
||
error("%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.", callerName, callback);
|
||
}
|
||
}
|
||
}
|
||
function legacyRenderSubtreeIntoContainer(parentComponent, children, container, forceHydrate, callback) {
|
||
{
|
||
topLevelUpdateWarnings(container);
|
||
warnOnInvalidCallback$1(callback === void 0 ? null : callback, "render");
|
||
}
|
||
var maybeRoot = container._reactRootContainer;
|
||
var root2;
|
||
if (!maybeRoot) {
|
||
root2 = legacyCreateRootFromDOMContainer(container, children, parentComponent, callback, forceHydrate);
|
||
} else {
|
||
root2 = maybeRoot;
|
||
if (typeof callback === "function") {
|
||
var originalCallback = callback;
|
||
callback = function() {
|
||
var instance = getPublicRootInstance(root2);
|
||
originalCallback.call(instance);
|
||
};
|
||
}
|
||
updateContainer(children, root2, parentComponent, callback);
|
||
}
|
||
return getPublicRootInstance(root2);
|
||
}
|
||
function findDOMNode(componentOrElement) {
|
||
{
|
||
var owner = ReactCurrentOwner$3.current;
|
||
if (owner !== null && owner.stateNode !== null) {
|
||
var warnedAboutRefsInRender = owner.stateNode._warnedAboutRefsInRender;
|
||
if (!warnedAboutRefsInRender) {
|
||
error("%s is accessing findDOMNode inside its render(). render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.", getComponentNameFromType(owner.type) || "A component");
|
||
}
|
||
owner.stateNode._warnedAboutRefsInRender = true;
|
||
}
|
||
}
|
||
if (componentOrElement == null) {
|
||
return null;
|
||
}
|
||
if (componentOrElement.nodeType === ELEMENT_NODE) {
|
||
return componentOrElement;
|
||
}
|
||
{
|
||
return findHostInstanceWithWarning(componentOrElement, "findDOMNode");
|
||
}
|
||
}
|
||
function hydrate(element, container, callback) {
|
||
{
|
||
error("ReactDOM.hydrate is no longer supported in React 18. Use hydrateRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot");
|
||
}
|
||
if (!isValidContainerLegacy(container)) {
|
||
throw new Error("Target container is not a DOM element.");
|
||
}
|
||
{
|
||
var isModernRoot = isContainerMarkedAsRoot(container) && container._reactRootContainer === void 0;
|
||
if (isModernRoot) {
|
||
error("You are calling ReactDOM.hydrate() on a container that was previously passed to ReactDOMClient.createRoot(). This is not supported. Did you mean to call hydrateRoot(container, element)?");
|
||
}
|
||
}
|
||
return legacyRenderSubtreeIntoContainer(null, element, container, true, callback);
|
||
}
|
||
function render(element, container, callback) {
|
||
{
|
||
error("ReactDOM.render is no longer supported in React 18. Use createRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot");
|
||
}
|
||
if (!isValidContainerLegacy(container)) {
|
||
throw new Error("Target container is not a DOM element.");
|
||
}
|
||
{
|
||
var isModernRoot = isContainerMarkedAsRoot(container) && container._reactRootContainer === void 0;
|
||
if (isModernRoot) {
|
||
error("You are calling ReactDOM.render() on a container that was previously passed to ReactDOMClient.createRoot(). This is not supported. Did you mean to call root.render(element)?");
|
||
}
|
||
}
|
||
return legacyRenderSubtreeIntoContainer(null, element, container, false, callback);
|
||
}
|
||
function unstable_renderSubtreeIntoContainer(parentComponent, element, containerNode, callback) {
|
||
{
|
||
error("ReactDOM.unstable_renderSubtreeIntoContainer() is no longer supported in React 18. Consider using a portal instead. Until you switch to the createRoot API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot");
|
||
}
|
||
if (!isValidContainerLegacy(containerNode)) {
|
||
throw new Error("Target container is not a DOM element.");
|
||
}
|
||
if (parentComponent == null || !has2(parentComponent)) {
|
||
throw new Error("parentComponent must be a valid React Component");
|
||
}
|
||
return legacyRenderSubtreeIntoContainer(parentComponent, element, containerNode, false, callback);
|
||
}
|
||
function unmountComponentAtNode(container) {
|
||
if (!isValidContainerLegacy(container)) {
|
||
throw new Error("unmountComponentAtNode(...): Target container is not a DOM element.");
|
||
}
|
||
{
|
||
var isModernRoot = isContainerMarkedAsRoot(container) && container._reactRootContainer === void 0;
|
||
if (isModernRoot) {
|
||
error("You are calling ReactDOM.unmountComponentAtNode() on a container that was previously passed to ReactDOMClient.createRoot(). This is not supported. Did you mean to call root.unmount()?");
|
||
}
|
||
}
|
||
if (container._reactRootContainer) {
|
||
{
|
||
var rootEl = getReactRootElementInContainer(container);
|
||
var renderedByDifferentReact = rootEl && !getInstanceFromNode(rootEl);
|
||
if (renderedByDifferentReact) {
|
||
error("unmountComponentAtNode(): The node you're attempting to unmount was rendered by another copy of React.");
|
||
}
|
||
}
|
||
flushSync(function() {
|
||
legacyRenderSubtreeIntoContainer(null, null, container, false, function() {
|
||
container._reactRootContainer = null;
|
||
unmarkContainerAsRoot(container);
|
||
});
|
||
});
|
||
return true;
|
||
} else {
|
||
{
|
||
var _rootEl = getReactRootElementInContainer(container);
|
||
var hasNonRootReactChild = !!(_rootEl && getInstanceFromNode(_rootEl));
|
||
var isContainerReactRoot = container.nodeType === ELEMENT_NODE && isValidContainerLegacy(container.parentNode) && !!container.parentNode._reactRootContainer;
|
||
if (hasNonRootReactChild) {
|
||
error("unmountComponentAtNode(): The node you're attempting to unmount was rendered by React and is not a top-level container. %s", isContainerReactRoot ? "You may have accidentally passed in a React root node instead of its container." : "Instead, have the parent component update its state and rerender in order to remove this component.");
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
setAttemptSynchronousHydration(attemptSynchronousHydration$1);
|
||
setAttemptContinuousHydration(attemptContinuousHydration$1);
|
||
setAttemptHydrationAtCurrentPriority(attemptHydrationAtCurrentPriority$1);
|
||
setGetCurrentUpdatePriority(getCurrentUpdatePriority);
|
||
setAttemptHydrationAtPriority(runWithPriority);
|
||
{
|
||
if (typeof Map !== "function" || // $FlowIssue Flow incorrectly thinks Map has no prototype
|
||
Map.prototype == null || typeof Map.prototype.forEach !== "function" || typeof Set !== "function" || // $FlowIssue Flow incorrectly thinks Set has no prototype
|
||
Set.prototype == null || typeof Set.prototype.clear !== "function" || typeof Set.prototype.forEach !== "function") {
|
||
error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills");
|
||
}
|
||
}
|
||
setRestoreImplementation(restoreControlledState$3);
|
||
setBatchingImplementation(batchedUpdates$1, discreteUpdates, flushSync);
|
||
function createPortal$1(children, container) {
|
||
var key = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : null;
|
||
if (!isValidContainer(container)) {
|
||
throw new Error("Target container is not a DOM element.");
|
||
}
|
||
return createPortal(children, container, null, key);
|
||
}
|
||
function renderSubtreeIntoContainer(parentComponent, element, containerNode, callback) {
|
||
return unstable_renderSubtreeIntoContainer(parentComponent, element, containerNode, callback);
|
||
}
|
||
var Internals = {
|
||
usingClientEntryPoint: false,
|
||
// Keep in sync with ReactTestUtils.js.
|
||
// This is an array for better minification.
|
||
Events: [getInstanceFromNode, getNodeFromInstance, getFiberCurrentPropsFromNode, enqueueStateRestore, restoreStateIfNeeded, batchedUpdates$1]
|
||
};
|
||
function createRoot$1(container, options2) {
|
||
{
|
||
if (!Internals.usingClientEntryPoint && true) {
|
||
error('You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client".');
|
||
}
|
||
}
|
||
return createRoot2(container, options2);
|
||
}
|
||
function hydrateRoot$1(container, initialChildren, options2) {
|
||
{
|
||
if (!Internals.usingClientEntryPoint && true) {
|
||
error('You are importing hydrateRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client".');
|
||
}
|
||
}
|
||
return hydrateRoot(container, initialChildren, options2);
|
||
}
|
||
function flushSync$1(fn) {
|
||
{
|
||
if (isAlreadyRendering()) {
|
||
error("flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task.");
|
||
}
|
||
}
|
||
return flushSync(fn);
|
||
}
|
||
var foundDevTools = injectIntoDevTools({
|
||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||
bundleType: 1,
|
||
version: ReactVersion,
|
||
rendererPackageName: "react-dom"
|
||
});
|
||
{
|
||
if (!foundDevTools && canUseDOM && window.top === window.self) {
|
||
if (navigator.userAgent.indexOf("Chrome") > -1 && navigator.userAgent.indexOf("Edge") === -1 || navigator.userAgent.indexOf("Firefox") > -1) {
|
||
var protocol = window.location.protocol;
|
||
if (/^(https?|file):$/.test(protocol)) {
|
||
console.info("%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools" + (protocol === "file:" ? "\nYou might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq" : ""), "font-weight:bold");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = Internals;
|
||
exports.createPortal = createPortal$1;
|
||
exports.createRoot = createRoot$1;
|
||
exports.findDOMNode = findDOMNode;
|
||
exports.flushSync = flushSync$1;
|
||
exports.hydrate = hydrate;
|
||
exports.hydrateRoot = hydrateRoot$1;
|
||
exports.render = render;
|
||
exports.unmountComponentAtNode = unmountComponentAtNode;
|
||
exports.unstable_batchedUpdates = batchedUpdates$1;
|
||
exports.unstable_renderSubtreeIntoContainer = renderSubtreeIntoContainer;
|
||
exports.version = ReactVersion;
|
||
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
||
}
|
||
})();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/react-dom/index.js
|
||
var require_react_dom = __commonJS({
|
||
"node_modules/react-dom/index.js"(exports, module2) {
|
||
"use strict";
|
||
if (false) {
|
||
checkDCE();
|
||
module2.exports = null;
|
||
} else {
|
||
module2.exports = require_react_dom_development();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/react-dom/client.js
|
||
var require_client = __commonJS({
|
||
"node_modules/react-dom/client.js"(exports) {
|
||
"use strict";
|
||
var m = require_react_dom();
|
||
if (false) {
|
||
exports.createRoot = m.createRoot;
|
||
exports.hydrateRoot = m.hydrateRoot;
|
||
} else {
|
||
i = m.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
||
exports.createRoot = function(c, o) {
|
||
i.usingClientEntryPoint = true;
|
||
try {
|
||
return m.createRoot(c, o);
|
||
} finally {
|
||
i.usingClientEntryPoint = false;
|
||
}
|
||
};
|
||
exports.hydrateRoot = function(c, h, o) {
|
||
i.usingClientEntryPoint = true;
|
||
try {
|
||
return m.hydrateRoot(c, h, o);
|
||
} finally {
|
||
i.usingClientEntryPoint = false;
|
||
}
|
||
};
|
||
}
|
||
var i;
|
||
}
|
||
});
|
||
|
||
// node_modules/react-is/cjs/react-is.development.js
|
||
var require_react_is_development = __commonJS({
|
||
"node_modules/react-is/cjs/react-is.development.js"(exports) {
|
||
"use strict";
|
||
if (true) {
|
||
(function() {
|
||
"use strict";
|
||
var hasSymbol = typeof Symbol === "function" && Symbol.for;
|
||
var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103;
|
||
var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106;
|
||
var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107;
|
||
var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for("react.strict_mode") : 60108;
|
||
var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for("react.profiler") : 60114;
|
||
var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for("react.provider") : 60109;
|
||
var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for("react.context") : 60110;
|
||
var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for("react.async_mode") : 60111;
|
||
var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for("react.concurrent_mode") : 60111;
|
||
var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for("react.forward_ref") : 60112;
|
||
var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for("react.suspense") : 60113;
|
||
var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for("react.suspense_list") : 60120;
|
||
var REACT_MEMO_TYPE = hasSymbol ? Symbol.for("react.memo") : 60115;
|
||
var REACT_LAZY_TYPE = hasSymbol ? Symbol.for("react.lazy") : 60116;
|
||
var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for("react.block") : 60121;
|
||
var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for("react.fundamental") : 60117;
|
||
var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for("react.responder") : 60118;
|
||
var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for("react.scope") : 60119;
|
||
function isValidElementType(type) {
|
||
return typeof type === "string" || typeof type === "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
||
type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === "object" && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
|
||
}
|
||
function typeOf(object) {
|
||
if (typeof object === "object" && object !== null) {
|
||
var $$typeof = object.$$typeof;
|
||
switch ($$typeof) {
|
||
case REACT_ELEMENT_TYPE:
|
||
var type = object.type;
|
||
switch (type) {
|
||
case REACT_ASYNC_MODE_TYPE:
|
||
case REACT_CONCURRENT_MODE_TYPE:
|
||
case REACT_FRAGMENT_TYPE:
|
||
case REACT_PROFILER_TYPE:
|
||
case REACT_STRICT_MODE_TYPE:
|
||
case REACT_SUSPENSE_TYPE:
|
||
return type;
|
||
default:
|
||
var $$typeofType = type && type.$$typeof;
|
||
switch ($$typeofType) {
|
||
case REACT_CONTEXT_TYPE:
|
||
case REACT_FORWARD_REF_TYPE:
|
||
case REACT_LAZY_TYPE:
|
||
case REACT_MEMO_TYPE:
|
||
case REACT_PROVIDER_TYPE:
|
||
return $$typeofType;
|
||
default:
|
||
return $$typeof;
|
||
}
|
||
}
|
||
case REACT_PORTAL_TYPE:
|
||
return $$typeof;
|
||
}
|
||
}
|
||
return void 0;
|
||
}
|
||
var AsyncMode = REACT_ASYNC_MODE_TYPE;
|
||
var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
|
||
var ContextConsumer = REACT_CONTEXT_TYPE;
|
||
var ContextProvider = REACT_PROVIDER_TYPE;
|
||
var Element2 = REACT_ELEMENT_TYPE;
|
||
var ForwardRef = REACT_FORWARD_REF_TYPE;
|
||
var Fragment3 = REACT_FRAGMENT_TYPE;
|
||
var Lazy = REACT_LAZY_TYPE;
|
||
var Memo = REACT_MEMO_TYPE;
|
||
var Portal = REACT_PORTAL_TYPE;
|
||
var Profiler = REACT_PROFILER_TYPE;
|
||
var StrictMode = REACT_STRICT_MODE_TYPE;
|
||
var Suspense = REACT_SUSPENSE_TYPE;
|
||
var hasWarnedAboutDeprecatedIsAsyncMode = false;
|
||
function isAsyncMode(object) {
|
||
{
|
||
if (!hasWarnedAboutDeprecatedIsAsyncMode) {
|
||
hasWarnedAboutDeprecatedIsAsyncMode = true;
|
||
console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.");
|
||
}
|
||
}
|
||
return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
|
||
}
|
||
function isConcurrentMode(object) {
|
||
return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
|
||
}
|
||
function isContextConsumer(object) {
|
||
return typeOf(object) === REACT_CONTEXT_TYPE;
|
||
}
|
||
function isContextProvider(object) {
|
||
return typeOf(object) === REACT_PROVIDER_TYPE;
|
||
}
|
||
function isElement(object) {
|
||
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
||
}
|
||
function isForwardRef(object) {
|
||
return typeOf(object) === REACT_FORWARD_REF_TYPE;
|
||
}
|
||
function isFragment(object) {
|
||
return typeOf(object) === REACT_FRAGMENT_TYPE;
|
||
}
|
||
function isLazy(object) {
|
||
return typeOf(object) === REACT_LAZY_TYPE;
|
||
}
|
||
function isMemo(object) {
|
||
return typeOf(object) === REACT_MEMO_TYPE;
|
||
}
|
||
function isPortal(object) {
|
||
return typeOf(object) === REACT_PORTAL_TYPE;
|
||
}
|
||
function isProfiler(object) {
|
||
return typeOf(object) === REACT_PROFILER_TYPE;
|
||
}
|
||
function isStrictMode(object) {
|
||
return typeOf(object) === REACT_STRICT_MODE_TYPE;
|
||
}
|
||
function isSuspense(object) {
|
||
return typeOf(object) === REACT_SUSPENSE_TYPE;
|
||
}
|
||
exports.AsyncMode = AsyncMode;
|
||
exports.ConcurrentMode = ConcurrentMode;
|
||
exports.ContextConsumer = ContextConsumer;
|
||
exports.ContextProvider = ContextProvider;
|
||
exports.Element = Element2;
|
||
exports.ForwardRef = ForwardRef;
|
||
exports.Fragment = Fragment3;
|
||
exports.Lazy = Lazy;
|
||
exports.Memo = Memo;
|
||
exports.Portal = Portal;
|
||
exports.Profiler = Profiler;
|
||
exports.StrictMode = StrictMode;
|
||
exports.Suspense = Suspense;
|
||
exports.isAsyncMode = isAsyncMode;
|
||
exports.isConcurrentMode = isConcurrentMode;
|
||
exports.isContextConsumer = isContextConsumer;
|
||
exports.isContextProvider = isContextProvider;
|
||
exports.isElement = isElement;
|
||
exports.isForwardRef = isForwardRef;
|
||
exports.isFragment = isFragment;
|
||
exports.isLazy = isLazy;
|
||
exports.isMemo = isMemo;
|
||
exports.isPortal = isPortal;
|
||
exports.isProfiler = isProfiler;
|
||
exports.isStrictMode = isStrictMode;
|
||
exports.isSuspense = isSuspense;
|
||
exports.isValidElementType = isValidElementType;
|
||
exports.typeOf = typeOf;
|
||
})();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/react-is/index.js
|
||
var require_react_is = __commonJS({
|
||
"node_modules/react-is/index.js"(exports, module2) {
|
||
"use strict";
|
||
if (false) {
|
||
module2.exports = null;
|
||
} else {
|
||
module2.exports = require_react_is_development();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/object-assign/index.js
|
||
var require_object_assign = __commonJS({
|
||
"node_modules/object-assign/index.js"(exports, module2) {
|
||
"use strict";
|
||
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
||
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
||
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
||
function toObject(val) {
|
||
if (val === null || val === void 0) {
|
||
throw new TypeError("Object.assign cannot be called with null or undefined");
|
||
}
|
||
return Object(val);
|
||
}
|
||
function shouldUseNative() {
|
||
try {
|
||
if (!Object.assign) {
|
||
return false;
|
||
}
|
||
var test1 = new String("abc");
|
||
test1[5] = "de";
|
||
if (Object.getOwnPropertyNames(test1)[0] === "5") {
|
||
return false;
|
||
}
|
||
var test2 = {};
|
||
for (var i = 0; i < 10; i++) {
|
||
test2["_" + String.fromCharCode(i)] = i;
|
||
}
|
||
var order2 = Object.getOwnPropertyNames(test2).map(function(n) {
|
||
return test2[n];
|
||
});
|
||
if (order2.join("") !== "0123456789") {
|
||
return false;
|
||
}
|
||
var test3 = {};
|
||
"abcdefghijklmnopqrst".split("").forEach(function(letter) {
|
||
test3[letter] = letter;
|
||
});
|
||
if (Object.keys(Object.assign({}, test3)).join("") !== "abcdefghijklmnopqrst") {
|
||
return false;
|
||
}
|
||
return true;
|
||
} catch (err) {
|
||
return false;
|
||
}
|
||
}
|
||
module2.exports = shouldUseNative() ? Object.assign : function(target, source) {
|
||
var from;
|
||
var to = toObject(target);
|
||
var symbols;
|
||
for (var s = 1; s < arguments.length; s++) {
|
||
from = Object(arguments[s]);
|
||
for (var key in from) {
|
||
if (hasOwnProperty.call(from, key)) {
|
||
to[key] = from[key];
|
||
}
|
||
}
|
||
if (getOwnPropertySymbols) {
|
||
symbols = getOwnPropertySymbols(from);
|
||
for (var i = 0; i < symbols.length; i++) {
|
||
if (propIsEnumerable.call(from, symbols[i])) {
|
||
to[symbols[i]] = from[symbols[i]];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return to;
|
||
};
|
||
}
|
||
});
|
||
|
||
// node_modules/prop-types/lib/ReactPropTypesSecret.js
|
||
var require_ReactPropTypesSecret = __commonJS({
|
||
"node_modules/prop-types/lib/ReactPropTypesSecret.js"(exports, module2) {
|
||
"use strict";
|
||
var ReactPropTypesSecret = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
|
||
module2.exports = ReactPropTypesSecret;
|
||
}
|
||
});
|
||
|
||
// node_modules/prop-types/lib/has.js
|
||
var require_has = __commonJS({
|
||
"node_modules/prop-types/lib/has.js"(exports, module2) {
|
||
module2.exports = Function.call.bind(Object.prototype.hasOwnProperty);
|
||
}
|
||
});
|
||
|
||
// node_modules/prop-types/checkPropTypes.js
|
||
var require_checkPropTypes = __commonJS({
|
||
"node_modules/prop-types/checkPropTypes.js"(exports, module2) {
|
||
"use strict";
|
||
var printWarning = function() {
|
||
};
|
||
if (true) {
|
||
ReactPropTypesSecret = require_ReactPropTypesSecret();
|
||
loggedTypeFailures = {};
|
||
has2 = require_has();
|
||
printWarning = function(text) {
|
||
var message = "Warning: " + text;
|
||
if (typeof console !== "undefined") {
|
||
console.error(message);
|
||
}
|
||
try {
|
||
throw new Error(message);
|
||
} catch (x) {
|
||
}
|
||
};
|
||
}
|
||
var ReactPropTypesSecret;
|
||
var loggedTypeFailures;
|
||
var has2;
|
||
function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
|
||
if (true) {
|
||
for (var typeSpecName in typeSpecs) {
|
||
if (has2(typeSpecs, typeSpecName)) {
|
||
var error;
|
||
try {
|
||
if (typeof typeSpecs[typeSpecName] !== "function") {
|
||
var err = Error(
|
||
(componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`."
|
||
);
|
||
err.name = "Invariant Violation";
|
||
throw err;
|
||
}
|
||
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
|
||
} catch (ex) {
|
||
error = ex;
|
||
}
|
||
if (error && !(error instanceof Error)) {
|
||
printWarning(
|
||
(componentName || "React class") + ": type specification of " + location + " `" + typeSpecName + "` is invalid; the type checker function must return `null` or an `Error` but returned a " + typeof error + ". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."
|
||
);
|
||
}
|
||
if (error instanceof Error && !(error.message in loggedTypeFailures)) {
|
||
loggedTypeFailures[error.message] = true;
|
||
var stack = getStack ? getStack() : "";
|
||
printWarning(
|
||
"Failed " + location + " type: " + error.message + (stack != null ? stack : "")
|
||
);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
checkPropTypes.resetWarningCache = function() {
|
||
if (true) {
|
||
loggedTypeFailures = {};
|
||
}
|
||
};
|
||
module2.exports = checkPropTypes;
|
||
}
|
||
});
|
||
|
||
// node_modules/prop-types/factoryWithTypeCheckers.js
|
||
var require_factoryWithTypeCheckers = __commonJS({
|
||
"node_modules/prop-types/factoryWithTypeCheckers.js"(exports, module2) {
|
||
"use strict";
|
||
var ReactIs = require_react_is();
|
||
var assign = require_object_assign();
|
||
var ReactPropTypesSecret = require_ReactPropTypesSecret();
|
||
var has2 = require_has();
|
||
var checkPropTypes = require_checkPropTypes();
|
||
var printWarning = function() {
|
||
};
|
||
if (true) {
|
||
printWarning = function(text) {
|
||
var message = "Warning: " + text;
|
||
if (typeof console !== "undefined") {
|
||
console.error(message);
|
||
}
|
||
try {
|
||
throw new Error(message);
|
||
} catch (x) {
|
||
}
|
||
};
|
||
}
|
||
function emptyFunctionThatReturnsNull() {
|
||
return null;
|
||
}
|
||
module2.exports = function(isValidElement, throwOnDirectAccess) {
|
||
var ITERATOR_SYMBOL = typeof Symbol === "function" && Symbol.iterator;
|
||
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
||
function getIteratorFn(maybeIterable) {
|
||
var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
|
||
if (typeof iteratorFn === "function") {
|
||
return iteratorFn;
|
||
}
|
||
}
|
||
var ANONYMOUS = "<<anonymous>>";
|
||
var ReactPropTypes = {
|
||
array: createPrimitiveTypeChecker("array"),
|
||
bigint: createPrimitiveTypeChecker("bigint"),
|
||
bool: createPrimitiveTypeChecker("boolean"),
|
||
func: createPrimitiveTypeChecker("function"),
|
||
number: createPrimitiveTypeChecker("number"),
|
||
object: createPrimitiveTypeChecker("object"),
|
||
string: createPrimitiveTypeChecker("string"),
|
||
symbol: createPrimitiveTypeChecker("symbol"),
|
||
any: createAnyTypeChecker(),
|
||
arrayOf: createArrayOfTypeChecker,
|
||
element: createElementTypeChecker(),
|
||
elementType: createElementTypeTypeChecker(),
|
||
instanceOf: createInstanceTypeChecker,
|
||
node: createNodeChecker(),
|
||
objectOf: createObjectOfTypeChecker,
|
||
oneOf: createEnumTypeChecker,
|
||
oneOfType: createUnionTypeChecker,
|
||
shape: createShapeTypeChecker,
|
||
exact: createStrictShapeTypeChecker
|
||
};
|
||
function is2(x, y) {
|
||
if (x === y) {
|
||
return x !== 0 || 1 / x === 1 / y;
|
||
} else {
|
||
return x !== x && y !== y;
|
||
}
|
||
}
|
||
function PropTypeError(message, data) {
|
||
this.message = message;
|
||
this.data = data && typeof data === "object" ? data : {};
|
||
this.stack = "";
|
||
}
|
||
PropTypeError.prototype = Error.prototype;
|
||
function createChainableTypeChecker(validate) {
|
||
if (true) {
|
||
var manualPropTypeCallCache = {};
|
||
var manualPropTypeWarningCount = 0;
|
||
}
|
||
function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
|
||
componentName = componentName || ANONYMOUS;
|
||
propFullName = propFullName || propName;
|
||
if (secret !== ReactPropTypesSecret) {
|
||
if (throwOnDirectAccess) {
|
||
var err = new Error(
|
||
"Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"
|
||
);
|
||
err.name = "Invariant Violation";
|
||
throw err;
|
||
} else if (typeof console !== "undefined") {
|
||
var cacheKey = componentName + ":" + propName;
|
||
if (!manualPropTypeCallCache[cacheKey] && // Avoid spamming the console because they are often not actionable except for lib authors
|
||
manualPropTypeWarningCount < 3) {
|
||
printWarning(
|
||
"You are manually calling a React.PropTypes validation function for the `" + propFullName + "` prop on `" + componentName + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."
|
||
);
|
||
manualPropTypeCallCache[cacheKey] = true;
|
||
manualPropTypeWarningCount++;
|
||
}
|
||
}
|
||
}
|
||
if (props[propName] == null) {
|
||
if (isRequired) {
|
||
if (props[propName] === null) {
|
||
return new PropTypeError("The " + location + " `" + propFullName + "` is marked as required " + ("in `" + componentName + "`, but its value is `null`."));
|
||
}
|
||
return new PropTypeError("The " + location + " `" + propFullName + "` is marked as required in " + ("`" + componentName + "`, but its value is `undefined`."));
|
||
}
|
||
return null;
|
||
} else {
|
||
return validate(props, propName, componentName, location, propFullName);
|
||
}
|
||
}
|
||
var chainedCheckType = checkType.bind(null, false);
|
||
chainedCheckType.isRequired = checkType.bind(null, true);
|
||
return chainedCheckType;
|
||
}
|
||
function createPrimitiveTypeChecker(expectedType) {
|
||
function validate(props, propName, componentName, location, propFullName, secret) {
|
||
var propValue = props[propName];
|
||
var propType = getPropType(propValue);
|
||
if (propType !== expectedType) {
|
||
var preciseType = getPreciseType(propValue);
|
||
return new PropTypeError(
|
||
"Invalid " + location + " `" + propFullName + "` of type " + ("`" + preciseType + "` supplied to `" + componentName + "`, expected ") + ("`" + expectedType + "`."),
|
||
{ expectedType }
|
||
);
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createAnyTypeChecker() {
|
||
return createChainableTypeChecker(emptyFunctionThatReturnsNull);
|
||
}
|
||
function createArrayOfTypeChecker(typeChecker) {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
if (typeof typeChecker !== "function") {
|
||
return new PropTypeError("Property `" + propFullName + "` of component `" + componentName + "` has invalid PropType notation inside arrayOf.");
|
||
}
|
||
var propValue = props[propName];
|
||
if (!Array.isArray(propValue)) {
|
||
var propType = getPropType(propValue);
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected an array."));
|
||
}
|
||
for (var i = 0; i < propValue.length; i++) {
|
||
var error = typeChecker(propValue, i, componentName, location, propFullName + "[" + i + "]", ReactPropTypesSecret);
|
||
if (error instanceof Error) {
|
||
return error;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createElementTypeChecker() {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
var propValue = props[propName];
|
||
if (!isValidElement(propValue)) {
|
||
var propType = getPropType(propValue);
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected a single ReactElement."));
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createElementTypeTypeChecker() {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
var propValue = props[propName];
|
||
if (!ReactIs.isValidElementType(propValue)) {
|
||
var propType = getPropType(propValue);
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected a single ReactElement type."));
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createInstanceTypeChecker(expectedClass) {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
if (!(props[propName] instanceof expectedClass)) {
|
||
var expectedClassName = expectedClass.name || ANONYMOUS;
|
||
var actualClassName = getClassName(props[propName]);
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + actualClassName + "` supplied to `" + componentName + "`, expected ") + ("instance of `" + expectedClassName + "`."));
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createEnumTypeChecker(expectedValues) {
|
||
if (!Array.isArray(expectedValues)) {
|
||
if (true) {
|
||
if (arguments.length > 1) {
|
||
printWarning(
|
||
"Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."
|
||
);
|
||
} else {
|
||
printWarning("Invalid argument supplied to oneOf, expected an array.");
|
||
}
|
||
}
|
||
return emptyFunctionThatReturnsNull;
|
||
}
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
var propValue = props[propName];
|
||
for (var i = 0; i < expectedValues.length; i++) {
|
||
if (is2(propValue, expectedValues[i])) {
|
||
return null;
|
||
}
|
||
}
|
||
var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {
|
||
var type = getPreciseType(value);
|
||
if (type === "symbol") {
|
||
return String(value);
|
||
}
|
||
return value;
|
||
});
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of value `" + String(propValue) + "` " + ("supplied to `" + componentName + "`, expected one of " + valuesString + "."));
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createObjectOfTypeChecker(typeChecker) {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
if (typeof typeChecker !== "function") {
|
||
return new PropTypeError("Property `" + propFullName + "` of component `" + componentName + "` has invalid PropType notation inside objectOf.");
|
||
}
|
||
var propValue = props[propName];
|
||
var propType = getPropType(propValue);
|
||
if (propType !== "object") {
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected an object."));
|
||
}
|
||
for (var key in propValue) {
|
||
if (has2(propValue, key)) {
|
||
var error = typeChecker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
|
||
if (error instanceof Error) {
|
||
return error;
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createUnionTypeChecker(arrayOfTypeCheckers) {
|
||
if (!Array.isArray(arrayOfTypeCheckers)) {
|
||
true ? printWarning("Invalid argument supplied to oneOfType, expected an instance of array.") : void 0;
|
||
return emptyFunctionThatReturnsNull;
|
||
}
|
||
for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
|
||
var checker = arrayOfTypeCheckers[i];
|
||
if (typeof checker !== "function") {
|
||
printWarning(
|
||
"Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + getPostfixForTypeWarning(checker) + " at index " + i + "."
|
||
);
|
||
return emptyFunctionThatReturnsNull;
|
||
}
|
||
}
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
var expectedTypes = [];
|
||
for (var i2 = 0; i2 < arrayOfTypeCheckers.length; i2++) {
|
||
var checker2 = arrayOfTypeCheckers[i2];
|
||
var checkerResult = checker2(props, propName, componentName, location, propFullName, ReactPropTypesSecret);
|
||
if (checkerResult == null) {
|
||
return null;
|
||
}
|
||
if (checkerResult.data && has2(checkerResult.data, "expectedType")) {
|
||
expectedTypes.push(checkerResult.data.expectedType);
|
||
}
|
||
}
|
||
var expectedTypesMessage = expectedTypes.length > 0 ? ", expected one of type [" + expectedTypes.join(", ") + "]" : "";
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` supplied to " + ("`" + componentName + "`" + expectedTypesMessage + "."));
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createNodeChecker() {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
if (!isNode(props[propName])) {
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` supplied to " + ("`" + componentName + "`, expected a ReactNode."));
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function invalidValidatorError(componentName, location, propFullName, key, type) {
|
||
return new PropTypeError(
|
||
(componentName || "React class") + ": " + location + " type `" + propFullName + "." + key + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + type + "`."
|
||
);
|
||
}
|
||
function createShapeTypeChecker(shapeTypes) {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
var propValue = props[propName];
|
||
var propType = getPropType(propValue);
|
||
if (propType !== "object") {
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
|
||
}
|
||
for (var key in shapeTypes) {
|
||
var checker = shapeTypes[key];
|
||
if (typeof checker !== "function") {
|
||
return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
|
||
}
|
||
var error = checker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
|
||
if (error) {
|
||
return error;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function createStrictShapeTypeChecker(shapeTypes) {
|
||
function validate(props, propName, componentName, location, propFullName) {
|
||
var propValue = props[propName];
|
||
var propType = getPropType(propValue);
|
||
if (propType !== "object") {
|
||
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
|
||
}
|
||
var allKeys = assign({}, props[propName], shapeTypes);
|
||
for (var key in allKeys) {
|
||
var checker = shapeTypes[key];
|
||
if (has2(shapeTypes, key) && typeof checker !== "function") {
|
||
return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
|
||
}
|
||
if (!checker) {
|
||
return new PropTypeError(
|
||
"Invalid " + location + " `" + propFullName + "` key `" + key + "` supplied to `" + componentName + "`.\nBad object: " + JSON.stringify(props[propName], null, " ") + "\nValid keys: " + JSON.stringify(Object.keys(shapeTypes), null, " ")
|
||
);
|
||
}
|
||
var error = checker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
|
||
if (error) {
|
||
return error;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
return createChainableTypeChecker(validate);
|
||
}
|
||
function isNode(propValue) {
|
||
switch (typeof propValue) {
|
||
case "number":
|
||
case "string":
|
||
case "undefined":
|
||
return true;
|
||
case "boolean":
|
||
return !propValue;
|
||
case "object":
|
||
if (Array.isArray(propValue)) {
|
||
return propValue.every(isNode);
|
||
}
|
||
if (propValue === null || isValidElement(propValue)) {
|
||
return true;
|
||
}
|
||
var iteratorFn = getIteratorFn(propValue);
|
||
if (iteratorFn) {
|
||
var iterator = iteratorFn.call(propValue);
|
||
var step;
|
||
if (iteratorFn !== propValue.entries) {
|
||
while (!(step = iterator.next()).done) {
|
||
if (!isNode(step.value)) {
|
||
return false;
|
||
}
|
||
}
|
||
} else {
|
||
while (!(step = iterator.next()).done) {
|
||
var entry = step.value;
|
||
if (entry) {
|
||
if (!isNode(entry[1])) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
} else {
|
||
return false;
|
||
}
|
||
return true;
|
||
default:
|
||
return false;
|
||
}
|
||
}
|
||
function isSymbol(propType, propValue) {
|
||
if (propType === "symbol") {
|
||
return true;
|
||
}
|
||
if (!propValue) {
|
||
return false;
|
||
}
|
||
if (propValue["@@toStringTag"] === "Symbol") {
|
||
return true;
|
||
}
|
||
if (typeof Symbol === "function" && propValue instanceof Symbol) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
function getPropType(propValue) {
|
||
var propType = typeof propValue;
|
||
if (Array.isArray(propValue)) {
|
||
return "array";
|
||
}
|
||
if (propValue instanceof RegExp) {
|
||
return "object";
|
||
}
|
||
if (isSymbol(propType, propValue)) {
|
||
return "symbol";
|
||
}
|
||
return propType;
|
||
}
|
||
function getPreciseType(propValue) {
|
||
if (typeof propValue === "undefined" || propValue === null) {
|
||
return "" + propValue;
|
||
}
|
||
var propType = getPropType(propValue);
|
||
if (propType === "object") {
|
||
if (propValue instanceof Date) {
|
||
return "date";
|
||
} else if (propValue instanceof RegExp) {
|
||
return "regexp";
|
||
}
|
||
}
|
||
return propType;
|
||
}
|
||
function getPostfixForTypeWarning(value) {
|
||
var type = getPreciseType(value);
|
||
switch (type) {
|
||
case "array":
|
||
case "object":
|
||
return "an " + type;
|
||
case "boolean":
|
||
case "date":
|
||
case "regexp":
|
||
return "a " + type;
|
||
default:
|
||
return type;
|
||
}
|
||
}
|
||
function getClassName(propValue) {
|
||
if (!propValue.constructor || !propValue.constructor.name) {
|
||
return ANONYMOUS;
|
||
}
|
||
return propValue.constructor.name;
|
||
}
|
||
ReactPropTypes.checkPropTypes = checkPropTypes;
|
||
ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache;
|
||
ReactPropTypes.PropTypes = ReactPropTypes;
|
||
return ReactPropTypes;
|
||
};
|
||
}
|
||
});
|
||
|
||
// node_modules/prop-types/index.js
|
||
var require_prop_types = __commonJS({
|
||
"node_modules/prop-types/index.js"(exports, module2) {
|
||
if (true) {
|
||
ReactIs = require_react_is();
|
||
throwOnDirectAccess = true;
|
||
module2.exports = require_factoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
|
||
} else {
|
||
module2.exports = null();
|
||
}
|
||
var ReactIs;
|
||
var throwOnDirectAccess;
|
||
}
|
||
});
|
||
|
||
// node_modules/jquery/dist/jquery.js
|
||
var require_jquery = __commonJS({
|
||
"node_modules/jquery/dist/jquery.js"(exports, module2) {
|
||
(function(global2, factory) {
|
||
"use strict";
|
||
if (typeof module2 === "object" && typeof module2.exports === "object") {
|
||
module2.exports = global2.document ? factory(global2, true) : function(w) {
|
||
if (!w.document) {
|
||
throw new Error("jQuery requires a window with a document");
|
||
}
|
||
return factory(w);
|
||
};
|
||
} else {
|
||
factory(global2);
|
||
}
|
||
})(typeof window !== "undefined" ? window : exports, function(window2, noGlobal) {
|
||
"use strict";
|
||
var arr = [];
|
||
var getProto = Object.getPrototypeOf;
|
||
var slice = arr.slice;
|
||
var flat = arr.flat ? function(array) {
|
||
return arr.flat.call(array);
|
||
} : function(array) {
|
||
return arr.concat.apply([], array);
|
||
};
|
||
var push = arr.push;
|
||
var indexOf = arr.indexOf;
|
||
var class2type = {};
|
||
var toString = class2type.toString;
|
||
var hasOwn = class2type.hasOwnProperty;
|
||
var fnToString = hasOwn.toString;
|
||
var ObjectFunctionString = fnToString.call(Object);
|
||
var support = {};
|
||
var isFunction = function isFunction2(obj) {
|
||
return typeof obj === "function" && typeof obj.nodeType !== "number" && typeof obj.item !== "function";
|
||
};
|
||
var isWindow = function isWindow2(obj) {
|
||
return obj != null && obj === obj.window;
|
||
};
|
||
var document2 = window2.document;
|
||
var preservedScriptAttributes = {
|
||
type: true,
|
||
src: true,
|
||
nonce: true,
|
||
noModule: true
|
||
};
|
||
function DOMEval(code, node, doc) {
|
||
doc = doc || document2;
|
||
var i, val, script = doc.createElement("script");
|
||
script.text = code;
|
||
if (node) {
|
||
for (i in preservedScriptAttributes) {
|
||
val = node[i] || node.getAttribute && node.getAttribute(i);
|
||
if (val) {
|
||
script.setAttribute(i, val);
|
||
}
|
||
}
|
||
}
|
||
doc.head.appendChild(script).parentNode.removeChild(script);
|
||
}
|
||
function toType(obj) {
|
||
if (obj == null) {
|
||
return obj + "";
|
||
}
|
||
return typeof obj === "object" || typeof obj === "function" ? class2type[toString.call(obj)] || "object" : typeof obj;
|
||
}
|
||
var version = "3.7.0", rhtmlSuffix = /HTML$/i, jQuery = function(selector, context) {
|
||
return new jQuery.fn.init(selector, context);
|
||
};
|
||
jQuery.fn = jQuery.prototype = {
|
||
// The current version of jQuery being used
|
||
jquery: version,
|
||
constructor: jQuery,
|
||
// The default length of a jQuery object is 0
|
||
length: 0,
|
||
toArray: function() {
|
||
return slice.call(this);
|
||
},
|
||
// Get the Nth element in the matched element set OR
|
||
// Get the whole matched element set as a clean array
|
||
get: function(num) {
|
||
if (num == null) {
|
||
return slice.call(this);
|
||
}
|
||
return num < 0 ? this[num + this.length] : this[num];
|
||
},
|
||
// Take an array of elements and push it onto the stack
|
||
// (returning the new matched element set)
|
||
pushStack: function(elems) {
|
||
var ret = jQuery.merge(this.constructor(), elems);
|
||
ret.prevObject = this;
|
||
return ret;
|
||
},
|
||
// Execute a callback for every element in the matched set.
|
||
each: function(callback) {
|
||
return jQuery.each(this, callback);
|
||
},
|
||
map: function(callback) {
|
||
return this.pushStack(jQuery.map(this, function(elem, i) {
|
||
return callback.call(elem, i, elem);
|
||
}));
|
||
},
|
||
slice: function() {
|
||
return this.pushStack(slice.apply(this, arguments));
|
||
},
|
||
first: function() {
|
||
return this.eq(0);
|
||
},
|
||
last: function() {
|
||
return this.eq(-1);
|
||
},
|
||
even: function() {
|
||
return this.pushStack(jQuery.grep(this, function(_elem, i) {
|
||
return (i + 1) % 2;
|
||
}));
|
||
},
|
||
odd: function() {
|
||
return this.pushStack(jQuery.grep(this, function(_elem, i) {
|
||
return i % 2;
|
||
}));
|
||
},
|
||
eq: function(i) {
|
||
var len = this.length, j = +i + (i < 0 ? len : 0);
|
||
return this.pushStack(j >= 0 && j < len ? [this[j]] : []);
|
||
},
|
||
end: function() {
|
||
return this.prevObject || this.constructor();
|
||
},
|
||
// For internal use only.
|
||
// Behaves like an Array's method, not like a jQuery method.
|
||
push,
|
||
sort: arr.sort,
|
||
splice: arr.splice
|
||
};
|
||
jQuery.extend = jQuery.fn.extend = function() {
|
||
var options, name, src, copy, copyIsArray, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false;
|
||
if (typeof target === "boolean") {
|
||
deep = target;
|
||
target = arguments[i] || {};
|
||
i++;
|
||
}
|
||
if (typeof target !== "object" && !isFunction(target)) {
|
||
target = {};
|
||
}
|
||
if (i === length) {
|
||
target = this;
|
||
i--;
|
||
}
|
||
for (; i < length; i++) {
|
||
if ((options = arguments[i]) != null) {
|
||
for (name in options) {
|
||
copy = options[name];
|
||
if (name === "__proto__" || target === copy) {
|
||
continue;
|
||
}
|
||
if (deep && copy && (jQuery.isPlainObject(copy) || (copyIsArray = Array.isArray(copy)))) {
|
||
src = target[name];
|
||
if (copyIsArray && !Array.isArray(src)) {
|
||
clone = [];
|
||
} else if (!copyIsArray && !jQuery.isPlainObject(src)) {
|
||
clone = {};
|
||
} else {
|
||
clone = src;
|
||
}
|
||
copyIsArray = false;
|
||
target[name] = jQuery.extend(deep, clone, copy);
|
||
} else if (copy !== void 0) {
|
||
target[name] = copy;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return target;
|
||
};
|
||
jQuery.extend({
|
||
// Unique for each copy of jQuery on the page
|
||
expando: "jQuery" + (version + Math.random()).replace(/\D/g, ""),
|
||
// Assume jQuery is ready without the ready module
|
||
isReady: true,
|
||
error: function(msg) {
|
||
throw new Error(msg);
|
||
},
|
||
noop: function() {
|
||
},
|
||
isPlainObject: function(obj) {
|
||
var proto, Ctor;
|
||
if (!obj || toString.call(obj) !== "[object Object]") {
|
||
return false;
|
||
}
|
||
proto = getProto(obj);
|
||
if (!proto) {
|
||
return true;
|
||
}
|
||
Ctor = hasOwn.call(proto, "constructor") && proto.constructor;
|
||
return typeof Ctor === "function" && fnToString.call(Ctor) === ObjectFunctionString;
|
||
},
|
||
isEmptyObject: function(obj) {
|
||
var name;
|
||
for (name in obj) {
|
||
return false;
|
||
}
|
||
return true;
|
||
},
|
||
// Evaluates a script in a provided context; falls back to the global one
|
||
// if not specified.
|
||
globalEval: function(code, options, doc) {
|
||
DOMEval(code, { nonce: options && options.nonce }, doc);
|
||
},
|
||
each: function(obj, callback) {
|
||
var length, i = 0;
|
||
if (isArrayLike(obj)) {
|
||
length = obj.length;
|
||
for (; i < length; i++) {
|
||
if (callback.call(obj[i], i, obj[i]) === false) {
|
||
break;
|
||
}
|
||
}
|
||
} else {
|
||
for (i in obj) {
|
||
if (callback.call(obj[i], i, obj[i]) === false) {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
return obj;
|
||
},
|
||
// Retrieve the text value of an array of DOM nodes
|
||
text: function(elem) {
|
||
var node, ret = "", i = 0, nodeType = elem.nodeType;
|
||
if (!nodeType) {
|
||
while (node = elem[i++]) {
|
||
ret += jQuery.text(node);
|
||
}
|
||
} else if (nodeType === 1 || nodeType === 9 || nodeType === 11) {
|
||
return elem.textContent;
|
||
} else if (nodeType === 3 || nodeType === 4) {
|
||
return elem.nodeValue;
|
||
}
|
||
return ret;
|
||
},
|
||
// results is for internal usage only
|
||
makeArray: function(arr2, results) {
|
||
var ret = results || [];
|
||
if (arr2 != null) {
|
||
if (isArrayLike(Object(arr2))) {
|
||
jQuery.merge(
|
||
ret,
|
||
typeof arr2 === "string" ? [arr2] : arr2
|
||
);
|
||
} else {
|
||
push.call(ret, arr2);
|
||
}
|
||
}
|
||
return ret;
|
||
},
|
||
inArray: function(elem, arr2, i) {
|
||
return arr2 == null ? -1 : indexOf.call(arr2, elem, i);
|
||
},
|
||
isXMLDoc: function(elem) {
|
||
var namespace = elem && elem.namespaceURI, docElem = elem && (elem.ownerDocument || elem).documentElement;
|
||
return !rhtmlSuffix.test(namespace || docElem && docElem.nodeName || "HTML");
|
||
},
|
||
// Support: Android <=4.0 only, PhantomJS 1 only
|
||
// push.apply(_, arraylike) throws on ancient WebKit
|
||
merge: function(first, second) {
|
||
var len = +second.length, j = 0, i = first.length;
|
||
for (; j < len; j++) {
|
||
first[i++] = second[j];
|
||
}
|
||
first.length = i;
|
||
return first;
|
||
},
|
||
grep: function(elems, callback, invert) {
|
||
var callbackInverse, matches = [], i = 0, length = elems.length, callbackExpect = !invert;
|
||
for (; i < length; i++) {
|
||
callbackInverse = !callback(elems[i], i);
|
||
if (callbackInverse !== callbackExpect) {
|
||
matches.push(elems[i]);
|
||
}
|
||
}
|
||
return matches;
|
||
},
|
||
// arg is for internal usage only
|
||
map: function(elems, callback, arg) {
|
||
var length, value, i = 0, ret = [];
|
||
if (isArrayLike(elems)) {
|
||
length = elems.length;
|
||
for (; i < length; i++) {
|
||
value = callback(elems[i], i, arg);
|
||
if (value != null) {
|
||
ret.push(value);
|
||
}
|
||
}
|
||
} else {
|
||
for (i in elems) {
|
||
value = callback(elems[i], i, arg);
|
||
if (value != null) {
|
||
ret.push(value);
|
||
}
|
||
}
|
||
}
|
||
return flat(ret);
|
||
},
|
||
// A global GUID counter for objects
|
||
guid: 1,
|
||
// jQuery.support is not used in Core but other projects attach their
|
||
// properties to it so it needs to exist.
|
||
support
|
||
});
|
||
if (typeof Symbol === "function") {
|
||
jQuery.fn[Symbol.iterator] = arr[Symbol.iterator];
|
||
}
|
||
jQuery.each(
|
||
"Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),
|
||
function(_i, name) {
|
||
class2type["[object " + name + "]"] = name.toLowerCase();
|
||
}
|
||
);
|
||
function isArrayLike(obj) {
|
||
var length = !!obj && "length" in obj && obj.length, type = toType(obj);
|
||
if (isFunction(obj) || isWindow(obj)) {
|
||
return false;
|
||
}
|
||
return type === "array" || length === 0 || typeof length === "number" && length > 0 && length - 1 in obj;
|
||
}
|
||
function nodeName(elem, name) {
|
||
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
|
||
}
|
||
var pop = arr.pop;
|
||
var sort = arr.sort;
|
||
var splice = arr.splice;
|
||
var whitespace = "[\\x20\\t\\r\\n\\f]";
|
||
var rtrimCSS = new RegExp(
|
||
"^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
|
||
"g"
|
||
);
|
||
jQuery.contains = function(a, b) {
|
||
var bup = b && b.parentNode;
|
||
return a === bup || !!(bup && bup.nodeType === 1 && // Support: IE 9 - 11+
|
||
// IE doesn't have `contains` on SVG.
|
||
(a.contains ? a.contains(bup) : a.compareDocumentPosition && a.compareDocumentPosition(bup) & 16));
|
||
};
|
||
var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;
|
||
function fcssescape(ch, asCodePoint) {
|
||
if (asCodePoint) {
|
||
if (ch === "\0") {
|
||
return "\uFFFD";
|
||
}
|
||
return ch.slice(0, -1) + "\\" + ch.charCodeAt(ch.length - 1).toString(16) + " ";
|
||
}
|
||
return "\\" + ch;
|
||
}
|
||
jQuery.escapeSelector = function(sel) {
|
||
return (sel + "").replace(rcssescape, fcssescape);
|
||
};
|
||
var preferredDoc = document2, pushNative = push;
|
||
(function() {
|
||
var i, Expr, outermostContext, sortInput, hasDuplicate, push2 = pushNative, document3, documentElement2, documentIsHTML, rbuggyQSA, matches, expando = jQuery.expando, dirruns = 0, done = 0, classCache = createCache(), tokenCache = createCache(), compilerCache = createCache(), nonnativeSelectorCache = createCache(), sortOrder = function(a, b) {
|
||
if (a === b) {
|
||
hasDuplicate = true;
|
||
}
|
||
return 0;
|
||
}, booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + // Operator (capture 2)
|
||
"*([*^$|!~]?=)" + whitespace + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
|
||
`*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(` + identifier + "))|)" + whitespace + "*\\]", pseudos = ":(" + identifier + `)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|` + attributes + ")*)|.*)\\)|)", rwhitespace = new RegExp(whitespace + "+", "g"), rcomma = new RegExp("^" + whitespace + "*," + whitespace + "*"), rleadingCombinator = new RegExp("^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*"), rdescend = new RegExp(whitespace + "|>"), rpseudo = new RegExp(pseudos), ridentifier = new RegExp("^" + identifier + "$"), matchExpr = {
|
||
ID: new RegExp("^#(" + identifier + ")"),
|
||
CLASS: new RegExp("^\\.(" + identifier + ")"),
|
||
TAG: new RegExp("^(" + identifier + "|[*])"),
|
||
ATTR: new RegExp("^" + attributes),
|
||
PSEUDO: new RegExp("^" + pseudos),
|
||
CHILD: new RegExp(
|
||
"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)",
|
||
"i"
|
||
),
|
||
bool: new RegExp("^(?:" + booleans + ")$", "i"),
|
||
// For use in libraries implementing .is()
|
||
// We use this for POS matching in `select`
|
||
needsContext: new RegExp("^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i")
|
||
}, rinputs = /^(?:input|select|textarea|button)$/i, rheader = /^h\d$/i, rquickExpr2 = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rsibling = /[+~]/, runescape = new RegExp("\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g"), funescape = function(escape, nonHex) {
|
||
var high = "0x" + escape.slice(1) - 65536;
|
||
if (nonHex) {
|
||
return nonHex;
|
||
}
|
||
return high < 0 ? String.fromCharCode(high + 65536) : String.fromCharCode(high >> 10 | 55296, high & 1023 | 56320);
|
||
}, unloadHandler = function() {
|
||
setDocument();
|
||
}, inDisabledFieldset = addCombinator(
|
||
function(elem) {
|
||
return elem.disabled === true && nodeName(elem, "fieldset");
|
||
},
|
||
{ dir: "parentNode", next: "legend" }
|
||
);
|
||
function safeActiveElement() {
|
||
try {
|
||
return document3.activeElement;
|
||
} catch (err) {
|
||
}
|
||
}
|
||
try {
|
||
push2.apply(
|
||
arr = slice.call(preferredDoc.childNodes),
|
||
preferredDoc.childNodes
|
||
);
|
||
arr[preferredDoc.childNodes.length].nodeType;
|
||
} catch (e) {
|
||
push2 = {
|
||
apply: function(target, els) {
|
||
pushNative.apply(target, slice.call(els));
|
||
},
|
||
call: function(target) {
|
||
pushNative.apply(target, slice.call(arguments, 1));
|
||
}
|
||
};
|
||
}
|
||
function find(selector, context, results, seed) {
|
||
var m, i2, elem, nid, match, groups, newSelector, newContext = context && context.ownerDocument, nodeType = context ? context.nodeType : 9;
|
||
results = results || [];
|
||
if (typeof selector !== "string" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11) {
|
||
return results;
|
||
}
|
||
if (!seed) {
|
||
setDocument(context);
|
||
context = context || document3;
|
||
if (documentIsHTML) {
|
||
if (nodeType !== 11 && (match = rquickExpr2.exec(selector))) {
|
||
if (m = match[1]) {
|
||
if (nodeType === 9) {
|
||
if (elem = context.getElementById(m)) {
|
||
if (elem.id === m) {
|
||
push2.call(results, elem);
|
||
return results;
|
||
}
|
||
} else {
|
||
return results;
|
||
}
|
||
} else {
|
||
if (newContext && (elem = newContext.getElementById(m)) && find.contains(context, elem) && elem.id === m) {
|
||
push2.call(results, elem);
|
||
return results;
|
||
}
|
||
}
|
||
} else if (match[2]) {
|
||
push2.apply(results, context.getElementsByTagName(selector));
|
||
return results;
|
||
} else if ((m = match[3]) && context.getElementsByClassName) {
|
||
push2.apply(results, context.getElementsByClassName(m));
|
||
return results;
|
||
}
|
||
}
|
||
if (!nonnativeSelectorCache[selector + " "] && (!rbuggyQSA || !rbuggyQSA.test(selector))) {
|
||
newSelector = selector;
|
||
newContext = context;
|
||
if (nodeType === 1 && (rdescend.test(selector) || rleadingCombinator.test(selector))) {
|
||
newContext = rsibling.test(selector) && testContext(context.parentNode) || context;
|
||
if (newContext != context || !support.scope) {
|
||
if (nid = context.getAttribute("id")) {
|
||
nid = jQuery.escapeSelector(nid);
|
||
} else {
|
||
context.setAttribute("id", nid = expando);
|
||
}
|
||
}
|
||
groups = tokenize(selector);
|
||
i2 = groups.length;
|
||
while (i2--) {
|
||
groups[i2] = (nid ? "#" + nid : ":scope") + " " + toSelector(groups[i2]);
|
||
}
|
||
newSelector = groups.join(",");
|
||
}
|
||
try {
|
||
push2.apply(
|
||
results,
|
||
newContext.querySelectorAll(newSelector)
|
||
);
|
||
return results;
|
||
} catch (qsaError) {
|
||
nonnativeSelectorCache(selector, true);
|
||
} finally {
|
||
if (nid === expando) {
|
||
context.removeAttribute("id");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return select(selector.replace(rtrimCSS, "$1"), context, results, seed);
|
||
}
|
||
function createCache() {
|
||
var keys = [];
|
||
function cache(key, value) {
|
||
if (keys.push(key + " ") > Expr.cacheLength) {
|
||
delete cache[keys.shift()];
|
||
}
|
||
return cache[key + " "] = value;
|
||
}
|
||
return cache;
|
||
}
|
||
function markFunction(fn) {
|
||
fn[expando] = true;
|
||
return fn;
|
||
}
|
||
function assert(fn) {
|
||
var el = document3.createElement("fieldset");
|
||
try {
|
||
return !!fn(el);
|
||
} catch (e) {
|
||
return false;
|
||
} finally {
|
||
if (el.parentNode) {
|
||
el.parentNode.removeChild(el);
|
||
}
|
||
el = null;
|
||
}
|
||
}
|
||
function createInputPseudo(type) {
|
||
return function(elem) {
|
||
return nodeName(elem, "input") && elem.type === type;
|
||
};
|
||
}
|
||
function createButtonPseudo(type) {
|
||
return function(elem) {
|
||
return (nodeName(elem, "input") || nodeName(elem, "button")) && elem.type === type;
|
||
};
|
||
}
|
||
function createDisabledPseudo(disabled) {
|
||
return function(elem) {
|
||
if ("form" in elem) {
|
||
if (elem.parentNode && elem.disabled === false) {
|
||
if ("label" in elem) {
|
||
if ("label" in elem.parentNode) {
|
||
return elem.parentNode.disabled === disabled;
|
||
} else {
|
||
return elem.disabled === disabled;
|
||
}
|
||
}
|
||
return elem.isDisabled === disabled || // Where there is no isDisabled, check manually
|
||
elem.isDisabled !== !disabled && inDisabledFieldset(elem) === disabled;
|
||
}
|
||
return elem.disabled === disabled;
|
||
} else if ("label" in elem) {
|
||
return elem.disabled === disabled;
|
||
}
|
||
return false;
|
||
};
|
||
}
|
||
function createPositionalPseudo(fn) {
|
||
return markFunction(function(argument) {
|
||
argument = +argument;
|
||
return markFunction(function(seed, matches2) {
|
||
var j, matchIndexes = fn([], seed.length, argument), i2 = matchIndexes.length;
|
||
while (i2--) {
|
||
if (seed[j = matchIndexes[i2]]) {
|
||
seed[j] = !(matches2[j] = seed[j]);
|
||
}
|
||
}
|
||
});
|
||
});
|
||
}
|
||
function testContext(context) {
|
||
return context && typeof context.getElementsByTagName !== "undefined" && context;
|
||
}
|
||
function setDocument(node) {
|
||
var subWindow, doc = node ? node.ownerDocument || node : preferredDoc;
|
||
if (doc == document3 || doc.nodeType !== 9 || !doc.documentElement) {
|
||
return document3;
|
||
}
|
||
document3 = doc;
|
||
documentElement2 = document3.documentElement;
|
||
documentIsHTML = !jQuery.isXMLDoc(document3);
|
||
matches = documentElement2.matches || documentElement2.webkitMatchesSelector || documentElement2.msMatchesSelector;
|
||
if (preferredDoc != document3 && (subWindow = document3.defaultView) && subWindow.top !== subWindow) {
|
||
subWindow.addEventListener("unload", unloadHandler);
|
||
}
|
||
support.getById = assert(function(el) {
|
||
documentElement2.appendChild(el).id = jQuery.expando;
|
||
return !document3.getElementsByName || !document3.getElementsByName(jQuery.expando).length;
|
||
});
|
||
support.disconnectedMatch = assert(function(el) {
|
||
return matches.call(el, "*");
|
||
});
|
||
support.scope = assert(function() {
|
||
return document3.querySelectorAll(":scope");
|
||
});
|
||
support.cssHas = assert(function() {
|
||
try {
|
||
document3.querySelector(":has(*,:jqfake)");
|
||
return false;
|
||
} catch (e) {
|
||
return true;
|
||
}
|
||
});
|
||
if (support.getById) {
|
||
Expr.filter.ID = function(id) {
|
||
var attrId = id.replace(runescape, funescape);
|
||
return function(elem) {
|
||
return elem.getAttribute("id") === attrId;
|
||
};
|
||
};
|
||
Expr.find.ID = function(id, context) {
|
||
if (typeof context.getElementById !== "undefined" && documentIsHTML) {
|
||
var elem = context.getElementById(id);
|
||
return elem ? [elem] : [];
|
||
}
|
||
};
|
||
} else {
|
||
Expr.filter.ID = function(id) {
|
||
var attrId = id.replace(runescape, funescape);
|
||
return function(elem) {
|
||
var node2 = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
|
||
return node2 && node2.value === attrId;
|
||
};
|
||
};
|
||
Expr.find.ID = function(id, context) {
|
||
if (typeof context.getElementById !== "undefined" && documentIsHTML) {
|
||
var node2, i2, elems, elem = context.getElementById(id);
|
||
if (elem) {
|
||
node2 = elem.getAttributeNode("id");
|
||
if (node2 && node2.value === id) {
|
||
return [elem];
|
||
}
|
||
elems = context.getElementsByName(id);
|
||
i2 = 0;
|
||
while (elem = elems[i2++]) {
|
||
node2 = elem.getAttributeNode("id");
|
||
if (node2 && node2.value === id) {
|
||
return [elem];
|
||
}
|
||
}
|
||
}
|
||
return [];
|
||
}
|
||
};
|
||
}
|
||
Expr.find.TAG = function(tag, context) {
|
||
if (typeof context.getElementsByTagName !== "undefined") {
|
||
return context.getElementsByTagName(tag);
|
||
} else {
|
||
return context.querySelectorAll(tag);
|
||
}
|
||
};
|
||
Expr.find.CLASS = function(className, context) {
|
||
if (typeof context.getElementsByClassName !== "undefined" && documentIsHTML) {
|
||
return context.getElementsByClassName(className);
|
||
}
|
||
};
|
||
rbuggyQSA = [];
|
||
assert(function(el) {
|
||
var input;
|
||
documentElement2.appendChild(el).innerHTML = "<a id='" + expando + "' href='' disabled='disabled'></a><select id='" + expando + "-\r\\' disabled='disabled'><option selected=''></option></select>";
|
||
if (!el.querySelectorAll("[selected]").length) {
|
||
rbuggyQSA.push("\\[" + whitespace + "*(?:value|" + booleans + ")");
|
||
}
|
||
if (!el.querySelectorAll("[id~=" + expando + "-]").length) {
|
||
rbuggyQSA.push("~=");
|
||
}
|
||
if (!el.querySelectorAll("a#" + expando + "+*").length) {
|
||
rbuggyQSA.push(".#.+[+~]");
|
||
}
|
||
if (!el.querySelectorAll(":checked").length) {
|
||
rbuggyQSA.push(":checked");
|
||
}
|
||
input = document3.createElement("input");
|
||
input.setAttribute("type", "hidden");
|
||
el.appendChild(input).setAttribute("name", "D");
|
||
documentElement2.appendChild(el).disabled = true;
|
||
if (el.querySelectorAll(":disabled").length !== 2) {
|
||
rbuggyQSA.push(":enabled", ":disabled");
|
||
}
|
||
input = document3.createElement("input");
|
||
input.setAttribute("name", "");
|
||
el.appendChild(input);
|
||
if (!el.querySelectorAll("[name='']").length) {
|
||
rbuggyQSA.push("\\[" + whitespace + "*name" + whitespace + "*=" + whitespace + `*(?:''|"")`);
|
||
}
|
||
});
|
||
if (!support.cssHas) {
|
||
rbuggyQSA.push(":has");
|
||
}
|
||
rbuggyQSA = rbuggyQSA.length && new RegExp(rbuggyQSA.join("|"));
|
||
sortOrder = function(a, b) {
|
||
if (a === b) {
|
||
hasDuplicate = true;
|
||
return 0;
|
||
}
|
||
var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
|
||
if (compare) {
|
||
return compare;
|
||
}
|
||
compare = (a.ownerDocument || a) == (b.ownerDocument || b) ? a.compareDocumentPosition(b) : (
|
||
// Otherwise we know they are disconnected
|
||
1
|
||
);
|
||
if (compare & 1 || !support.sortDetached && b.compareDocumentPosition(a) === compare) {
|
||
if (a === document3 || a.ownerDocument == preferredDoc && find.contains(preferredDoc, a)) {
|
||
return -1;
|
||
}
|
||
if (b === document3 || b.ownerDocument == preferredDoc && find.contains(preferredDoc, b)) {
|
||
return 1;
|
||
}
|
||
return sortInput ? indexOf.call(sortInput, a) - indexOf.call(sortInput, b) : 0;
|
||
}
|
||
return compare & 4 ? -1 : 1;
|
||
};
|
||
return document3;
|
||
}
|
||
find.matches = function(expr, elements) {
|
||
return find(expr, null, null, elements);
|
||
};
|
||
find.matchesSelector = function(elem, expr) {
|
||
setDocument(elem);
|
||
if (documentIsHTML && !nonnativeSelectorCache[expr + " "] && (!rbuggyQSA || !rbuggyQSA.test(expr))) {
|
||
try {
|
||
var ret = matches.call(elem, expr);
|
||
if (ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document
|
||
// fragment in IE 9
|
||
elem.document && elem.document.nodeType !== 11) {
|
||
return ret;
|
||
}
|
||
} catch (e) {
|
||
nonnativeSelectorCache(expr, true);
|
||
}
|
||
}
|
||
return find(expr, document3, null, [elem]).length > 0;
|
||
};
|
||
find.contains = function(context, elem) {
|
||
if ((context.ownerDocument || context) != document3) {
|
||
setDocument(context);
|
||
}
|
||
return jQuery.contains(context, elem);
|
||
};
|
||
find.attr = function(elem, name) {
|
||
if ((elem.ownerDocument || elem) != document3) {
|
||
setDocument(elem);
|
||
}
|
||
var fn = Expr.attrHandle[name.toLowerCase()], val = fn && hasOwn.call(Expr.attrHandle, name.toLowerCase()) ? fn(elem, name, !documentIsHTML) : void 0;
|
||
if (val !== void 0) {
|
||
return val;
|
||
}
|
||
return elem.getAttribute(name);
|
||
};
|
||
find.error = function(msg) {
|
||
throw new Error("Syntax error, unrecognized expression: " + msg);
|
||
};
|
||
jQuery.uniqueSort = function(results) {
|
||
var elem, duplicates = [], j = 0, i2 = 0;
|
||
hasDuplicate = !support.sortStable;
|
||
sortInput = !support.sortStable && slice.call(results, 0);
|
||
sort.call(results, sortOrder);
|
||
if (hasDuplicate) {
|
||
while (elem = results[i2++]) {
|
||
if (elem === results[i2]) {
|
||
j = duplicates.push(i2);
|
||
}
|
||
}
|
||
while (j--) {
|
||
splice.call(results, duplicates[j], 1);
|
||
}
|
||
}
|
||
sortInput = null;
|
||
return results;
|
||
};
|
||
jQuery.fn.uniqueSort = function() {
|
||
return this.pushStack(jQuery.uniqueSort(slice.apply(this)));
|
||
};
|
||
Expr = jQuery.expr = {
|
||
// Can be adjusted by the user
|
||
cacheLength: 50,
|
||
createPseudo: markFunction,
|
||
match: matchExpr,
|
||
attrHandle: {},
|
||
find: {},
|
||
relative: {
|
||
">": { dir: "parentNode", first: true },
|
||
" ": { dir: "parentNode" },
|
||
"+": { dir: "previousSibling", first: true },
|
||
"~": { dir: "previousSibling" }
|
||
},
|
||
preFilter: {
|
||
ATTR: function(match) {
|
||
match[1] = match[1].replace(runescape, funescape);
|
||
match[3] = (match[3] || match[4] || match[5] || "").replace(runescape, funescape);
|
||
if (match[2] === "~=") {
|
||
match[3] = " " + match[3] + " ";
|
||
}
|
||
return match.slice(0, 4);
|
||
},
|
||
CHILD: function(match) {
|
||
match[1] = match[1].toLowerCase();
|
||
if (match[1].slice(0, 3) === "nth") {
|
||
if (!match[3]) {
|
||
find.error(match[0]);
|
||
}
|
||
match[4] = +(match[4] ? match[5] + (match[6] || 1) : 2 * (match[3] === "even" || match[3] === "odd"));
|
||
match[5] = +(match[7] + match[8] || match[3] === "odd");
|
||
} else if (match[3]) {
|
||
find.error(match[0]);
|
||
}
|
||
return match;
|
||
},
|
||
PSEUDO: function(match) {
|
||
var excess, unquoted = !match[6] && match[2];
|
||
if (matchExpr.CHILD.test(match[0])) {
|
||
return null;
|
||
}
|
||
if (match[3]) {
|
||
match[2] = match[4] || match[5] || "";
|
||
} else if (unquoted && rpseudo.test(unquoted) && // Get excess from tokenize (recursively)
|
||
(excess = tokenize(unquoted, true)) && // advance to the next closing parenthesis
|
||
(excess = unquoted.indexOf(")", unquoted.length - excess) - unquoted.length)) {
|
||
match[0] = match[0].slice(0, excess);
|
||
match[2] = unquoted.slice(0, excess);
|
||
}
|
||
return match.slice(0, 3);
|
||
}
|
||
},
|
||
filter: {
|
||
TAG: function(nodeNameSelector) {
|
||
var expectedNodeName = nodeNameSelector.replace(runescape, funescape).toLowerCase();
|
||
return nodeNameSelector === "*" ? function() {
|
||
return true;
|
||
} : function(elem) {
|
||
return nodeName(elem, expectedNodeName);
|
||
};
|
||
},
|
||
CLASS: function(className) {
|
||
var pattern = classCache[className + " "];
|
||
return pattern || (pattern = new RegExp("(^|" + whitespace + ")" + className + "(" + whitespace + "|$)")) && classCache(className, function(elem) {
|
||
return pattern.test(
|
||
typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || ""
|
||
);
|
||
});
|
||
},
|
||
ATTR: function(name, operator, check) {
|
||
return function(elem) {
|
||
var result = find.attr(elem, name);
|
||
if (result == null) {
|
||
return operator === "!=";
|
||
}
|
||
if (!operator) {
|
||
return true;
|
||
}
|
||
result += "";
|
||
if (operator === "=") {
|
||
return result === check;
|
||
}
|
||
if (operator === "!=") {
|
||
return result !== check;
|
||
}
|
||
if (operator === "^=") {
|
||
return check && result.indexOf(check) === 0;
|
||
}
|
||
if (operator === "*=") {
|
||
return check && result.indexOf(check) > -1;
|
||
}
|
||
if (operator === "$=") {
|
||
return check && result.slice(-check.length) === check;
|
||
}
|
||
if (operator === "~=") {
|
||
return (" " + result.replace(rwhitespace, " ") + " ").indexOf(check) > -1;
|
||
}
|
||
if (operator === "|=") {
|
||
return result === check || result.slice(0, check.length + 1) === check + "-";
|
||
}
|
||
return false;
|
||
};
|
||
},
|
||
CHILD: function(type, what, _argument, first, last) {
|
||
var simple = type.slice(0, 3) !== "nth", forward = type.slice(-4) !== "last", ofType = what === "of-type";
|
||
return first === 1 && last === 0 ? (
|
||
// Shortcut for :nth-*(n)
|
||
function(elem) {
|
||
return !!elem.parentNode;
|
||
}
|
||
) : function(elem, _context, xml) {
|
||
var cache, outerCache, node, nodeIndex, start, dir2 = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), useCache = !xml && !ofType, diff = false;
|
||
if (parent) {
|
||
if (simple) {
|
||
while (dir2) {
|
||
node = elem;
|
||
while (node = node[dir2]) {
|
||
if (ofType ? nodeName(node, name) : node.nodeType === 1) {
|
||
return false;
|
||
}
|
||
}
|
||
start = dir2 = type === "only" && !start && "nextSibling";
|
||
}
|
||
return true;
|
||
}
|
||
start = [forward ? parent.firstChild : parent.lastChild];
|
||
if (forward && useCache) {
|
||
outerCache = parent[expando] || (parent[expando] = {});
|
||
cache = outerCache[type] || [];
|
||
nodeIndex = cache[0] === dirruns && cache[1];
|
||
diff = nodeIndex && cache[2];
|
||
node = nodeIndex && parent.childNodes[nodeIndex];
|
||
while (node = ++nodeIndex && node && node[dir2] || // Fallback to seeking `elem` from the start
|
||
(diff = nodeIndex = 0) || start.pop()) {
|
||
if (node.nodeType === 1 && ++diff && node === elem) {
|
||
outerCache[type] = [dirruns, nodeIndex, diff];
|
||
break;
|
||
}
|
||
}
|
||
} else {
|
||
if (useCache) {
|
||
outerCache = elem[expando] || (elem[expando] = {});
|
||
cache = outerCache[type] || [];
|
||
nodeIndex = cache[0] === dirruns && cache[1];
|
||
diff = nodeIndex;
|
||
}
|
||
if (diff === false) {
|
||
while (node = ++nodeIndex && node && node[dir2] || (diff = nodeIndex = 0) || start.pop()) {
|
||
if ((ofType ? nodeName(node, name) : node.nodeType === 1) && ++diff) {
|
||
if (useCache) {
|
||
outerCache = node[expando] || (node[expando] = {});
|
||
outerCache[type] = [dirruns, diff];
|
||
}
|
||
if (node === elem) {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
diff -= last;
|
||
return diff === first || diff % first === 0 && diff / first >= 0;
|
||
}
|
||
};
|
||
},
|
||
PSEUDO: function(pseudo, argument) {
|
||
var args, fn = Expr.pseudos[pseudo] || Expr.setFilters[pseudo.toLowerCase()] || find.error("unsupported pseudo: " + pseudo);
|
||
if (fn[expando]) {
|
||
return fn(argument);
|
||
}
|
||
if (fn.length > 1) {
|
||
args = [pseudo, pseudo, "", argument];
|
||
return Expr.setFilters.hasOwnProperty(pseudo.toLowerCase()) ? markFunction(function(seed, matches2) {
|
||
var idx, matched = fn(seed, argument), i2 = matched.length;
|
||
while (i2--) {
|
||
idx = indexOf.call(seed, matched[i2]);
|
||
seed[idx] = !(matches2[idx] = matched[i2]);
|
||
}
|
||
}) : function(elem) {
|
||
return fn(elem, 0, args);
|
||
};
|
||
}
|
||
return fn;
|
||
}
|
||
},
|
||
pseudos: {
|
||
// Potentially complex pseudos
|
||
not: markFunction(function(selector) {
|
||
var input = [], results = [], matcher = compile(selector.replace(rtrimCSS, "$1"));
|
||
return matcher[expando] ? markFunction(function(seed, matches2, _context, xml) {
|
||
var elem, unmatched = matcher(seed, null, xml, []), i2 = seed.length;
|
||
while (i2--) {
|
||
if (elem = unmatched[i2]) {
|
||
seed[i2] = !(matches2[i2] = elem);
|
||
}
|
||
}
|
||
}) : function(elem, _context, xml) {
|
||
input[0] = elem;
|
||
matcher(input, null, xml, results);
|
||
input[0] = null;
|
||
return !results.pop();
|
||
};
|
||
}),
|
||
has: markFunction(function(selector) {
|
||
return function(elem) {
|
||
return find(selector, elem).length > 0;
|
||
};
|
||
}),
|
||
contains: markFunction(function(text) {
|
||
text = text.replace(runescape, funescape);
|
||
return function(elem) {
|
||
return (elem.textContent || jQuery.text(elem)).indexOf(text) > -1;
|
||
};
|
||
}),
|
||
// "Whether an element is represented by a :lang() selector
|
||
// is based solely on the element's language value
|
||
// being equal to the identifier C,
|
||
// or beginning with the identifier C immediately followed by "-".
|
||
// The matching of C against the element's language value is performed case-insensitively.
|
||
// The identifier C does not have to be a valid language name."
|
||
// https://www.w3.org/TR/selectors/#lang-pseudo
|
||
lang: markFunction(function(lang) {
|
||
if (!ridentifier.test(lang || "")) {
|
||
find.error("unsupported lang: " + lang);
|
||
}
|
||
lang = lang.replace(runescape, funescape).toLowerCase();
|
||
return function(elem) {
|
||
var elemLang;
|
||
do {
|
||
if (elemLang = documentIsHTML ? elem.lang : elem.getAttribute("xml:lang") || elem.getAttribute("lang")) {
|
||
elemLang = elemLang.toLowerCase();
|
||
return elemLang === lang || elemLang.indexOf(lang + "-") === 0;
|
||
}
|
||
} while ((elem = elem.parentNode) && elem.nodeType === 1);
|
||
return false;
|
||
};
|
||
}),
|
||
// Miscellaneous
|
||
target: function(elem) {
|
||
var hash = window2.location && window2.location.hash;
|
||
return hash && hash.slice(1) === elem.id;
|
||
},
|
||
root: function(elem) {
|
||
return elem === documentElement2;
|
||
},
|
||
focus: function(elem) {
|
||
return elem === safeActiveElement() && document3.hasFocus() && !!(elem.type || elem.href || ~elem.tabIndex);
|
||
},
|
||
// Boolean properties
|
||
enabled: createDisabledPseudo(false),
|
||
disabled: createDisabledPseudo(true),
|
||
checked: function(elem) {
|
||
return nodeName(elem, "input") && !!elem.checked || nodeName(elem, "option") && !!elem.selected;
|
||
},
|
||
selected: function(elem) {
|
||
if (elem.parentNode) {
|
||
elem.parentNode.selectedIndex;
|
||
}
|
||
return elem.selected === true;
|
||
},
|
||
// Contents
|
||
empty: function(elem) {
|
||
for (elem = elem.firstChild; elem; elem = elem.nextSibling) {
|
||
if (elem.nodeType < 6) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
},
|
||
parent: function(elem) {
|
||
return !Expr.pseudos.empty(elem);
|
||
},
|
||
// Element/input types
|
||
header: function(elem) {
|
||
return rheader.test(elem.nodeName);
|
||
},
|
||
input: function(elem) {
|
||
return rinputs.test(elem.nodeName);
|
||
},
|
||
button: function(elem) {
|
||
return nodeName(elem, "input") && elem.type === "button" || nodeName(elem, "button");
|
||
},
|
||
text: function(elem) {
|
||
var attr;
|
||
return nodeName(elem, "input") && elem.type === "text" && // Support: IE <10 only
|
||
// New HTML5 attribute values (e.g., "search") appear
|
||
// with elem.type === "text"
|
||
((attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text");
|
||
},
|
||
// Position-in-collection
|
||
first: createPositionalPseudo(function() {
|
||
return [0];
|
||
}),
|
||
last: createPositionalPseudo(function(_matchIndexes, length) {
|
||
return [length - 1];
|
||
}),
|
||
eq: createPositionalPseudo(function(_matchIndexes, length, argument) {
|
||
return [argument < 0 ? argument + length : argument];
|
||
}),
|
||
even: createPositionalPseudo(function(matchIndexes, length) {
|
||
var i2 = 0;
|
||
for (; i2 < length; i2 += 2) {
|
||
matchIndexes.push(i2);
|
||
}
|
||
return matchIndexes;
|
||
}),
|
||
odd: createPositionalPseudo(function(matchIndexes, length) {
|
||
var i2 = 1;
|
||
for (; i2 < length; i2 += 2) {
|
||
matchIndexes.push(i2);
|
||
}
|
||
return matchIndexes;
|
||
}),
|
||
lt: createPositionalPseudo(function(matchIndexes, length, argument) {
|
||
var i2;
|
||
if (argument < 0) {
|
||
i2 = argument + length;
|
||
} else if (argument > length) {
|
||
i2 = length;
|
||
} else {
|
||
i2 = argument;
|
||
}
|
||
for (; --i2 >= 0; ) {
|
||
matchIndexes.push(i2);
|
||
}
|
||
return matchIndexes;
|
||
}),
|
||
gt: createPositionalPseudo(function(matchIndexes, length, argument) {
|
||
var i2 = argument < 0 ? argument + length : argument;
|
||
for (; ++i2 < length; ) {
|
||
matchIndexes.push(i2);
|
||
}
|
||
return matchIndexes;
|
||
})
|
||
}
|
||
};
|
||
Expr.pseudos.nth = Expr.pseudos.eq;
|
||
for (i in { radio: true, checkbox: true, file: true, password: true, image: true }) {
|
||
Expr.pseudos[i] = createInputPseudo(i);
|
||
}
|
||
for (i in { submit: true, reset: true }) {
|
||
Expr.pseudos[i] = createButtonPseudo(i);
|
||
}
|
||
function setFilters() {
|
||
}
|
||
setFilters.prototype = Expr.filters = Expr.pseudos;
|
||
Expr.setFilters = new setFilters();
|
||
function tokenize(selector, parseOnly) {
|
||
var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[selector + " "];
|
||
if (cached) {
|
||
return parseOnly ? 0 : cached.slice(0);
|
||
}
|
||
soFar = selector;
|
||
groups = [];
|
||
preFilters = Expr.preFilter;
|
||
while (soFar) {
|
||
if (!matched || (match = rcomma.exec(soFar))) {
|
||
if (match) {
|
||
soFar = soFar.slice(match[0].length) || soFar;
|
||
}
|
||
groups.push(tokens = []);
|
||
}
|
||
matched = false;
|
||
if (match = rleadingCombinator.exec(soFar)) {
|
||
matched = match.shift();
|
||
tokens.push({
|
||
value: matched,
|
||
// Cast descendant combinators to space
|
||
type: match[0].replace(rtrimCSS, " ")
|
||
});
|
||
soFar = soFar.slice(matched.length);
|
||
}
|
||
for (type in Expr.filter) {
|
||
if ((match = matchExpr[type].exec(soFar)) && (!preFilters[type] || (match = preFilters[type](match)))) {
|
||
matched = match.shift();
|
||
tokens.push({
|
||
value: matched,
|
||
type,
|
||
matches: match
|
||
});
|
||
soFar = soFar.slice(matched.length);
|
||
}
|
||
}
|
||
if (!matched) {
|
||
break;
|
||
}
|
||
}
|
||
if (parseOnly) {
|
||
return soFar.length;
|
||
}
|
||
return soFar ? find.error(selector) : (
|
||
// Cache the tokens
|
||
tokenCache(selector, groups).slice(0)
|
||
);
|
||
}
|
||
function toSelector(tokens) {
|
||
var i2 = 0, len = tokens.length, selector = "";
|
||
for (; i2 < len; i2++) {
|
||
selector += tokens[i2].value;
|
||
}
|
||
return selector;
|
||
}
|
||
function addCombinator(matcher, combinator, base) {
|
||
var dir2 = combinator.dir, skip = combinator.next, key = skip || dir2, checkNonElements = base && key === "parentNode", doneName = done++;
|
||
return combinator.first ? (
|
||
// Check against closest ancestor/preceding element
|
||
function(elem, context, xml) {
|
||
while (elem = elem[dir2]) {
|
||
if (elem.nodeType === 1 || checkNonElements) {
|
||
return matcher(elem, context, xml);
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
) : (
|
||
// Check against all ancestor/preceding elements
|
||
function(elem, context, xml) {
|
||
var oldCache, outerCache, newCache = [dirruns, doneName];
|
||
if (xml) {
|
||
while (elem = elem[dir2]) {
|
||
if (elem.nodeType === 1 || checkNonElements) {
|
||
if (matcher(elem, context, xml)) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
} else {
|
||
while (elem = elem[dir2]) {
|
||
if (elem.nodeType === 1 || checkNonElements) {
|
||
outerCache = elem[expando] || (elem[expando] = {});
|
||
if (skip && nodeName(elem, skip)) {
|
||
elem = elem[dir2] || elem;
|
||
} else if ((oldCache = outerCache[key]) && oldCache[0] === dirruns && oldCache[1] === doneName) {
|
||
return newCache[2] = oldCache[2];
|
||
} else {
|
||
outerCache[key] = newCache;
|
||
if (newCache[2] = matcher(elem, context, xml)) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
);
|
||
}
|
||
function elementMatcher(matchers) {
|
||
return matchers.length > 1 ? function(elem, context, xml) {
|
||
var i2 = matchers.length;
|
||
while (i2--) {
|
||
if (!matchers[i2](elem, context, xml)) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
} : matchers[0];
|
||
}
|
||
function multipleContexts(selector, contexts, results) {
|
||
var i2 = 0, len = contexts.length;
|
||
for (; i2 < len; i2++) {
|
||
find(selector, contexts[i2], results);
|
||
}
|
||
return results;
|
||
}
|
||
function condense(unmatched, map, filter, context, xml) {
|
||
var elem, newUnmatched = [], i2 = 0, len = unmatched.length, mapped = map != null;
|
||
for (; i2 < len; i2++) {
|
||
if (elem = unmatched[i2]) {
|
||
if (!filter || filter(elem, context, xml)) {
|
||
newUnmatched.push(elem);
|
||
if (mapped) {
|
||
map.push(i2);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return newUnmatched;
|
||
}
|
||
function setMatcher(preFilter, selector, matcher, postFilter, postFinder, postSelector) {
|
||
if (postFilter && !postFilter[expando]) {
|
||
postFilter = setMatcher(postFilter);
|
||
}
|
||
if (postFinder && !postFinder[expando]) {
|
||
postFinder = setMatcher(postFinder, postSelector);
|
||
}
|
||
return markFunction(function(seed, results, context, xml) {
|
||
var temp, i2, elem, matcherOut, preMap = [], postMap = [], preexisting = results.length, elems = seed || multipleContexts(
|
||
selector || "*",
|
||
context.nodeType ? [context] : context,
|
||
[]
|
||
), matcherIn = preFilter && (seed || !selector) ? condense(elems, preMap, preFilter, context, xml) : elems;
|
||
if (matcher) {
|
||
matcherOut = postFinder || (seed ? preFilter : preexisting || postFilter) ? (
|
||
// ...intermediate processing is necessary
|
||
[]
|
||
) : (
|
||
// ...otherwise use results directly
|
||
results
|
||
);
|
||
matcher(matcherIn, matcherOut, context, xml);
|
||
} else {
|
||
matcherOut = matcherIn;
|
||
}
|
||
if (postFilter) {
|
||
temp = condense(matcherOut, postMap);
|
||
postFilter(temp, [], context, xml);
|
||
i2 = temp.length;
|
||
while (i2--) {
|
||
if (elem = temp[i2]) {
|
||
matcherOut[postMap[i2]] = !(matcherIn[postMap[i2]] = elem);
|
||
}
|
||
}
|
||
}
|
||
if (seed) {
|
||
if (postFinder || preFilter) {
|
||
if (postFinder) {
|
||
temp = [];
|
||
i2 = matcherOut.length;
|
||
while (i2--) {
|
||
if (elem = matcherOut[i2]) {
|
||
temp.push(matcherIn[i2] = elem);
|
||
}
|
||
}
|
||
postFinder(null, matcherOut = [], temp, xml);
|
||
}
|
||
i2 = matcherOut.length;
|
||
while (i2--) {
|
||
if ((elem = matcherOut[i2]) && (temp = postFinder ? indexOf.call(seed, elem) : preMap[i2]) > -1) {
|
||
seed[temp] = !(results[temp] = elem);
|
||
}
|
||
}
|
||
}
|
||
} else {
|
||
matcherOut = condense(
|
||
matcherOut === results ? matcherOut.splice(preexisting, matcherOut.length) : matcherOut
|
||
);
|
||
if (postFinder) {
|
||
postFinder(null, results, matcherOut, xml);
|
||
} else {
|
||
push2.apply(results, matcherOut);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
function matcherFromTokens(tokens) {
|
||
var checkContext, matcher, j, len = tokens.length, leadingRelative = Expr.relative[tokens[0].type], implicitRelative = leadingRelative || Expr.relative[" "], i2 = leadingRelative ? 1 : 0, matchContext = addCombinator(function(elem) {
|
||
return elem === checkContext;
|
||
}, implicitRelative, true), matchAnyContext = addCombinator(function(elem) {
|
||
return indexOf.call(checkContext, elem) > -1;
|
||
}, implicitRelative, true), matchers = [function(elem, context, xml) {
|
||
var ret = !leadingRelative && (xml || context != outermostContext) || ((checkContext = context).nodeType ? matchContext(elem, context, xml) : matchAnyContext(elem, context, xml));
|
||
checkContext = null;
|
||
return ret;
|
||
}];
|
||
for (; i2 < len; i2++) {
|
||
if (matcher = Expr.relative[tokens[i2].type]) {
|
||
matchers = [addCombinator(elementMatcher(matchers), matcher)];
|
||
} else {
|
||
matcher = Expr.filter[tokens[i2].type].apply(null, tokens[i2].matches);
|
||
if (matcher[expando]) {
|
||
j = ++i2;
|
||
for (; j < len; j++) {
|
||
if (Expr.relative[tokens[j].type]) {
|
||
break;
|
||
}
|
||
}
|
||
return setMatcher(
|
||
i2 > 1 && elementMatcher(matchers),
|
||
i2 > 1 && toSelector(
|
||
// If the preceding token was a descendant combinator, insert an implicit any-element `*`
|
||
tokens.slice(0, i2 - 1).concat({ value: tokens[i2 - 2].type === " " ? "*" : "" })
|
||
).replace(rtrimCSS, "$1"),
|
||
matcher,
|
||
i2 < j && matcherFromTokens(tokens.slice(i2, j)),
|
||
j < len && matcherFromTokens(tokens = tokens.slice(j)),
|
||
j < len && toSelector(tokens)
|
||
);
|
||
}
|
||
matchers.push(matcher);
|
||
}
|
||
}
|
||
return elementMatcher(matchers);
|
||
}
|
||
function matcherFromGroupMatchers(elementMatchers, setMatchers) {
|
||
var bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function(seed, context, xml, results, outermost) {
|
||
var elem, j, matcher, matchedCount = 0, i2 = "0", unmatched = seed && [], setMatched = [], contextBackup = outermostContext, elems = seed || byElement && Expr.find.TAG("*", outermost), dirrunsUnique = dirruns += contextBackup == null ? 1 : Math.random() || 0.1, len = elems.length;
|
||
if (outermost) {
|
||
outermostContext = context == document3 || context || outermost;
|
||
}
|
||
for (; i2 !== len && (elem = elems[i2]) != null; i2++) {
|
||
if (byElement && elem) {
|
||
j = 0;
|
||
if (!context && elem.ownerDocument != document3) {
|
||
setDocument(elem);
|
||
xml = !documentIsHTML;
|
||
}
|
||
while (matcher = elementMatchers[j++]) {
|
||
if (matcher(elem, context || document3, xml)) {
|
||
push2.call(results, elem);
|
||
break;
|
||
}
|
||
}
|
||
if (outermost) {
|
||
dirruns = dirrunsUnique;
|
||
}
|
||
}
|
||
if (bySet) {
|
||
if (elem = !matcher && elem) {
|
||
matchedCount--;
|
||
}
|
||
if (seed) {
|
||
unmatched.push(elem);
|
||
}
|
||
}
|
||
}
|
||
matchedCount += i2;
|
||
if (bySet && i2 !== matchedCount) {
|
||
j = 0;
|
||
while (matcher = setMatchers[j++]) {
|
||
matcher(unmatched, setMatched, context, xml);
|
||
}
|
||
if (seed) {
|
||
if (matchedCount > 0) {
|
||
while (i2--) {
|
||
if (!(unmatched[i2] || setMatched[i2])) {
|
||
setMatched[i2] = pop.call(results);
|
||
}
|
||
}
|
||
}
|
||
setMatched = condense(setMatched);
|
||
}
|
||
push2.apply(results, setMatched);
|
||
if (outermost && !seed && setMatched.length > 0 && matchedCount + setMatchers.length > 1) {
|
||
jQuery.uniqueSort(results);
|
||
}
|
||
}
|
||
if (outermost) {
|
||
dirruns = dirrunsUnique;
|
||
outermostContext = contextBackup;
|
||
}
|
||
return unmatched;
|
||
};
|
||
return bySet ? markFunction(superMatcher) : superMatcher;
|
||
}
|
||
function compile(selector, match) {
|
||
var i2, setMatchers = [], elementMatchers = [], cached = compilerCache[selector + " "];
|
||
if (!cached) {
|
||
if (!match) {
|
||
match = tokenize(selector);
|
||
}
|
||
i2 = match.length;
|
||
while (i2--) {
|
||
cached = matcherFromTokens(match[i2]);
|
||
if (cached[expando]) {
|
||
setMatchers.push(cached);
|
||
} else {
|
||
elementMatchers.push(cached);
|
||
}
|
||
}
|
||
cached = compilerCache(
|
||
selector,
|
||
matcherFromGroupMatchers(elementMatchers, setMatchers)
|
||
);
|
||
cached.selector = selector;
|
||
}
|
||
return cached;
|
||
}
|
||
function select(selector, context, results, seed) {
|
||
var i2, tokens, token, type, find2, compiled = typeof selector === "function" && selector, match = !seed && tokenize(selector = compiled.selector || selector);
|
||
results = results || [];
|
||
if (match.length === 1) {
|
||
tokens = match[0] = match[0].slice(0);
|
||
if (tokens.length > 2 && (token = tokens[0]).type === "ID" && context.nodeType === 9 && documentIsHTML && Expr.relative[tokens[1].type]) {
|
||
context = (Expr.find.ID(
|
||
token.matches[0].replace(runescape, funescape),
|
||
context
|
||
) || [])[0];
|
||
if (!context) {
|
||
return results;
|
||
} else if (compiled) {
|
||
context = context.parentNode;
|
||
}
|
||
selector = selector.slice(tokens.shift().value.length);
|
||
}
|
||
i2 = matchExpr.needsContext.test(selector) ? 0 : tokens.length;
|
||
while (i2--) {
|
||
token = tokens[i2];
|
||
if (Expr.relative[type = token.type]) {
|
||
break;
|
||
}
|
||
if (find2 = Expr.find[type]) {
|
||
if (seed = find2(
|
||
token.matches[0].replace(runescape, funescape),
|
||
rsibling.test(tokens[0].type) && testContext(context.parentNode) || context
|
||
)) {
|
||
tokens.splice(i2, 1);
|
||
selector = seed.length && toSelector(tokens);
|
||
if (!selector) {
|
||
push2.apply(results, seed);
|
||
return results;
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
(compiled || compile(selector, match))(
|
||
seed,
|
||
context,
|
||
!documentIsHTML,
|
||
results,
|
||
!context || rsibling.test(selector) && testContext(context.parentNode) || context
|
||
);
|
||
return results;
|
||
}
|
||
support.sortStable = expando.split("").sort(sortOrder).join("") === expando;
|
||
setDocument();
|
||
support.sortDetached = assert(function(el) {
|
||
return el.compareDocumentPosition(document3.createElement("fieldset")) & 1;
|
||
});
|
||
jQuery.find = find;
|
||
jQuery.expr[":"] = jQuery.expr.pseudos;
|
||
jQuery.unique = jQuery.uniqueSort;
|
||
find.compile = compile;
|
||
find.select = select;
|
||
find.setDocument = setDocument;
|
||
find.escape = jQuery.escapeSelector;
|
||
find.getText = jQuery.text;
|
||
find.isXML = jQuery.isXMLDoc;
|
||
find.selectors = jQuery.expr;
|
||
find.support = jQuery.support;
|
||
find.uniqueSort = jQuery.uniqueSort;
|
||
})();
|
||
var dir = function(elem, dir2, until) {
|
||
var matched = [], truncate = until !== void 0;
|
||
while ((elem = elem[dir2]) && elem.nodeType !== 9) {
|
||
if (elem.nodeType === 1) {
|
||
if (truncate && jQuery(elem).is(until)) {
|
||
break;
|
||
}
|
||
matched.push(elem);
|
||
}
|
||
}
|
||
return matched;
|
||
};
|
||
var siblings = function(n, elem) {
|
||
var matched = [];
|
||
for (; n; n = n.nextSibling) {
|
||
if (n.nodeType === 1 && n !== elem) {
|
||
matched.push(n);
|
||
}
|
||
}
|
||
return matched;
|
||
};
|
||
var rneedsContext = jQuery.expr.match.needsContext;
|
||
var rsingleTag = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;
|
||
function winnow(elements, qualifier, not) {
|
||
if (isFunction(qualifier)) {
|
||
return jQuery.grep(elements, function(elem, i) {
|
||
return !!qualifier.call(elem, i, elem) !== not;
|
||
});
|
||
}
|
||
if (qualifier.nodeType) {
|
||
return jQuery.grep(elements, function(elem) {
|
||
return elem === qualifier !== not;
|
||
});
|
||
}
|
||
if (typeof qualifier !== "string") {
|
||
return jQuery.grep(elements, function(elem) {
|
||
return indexOf.call(qualifier, elem) > -1 !== not;
|
||
});
|
||
}
|
||
return jQuery.filter(qualifier, elements, not);
|
||
}
|
||
jQuery.filter = function(expr, elems, not) {
|
||
var elem = elems[0];
|
||
if (not) {
|
||
expr = ":not(" + expr + ")";
|
||
}
|
||
if (elems.length === 1 && elem.nodeType === 1) {
|
||
return jQuery.find.matchesSelector(elem, expr) ? [elem] : [];
|
||
}
|
||
return jQuery.find.matches(expr, jQuery.grep(elems, function(elem2) {
|
||
return elem2.nodeType === 1;
|
||
}));
|
||
};
|
||
jQuery.fn.extend({
|
||
find: function(selector) {
|
||
var i, ret, len = this.length, self2 = this;
|
||
if (typeof selector !== "string") {
|
||
return this.pushStack(jQuery(selector).filter(function() {
|
||
for (i = 0; i < len; i++) {
|
||
if (jQuery.contains(self2[i], this)) {
|
||
return true;
|
||
}
|
||
}
|
||
}));
|
||
}
|
||
ret = this.pushStack([]);
|
||
for (i = 0; i < len; i++) {
|
||
jQuery.find(selector, self2[i], ret);
|
||
}
|
||
return len > 1 ? jQuery.uniqueSort(ret) : ret;
|
||
},
|
||
filter: function(selector) {
|
||
return this.pushStack(winnow(this, selector || [], false));
|
||
},
|
||
not: function(selector) {
|
||
return this.pushStack(winnow(this, selector || [], true));
|
||
},
|
||
is: function(selector) {
|
||
return !!winnow(
|
||
this,
|
||
// If this is a positional/relative selector, check membership in the returned set
|
||
// so $("p:first").is("p:last") won't return true for a doc with two "p".
|
||
typeof selector === "string" && rneedsContext.test(selector) ? jQuery(selector) : selector || [],
|
||
false
|
||
).length;
|
||
}
|
||
});
|
||
var rootjQuery, rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, init = jQuery.fn.init = function(selector, context, root) {
|
||
var match, elem;
|
||
if (!selector) {
|
||
return this;
|
||
}
|
||
root = root || rootjQuery;
|
||
if (typeof selector === "string") {
|
||
if (selector[0] === "<" && selector[selector.length - 1] === ">" && selector.length >= 3) {
|
||
match = [null, selector, null];
|
||
} else {
|
||
match = rquickExpr.exec(selector);
|
||
}
|
||
if (match && (match[1] || !context)) {
|
||
if (match[1]) {
|
||
context = context instanceof jQuery ? context[0] : context;
|
||
jQuery.merge(this, jQuery.parseHTML(
|
||
match[1],
|
||
context && context.nodeType ? context.ownerDocument || context : document2,
|
||
true
|
||
));
|
||
if (rsingleTag.test(match[1]) && jQuery.isPlainObject(context)) {
|
||
for (match in context) {
|
||
if (isFunction(this[match])) {
|
||
this[match](context[match]);
|
||
} else {
|
||
this.attr(match, context[match]);
|
||
}
|
||
}
|
||
}
|
||
return this;
|
||
} else {
|
||
elem = document2.getElementById(match[2]);
|
||
if (elem) {
|
||
this[0] = elem;
|
||
this.length = 1;
|
||
}
|
||
return this;
|
||
}
|
||
} else if (!context || context.jquery) {
|
||
return (context || root).find(selector);
|
||
} else {
|
||
return this.constructor(context).find(selector);
|
||
}
|
||
} else if (selector.nodeType) {
|
||
this[0] = selector;
|
||
this.length = 1;
|
||
return this;
|
||
} else if (isFunction(selector)) {
|
||
return root.ready !== void 0 ? root.ready(selector) : (
|
||
// Execute immediately if ready is not present
|
||
selector(jQuery)
|
||
);
|
||
}
|
||
return jQuery.makeArray(selector, this);
|
||
};
|
||
init.prototype = jQuery.fn;
|
||
rootjQuery = jQuery(document2);
|
||
var rparentsprev = /^(?:parents|prev(?:Until|All))/, guaranteedUnique = {
|
||
children: true,
|
||
contents: true,
|
||
next: true,
|
||
prev: true
|
||
};
|
||
jQuery.fn.extend({
|
||
has: function(target) {
|
||
var targets = jQuery(target, this), l = targets.length;
|
||
return this.filter(function() {
|
||
var i = 0;
|
||
for (; i < l; i++) {
|
||
if (jQuery.contains(this, targets[i])) {
|
||
return true;
|
||
}
|
||
}
|
||
});
|
||
},
|
||
closest: function(selectors, context) {
|
||
var cur, i = 0, l = this.length, matched = [], targets = typeof selectors !== "string" && jQuery(selectors);
|
||
if (!rneedsContext.test(selectors)) {
|
||
for (; i < l; i++) {
|
||
for (cur = this[i]; cur && cur !== context; cur = cur.parentNode) {
|
||
if (cur.nodeType < 11 && (targets ? targets.index(cur) > -1 : (
|
||
// Don't pass non-elements to jQuery#find
|
||
cur.nodeType === 1 && jQuery.find.matchesSelector(cur, selectors)
|
||
))) {
|
||
matched.push(cur);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return this.pushStack(matched.length > 1 ? jQuery.uniqueSort(matched) : matched);
|
||
},
|
||
// Determine the position of an element within the set
|
||
index: function(elem) {
|
||
if (!elem) {
|
||
return this[0] && this[0].parentNode ? this.first().prevAll().length : -1;
|
||
}
|
||
if (typeof elem === "string") {
|
||
return indexOf.call(jQuery(elem), this[0]);
|
||
}
|
||
return indexOf.call(
|
||
this,
|
||
// If it receives a jQuery object, the first element is used
|
||
elem.jquery ? elem[0] : elem
|
||
);
|
||
},
|
||
add: function(selector, context) {
|
||
return this.pushStack(
|
||
jQuery.uniqueSort(
|
||
jQuery.merge(this.get(), jQuery(selector, context))
|
||
)
|
||
);
|
||
},
|
||
addBack: function(selector) {
|
||
return this.add(
|
||
selector == null ? this.prevObject : this.prevObject.filter(selector)
|
||
);
|
||
}
|
||
});
|
||
function sibling(cur, dir2) {
|
||
while ((cur = cur[dir2]) && cur.nodeType !== 1) {
|
||
}
|
||
return cur;
|
||
}
|
||
jQuery.each({
|
||
parent: function(elem) {
|
||
var parent = elem.parentNode;
|
||
return parent && parent.nodeType !== 11 ? parent : null;
|
||
},
|
||
parents: function(elem) {
|
||
return dir(elem, "parentNode");
|
||
},
|
||
parentsUntil: function(elem, _i, until) {
|
||
return dir(elem, "parentNode", until);
|
||
},
|
||
next: function(elem) {
|
||
return sibling(elem, "nextSibling");
|
||
},
|
||
prev: function(elem) {
|
||
return sibling(elem, "previousSibling");
|
||
},
|
||
nextAll: function(elem) {
|
||
return dir(elem, "nextSibling");
|
||
},
|
||
prevAll: function(elem) {
|
||
return dir(elem, "previousSibling");
|
||
},
|
||
nextUntil: function(elem, _i, until) {
|
||
return dir(elem, "nextSibling", until);
|
||
},
|
||
prevUntil: function(elem, _i, until) {
|
||
return dir(elem, "previousSibling", until);
|
||
},
|
||
siblings: function(elem) {
|
||
return siblings((elem.parentNode || {}).firstChild, elem);
|
||
},
|
||
children: function(elem) {
|
||
return siblings(elem.firstChild);
|
||
},
|
||
contents: function(elem) {
|
||
if (elem.contentDocument != null && // Support: IE 11+
|
||
// <object> elements with no `data` attribute has an object
|
||
// `contentDocument` with a `null` prototype.
|
||
getProto(elem.contentDocument)) {
|
||
return elem.contentDocument;
|
||
}
|
||
if (nodeName(elem, "template")) {
|
||
elem = elem.content || elem;
|
||
}
|
||
return jQuery.merge([], elem.childNodes);
|
||
}
|
||
}, function(name, fn) {
|
||
jQuery.fn[name] = function(until, selector) {
|
||
var matched = jQuery.map(this, fn, until);
|
||
if (name.slice(-5) !== "Until") {
|
||
selector = until;
|
||
}
|
||
if (selector && typeof selector === "string") {
|
||
matched = jQuery.filter(selector, matched);
|
||
}
|
||
if (this.length > 1) {
|
||
if (!guaranteedUnique[name]) {
|
||
jQuery.uniqueSort(matched);
|
||
}
|
||
if (rparentsprev.test(name)) {
|
||
matched.reverse();
|
||
}
|
||
}
|
||
return this.pushStack(matched);
|
||
};
|
||
});
|
||
var rnothtmlwhite = /[^\x20\t\r\n\f]+/g;
|
||
function createOptions(options) {
|
||
var object = {};
|
||
jQuery.each(options.match(rnothtmlwhite) || [], function(_3, flag) {
|
||
object[flag] = true;
|
||
});
|
||
return object;
|
||
}
|
||
jQuery.Callbacks = function(options) {
|
||
options = typeof options === "string" ? createOptions(options) : jQuery.extend({}, options);
|
||
var firing, memory, fired, locked, list = [], queue = [], firingIndex = -1, fire = function() {
|
||
locked = locked || options.once;
|
||
fired = firing = true;
|
||
for (; queue.length; firingIndex = -1) {
|
||
memory = queue.shift();
|
||
while (++firingIndex < list.length) {
|
||
if (list[firingIndex].apply(memory[0], memory[1]) === false && options.stopOnFalse) {
|
||
firingIndex = list.length;
|
||
memory = false;
|
||
}
|
||
}
|
||
}
|
||
if (!options.memory) {
|
||
memory = false;
|
||
}
|
||
firing = false;
|
||
if (locked) {
|
||
if (memory) {
|
||
list = [];
|
||
} else {
|
||
list = "";
|
||
}
|
||
}
|
||
}, self2 = {
|
||
// Add a callback or a collection of callbacks to the list
|
||
add: function() {
|
||
if (list) {
|
||
if (memory && !firing) {
|
||
firingIndex = list.length - 1;
|
||
queue.push(memory);
|
||
}
|
||
(function add(args) {
|
||
jQuery.each(args, function(_3, arg) {
|
||
if (isFunction(arg)) {
|
||
if (!options.unique || !self2.has(arg)) {
|
||
list.push(arg);
|
||
}
|
||
} else if (arg && arg.length && toType(arg) !== "string") {
|
||
add(arg);
|
||
}
|
||
});
|
||
})(arguments);
|
||
if (memory && !firing) {
|
||
fire();
|
||
}
|
||
}
|
||
return this;
|
||
},
|
||
// Remove a callback from the list
|
||
remove: function() {
|
||
jQuery.each(arguments, function(_3, arg) {
|
||
var index;
|
||
while ((index = jQuery.inArray(arg, list, index)) > -1) {
|
||
list.splice(index, 1);
|
||
if (index <= firingIndex) {
|
||
firingIndex--;
|
||
}
|
||
}
|
||
});
|
||
return this;
|
||
},
|
||
// Check if a given callback is in the list.
|
||
// If no argument is given, return whether or not list has callbacks attached.
|
||
has: function(fn) {
|
||
return fn ? jQuery.inArray(fn, list) > -1 : list.length > 0;
|
||
},
|
||
// Remove all callbacks from the list
|
||
empty: function() {
|
||
if (list) {
|
||
list = [];
|
||
}
|
||
return this;
|
||
},
|
||
// Disable .fire and .add
|
||
// Abort any current/pending executions
|
||
// Clear all callbacks and values
|
||
disable: function() {
|
||
locked = queue = [];
|
||
list = memory = "";
|
||
return this;
|
||
},
|
||
disabled: function() {
|
||
return !list;
|
||
},
|
||
// Disable .fire
|
||
// Also disable .add unless we have memory (since it would have no effect)
|
||
// Abort any pending executions
|
||
lock: function() {
|
||
locked = queue = [];
|
||
if (!memory && !firing) {
|
||
list = memory = "";
|
||
}
|
||
return this;
|
||
},
|
||
locked: function() {
|
||
return !!locked;
|
||
},
|
||
// Call all callbacks with the given context and arguments
|
||
fireWith: function(context, args) {
|
||
if (!locked) {
|
||
args = args || [];
|
||
args = [context, args.slice ? args.slice() : args];
|
||
queue.push(args);
|
||
if (!firing) {
|
||
fire();
|
||
}
|
||
}
|
||
return this;
|
||
},
|
||
// Call all the callbacks with the given arguments
|
||
fire: function() {
|
||
self2.fireWith(this, arguments);
|
||
return this;
|
||
},
|
||
// To know if the callbacks have already been called at least once
|
||
fired: function() {
|
||
return !!fired;
|
||
}
|
||
};
|
||
return self2;
|
||
};
|
||
function Identity(v) {
|
||
return v;
|
||
}
|
||
function Thrower(ex) {
|
||
throw ex;
|
||
}
|
||
function adoptValue(value, resolve, reject, noValue) {
|
||
var method;
|
||
try {
|
||
if (value && isFunction(method = value.promise)) {
|
||
method.call(value).done(resolve).fail(reject);
|
||
} else if (value && isFunction(method = value.then)) {
|
||
method.call(value, resolve, reject);
|
||
} else {
|
||
resolve.apply(void 0, [value].slice(noValue));
|
||
}
|
||
} catch (value2) {
|
||
reject.apply(void 0, [value2]);
|
||
}
|
||
}
|
||
jQuery.extend({
|
||
Deferred: function(func) {
|
||
var tuples = [
|
||
// action, add listener, callbacks,
|
||
// ... .then handlers, argument index, [final state]
|
||
[
|
||
"notify",
|
||
"progress",
|
||
jQuery.Callbacks("memory"),
|
||
jQuery.Callbacks("memory"),
|
||
2
|
||
],
|
||
[
|
||
"resolve",
|
||
"done",
|
||
jQuery.Callbacks("once memory"),
|
||
jQuery.Callbacks("once memory"),
|
||
0,
|
||
"resolved"
|
||
],
|
||
[
|
||
"reject",
|
||
"fail",
|
||
jQuery.Callbacks("once memory"),
|
||
jQuery.Callbacks("once memory"),
|
||
1,
|
||
"rejected"
|
||
]
|
||
], state = "pending", promise = {
|
||
state: function() {
|
||
return state;
|
||
},
|
||
always: function() {
|
||
deferred.done(arguments).fail(arguments);
|
||
return this;
|
||
},
|
||
"catch": function(fn) {
|
||
return promise.then(null, fn);
|
||
},
|
||
// Keep pipe for back-compat
|
||
pipe: function() {
|
||
var fns = arguments;
|
||
return jQuery.Deferred(function(newDefer) {
|
||
jQuery.each(tuples, function(_i, tuple) {
|
||
var fn = isFunction(fns[tuple[4]]) && fns[tuple[4]];
|
||
deferred[tuple[1]](function() {
|
||
var returned = fn && fn.apply(this, arguments);
|
||
if (returned && isFunction(returned.promise)) {
|
||
returned.promise().progress(newDefer.notify).done(newDefer.resolve).fail(newDefer.reject);
|
||
} else {
|
||
newDefer[tuple[0] + "With"](
|
||
this,
|
||
fn ? [returned] : arguments
|
||
);
|
||
}
|
||
});
|
||
});
|
||
fns = null;
|
||
}).promise();
|
||
},
|
||
then: function(onFulfilled, onRejected, onProgress) {
|
||
var maxDepth = 0;
|
||
function resolve(depth, deferred2, handler, special) {
|
||
return function() {
|
||
var that = this, args = arguments, mightThrow = function() {
|
||
var returned, then;
|
||
if (depth < maxDepth) {
|
||
return;
|
||
}
|
||
returned = handler.apply(that, args);
|
||
if (returned === deferred2.promise()) {
|
||
throw new TypeError("Thenable self-resolution");
|
||
}
|
||
then = returned && // Support: Promises/A+ section 2.3.4
|
||
// https://promisesaplus.com/#point-64
|
||
// Only check objects and functions for thenability
|
||
(typeof returned === "object" || typeof returned === "function") && returned.then;
|
||
if (isFunction(then)) {
|
||
if (special) {
|
||
then.call(
|
||
returned,
|
||
resolve(maxDepth, deferred2, Identity, special),
|
||
resolve(maxDepth, deferred2, Thrower, special)
|
||
);
|
||
} else {
|
||
maxDepth++;
|
||
then.call(
|
||
returned,
|
||
resolve(maxDepth, deferred2, Identity, special),
|
||
resolve(maxDepth, deferred2, Thrower, special),
|
||
resolve(
|
||
maxDepth,
|
||
deferred2,
|
||
Identity,
|
||
deferred2.notifyWith
|
||
)
|
||
);
|
||
}
|
||
} else {
|
||
if (handler !== Identity) {
|
||
that = void 0;
|
||
args = [returned];
|
||
}
|
||
(special || deferred2.resolveWith)(that, args);
|
||
}
|
||
}, process2 = special ? mightThrow : function() {
|
||
try {
|
||
mightThrow();
|
||
} catch (e) {
|
||
if (jQuery.Deferred.exceptionHook) {
|
||
jQuery.Deferred.exceptionHook(
|
||
e,
|
||
process2.error
|
||
);
|
||
}
|
||
if (depth + 1 >= maxDepth) {
|
||
if (handler !== Thrower) {
|
||
that = void 0;
|
||
args = [e];
|
||
}
|
||
deferred2.rejectWith(that, args);
|
||
}
|
||
}
|
||
};
|
||
if (depth) {
|
||
process2();
|
||
} else {
|
||
if (jQuery.Deferred.getErrorHook) {
|
||
process2.error = jQuery.Deferred.getErrorHook();
|
||
} else if (jQuery.Deferred.getStackHook) {
|
||
process2.error = jQuery.Deferred.getStackHook();
|
||
}
|
||
window2.setTimeout(process2);
|
||
}
|
||
};
|
||
}
|
||
return jQuery.Deferred(function(newDefer) {
|
||
tuples[0][3].add(
|
||
resolve(
|
||
0,
|
||
newDefer,
|
||
isFunction(onProgress) ? onProgress : Identity,
|
||
newDefer.notifyWith
|
||
)
|
||
);
|
||
tuples[1][3].add(
|
||
resolve(
|
||
0,
|
||
newDefer,
|
||
isFunction(onFulfilled) ? onFulfilled : Identity
|
||
)
|
||
);
|
||
tuples[2][3].add(
|
||
resolve(
|
||
0,
|
||
newDefer,
|
||
isFunction(onRejected) ? onRejected : Thrower
|
||
)
|
||
);
|
||
}).promise();
|
||
},
|
||
// Get a promise for this deferred
|
||
// If obj is provided, the promise aspect is added to the object
|
||
promise: function(obj) {
|
||
return obj != null ? jQuery.extend(obj, promise) : promise;
|
||
}
|
||
}, deferred = {};
|
||
jQuery.each(tuples, function(i, tuple) {
|
||
var list = tuple[2], stateString = tuple[5];
|
||
promise[tuple[1]] = list.add;
|
||
if (stateString) {
|
||
list.add(
|
||
function() {
|
||
state = stateString;
|
||
},
|
||
// rejected_callbacks.disable
|
||
// fulfilled_callbacks.disable
|
||
tuples[3 - i][2].disable,
|
||
// rejected_handlers.disable
|
||
// fulfilled_handlers.disable
|
||
tuples[3 - i][3].disable,
|
||
// progress_callbacks.lock
|
||
tuples[0][2].lock,
|
||
// progress_handlers.lock
|
||
tuples[0][3].lock
|
||
);
|
||
}
|
||
list.add(tuple[3].fire);
|
||
deferred[tuple[0]] = function() {
|
||
deferred[tuple[0] + "With"](this === deferred ? void 0 : this, arguments);
|
||
return this;
|
||
};
|
||
deferred[tuple[0] + "With"] = list.fireWith;
|
||
});
|
||
promise.promise(deferred);
|
||
if (func) {
|
||
func.call(deferred, deferred);
|
||
}
|
||
return deferred;
|
||
},
|
||
// Deferred helper
|
||
when: function(singleValue) {
|
||
var remaining = arguments.length, i = remaining, resolveContexts = Array(i), resolveValues = slice.call(arguments), primary = jQuery.Deferred(), updateFunc = function(i2) {
|
||
return function(value) {
|
||
resolveContexts[i2] = this;
|
||
resolveValues[i2] = arguments.length > 1 ? slice.call(arguments) : value;
|
||
if (!--remaining) {
|
||
primary.resolveWith(resolveContexts, resolveValues);
|
||
}
|
||
};
|
||
};
|
||
if (remaining <= 1) {
|
||
adoptValue(
|
||
singleValue,
|
||
primary.done(updateFunc(i)).resolve,
|
||
primary.reject,
|
||
!remaining
|
||
);
|
||
if (primary.state() === "pending" || isFunction(resolveValues[i] && resolveValues[i].then)) {
|
||
return primary.then();
|
||
}
|
||
}
|
||
while (i--) {
|
||
adoptValue(resolveValues[i], updateFunc(i), primary.reject);
|
||
}
|
||
return primary.promise();
|
||
}
|
||
});
|
||
var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
|
||
jQuery.Deferred.exceptionHook = function(error, asyncError) {
|
||
if (window2.console && window2.console.warn && error && rerrorNames.test(error.name)) {
|
||
window2.console.warn(
|
||
"jQuery.Deferred exception: " + error.message,
|
||
error.stack,
|
||
asyncError
|
||
);
|
||
}
|
||
};
|
||
jQuery.readyException = function(error) {
|
||
window2.setTimeout(function() {
|
||
throw error;
|
||
});
|
||
};
|
||
var readyList = jQuery.Deferred();
|
||
jQuery.fn.ready = function(fn) {
|
||
readyList.then(fn).catch(function(error) {
|
||
jQuery.readyException(error);
|
||
});
|
||
return this;
|
||
};
|
||
jQuery.extend({
|
||
// Is the DOM ready to be used? Set to true once it occurs.
|
||
isReady: false,
|
||
// A counter to track how many items to wait for before
|
||
// the ready event fires. See trac-6781
|
||
readyWait: 1,
|
||
// Handle when the DOM is ready
|
||
ready: function(wait) {
|
||
if (wait === true ? --jQuery.readyWait : jQuery.isReady) {
|
||
return;
|
||
}
|
||
jQuery.isReady = true;
|
||
if (wait !== true && --jQuery.readyWait > 0) {
|
||
return;
|
||
}
|
||
readyList.resolveWith(document2, [jQuery]);
|
||
}
|
||
});
|
||
jQuery.ready.then = readyList.then;
|
||
function completed() {
|
||
document2.removeEventListener("DOMContentLoaded", completed);
|
||
window2.removeEventListener("load", completed);
|
||
jQuery.ready();
|
||
}
|
||
if (document2.readyState === "complete" || document2.readyState !== "loading" && !document2.documentElement.doScroll) {
|
||
window2.setTimeout(jQuery.ready);
|
||
} else {
|
||
document2.addEventListener("DOMContentLoaded", completed);
|
||
window2.addEventListener("load", completed);
|
||
}
|
||
var access = function(elems, fn, key, value, chainable, emptyGet, raw) {
|
||
var i = 0, len = elems.length, bulk = key == null;
|
||
if (toType(key) === "object") {
|
||
chainable = true;
|
||
for (i in key) {
|
||
access(elems, fn, i, key[i], true, emptyGet, raw);
|
||
}
|
||
} else if (value !== void 0) {
|
||
chainable = true;
|
||
if (!isFunction(value)) {
|
||
raw = true;
|
||
}
|
||
if (bulk) {
|
||
if (raw) {
|
||
fn.call(elems, value);
|
||
fn = null;
|
||
} else {
|
||
bulk = fn;
|
||
fn = function(elem, _key, value2) {
|
||
return bulk.call(jQuery(elem), value2);
|
||
};
|
||
}
|
||
}
|
||
if (fn) {
|
||
for (; i < len; i++) {
|
||
fn(
|
||
elems[i],
|
||
key,
|
||
raw ? value : value.call(elems[i], i, fn(elems[i], key))
|
||
);
|
||
}
|
||
}
|
||
}
|
||
if (chainable) {
|
||
return elems;
|
||
}
|
||
if (bulk) {
|
||
return fn.call(elems);
|
||
}
|
||
return len ? fn(elems[0], key) : emptyGet;
|
||
};
|
||
var rmsPrefix = /^-ms-/, rdashAlpha = /-([a-z])/g;
|
||
function fcamelCase(_all, letter) {
|
||
return letter.toUpperCase();
|
||
}
|
||
function camelCase(string) {
|
||
return string.replace(rmsPrefix, "ms-").replace(rdashAlpha, fcamelCase);
|
||
}
|
||
var acceptData = function(owner) {
|
||
return owner.nodeType === 1 || owner.nodeType === 9 || !+owner.nodeType;
|
||
};
|
||
function Data() {
|
||
this.expando = jQuery.expando + Data.uid++;
|
||
}
|
||
Data.uid = 1;
|
||
Data.prototype = {
|
||
cache: function(owner) {
|
||
var value = owner[this.expando];
|
||
if (!value) {
|
||
value = {};
|
||
if (acceptData(owner)) {
|
||
if (owner.nodeType) {
|
||
owner[this.expando] = value;
|
||
} else {
|
||
Object.defineProperty(owner, this.expando, {
|
||
value,
|
||
configurable: true
|
||
});
|
||
}
|
||
}
|
||
}
|
||
return value;
|
||
},
|
||
set: function(owner, data, value) {
|
||
var prop, cache = this.cache(owner);
|
||
if (typeof data === "string") {
|
||
cache[camelCase(data)] = value;
|
||
} else {
|
||
for (prop in data) {
|
||
cache[camelCase(prop)] = data[prop];
|
||
}
|
||
}
|
||
return cache;
|
||
},
|
||
get: function(owner, key) {
|
||
return key === void 0 ? this.cache(owner) : (
|
||
// Always use camelCase key (gh-2257)
|
||
owner[this.expando] && owner[this.expando][camelCase(key)]
|
||
);
|
||
},
|
||
access: function(owner, key, value) {
|
||
if (key === void 0 || key && typeof key === "string" && value === void 0) {
|
||
return this.get(owner, key);
|
||
}
|
||
this.set(owner, key, value);
|
||
return value !== void 0 ? value : key;
|
||
},
|
||
remove: function(owner, key) {
|
||
var i, cache = owner[this.expando];
|
||
if (cache === void 0) {
|
||
return;
|
||
}
|
||
if (key !== void 0) {
|
||
if (Array.isArray(key)) {
|
||
key = key.map(camelCase);
|
||
} else {
|
||
key = camelCase(key);
|
||
key = key in cache ? [key] : key.match(rnothtmlwhite) || [];
|
||
}
|
||
i = key.length;
|
||
while (i--) {
|
||
delete cache[key[i]];
|
||
}
|
||
}
|
||
if (key === void 0 || jQuery.isEmptyObject(cache)) {
|
||
if (owner.nodeType) {
|
||
owner[this.expando] = void 0;
|
||
} else {
|
||
delete owner[this.expando];
|
||
}
|
||
}
|
||
},
|
||
hasData: function(owner) {
|
||
var cache = owner[this.expando];
|
||
return cache !== void 0 && !jQuery.isEmptyObject(cache);
|
||
}
|
||
};
|
||
var dataPriv = new Data();
|
||
var dataUser = new Data();
|
||
var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, rmultiDash = /[A-Z]/g;
|
||
function getData(data) {
|
||
if (data === "true") {
|
||
return true;
|
||
}
|
||
if (data === "false") {
|
||
return false;
|
||
}
|
||
if (data === "null") {
|
||
return null;
|
||
}
|
||
if (data === +data + "") {
|
||
return +data;
|
||
}
|
||
if (rbrace.test(data)) {
|
||
return JSON.parse(data);
|
||
}
|
||
return data;
|
||
}
|
||
function dataAttr(elem, key, data) {
|
||
var name;
|
||
if (data === void 0 && elem.nodeType === 1) {
|
||
name = "data-" + key.replace(rmultiDash, "-$&").toLowerCase();
|
||
data = elem.getAttribute(name);
|
||
if (typeof data === "string") {
|
||
try {
|
||
data = getData(data);
|
||
} catch (e) {
|
||
}
|
||
dataUser.set(elem, key, data);
|
||
} else {
|
||
data = void 0;
|
||
}
|
||
}
|
||
return data;
|
||
}
|
||
jQuery.extend({
|
||
hasData: function(elem) {
|
||
return dataUser.hasData(elem) || dataPriv.hasData(elem);
|
||
},
|
||
data: function(elem, name, data) {
|
||
return dataUser.access(elem, name, data);
|
||
},
|
||
removeData: function(elem, name) {
|
||
dataUser.remove(elem, name);
|
||
},
|
||
// TODO: Now that all calls to _data and _removeData have been replaced
|
||
// with direct calls to dataPriv methods, these can be deprecated.
|
||
_data: function(elem, name, data) {
|
||
return dataPriv.access(elem, name, data);
|
||
},
|
||
_removeData: function(elem, name) {
|
||
dataPriv.remove(elem, name);
|
||
}
|
||
});
|
||
jQuery.fn.extend({
|
||
data: function(key, value) {
|
||
var i, name, data, elem = this[0], attrs = elem && elem.attributes;
|
||
if (key === void 0) {
|
||
if (this.length) {
|
||
data = dataUser.get(elem);
|
||
if (elem.nodeType === 1 && !dataPriv.get(elem, "hasDataAttrs")) {
|
||
i = attrs.length;
|
||
while (i--) {
|
||
if (attrs[i]) {
|
||
name = attrs[i].name;
|
||
if (name.indexOf("data-") === 0) {
|
||
name = camelCase(name.slice(5));
|
||
dataAttr(elem, name, data[name]);
|
||
}
|
||
}
|
||
}
|
||
dataPriv.set(elem, "hasDataAttrs", true);
|
||
}
|
||
}
|
||
return data;
|
||
}
|
||
if (typeof key === "object") {
|
||
return this.each(function() {
|
||
dataUser.set(this, key);
|
||
});
|
||
}
|
||
return access(this, function(value2) {
|
||
var data2;
|
||
if (elem && value2 === void 0) {
|
||
data2 = dataUser.get(elem, key);
|
||
if (data2 !== void 0) {
|
||
return data2;
|
||
}
|
||
data2 = dataAttr(elem, key);
|
||
if (data2 !== void 0) {
|
||
return data2;
|
||
}
|
||
return;
|
||
}
|
||
this.each(function() {
|
||
dataUser.set(this, key, value2);
|
||
});
|
||
}, null, value, arguments.length > 1, null, true);
|
||
},
|
||
removeData: function(key) {
|
||
return this.each(function() {
|
||
dataUser.remove(this, key);
|
||
});
|
||
}
|
||
});
|
||
jQuery.extend({
|
||
queue: function(elem, type, data) {
|
||
var queue;
|
||
if (elem) {
|
||
type = (type || "fx") + "queue";
|
||
queue = dataPriv.get(elem, type);
|
||
if (data) {
|
||
if (!queue || Array.isArray(data)) {
|
||
queue = dataPriv.access(elem, type, jQuery.makeArray(data));
|
||
} else {
|
||
queue.push(data);
|
||
}
|
||
}
|
||
return queue || [];
|
||
}
|
||
},
|
||
dequeue: function(elem, type) {
|
||
type = type || "fx";
|
||
var queue = jQuery.queue(elem, type), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks(elem, type), next = function() {
|
||
jQuery.dequeue(elem, type);
|
||
};
|
||
if (fn === "inprogress") {
|
||
fn = queue.shift();
|
||
startLength--;
|
||
}
|
||
if (fn) {
|
||
if (type === "fx") {
|
||
queue.unshift("inprogress");
|
||
}
|
||
delete hooks.stop;
|
||
fn.call(elem, next, hooks);
|
||
}
|
||
if (!startLength && hooks) {
|
||
hooks.empty.fire();
|
||
}
|
||
},
|
||
// Not public - generate a queueHooks object, or return the current one
|
||
_queueHooks: function(elem, type) {
|
||
var key = type + "queueHooks";
|
||
return dataPriv.get(elem, key) || dataPriv.access(elem, key, {
|
||
empty: jQuery.Callbacks("once memory").add(function() {
|
||
dataPriv.remove(elem, [type + "queue", key]);
|
||
})
|
||
});
|
||
}
|
||
});
|
||
jQuery.fn.extend({
|
||
queue: function(type, data) {
|
||
var setter = 2;
|
||
if (typeof type !== "string") {
|
||
data = type;
|
||
type = "fx";
|
||
setter--;
|
||
}
|
||
if (arguments.length < setter) {
|
||
return jQuery.queue(this[0], type);
|
||
}
|
||
return data === void 0 ? this : this.each(function() {
|
||
var queue = jQuery.queue(this, type, data);
|
||
jQuery._queueHooks(this, type);
|
||
if (type === "fx" && queue[0] !== "inprogress") {
|
||
jQuery.dequeue(this, type);
|
||
}
|
||
});
|
||
},
|
||
dequeue: function(type) {
|
||
return this.each(function() {
|
||
jQuery.dequeue(this, type);
|
||
});
|
||
},
|
||
clearQueue: function(type) {
|
||
return this.queue(type || "fx", []);
|
||
},
|
||
// Get a promise resolved when queues of a certain type
|
||
// are emptied (fx is the type by default)
|
||
promise: function(type, obj) {
|
||
var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() {
|
||
if (!--count) {
|
||
defer.resolveWith(elements, [elements]);
|
||
}
|
||
};
|
||
if (typeof type !== "string") {
|
||
obj = type;
|
||
type = void 0;
|
||
}
|
||
type = type || "fx";
|
||
while (i--) {
|
||
tmp = dataPriv.get(elements[i], type + "queueHooks");
|
||
if (tmp && tmp.empty) {
|
||
count++;
|
||
tmp.empty.add(resolve);
|
||
}
|
||
}
|
||
resolve();
|
||
return defer.promise(obj);
|
||
}
|
||
});
|
||
var pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source;
|
||
var rcssNum = new RegExp("^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i");
|
||
var cssExpand = ["Top", "Right", "Bottom", "Left"];
|
||
var documentElement = document2.documentElement;
|
||
var isAttached = function(elem) {
|
||
return jQuery.contains(elem.ownerDocument, elem);
|
||
}, composed = { composed: true };
|
||
if (documentElement.getRootNode) {
|
||
isAttached = function(elem) {
|
||
return jQuery.contains(elem.ownerDocument, elem) || elem.getRootNode(composed) === elem.ownerDocument;
|
||
};
|
||
}
|
||
var isHiddenWithinTree = function(elem, el) {
|
||
elem = el || elem;
|
||
return elem.style.display === "none" || elem.style.display === "" && // Otherwise, check computed style
|
||
// Support: Firefox <=43 - 45
|
||
// Disconnected elements can have computed display: none, so first confirm that elem is
|
||
// in the document.
|
||
isAttached(elem) && jQuery.css(elem, "display") === "none";
|
||
};
|
||
function adjustCSS(elem, prop, valueParts, tween) {
|
||
var adjusted, scale, maxIterations = 20, currentValue = tween ? function() {
|
||
return tween.cur();
|
||
} : function() {
|
||
return jQuery.css(elem, prop, "");
|
||
}, initial = currentValue(), unit = valueParts && valueParts[3] || (jQuery.cssNumber[prop] ? "" : "px"), initialInUnit = elem.nodeType && (jQuery.cssNumber[prop] || unit !== "px" && +initial) && rcssNum.exec(jQuery.css(elem, prop));
|
||
if (initialInUnit && initialInUnit[3] !== unit) {
|
||
initial = initial / 2;
|
||
unit = unit || initialInUnit[3];
|
||
initialInUnit = +initial || 1;
|
||
while (maxIterations--) {
|
||
jQuery.style(elem, prop, initialInUnit + unit);
|
||
if ((1 - scale) * (1 - (scale = currentValue() / initial || 0.5)) <= 0) {
|
||
maxIterations = 0;
|
||
}
|
||
initialInUnit = initialInUnit / scale;
|
||
}
|
||
initialInUnit = initialInUnit * 2;
|
||
jQuery.style(elem, prop, initialInUnit + unit);
|
||
valueParts = valueParts || [];
|
||
}
|
||
if (valueParts) {
|
||
initialInUnit = +initialInUnit || +initial || 0;
|
||
adjusted = valueParts[1] ? initialInUnit + (valueParts[1] + 1) * valueParts[2] : +valueParts[2];
|
||
if (tween) {
|
||
tween.unit = unit;
|
||
tween.start = initialInUnit;
|
||
tween.end = adjusted;
|
||
}
|
||
}
|
||
return adjusted;
|
||
}
|
||
var defaultDisplayMap = {};
|
||
function getDefaultDisplay(elem) {
|
||
var temp, doc = elem.ownerDocument, nodeName2 = elem.nodeName, display = defaultDisplayMap[nodeName2];
|
||
if (display) {
|
||
return display;
|
||
}
|
||
temp = doc.body.appendChild(doc.createElement(nodeName2));
|
||
display = jQuery.css(temp, "display");
|
||
temp.parentNode.removeChild(temp);
|
||
if (display === "none") {
|
||
display = "block";
|
||
}
|
||
defaultDisplayMap[nodeName2] = display;
|
||
return display;
|
||
}
|
||
function showHide(elements, show) {
|
||
var display, elem, values = [], index = 0, length = elements.length;
|
||
for (; index < length; index++) {
|
||
elem = elements[index];
|
||
if (!elem.style) {
|
||
continue;
|
||
}
|
||
display = elem.style.display;
|
||
if (show) {
|
||
if (display === "none") {
|
||
values[index] = dataPriv.get(elem, "display") || null;
|
||
if (!values[index]) {
|
||
elem.style.display = "";
|
||
}
|
||
}
|
||
if (elem.style.display === "" && isHiddenWithinTree(elem)) {
|
||
values[index] = getDefaultDisplay(elem);
|
||
}
|
||
} else {
|
||
if (display !== "none") {
|
||
values[index] = "none";
|
||
dataPriv.set(elem, "display", display);
|
||
}
|
||
}
|
||
}
|
||
for (index = 0; index < length; index++) {
|
||
if (values[index] != null) {
|
||
elements[index].style.display = values[index];
|
||
}
|
||
}
|
||
return elements;
|
||
}
|
||
jQuery.fn.extend({
|
||
show: function() {
|
||
return showHide(this, true);
|
||
},
|
||
hide: function() {
|
||
return showHide(this);
|
||
},
|
||
toggle: function(state) {
|
||
if (typeof state === "boolean") {
|
||
return state ? this.show() : this.hide();
|
||
}
|
||
return this.each(function() {
|
||
if (isHiddenWithinTree(this)) {
|
||
jQuery(this).show();
|
||
} else {
|
||
jQuery(this).hide();
|
||
}
|
||
});
|
||
}
|
||
});
|
||
var rcheckableType = /^(?:checkbox|radio)$/i;
|
||
var rtagName = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i;
|
||
var rscriptType = /^$|^module$|\/(?:java|ecma)script/i;
|
||
(function() {
|
||
var fragment = document2.createDocumentFragment(), div = fragment.appendChild(document2.createElement("div")), input = document2.createElement("input");
|
||
input.setAttribute("type", "radio");
|
||
input.setAttribute("checked", "checked");
|
||
input.setAttribute("name", "t");
|
||
div.appendChild(input);
|
||
support.checkClone = div.cloneNode(true).cloneNode(true).lastChild.checked;
|
||
div.innerHTML = "<textarea>x</textarea>";
|
||
support.noCloneChecked = !!div.cloneNode(true).lastChild.defaultValue;
|
||
div.innerHTML = "<option></option>";
|
||
support.option = !!div.lastChild;
|
||
})();
|
||
var wrapMap = {
|
||
// XHTML parsers do not magically insert elements in the
|
||
// same way that tag soup parsers do. So we cannot shorten
|
||
// this by omitting <tbody> or other required elements.
|
||
thead: [1, "<table>", "</table>"],
|
||
col: [2, "<table><colgroup>", "</colgroup></table>"],
|
||
tr: [2, "<table><tbody>", "</tbody></table>"],
|
||
td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
|
||
_default: [0, "", ""]
|
||
};
|
||
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
|
||
wrapMap.th = wrapMap.td;
|
||
if (!support.option) {
|
||
wrapMap.optgroup = wrapMap.option = [1, "<select multiple='multiple'>", "</select>"];
|
||
}
|
||
function getAll(context, tag) {
|
||
var ret;
|
||
if (typeof context.getElementsByTagName !== "undefined") {
|
||
ret = context.getElementsByTagName(tag || "*");
|
||
} else if (typeof context.querySelectorAll !== "undefined") {
|
||
ret = context.querySelectorAll(tag || "*");
|
||
} else {
|
||
ret = [];
|
||
}
|
||
if (tag === void 0 || tag && nodeName(context, tag)) {
|
||
return jQuery.merge([context], ret);
|
||
}
|
||
return ret;
|
||
}
|
||
function setGlobalEval(elems, refElements) {
|
||
var i = 0, l = elems.length;
|
||
for (; i < l; i++) {
|
||
dataPriv.set(
|
||
elems[i],
|
||
"globalEval",
|
||
!refElements || dataPriv.get(refElements[i], "globalEval")
|
||
);
|
||
}
|
||
}
|
||
var rhtml = /<|&#?\w+;/;
|
||
function buildFragment(elems, context, scripts, selection, ignored) {
|
||
var elem, tmp, tag, wrap, attached, j, fragment = context.createDocumentFragment(), nodes = [], i = 0, l = elems.length;
|
||
for (; i < l; i++) {
|
||
elem = elems[i];
|
||
if (elem || elem === 0) {
|
||
if (toType(elem) === "object") {
|
||
jQuery.merge(nodes, elem.nodeType ? [elem] : elem);
|
||
} else if (!rhtml.test(elem)) {
|
||
nodes.push(context.createTextNode(elem));
|
||
} else {
|
||
tmp = tmp || fragment.appendChild(context.createElement("div"));
|
||
tag = (rtagName.exec(elem) || ["", ""])[1].toLowerCase();
|
||
wrap = wrapMap[tag] || wrapMap._default;
|
||
tmp.innerHTML = wrap[1] + jQuery.htmlPrefilter(elem) + wrap[2];
|
||
j = wrap[0];
|
||
while (j--) {
|
||
tmp = tmp.lastChild;
|
||
}
|
||
jQuery.merge(nodes, tmp.childNodes);
|
||
tmp = fragment.firstChild;
|
||
tmp.textContent = "";
|
||
}
|
||
}
|
||
}
|
||
fragment.textContent = "";
|
||
i = 0;
|
||
while (elem = nodes[i++]) {
|
||
if (selection && jQuery.inArray(elem, selection) > -1) {
|
||
if (ignored) {
|
||
ignored.push(elem);
|
||
}
|
||
continue;
|
||
}
|
||
attached = isAttached(elem);
|
||
tmp = getAll(fragment.appendChild(elem), "script");
|
||
if (attached) {
|
||
setGlobalEval(tmp);
|
||
}
|
||
if (scripts) {
|
||
j = 0;
|
||
while (elem = tmp[j++]) {
|
||
if (rscriptType.test(elem.type || "")) {
|
||
scripts.push(elem);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return fragment;
|
||
}
|
||
var rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
|
||
function returnTrue() {
|
||
return true;
|
||
}
|
||
function returnFalse() {
|
||
return false;
|
||
}
|
||
function on(elem, types, selector, data, fn, one) {
|
||
var origFn, type;
|
||
if (typeof types === "object") {
|
||
if (typeof selector !== "string") {
|
||
data = data || selector;
|
||
selector = void 0;
|
||
}
|
||
for (type in types) {
|
||
on(elem, type, selector, data, types[type], one);
|
||
}
|
||
return elem;
|
||
}
|
||
if (data == null && fn == null) {
|
||
fn = selector;
|
||
data = selector = void 0;
|
||
} else if (fn == null) {
|
||
if (typeof selector === "string") {
|
||
fn = data;
|
||
data = void 0;
|
||
} else {
|
||
fn = data;
|
||
data = selector;
|
||
selector = void 0;
|
||
}
|
||
}
|
||
if (fn === false) {
|
||
fn = returnFalse;
|
||
} else if (!fn) {
|
||
return elem;
|
||
}
|
||
if (one === 1) {
|
||
origFn = fn;
|
||
fn = function(event) {
|
||
jQuery().off(event);
|
||
return origFn.apply(this, arguments);
|
||
};
|
||
fn.guid = origFn.guid || (origFn.guid = jQuery.guid++);
|
||
}
|
||
return elem.each(function() {
|
||
jQuery.event.add(this, types, fn, data, selector);
|
||
});
|
||
}
|
||
jQuery.event = {
|
||
global: {},
|
||
add: function(elem, types, handler, data, selector) {
|
||
var handleObjIn, eventHandle, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.get(elem);
|
||
if (!acceptData(elem)) {
|
||
return;
|
||
}
|
||
if (handler.handler) {
|
||
handleObjIn = handler;
|
||
handler = handleObjIn.handler;
|
||
selector = handleObjIn.selector;
|
||
}
|
||
if (selector) {
|
||
jQuery.find.matchesSelector(documentElement, selector);
|
||
}
|
||
if (!handler.guid) {
|
||
handler.guid = jQuery.guid++;
|
||
}
|
||
if (!(events = elemData.events)) {
|
||
events = elemData.events = /* @__PURE__ */ Object.create(null);
|
||
}
|
||
if (!(eventHandle = elemData.handle)) {
|
||
eventHandle = elemData.handle = function(e) {
|
||
return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply(elem, arguments) : void 0;
|
||
};
|
||
}
|
||
types = (types || "").match(rnothtmlwhite) || [""];
|
||
t = types.length;
|
||
while (t--) {
|
||
tmp = rtypenamespace.exec(types[t]) || [];
|
||
type = origType = tmp[1];
|
||
namespaces = (tmp[2] || "").split(".").sort();
|
||
if (!type) {
|
||
continue;
|
||
}
|
||
special = jQuery.event.special[type] || {};
|
||
type = (selector ? special.delegateType : special.bindType) || type;
|
||
special = jQuery.event.special[type] || {};
|
||
handleObj = jQuery.extend({
|
||
type,
|
||
origType,
|
||
data,
|
||
handler,
|
||
guid: handler.guid,
|
||
selector,
|
||
needsContext: selector && jQuery.expr.match.needsContext.test(selector),
|
||
namespace: namespaces.join(".")
|
||
}, handleObjIn);
|
||
if (!(handlers = events[type])) {
|
||
handlers = events[type] = [];
|
||
handlers.delegateCount = 0;
|
||
if (!special.setup || special.setup.call(elem, data, namespaces, eventHandle) === false) {
|
||
if (elem.addEventListener) {
|
||
elem.addEventListener(type, eventHandle);
|
||
}
|
||
}
|
||
}
|
||
if (special.add) {
|
||
special.add.call(elem, handleObj);
|
||
if (!handleObj.handler.guid) {
|
||
handleObj.handler.guid = handler.guid;
|
||
}
|
||
}
|
||
if (selector) {
|
||
handlers.splice(handlers.delegateCount++, 0, handleObj);
|
||
} else {
|
||
handlers.push(handleObj);
|
||
}
|
||
jQuery.event.global[type] = true;
|
||
}
|
||
},
|
||
// Detach an event or set of events from an element
|
||
remove: function(elem, types, handler, selector, mappedTypes) {
|
||
var j, origCount, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.hasData(elem) && dataPriv.get(elem);
|
||
if (!elemData || !(events = elemData.events)) {
|
||
return;
|
||
}
|
||
types = (types || "").match(rnothtmlwhite) || [""];
|
||
t = types.length;
|
||
while (t--) {
|
||
tmp = rtypenamespace.exec(types[t]) || [];
|
||
type = origType = tmp[1];
|
||
namespaces = (tmp[2] || "").split(".").sort();
|
||
if (!type) {
|
||
for (type in events) {
|
||
jQuery.event.remove(elem, type + types[t], handler, selector, true);
|
||
}
|
||
continue;
|
||
}
|
||
special = jQuery.event.special[type] || {};
|
||
type = (selector ? special.delegateType : special.bindType) || type;
|
||
handlers = events[type] || [];
|
||
tmp = tmp[2] && new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)");
|
||
origCount = j = handlers.length;
|
||
while (j--) {
|
||
handleObj = handlers[j];
|
||
if ((mappedTypes || origType === handleObj.origType) && (!handler || handler.guid === handleObj.guid) && (!tmp || tmp.test(handleObj.namespace)) && (!selector || selector === handleObj.selector || selector === "**" && handleObj.selector)) {
|
||
handlers.splice(j, 1);
|
||
if (handleObj.selector) {
|
||
handlers.delegateCount--;
|
||
}
|
||
if (special.remove) {
|
||
special.remove.call(elem, handleObj);
|
||
}
|
||
}
|
||
}
|
||
if (origCount && !handlers.length) {
|
||
if (!special.teardown || special.teardown.call(elem, namespaces, elemData.handle) === false) {
|
||
jQuery.removeEvent(elem, type, elemData.handle);
|
||
}
|
||
delete events[type];
|
||
}
|
||
}
|
||
if (jQuery.isEmptyObject(events)) {
|
||
dataPriv.remove(elem, "handle events");
|
||
}
|
||
},
|
||
dispatch: function(nativeEvent) {
|
||
var i, j, ret, matched, handleObj, handlerQueue, args = new Array(arguments.length), event = jQuery.event.fix(nativeEvent), handlers = (dataPriv.get(this, "events") || /* @__PURE__ */ Object.create(null))[event.type] || [], special = jQuery.event.special[event.type] || {};
|
||
args[0] = event;
|
||
for (i = 1; i < arguments.length; i++) {
|
||
args[i] = arguments[i];
|
||
}
|
||
event.delegateTarget = this;
|
||
if (special.preDispatch && special.preDispatch.call(this, event) === false) {
|
||
return;
|
||
}
|
||
handlerQueue = jQuery.event.handlers.call(this, event, handlers);
|
||
i = 0;
|
||
while ((matched = handlerQueue[i++]) && !event.isPropagationStopped()) {
|
||
event.currentTarget = matched.elem;
|
||
j = 0;
|
||
while ((handleObj = matched.handlers[j++]) && !event.isImmediatePropagationStopped()) {
|
||
if (!event.rnamespace || handleObj.namespace === false || event.rnamespace.test(handleObj.namespace)) {
|
||
event.handleObj = handleObj;
|
||
event.data = handleObj.data;
|
||
ret = ((jQuery.event.special[handleObj.origType] || {}).handle || handleObj.handler).apply(matched.elem, args);
|
||
if (ret !== void 0) {
|
||
if ((event.result = ret) === false) {
|
||
event.preventDefault();
|
||
event.stopPropagation();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (special.postDispatch) {
|
||
special.postDispatch.call(this, event);
|
||
}
|
||
return event.result;
|
||
},
|
||
handlers: function(event, handlers) {
|
||
var i, handleObj, sel, matchedHandlers, matchedSelectors, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target;
|
||
if (delegateCount && // Support: IE <=9
|
||
// Black-hole SVG <use> instance trees (trac-13180)
|
||
cur.nodeType && // Support: Firefox <=42
|
||
// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
|
||
// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
|
||
// Support: IE 11 only
|
||
// ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
|
||
!(event.type === "click" && event.button >= 1)) {
|
||
for (; cur !== this; cur = cur.parentNode || this) {
|
||
if (cur.nodeType === 1 && !(event.type === "click" && cur.disabled === true)) {
|
||
matchedHandlers = [];
|
||
matchedSelectors = {};
|
||
for (i = 0; i < delegateCount; i++) {
|
||
handleObj = handlers[i];
|
||
sel = handleObj.selector + " ";
|
||
if (matchedSelectors[sel] === void 0) {
|
||
matchedSelectors[sel] = handleObj.needsContext ? jQuery(sel, this).index(cur) > -1 : jQuery.find(sel, this, null, [cur]).length;
|
||
}
|
||
if (matchedSelectors[sel]) {
|
||
matchedHandlers.push(handleObj);
|
||
}
|
||
}
|
||
if (matchedHandlers.length) {
|
||
handlerQueue.push({ elem: cur, handlers: matchedHandlers });
|
||
}
|
||
}
|
||
}
|
||
}
|
||
cur = this;
|
||
if (delegateCount < handlers.length) {
|
||
handlerQueue.push({ elem: cur, handlers: handlers.slice(delegateCount) });
|
||
}
|
||
return handlerQueue;
|
||
},
|
||
addProp: function(name, hook) {
|
||
Object.defineProperty(jQuery.Event.prototype, name, {
|
||
enumerable: true,
|
||
configurable: true,
|
||
get: isFunction(hook) ? function() {
|
||
if (this.originalEvent) {
|
||
return hook(this.originalEvent);
|
||
}
|
||
} : function() {
|
||
if (this.originalEvent) {
|
||
return this.originalEvent[name];
|
||
}
|
||
},
|
||
set: function(value) {
|
||
Object.defineProperty(this, name, {
|
||
enumerable: true,
|
||
configurable: true,
|
||
writable: true,
|
||
value
|
||
});
|
||
}
|
||
});
|
||
},
|
||
fix: function(originalEvent) {
|
||
return originalEvent[jQuery.expando] ? originalEvent : new jQuery.Event(originalEvent);
|
||
},
|
||
special: {
|
||
load: {
|
||
// Prevent triggered image.load events from bubbling to window.load
|
||
noBubble: true
|
||
},
|
||
click: {
|
||
// Utilize native event to ensure correct state for checkable inputs
|
||
setup: function(data) {
|
||
var el = this || data;
|
||
if (rcheckableType.test(el.type) && el.click && nodeName(el, "input")) {
|
||
leverageNative(el, "click", true);
|
||
}
|
||
return false;
|
||
},
|
||
trigger: function(data) {
|
||
var el = this || data;
|
||
if (rcheckableType.test(el.type) && el.click && nodeName(el, "input")) {
|
||
leverageNative(el, "click");
|
||
}
|
||
return true;
|
||
},
|
||
// For cross-browser consistency, suppress native .click() on links
|
||
// Also prevent it if we're currently inside a leveraged native-event stack
|
||
_default: function(event) {
|
||
var target = event.target;
|
||
return rcheckableType.test(target.type) && target.click && nodeName(target, "input") && dataPriv.get(target, "click") || nodeName(target, "a");
|
||
}
|
||
},
|
||
beforeunload: {
|
||
postDispatch: function(event) {
|
||
if (event.result !== void 0 && event.originalEvent) {
|
||
event.originalEvent.returnValue = event.result;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
};
|
||
function leverageNative(el, type, isSetup) {
|
||
if (!isSetup) {
|
||
if (dataPriv.get(el, type) === void 0) {
|
||
jQuery.event.add(el, type, returnTrue);
|
||
}
|
||
return;
|
||
}
|
||
dataPriv.set(el, type, false);
|
||
jQuery.event.add(el, type, {
|
||
namespace: false,
|
||
handler: function(event) {
|
||
var result, saved = dataPriv.get(this, type);
|
||
if (event.isTrigger & 1 && this[type]) {
|
||
if (!saved) {
|
||
saved = slice.call(arguments);
|
||
dataPriv.set(this, type, saved);
|
||
this[type]();
|
||
result = dataPriv.get(this, type);
|
||
dataPriv.set(this, type, false);
|
||
if (saved !== result) {
|
||
event.stopImmediatePropagation();
|
||
event.preventDefault();
|
||
return result;
|
||
}
|
||
} else if ((jQuery.event.special[type] || {}).delegateType) {
|
||
event.stopPropagation();
|
||
}
|
||
} else if (saved) {
|
||
dataPriv.set(this, type, jQuery.event.trigger(
|
||
saved[0],
|
||
saved.slice(1),
|
||
this
|
||
));
|
||
event.stopPropagation();
|
||
event.isImmediatePropagationStopped = returnTrue;
|
||
}
|
||
}
|
||
});
|
||
}
|
||
jQuery.removeEvent = function(elem, type, handle) {
|
||
if (elem.removeEventListener) {
|
||
elem.removeEventListener(type, handle);
|
||
}
|
||
};
|
||
jQuery.Event = function(src, props) {
|
||
if (!(this instanceof jQuery.Event)) {
|
||
return new jQuery.Event(src, props);
|
||
}
|
||
if (src && src.type) {
|
||
this.originalEvent = src;
|
||
this.type = src.type;
|
||
this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === void 0 && // Support: Android <=2.3 only
|
||
src.returnValue === false ? returnTrue : returnFalse;
|
||
this.target = src.target && src.target.nodeType === 3 ? src.target.parentNode : src.target;
|
||
this.currentTarget = src.currentTarget;
|
||
this.relatedTarget = src.relatedTarget;
|
||
} else {
|
||
this.type = src;
|
||
}
|
||
if (props) {
|
||
jQuery.extend(this, props);
|
||
}
|
||
this.timeStamp = src && src.timeStamp || Date.now();
|
||
this[jQuery.expando] = true;
|
||
};
|
||
jQuery.Event.prototype = {
|
||
constructor: jQuery.Event,
|
||
isDefaultPrevented: returnFalse,
|
||
isPropagationStopped: returnFalse,
|
||
isImmediatePropagationStopped: returnFalse,
|
||
isSimulated: false,
|
||
preventDefault: function() {
|
||
var e = this.originalEvent;
|
||
this.isDefaultPrevented = returnTrue;
|
||
if (e && !this.isSimulated) {
|
||
e.preventDefault();
|
||
}
|
||
},
|
||
stopPropagation: function() {
|
||
var e = this.originalEvent;
|
||
this.isPropagationStopped = returnTrue;
|
||
if (e && !this.isSimulated) {
|
||
e.stopPropagation();
|
||
}
|
||
},
|
||
stopImmediatePropagation: function() {
|
||
var e = this.originalEvent;
|
||
this.isImmediatePropagationStopped = returnTrue;
|
||
if (e && !this.isSimulated) {
|
||
e.stopImmediatePropagation();
|
||
}
|
||
this.stopPropagation();
|
||
}
|
||
};
|
||
jQuery.each({
|
||
altKey: true,
|
||
bubbles: true,
|
||
cancelable: true,
|
||
changedTouches: true,
|
||
ctrlKey: true,
|
||
detail: true,
|
||
eventPhase: true,
|
||
metaKey: true,
|
||
pageX: true,
|
||
pageY: true,
|
||
shiftKey: true,
|
||
view: true,
|
||
"char": true,
|
||
code: true,
|
||
charCode: true,
|
||
key: true,
|
||
keyCode: true,
|
||
button: true,
|
||
buttons: true,
|
||
clientX: true,
|
||
clientY: true,
|
||
offsetX: true,
|
||
offsetY: true,
|
||
pointerId: true,
|
||
pointerType: true,
|
||
screenX: true,
|
||
screenY: true,
|
||
targetTouches: true,
|
||
toElement: true,
|
||
touches: true,
|
||
which: true
|
||
}, jQuery.event.addProp);
|
||
jQuery.each({ focus: "focusin", blur: "focusout" }, function(type, delegateType) {
|
||
function focusMappedHandler(nativeEvent) {
|
||
if (document2.documentMode) {
|
||
var handle = dataPriv.get(this, "handle"), event = jQuery.event.fix(nativeEvent);
|
||
event.type = nativeEvent.type === "focusin" ? "focus" : "blur";
|
||
event.isSimulated = true;
|
||
handle(nativeEvent);
|
||
if (event.target === event.currentTarget) {
|
||
handle(event);
|
||
}
|
||
} else {
|
||
jQuery.event.simulate(
|
||
delegateType,
|
||
nativeEvent.target,
|
||
jQuery.event.fix(nativeEvent)
|
||
);
|
||
}
|
||
}
|
||
jQuery.event.special[type] = {
|
||
// Utilize native event if possible so blur/focus sequence is correct
|
||
setup: function() {
|
||
var attaches;
|
||
leverageNative(this, type, true);
|
||
if (document2.documentMode) {
|
||
attaches = dataPriv.get(this, delegateType);
|
||
if (!attaches) {
|
||
this.addEventListener(delegateType, focusMappedHandler);
|
||
}
|
||
dataPriv.set(this, delegateType, (attaches || 0) + 1);
|
||
} else {
|
||
return false;
|
||
}
|
||
},
|
||
trigger: function() {
|
||
leverageNative(this, type);
|
||
return true;
|
||
},
|
||
teardown: function() {
|
||
var attaches;
|
||
if (document2.documentMode) {
|
||
attaches = dataPriv.get(this, delegateType) - 1;
|
||
if (!attaches) {
|
||
this.removeEventListener(delegateType, focusMappedHandler);
|
||
dataPriv.remove(this, delegateType);
|
||
} else {
|
||
dataPriv.set(this, delegateType, attaches);
|
||
}
|
||
} else {
|
||
return false;
|
||
}
|
||
},
|
||
// Suppress native focus or blur if we're currently inside
|
||
// a leveraged native-event stack
|
||
_default: function(event) {
|
||
return dataPriv.get(event.target, type);
|
||
},
|
||
delegateType
|
||
};
|
||
jQuery.event.special[delegateType] = {
|
||
setup: function() {
|
||
var doc = this.ownerDocument || this.document || this, dataHolder = document2.documentMode ? this : doc, attaches = dataPriv.get(dataHolder, delegateType);
|
||
if (!attaches) {
|
||
if (document2.documentMode) {
|
||
this.addEventListener(delegateType, focusMappedHandler);
|
||
} else {
|
||
doc.addEventListener(type, focusMappedHandler, true);
|
||
}
|
||
}
|
||
dataPriv.set(dataHolder, delegateType, (attaches || 0) + 1);
|
||
},
|
||
teardown: function() {
|
||
var doc = this.ownerDocument || this.document || this, dataHolder = document2.documentMode ? this : doc, attaches = dataPriv.get(dataHolder, delegateType) - 1;
|
||
if (!attaches) {
|
||
if (document2.documentMode) {
|
||
this.removeEventListener(delegateType, focusMappedHandler);
|
||
} else {
|
||
doc.removeEventListener(type, focusMappedHandler, true);
|
||
}
|
||
dataPriv.remove(dataHolder, delegateType);
|
||
} else {
|
||
dataPriv.set(dataHolder, delegateType, attaches);
|
||
}
|
||
}
|
||
};
|
||
});
|
||
jQuery.each({
|
||
mouseenter: "mouseover",
|
||
mouseleave: "mouseout",
|
||
pointerenter: "pointerover",
|
||
pointerleave: "pointerout"
|
||
}, function(orig, fix) {
|
||
jQuery.event.special[orig] = {
|
||
delegateType: fix,
|
||
bindType: fix,
|
||
handle: function(event) {
|
||
var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj;
|
||
if (!related || related !== target && !jQuery.contains(target, related)) {
|
||
event.type = handleObj.origType;
|
||
ret = handleObj.handler.apply(this, arguments);
|
||
event.type = fix;
|
||
}
|
||
return ret;
|
||
}
|
||
};
|
||
});
|
||
jQuery.fn.extend({
|
||
on: function(types, selector, data, fn) {
|
||
return on(this, types, selector, data, fn);
|
||
},
|
||
one: function(types, selector, data, fn) {
|
||
return on(this, types, selector, data, fn, 1);
|
||
},
|
||
off: function(types, selector, fn) {
|
||
var handleObj, type;
|
||
if (types && types.preventDefault && types.handleObj) {
|
||
handleObj = types.handleObj;
|
||
jQuery(types.delegateTarget).off(
|
||
handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
|
||
handleObj.selector,
|
||
handleObj.handler
|
||
);
|
||
return this;
|
||
}
|
||
if (typeof types === "object") {
|
||
for (type in types) {
|
||
this.off(type, selector, types[type]);
|
||
}
|
||
return this;
|
||
}
|
||
if (selector === false || typeof selector === "function") {
|
||
fn = selector;
|
||
selector = void 0;
|
||
}
|
||
if (fn === false) {
|
||
fn = returnFalse;
|
||
}
|
||
return this.each(function() {
|
||
jQuery.event.remove(this, types, fn, selector);
|
||
});
|
||
}
|
||
});
|
||
var rnoInnerhtml = /<script|<style|<link/i, rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, rcleanScript = /^\s*<!\[CDATA\[|\]\]>\s*$/g;
|
||
function manipulationTarget(elem, content) {
|
||
if (nodeName(elem, "table") && nodeName(content.nodeType !== 11 ? content : content.firstChild, "tr")) {
|
||
return jQuery(elem).children("tbody")[0] || elem;
|
||
}
|
||
return elem;
|
||
}
|
||
function disableScript(elem) {
|
||
elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;
|
||
return elem;
|
||
}
|
||
function restoreScript(elem) {
|
||
if ((elem.type || "").slice(0, 5) === "true/") {
|
||
elem.type = elem.type.slice(5);
|
||
} else {
|
||
elem.removeAttribute("type");
|
||
}
|
||
return elem;
|
||
}
|
||
function cloneCopyEvent(src, dest) {
|
||
var i, l, type, pdataOld, udataOld, udataCur, events;
|
||
if (dest.nodeType !== 1) {
|
||
return;
|
||
}
|
||
if (dataPriv.hasData(src)) {
|
||
pdataOld = dataPriv.get(src);
|
||
events = pdataOld.events;
|
||
if (events) {
|
||
dataPriv.remove(dest, "handle events");
|
||
for (type in events) {
|
||
for (i = 0, l = events[type].length; i < l; i++) {
|
||
jQuery.event.add(dest, type, events[type][i]);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (dataUser.hasData(src)) {
|
||
udataOld = dataUser.access(src);
|
||
udataCur = jQuery.extend({}, udataOld);
|
||
dataUser.set(dest, udataCur);
|
||
}
|
||
}
|
||
function fixInput(src, dest) {
|
||
var nodeName2 = dest.nodeName.toLowerCase();
|
||
if (nodeName2 === "input" && rcheckableType.test(src.type)) {
|
||
dest.checked = src.checked;
|
||
} else if (nodeName2 === "input" || nodeName2 === "textarea") {
|
||
dest.defaultValue = src.defaultValue;
|
||
}
|
||
}
|
||
function domManip(collection, args, callback, ignored) {
|
||
args = flat(args);
|
||
var fragment, first, scripts, hasScripts, node, doc, i = 0, l = collection.length, iNoClone = l - 1, value = args[0], valueIsFunction = isFunction(value);
|
||
if (valueIsFunction || l > 1 && typeof value === "string" && !support.checkClone && rchecked.test(value)) {
|
||
return collection.each(function(index) {
|
||
var self2 = collection.eq(index);
|
||
if (valueIsFunction) {
|
||
args[0] = value.call(this, index, self2.html());
|
||
}
|
||
domManip(self2, args, callback, ignored);
|
||
});
|
||
}
|
||
if (l) {
|
||
fragment = buildFragment(args, collection[0].ownerDocument, false, collection, ignored);
|
||
first = fragment.firstChild;
|
||
if (fragment.childNodes.length === 1) {
|
||
fragment = first;
|
||
}
|
||
if (first || ignored) {
|
||
scripts = jQuery.map(getAll(fragment, "script"), disableScript);
|
||
hasScripts = scripts.length;
|
||
for (; i < l; i++) {
|
||
node = fragment;
|
||
if (i !== iNoClone) {
|
||
node = jQuery.clone(node, true, true);
|
||
if (hasScripts) {
|
||
jQuery.merge(scripts, getAll(node, "script"));
|
||
}
|
||
}
|
||
callback.call(collection[i], node, i);
|
||
}
|
||
if (hasScripts) {
|
||
doc = scripts[scripts.length - 1].ownerDocument;
|
||
jQuery.map(scripts, restoreScript);
|
||
for (i = 0; i < hasScripts; i++) {
|
||
node = scripts[i];
|
||
if (rscriptType.test(node.type || "") && !dataPriv.access(node, "globalEval") && jQuery.contains(doc, node)) {
|
||
if (node.src && (node.type || "").toLowerCase() !== "module") {
|
||
if (jQuery._evalUrl && !node.noModule) {
|
||
jQuery._evalUrl(node.src, {
|
||
nonce: node.nonce || node.getAttribute("nonce")
|
||
}, doc);
|
||
}
|
||
} else {
|
||
DOMEval(node.textContent.replace(rcleanScript, ""), node, doc);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return collection;
|
||
}
|
||
function remove(elem, selector, keepData) {
|
||
var node, nodes = selector ? jQuery.filter(selector, elem) : elem, i = 0;
|
||
for (; (node = nodes[i]) != null; i++) {
|
||
if (!keepData && node.nodeType === 1) {
|
||
jQuery.cleanData(getAll(node));
|
||
}
|
||
if (node.parentNode) {
|
||
if (keepData && isAttached(node)) {
|
||
setGlobalEval(getAll(node, "script"));
|
||
}
|
||
node.parentNode.removeChild(node);
|
||
}
|
||
}
|
||
return elem;
|
||
}
|
||
jQuery.extend({
|
||
htmlPrefilter: function(html) {
|
||
return html;
|
||
},
|
||
clone: function(elem, dataAndEvents, deepDataAndEvents) {
|
||
var i, l, srcElements, destElements, clone = elem.cloneNode(true), inPage = isAttached(elem);
|
||
if (!support.noCloneChecked && (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem)) {
|
||
destElements = getAll(clone);
|
||
srcElements = getAll(elem);
|
||
for (i = 0, l = srcElements.length; i < l; i++) {
|
||
fixInput(srcElements[i], destElements[i]);
|
||
}
|
||
}
|
||
if (dataAndEvents) {
|
||
if (deepDataAndEvents) {
|
||
srcElements = srcElements || getAll(elem);
|
||
destElements = destElements || getAll(clone);
|
||
for (i = 0, l = srcElements.length; i < l; i++) {
|
||
cloneCopyEvent(srcElements[i], destElements[i]);
|
||
}
|
||
} else {
|
||
cloneCopyEvent(elem, clone);
|
||
}
|
||
}
|
||
destElements = getAll(clone, "script");
|
||
if (destElements.length > 0) {
|
||
setGlobalEval(destElements, !inPage && getAll(elem, "script"));
|
||
}
|
||
return clone;
|
||
},
|
||
cleanData: function(elems) {
|
||
var data, elem, type, special = jQuery.event.special, i = 0;
|
||
for (; (elem = elems[i]) !== void 0; i++) {
|
||
if (acceptData(elem)) {
|
||
if (data = elem[dataPriv.expando]) {
|
||
if (data.events) {
|
||
for (type in data.events) {
|
||
if (special[type]) {
|
||
jQuery.event.remove(elem, type);
|
||
} else {
|
||
jQuery.removeEvent(elem, type, data.handle);
|
||
}
|
||
}
|
||
}
|
||
elem[dataPriv.expando] = void 0;
|
||
}
|
||
if (elem[dataUser.expando]) {
|
||
elem[dataUser.expando] = void 0;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
jQuery.fn.extend({
|
||
detach: function(selector) {
|
||
return remove(this, selector, true);
|
||
},
|
||
remove: function(selector) {
|
||
return remove(this, selector);
|
||
},
|
||
text: function(value) {
|
||
return access(this, function(value2) {
|
||
return value2 === void 0 ? jQuery.text(this) : this.empty().each(function() {
|
||
if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {
|
||
this.textContent = value2;
|
||
}
|
||
});
|
||
}, null, value, arguments.length);
|
||
},
|
||
append: function() {
|
||
return domManip(this, arguments, function(elem) {
|
||
if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {
|
||
var target = manipulationTarget(this, elem);
|
||
target.appendChild(elem);
|
||
}
|
||
});
|
||
},
|
||
prepend: function() {
|
||
return domManip(this, arguments, function(elem) {
|
||
if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {
|
||
var target = manipulationTarget(this, elem);
|
||
target.insertBefore(elem, target.firstChild);
|
||
}
|
||
});
|
||
},
|
||
before: function() {
|
||
return domManip(this, arguments, function(elem) {
|
||
if (this.parentNode) {
|
||
this.parentNode.insertBefore(elem, this);
|
||
}
|
||
});
|
||
},
|
||
after: function() {
|
||
return domManip(this, arguments, function(elem) {
|
||
if (this.parentNode) {
|
||
this.parentNode.insertBefore(elem, this.nextSibling);
|
||
}
|
||
});
|
||
},
|
||
empty: function() {
|
||
var elem, i = 0;
|
||
for (; (elem = this[i]) != null; i++) {
|
||
if (elem.nodeType === 1) {
|
||
jQuery.cleanData(getAll(elem, false));
|
||
elem.textContent = "";
|
||
}
|
||
}
|
||
return this;
|
||
},
|
||
clone: function(dataAndEvents, deepDataAndEvents) {
|
||
dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
|
||
deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
|
||
return this.map(function() {
|
||
return jQuery.clone(this, dataAndEvents, deepDataAndEvents);
|
||
});
|
||
},
|
||
html: function(value) {
|
||
return access(this, function(value2) {
|
||
var elem = this[0] || {}, i = 0, l = this.length;
|
||
if (value2 === void 0 && elem.nodeType === 1) {
|
||
return elem.innerHTML;
|
||
}
|
||
if (typeof value2 === "string" && !rnoInnerhtml.test(value2) && !wrapMap[(rtagName.exec(value2) || ["", ""])[1].toLowerCase()]) {
|
||
value2 = jQuery.htmlPrefilter(value2);
|
||
try {
|
||
for (; i < l; i++) {
|
||
elem = this[i] || {};
|
||
if (elem.nodeType === 1) {
|
||
jQuery.cleanData(getAll(elem, false));
|
||
elem.innerHTML = value2;
|
||
}
|
||
}
|
||
elem = 0;
|
||
} catch (e) {
|
||
}
|
||
}
|
||
if (elem) {
|
||
this.empty().append(value2);
|
||
}
|
||
}, null, value, arguments.length);
|
||
},
|
||
replaceWith: function() {
|
||
var ignored = [];
|
||
return domManip(this, arguments, function(elem) {
|
||
var parent = this.parentNode;
|
||
if (jQuery.inArray(this, ignored) < 0) {
|
||
jQuery.cleanData(getAll(this));
|
||
if (parent) {
|
||
parent.replaceChild(elem, this);
|
||
}
|
||
}
|
||
}, ignored);
|
||
}
|
||
});
|
||
jQuery.each({
|
||
appendTo: "append",
|
||
prependTo: "prepend",
|
||
insertBefore: "before",
|
||
insertAfter: "after",
|
||
replaceAll: "replaceWith"
|
||
}, function(name, original) {
|
||
jQuery.fn[name] = function(selector) {
|
||
var elems, ret = [], insert = jQuery(selector), last = insert.length - 1, i = 0;
|
||
for (; i <= last; i++) {
|
||
elems = i === last ? this : this.clone(true);
|
||
jQuery(insert[i])[original](elems);
|
||
push.apply(ret, elems.get());
|
||
}
|
||
return this.pushStack(ret);
|
||
};
|
||
});
|
||
var rnumnonpx = new RegExp("^(" + pnum + ")(?!px)[a-z%]+$", "i");
|
||
var rcustomProp = /^--/;
|
||
var getStyles = function(elem) {
|
||
var view = elem.ownerDocument.defaultView;
|
||
if (!view || !view.opener) {
|
||
view = window2;
|
||
}
|
||
return view.getComputedStyle(elem);
|
||
};
|
||
var swap = function(elem, options, callback) {
|
||
var ret, name, old = {};
|
||
for (name in options) {
|
||
old[name] = elem.style[name];
|
||
elem.style[name] = options[name];
|
||
}
|
||
ret = callback.call(elem);
|
||
for (name in options) {
|
||
elem.style[name] = old[name];
|
||
}
|
||
return ret;
|
||
};
|
||
var rboxStyle = new RegExp(cssExpand.join("|"), "i");
|
||
(function() {
|
||
function computeStyleTests() {
|
||
if (!div) {
|
||
return;
|
||
}
|
||
container.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0";
|
||
div.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%";
|
||
documentElement.appendChild(container).appendChild(div);
|
||
var divStyle = window2.getComputedStyle(div);
|
||
pixelPositionVal = divStyle.top !== "1%";
|
||
reliableMarginLeftVal = roundPixelMeasures(divStyle.marginLeft) === 12;
|
||
div.style.right = "60%";
|
||
pixelBoxStylesVal = roundPixelMeasures(divStyle.right) === 36;
|
||
boxSizingReliableVal = roundPixelMeasures(divStyle.width) === 36;
|
||
div.style.position = "absolute";
|
||
scrollboxSizeVal = roundPixelMeasures(div.offsetWidth / 3) === 12;
|
||
documentElement.removeChild(container);
|
||
div = null;
|
||
}
|
||
function roundPixelMeasures(measure) {
|
||
return Math.round(parseFloat(measure));
|
||
}
|
||
var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, reliableTrDimensionsVal, reliableMarginLeftVal, container = document2.createElement("div"), div = document2.createElement("div");
|
||
if (!div.style) {
|
||
return;
|
||
}
|
||
div.style.backgroundClip = "content-box";
|
||
div.cloneNode(true).style.backgroundClip = "";
|
||
support.clearCloneStyle = div.style.backgroundClip === "content-box";
|
||
jQuery.extend(support, {
|
||
boxSizingReliable: function() {
|
||
computeStyleTests();
|
||
return boxSizingReliableVal;
|
||
},
|
||
pixelBoxStyles: function() {
|
||
computeStyleTests();
|
||
return pixelBoxStylesVal;
|
||
},
|
||
pixelPosition: function() {
|
||
computeStyleTests();
|
||
return pixelPositionVal;
|
||
},
|
||
reliableMarginLeft: function() {
|
||
computeStyleTests();
|
||
return reliableMarginLeftVal;
|
||
},
|
||
scrollboxSize: function() {
|
||
computeStyleTests();
|
||
return scrollboxSizeVal;
|
||
},
|
||
// Support: IE 9 - 11+, Edge 15 - 18+
|
||
// IE/Edge misreport `getComputedStyle` of table rows with width/height
|
||
// set in CSS while `offset*` properties report correct values.
|
||
// Behavior in IE 9 is more subtle than in newer versions & it passes
|
||
// some versions of this test; make sure not to make it pass there!
|
||
//
|
||
// Support: Firefox 70+
|
||
// Only Firefox includes border widths
|
||
// in computed dimensions. (gh-4529)
|
||
reliableTrDimensions: function() {
|
||
var table, tr, trChild, trStyle;
|
||
if (reliableTrDimensionsVal == null) {
|
||
table = document2.createElement("table");
|
||
tr = document2.createElement("tr");
|
||
trChild = document2.createElement("div");
|
||
table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate";
|
||
tr.style.cssText = "border:1px solid";
|
||
tr.style.height = "1px";
|
||
trChild.style.height = "9px";
|
||
trChild.style.display = "block";
|
||
documentElement.appendChild(table).appendChild(tr).appendChild(trChild);
|
||
trStyle = window2.getComputedStyle(tr);
|
||
reliableTrDimensionsVal = parseInt(trStyle.height, 10) + parseInt(trStyle.borderTopWidth, 10) + parseInt(trStyle.borderBottomWidth, 10) === tr.offsetHeight;
|
||
documentElement.removeChild(table);
|
||
}
|
||
return reliableTrDimensionsVal;
|
||
}
|
||
});
|
||
})();
|
||
function curCSS(elem, name, computed) {
|
||
var width, minWidth, maxWidth, ret, isCustomProp = rcustomProp.test(name), style = elem.style;
|
||
computed = computed || getStyles(elem);
|
||
if (computed) {
|
||
ret = computed.getPropertyValue(name) || computed[name];
|
||
if (isCustomProp && ret) {
|
||
ret = ret.replace(rtrimCSS, "$1") || void 0;
|
||
}
|
||
if (ret === "" && !isAttached(elem)) {
|
||
ret = jQuery.style(elem, name);
|
||
}
|
||
if (!support.pixelBoxStyles() && rnumnonpx.test(ret) && rboxStyle.test(name)) {
|
||
width = style.width;
|
||
minWidth = style.minWidth;
|
||
maxWidth = style.maxWidth;
|
||
style.minWidth = style.maxWidth = style.width = ret;
|
||
ret = computed.width;
|
||
style.width = width;
|
||
style.minWidth = minWidth;
|
||
style.maxWidth = maxWidth;
|
||
}
|
||
}
|
||
return ret !== void 0 ? (
|
||
// Support: IE <=9 - 11 only
|
||
// IE returns zIndex value as an integer.
|
||
ret + ""
|
||
) : ret;
|
||
}
|
||
function addGetHookIf(conditionFn, hookFn) {
|
||
return {
|
||
get: function() {
|
||
if (conditionFn()) {
|
||
delete this.get;
|
||
return;
|
||
}
|
||
return (this.get = hookFn).apply(this, arguments);
|
||
}
|
||
};
|
||
}
|
||
var cssPrefixes = ["Webkit", "Moz", "ms"], emptyStyle = document2.createElement("div").style, vendorProps = {};
|
||
function vendorPropName(name) {
|
||
var capName = name[0].toUpperCase() + name.slice(1), i = cssPrefixes.length;
|
||
while (i--) {
|
||
name = cssPrefixes[i] + capName;
|
||
if (name in emptyStyle) {
|
||
return name;
|
||
}
|
||
}
|
||
}
|
||
function finalPropName(name) {
|
||
var final = jQuery.cssProps[name] || vendorProps[name];
|
||
if (final) {
|
||
return final;
|
||
}
|
||
if (name in emptyStyle) {
|
||
return name;
|
||
}
|
||
return vendorProps[name] = vendorPropName(name) || name;
|
||
}
|
||
var rdisplayswap = /^(none|table(?!-c[ea]).+)/, cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssNormalTransform = {
|
||
letterSpacing: "0",
|
||
fontWeight: "400"
|
||
};
|
||
function setPositiveNumber(_elem, value, subtract) {
|
||
var matches = rcssNum.exec(value);
|
||
return matches ? (
|
||
// Guard against undefined "subtract", e.g., when used as in cssHooks
|
||
Math.max(0, matches[2] - (subtract || 0)) + (matches[3] || "px")
|
||
) : value;
|
||
}
|
||
function boxModelAdjustment(elem, dimension, box, isBorderBox, styles, computedVal) {
|
||
var i = dimension === "width" ? 1 : 0, extra = 0, delta = 0, marginDelta = 0;
|
||
if (box === (isBorderBox ? "border" : "content")) {
|
||
return 0;
|
||
}
|
||
for (; i < 4; i += 2) {
|
||
if (box === "margin") {
|
||
marginDelta += jQuery.css(elem, box + cssExpand[i], true, styles);
|
||
}
|
||
if (!isBorderBox) {
|
||
delta += jQuery.css(elem, "padding" + cssExpand[i], true, styles);
|
||
if (box !== "padding") {
|
||
delta += jQuery.css(elem, "border" + cssExpand[i] + "Width", true, styles);
|
||
} else {
|
||
extra += jQuery.css(elem, "border" + cssExpand[i] + "Width", true, styles);
|
||
}
|
||
} else {
|
||
if (box === "content") {
|
||
delta -= jQuery.css(elem, "padding" + cssExpand[i], true, styles);
|
||
}
|
||
if (box !== "margin") {
|
||
delta -= jQuery.css(elem, "border" + cssExpand[i] + "Width", true, styles);
|
||
}
|
||
}
|
||
}
|
||
if (!isBorderBox && computedVal >= 0) {
|
||
delta += Math.max(0, Math.ceil(
|
||
elem["offset" + dimension[0].toUpperCase() + dimension.slice(1)] - computedVal - delta - extra - 0.5
|
||
// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
|
||
// Use an explicit zero to avoid NaN (gh-3964)
|
||
)) || 0;
|
||
}
|
||
return delta + marginDelta;
|
||
}
|
||
function getWidthOrHeight(elem, dimension, extra) {
|
||
var styles = getStyles(elem), boxSizingNeeded = !support.boxSizingReliable() || extra, isBorderBox = boxSizingNeeded && jQuery.css(elem, "boxSizing", false, styles) === "border-box", valueIsBorderBox = isBorderBox, val = curCSS(elem, dimension, styles), offsetProp = "offset" + dimension[0].toUpperCase() + dimension.slice(1);
|
||
if (rnumnonpx.test(val)) {
|
||
if (!extra) {
|
||
return val;
|
||
}
|
||
val = "auto";
|
||
}
|
||
if ((!support.boxSizingReliable() && isBorderBox || // Support: IE 10 - 11+, Edge 15 - 18+
|
||
// IE/Edge misreport `getComputedStyle` of table rows with width/height
|
||
// set in CSS while `offset*` properties report correct values.
|
||
// Interestingly, in some cases IE 9 doesn't suffer from this issue.
|
||
!support.reliableTrDimensions() && nodeName(elem, "tr") || // Fall back to offsetWidth/offsetHeight when value is "auto"
|
||
// This happens for inline elements with no explicit setting (gh-3571)
|
||
val === "auto" || // Support: Android <=4.1 - 4.3 only
|
||
// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
|
||
!parseFloat(val) && jQuery.css(elem, "display", false, styles) === "inline") && // Make sure the element is visible & connected
|
||
elem.getClientRects().length) {
|
||
isBorderBox = jQuery.css(elem, "boxSizing", false, styles) === "border-box";
|
||
valueIsBorderBox = offsetProp in elem;
|
||
if (valueIsBorderBox) {
|
||
val = elem[offsetProp];
|
||
}
|
||
}
|
||
val = parseFloat(val) || 0;
|
||
return val + boxModelAdjustment(
|
||
elem,
|
||
dimension,
|
||
extra || (isBorderBox ? "border" : "content"),
|
||
valueIsBorderBox,
|
||
styles,
|
||
// Provide the current computed size to request scroll gutter calculation (gh-3589)
|
||
val
|
||
) + "px";
|
||
}
|
||
jQuery.extend({
|
||
// Add in style property hooks for overriding the default
|
||
// behavior of getting and setting a style property
|
||
cssHooks: {
|
||
opacity: {
|
||
get: function(elem, computed) {
|
||
if (computed) {
|
||
var ret = curCSS(elem, "opacity");
|
||
return ret === "" ? "1" : ret;
|
||
}
|
||
}
|
||
}
|
||
},
|
||
// Don't automatically add "px" to these possibly-unitless properties
|
||
cssNumber: {
|
||
animationIterationCount: true,
|
||
aspectRatio: true,
|
||
borderImageSlice: true,
|
||
columnCount: true,
|
||
flexGrow: true,
|
||
flexShrink: true,
|
||
fontWeight: true,
|
||
gridArea: true,
|
||
gridColumn: true,
|
||
gridColumnEnd: true,
|
||
gridColumnStart: true,
|
||
gridRow: true,
|
||
gridRowEnd: true,
|
||
gridRowStart: true,
|
||
lineHeight: true,
|
||
opacity: true,
|
||
order: true,
|
||
orphans: true,
|
||
scale: true,
|
||
widows: true,
|
||
zIndex: true,
|
||
zoom: true,
|
||
// SVG-related
|
||
fillOpacity: true,
|
||
floodOpacity: true,
|
||
stopOpacity: true,
|
||
strokeMiterlimit: true,
|
||
strokeOpacity: true
|
||
},
|
||
// Add in properties whose names you wish to fix before
|
||
// setting or getting the value
|
||
cssProps: {},
|
||
// Get and set the style property on a DOM Node
|
||
style: function(elem, name, value, extra) {
|
||
if (!elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style) {
|
||
return;
|
||
}
|
||
var ret, type, hooks, origName = camelCase(name), isCustomProp = rcustomProp.test(name), style = elem.style;
|
||
if (!isCustomProp) {
|
||
name = finalPropName(origName);
|
||
}
|
||
hooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName];
|
||
if (value !== void 0) {
|
||
type = typeof value;
|
||
if (type === "string" && (ret = rcssNum.exec(value)) && ret[1]) {
|
||
value = adjustCSS(elem, name, ret);
|
||
type = "number";
|
||
}
|
||
if (value == null || value !== value) {
|
||
return;
|
||
}
|
||
if (type === "number" && !isCustomProp) {
|
||
value += ret && ret[3] || (jQuery.cssNumber[origName] ? "" : "px");
|
||
}
|
||
if (!support.clearCloneStyle && value === "" && name.indexOf("background") === 0) {
|
||
style[name] = "inherit";
|
||
}
|
||
if (!hooks || !("set" in hooks) || (value = hooks.set(elem, value, extra)) !== void 0) {
|
||
if (isCustomProp) {
|
||
style.setProperty(name, value);
|
||
} else {
|
||
style[name] = value;
|
||
}
|
||
}
|
||
} else {
|
||
if (hooks && "get" in hooks && (ret = hooks.get(elem, false, extra)) !== void 0) {
|
||
return ret;
|
||
}
|
||
return style[name];
|
||
}
|
||
},
|
||
css: function(elem, name, extra, styles) {
|
||
var val, num, hooks, origName = camelCase(name), isCustomProp = rcustomProp.test(name);
|
||
if (!isCustomProp) {
|
||
name = finalPropName(origName);
|
||
}
|
||
hooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName];
|
||
if (hooks && "get" in hooks) {
|
||
val = hooks.get(elem, true, extra);
|
||
}
|
||
if (val === void 0) {
|
||
val = curCSS(elem, name, styles);
|
||
}
|
||
if (val === "normal" && name in cssNormalTransform) {
|
||
val = cssNormalTransform[name];
|
||
}
|
||
if (extra === "" || extra) {
|
||
num = parseFloat(val);
|
||
return extra === true || isFinite(num) ? num || 0 : val;
|
||
}
|
||
return val;
|
||
}
|
||
});
|
||
jQuery.each(["height", "width"], function(_i, dimension) {
|
||
jQuery.cssHooks[dimension] = {
|
||
get: function(elem, computed, extra) {
|
||
if (computed) {
|
||
return rdisplayswap.test(jQuery.css(elem, "display")) && // Support: Safari 8+
|
||
// Table columns in Safari have non-zero offsetWidth & zero
|
||
// getBoundingClientRect().width unless display is changed.
|
||
// Support: IE <=11 only
|
||
// Running getBoundingClientRect on a disconnected node
|
||
// in IE throws an error.
|
||
(!elem.getClientRects().length || !elem.getBoundingClientRect().width) ? swap(elem, cssShow, function() {
|
||
return getWidthOrHeight(elem, dimension, extra);
|
||
}) : getWidthOrHeight(elem, dimension, extra);
|
||
}
|
||
},
|
||
set: function(elem, value, extra) {
|
||
var matches, styles = getStyles(elem), scrollboxSizeBuggy = !support.scrollboxSize() && styles.position === "absolute", boxSizingNeeded = scrollboxSizeBuggy || extra, isBorderBox = boxSizingNeeded && jQuery.css(elem, "boxSizing", false, styles) === "border-box", subtract = extra ? boxModelAdjustment(
|
||
elem,
|
||
dimension,
|
||
extra,
|
||
isBorderBox,
|
||
styles
|
||
) : 0;
|
||
if (isBorderBox && scrollboxSizeBuggy) {
|
||
subtract -= Math.ceil(
|
||
elem["offset" + dimension[0].toUpperCase() + dimension.slice(1)] - parseFloat(styles[dimension]) - boxModelAdjustment(elem, dimension, "border", false, styles) - 0.5
|
||
);
|
||
}
|
||
if (subtract && (matches = rcssNum.exec(value)) && (matches[3] || "px") !== "px") {
|
||
elem.style[dimension] = value;
|
||
value = jQuery.css(elem, dimension);
|
||
}
|
||
return setPositiveNumber(elem, value, subtract);
|
||
}
|
||
};
|
||
});
|
||
jQuery.cssHooks.marginLeft = addGetHookIf(
|
||
support.reliableMarginLeft,
|
||
function(elem, computed) {
|
||
if (computed) {
|
||
return (parseFloat(curCSS(elem, "marginLeft")) || elem.getBoundingClientRect().left - swap(elem, { marginLeft: 0 }, function() {
|
||
return elem.getBoundingClientRect().left;
|
||
})) + "px";
|
||
}
|
||
}
|
||
);
|
||
jQuery.each({
|
||
margin: "",
|
||
padding: "",
|
||
border: "Width"
|
||
}, function(prefix2, suffix) {
|
||
jQuery.cssHooks[prefix2 + suffix] = {
|
||
expand: function(value) {
|
||
var i = 0, expanded = {}, parts = typeof value === "string" ? value.split(" ") : [value];
|
||
for (; i < 4; i++) {
|
||
expanded[prefix2 + cssExpand[i] + suffix] = parts[i] || parts[i - 2] || parts[0];
|
||
}
|
||
return expanded;
|
||
}
|
||
};
|
||
if (prefix2 !== "margin") {
|
||
jQuery.cssHooks[prefix2 + suffix].set = setPositiveNumber;
|
||
}
|
||
});
|
||
jQuery.fn.extend({
|
||
css: function(name, value) {
|
||
return access(this, function(elem, name2, value2) {
|
||
var styles, len, map = {}, i = 0;
|
||
if (Array.isArray(name2)) {
|
||
styles = getStyles(elem);
|
||
len = name2.length;
|
||
for (; i < len; i++) {
|
||
map[name2[i]] = jQuery.css(elem, name2[i], false, styles);
|
||
}
|
||
return map;
|
||
}
|
||
return value2 !== void 0 ? jQuery.style(elem, name2, value2) : jQuery.css(elem, name2);
|
||
}, name, value, arguments.length > 1);
|
||
}
|
||
});
|
||
function Tween(elem, options, prop, end, easing) {
|
||
return new Tween.prototype.init(elem, options, prop, end, easing);
|
||
}
|
||
jQuery.Tween = Tween;
|
||
Tween.prototype = {
|
||
constructor: Tween,
|
||
init: function(elem, options, prop, end, easing, unit) {
|
||
this.elem = elem;
|
||
this.prop = prop;
|
||
this.easing = easing || jQuery.easing._default;
|
||
this.options = options;
|
||
this.start = this.now = this.cur();
|
||
this.end = end;
|
||
this.unit = unit || (jQuery.cssNumber[prop] ? "" : "px");
|
||
},
|
||
cur: function() {
|
||
var hooks = Tween.propHooks[this.prop];
|
||
return hooks && hooks.get ? hooks.get(this) : Tween.propHooks._default.get(this);
|
||
},
|
||
run: function(percent) {
|
||
var eased, hooks = Tween.propHooks[this.prop];
|
||
if (this.options.duration) {
|
||
this.pos = eased = jQuery.easing[this.easing](
|
||
percent,
|
||
this.options.duration * percent,
|
||
0,
|
||
1,
|
||
this.options.duration
|
||
);
|
||
} else {
|
||
this.pos = eased = percent;
|
||
}
|
||
this.now = (this.end - this.start) * eased + this.start;
|
||
if (this.options.step) {
|
||
this.options.step.call(this.elem, this.now, this);
|
||
}
|
||
if (hooks && hooks.set) {
|
||
hooks.set(this);
|
||
} else {
|
||
Tween.propHooks._default.set(this);
|
||
}
|
||
return this;
|
||
}
|
||
};
|
||
Tween.prototype.init.prototype = Tween.prototype;
|
||
Tween.propHooks = {
|
||
_default: {
|
||
get: function(tween) {
|
||
var result;
|
||
if (tween.elem.nodeType !== 1 || tween.elem[tween.prop] != null && tween.elem.style[tween.prop] == null) {
|
||
return tween.elem[tween.prop];
|
||
}
|
||
result = jQuery.css(tween.elem, tween.prop, "");
|
||
return !result || result === "auto" ? 0 : result;
|
||
},
|
||
set: function(tween) {
|
||
if (jQuery.fx.step[tween.prop]) {
|
||
jQuery.fx.step[tween.prop](tween);
|
||
} else if (tween.elem.nodeType === 1 && (jQuery.cssHooks[tween.prop] || tween.elem.style[finalPropName(tween.prop)] != null)) {
|
||
jQuery.style(tween.elem, tween.prop, tween.now + tween.unit);
|
||
} else {
|
||
tween.elem[tween.prop] = tween.now;
|
||
}
|
||
}
|
||
}
|
||
};
|
||
Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
|
||
set: function(tween) {
|
||
if (tween.elem.nodeType && tween.elem.parentNode) {
|
||
tween.elem[tween.prop] = tween.now;
|
||
}
|
||
}
|
||
};
|
||
jQuery.easing = {
|
||
linear: function(p) {
|
||
return p;
|
||
},
|
||
swing: function(p) {
|
||
return 0.5 - Math.cos(p * Math.PI) / 2;
|
||
},
|
||
_default: "swing"
|
||
};
|
||
jQuery.fx = Tween.prototype.init;
|
||
jQuery.fx.step = {};
|
||
var fxNow, inProgress, rfxtypes = /^(?:toggle|show|hide)$/, rrun = /queueHooks$/;
|
||
function schedule() {
|
||
if (inProgress) {
|
||
if (document2.hidden === false && window2.requestAnimationFrame) {
|
||
window2.requestAnimationFrame(schedule);
|
||
} else {
|
||
window2.setTimeout(schedule, jQuery.fx.interval);
|
||
}
|
||
jQuery.fx.tick();
|
||
}
|
||
}
|
||
function createFxNow() {
|
||
window2.setTimeout(function() {
|
||
fxNow = void 0;
|
||
});
|
||
return fxNow = Date.now();
|
||
}
|
||
function genFx(type, includeWidth) {
|
||
var which, i = 0, attrs = { height: type };
|
||
includeWidth = includeWidth ? 1 : 0;
|
||
for (; i < 4; i += 2 - includeWidth) {
|
||
which = cssExpand[i];
|
||
attrs["margin" + which] = attrs["padding" + which] = type;
|
||
}
|
||
if (includeWidth) {
|
||
attrs.opacity = attrs.width = type;
|
||
}
|
||
return attrs;
|
||
}
|
||
function createTween(value, prop, animation) {
|
||
var tween, collection = (Animation.tweeners[prop] || []).concat(Animation.tweeners["*"]), index = 0, length = collection.length;
|
||
for (; index < length; index++) {
|
||
if (tween = collection[index].call(animation, prop, value)) {
|
||
return tween;
|
||
}
|
||
}
|
||
}
|
||
function defaultPrefilter(elem, props, opts) {
|
||
var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, isBox = "width" in props || "height" in props, anim = this, orig = {}, style = elem.style, hidden = elem.nodeType && isHiddenWithinTree(elem), dataShow = dataPriv.get(elem, "fxshow");
|
||
if (!opts.queue) {
|
||
hooks = jQuery._queueHooks(elem, "fx");
|
||
if (hooks.unqueued == null) {
|
||
hooks.unqueued = 0;
|
||
oldfire = hooks.empty.fire;
|
||
hooks.empty.fire = function() {
|
||
if (!hooks.unqueued) {
|
||
oldfire();
|
||
}
|
||
};
|
||
}
|
||
hooks.unqueued++;
|
||
anim.always(function() {
|
||
anim.always(function() {
|
||
hooks.unqueued--;
|
||
if (!jQuery.queue(elem, "fx").length) {
|
||
hooks.empty.fire();
|
||
}
|
||
});
|
||
});
|
||
}
|
||
for (prop in props) {
|
||
value = props[prop];
|
||
if (rfxtypes.test(value)) {
|
||
delete props[prop];
|
||
toggle = toggle || value === "toggle";
|
||
if (value === (hidden ? "hide" : "show")) {
|
||
if (value === "show" && dataShow && dataShow[prop] !== void 0) {
|
||
hidden = true;
|
||
} else {
|
||
continue;
|
||
}
|
||
}
|
||
orig[prop] = dataShow && dataShow[prop] || jQuery.style(elem, prop);
|
||
}
|
||
}
|
||
propTween = !jQuery.isEmptyObject(props);
|
||
if (!propTween && jQuery.isEmptyObject(orig)) {
|
||
return;
|
||
}
|
||
if (isBox && elem.nodeType === 1) {
|
||
opts.overflow = [style.overflow, style.overflowX, style.overflowY];
|
||
restoreDisplay = dataShow && dataShow.display;
|
||
if (restoreDisplay == null) {
|
||
restoreDisplay = dataPriv.get(elem, "display");
|
||
}
|
||
display = jQuery.css(elem, "display");
|
||
if (display === "none") {
|
||
if (restoreDisplay) {
|
||
display = restoreDisplay;
|
||
} else {
|
||
showHide([elem], true);
|
||
restoreDisplay = elem.style.display || restoreDisplay;
|
||
display = jQuery.css(elem, "display");
|
||
showHide([elem]);
|
||
}
|
||
}
|
||
if (display === "inline" || display === "inline-block" && restoreDisplay != null) {
|
||
if (jQuery.css(elem, "float") === "none") {
|
||
if (!propTween) {
|
||
anim.done(function() {
|
||
style.display = restoreDisplay;
|
||
});
|
||
if (restoreDisplay == null) {
|
||
display = style.display;
|
||
restoreDisplay = display === "none" ? "" : display;
|
||
}
|
||
}
|
||
style.display = "inline-block";
|
||
}
|
||
}
|
||
}
|
||
if (opts.overflow) {
|
||
style.overflow = "hidden";
|
||
anim.always(function() {
|
||
style.overflow = opts.overflow[0];
|
||
style.overflowX = opts.overflow[1];
|
||
style.overflowY = opts.overflow[2];
|
||
});
|
||
}
|
||
propTween = false;
|
||
for (prop in orig) {
|
||
if (!propTween) {
|
||
if (dataShow) {
|
||
if ("hidden" in dataShow) {
|
||
hidden = dataShow.hidden;
|
||
}
|
||
} else {
|
||
dataShow = dataPriv.access(elem, "fxshow", { display: restoreDisplay });
|
||
}
|
||
if (toggle) {
|
||
dataShow.hidden = !hidden;
|
||
}
|
||
if (hidden) {
|
||
showHide([elem], true);
|
||
}
|
||
anim.done(function() {
|
||
if (!hidden) {
|
||
showHide([elem]);
|
||
}
|
||
dataPriv.remove(elem, "fxshow");
|
||
for (prop in orig) {
|
||
jQuery.style(elem, prop, orig[prop]);
|
||
}
|
||
});
|
||
}
|
||
propTween = createTween(hidden ? dataShow[prop] : 0, prop, anim);
|
||
if (!(prop in dataShow)) {
|
||
dataShow[prop] = propTween.start;
|
||
if (hidden) {
|
||
propTween.end = propTween.start;
|
||
propTween.start = 0;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function propFilter(props, specialEasing) {
|
||
var index, name, easing, value, hooks;
|
||
for (index in props) {
|
||
name = camelCase(index);
|
||
easing = specialEasing[name];
|
||
value = props[index];
|
||
if (Array.isArray(value)) {
|
||
easing = value[1];
|
||
value = props[index] = value[0];
|
||
}
|
||
if (index !== name) {
|
||
props[name] = value;
|
||
delete props[index];
|
||
}
|
||
hooks = jQuery.cssHooks[name];
|
||
if (hooks && "expand" in hooks) {
|
||
value = hooks.expand(value);
|
||
delete props[name];
|
||
for (index in value) {
|
||
if (!(index in props)) {
|
||
props[index] = value[index];
|
||
specialEasing[index] = easing;
|
||
}
|
||
}
|
||
} else {
|
||
specialEasing[name] = easing;
|
||
}
|
||
}
|
||
}
|
||
function Animation(elem, properties, options) {
|
||
var result, stopped, index = 0, length = Animation.prefilters.length, deferred = jQuery.Deferred().always(function() {
|
||
delete tick.elem;
|
||
}), tick = function() {
|
||
if (stopped) {
|
||
return false;
|
||
}
|
||
var currentTime = fxNow || createFxNow(), remaining = Math.max(0, animation.startTime + animation.duration - currentTime), temp = remaining / animation.duration || 0, percent = 1 - temp, index2 = 0, length2 = animation.tweens.length;
|
||
for (; index2 < length2; index2++) {
|
||
animation.tweens[index2].run(percent);
|
||
}
|
||
deferred.notifyWith(elem, [animation, percent, remaining]);
|
||
if (percent < 1 && length2) {
|
||
return remaining;
|
||
}
|
||
if (!length2) {
|
||
deferred.notifyWith(elem, [animation, 1, 0]);
|
||
}
|
||
deferred.resolveWith(elem, [animation]);
|
||
return false;
|
||
}, animation = deferred.promise({
|
||
elem,
|
||
props: jQuery.extend({}, properties),
|
||
opts: jQuery.extend(true, {
|
||
specialEasing: {},
|
||
easing: jQuery.easing._default
|
||
}, options),
|
||
originalProperties: properties,
|
||
originalOptions: options,
|
||
startTime: fxNow || createFxNow(),
|
||
duration: options.duration,
|
||
tweens: [],
|
||
createTween: function(prop, end) {
|
||
var tween = jQuery.Tween(
|
||
elem,
|
||
animation.opts,
|
||
prop,
|
||
end,
|
||
animation.opts.specialEasing[prop] || animation.opts.easing
|
||
);
|
||
animation.tweens.push(tween);
|
||
return tween;
|
||
},
|
||
stop: function(gotoEnd) {
|
||
var index2 = 0, length2 = gotoEnd ? animation.tweens.length : 0;
|
||
if (stopped) {
|
||
return this;
|
||
}
|
||
stopped = true;
|
||
for (; index2 < length2; index2++) {
|
||
animation.tweens[index2].run(1);
|
||
}
|
||
if (gotoEnd) {
|
||
deferred.notifyWith(elem, [animation, 1, 0]);
|
||
deferred.resolveWith(elem, [animation, gotoEnd]);
|
||
} else {
|
||
deferred.rejectWith(elem, [animation, gotoEnd]);
|
||
}
|
||
return this;
|
||
}
|
||
}), props = animation.props;
|
||
propFilter(props, animation.opts.specialEasing);
|
||
for (; index < length; index++) {
|
||
result = Animation.prefilters[index].call(animation, elem, props, animation.opts);
|
||
if (result) {
|
||
if (isFunction(result.stop)) {
|
||
jQuery._queueHooks(animation.elem, animation.opts.queue).stop = result.stop.bind(result);
|
||
}
|
||
return result;
|
||
}
|
||
}
|
||
jQuery.map(props, createTween, animation);
|
||
if (isFunction(animation.opts.start)) {
|
||
animation.opts.start.call(elem, animation);
|
||
}
|
||
animation.progress(animation.opts.progress).done(animation.opts.done, animation.opts.complete).fail(animation.opts.fail).always(animation.opts.always);
|
||
jQuery.fx.timer(
|
||
jQuery.extend(tick, {
|
||
elem,
|
||
anim: animation,
|
||
queue: animation.opts.queue
|
||
})
|
||
);
|
||
return animation;
|
||
}
|
||
jQuery.Animation = jQuery.extend(Animation, {
|
||
tweeners: {
|
||
"*": [function(prop, value) {
|
||
var tween = this.createTween(prop, value);
|
||
adjustCSS(tween.elem, prop, rcssNum.exec(value), tween);
|
||
return tween;
|
||
}]
|
||
},
|
||
tweener: function(props, callback) {
|
||
if (isFunction(props)) {
|
||
callback = props;
|
||
props = ["*"];
|
||
} else {
|
||
props = props.match(rnothtmlwhite);
|
||
}
|
||
var prop, index = 0, length = props.length;
|
||
for (; index < length; index++) {
|
||
prop = props[index];
|
||
Animation.tweeners[prop] = Animation.tweeners[prop] || [];
|
||
Animation.tweeners[prop].unshift(callback);
|
||
}
|
||
},
|
||
prefilters: [defaultPrefilter],
|
||
prefilter: function(callback, prepend) {
|
||
if (prepend) {
|
||
Animation.prefilters.unshift(callback);
|
||
} else {
|
||
Animation.prefilters.push(callback);
|
||
}
|
||
}
|
||
});
|
||
jQuery.speed = function(speed, easing, fn) {
|
||
var opt = speed && typeof speed === "object" ? jQuery.extend({}, speed) : {
|
||
complete: fn || !fn && easing || isFunction(speed) && speed,
|
||
duration: speed,
|
||
easing: fn && easing || easing && !isFunction(easing) && easing
|
||
};
|
||
if (jQuery.fx.off) {
|
||
opt.duration = 0;
|
||
} else {
|
||
if (typeof opt.duration !== "number") {
|
||
if (opt.duration in jQuery.fx.speeds) {
|
||
opt.duration = jQuery.fx.speeds[opt.duration];
|
||
} else {
|
||
opt.duration = jQuery.fx.speeds._default;
|
||
}
|
||
}
|
||
}
|
||
if (opt.queue == null || opt.queue === true) {
|
||
opt.queue = "fx";
|
||
}
|
||
opt.old = opt.complete;
|
||
opt.complete = function() {
|
||
if (isFunction(opt.old)) {
|
||
opt.old.call(this);
|
||
}
|
||
if (opt.queue) {
|
||
jQuery.dequeue(this, opt.queue);
|
||
}
|
||
};
|
||
return opt;
|
||
};
|
||
jQuery.fn.extend({
|
||
fadeTo: function(speed, to, easing, callback) {
|
||
return this.filter(isHiddenWithinTree).css("opacity", 0).show().end().animate({ opacity: to }, speed, easing, callback);
|
||
},
|
||
animate: function(prop, speed, easing, callback) {
|
||
var empty = jQuery.isEmptyObject(prop), optall = jQuery.speed(speed, easing, callback), doAnimation = function() {
|
||
var anim = Animation(this, jQuery.extend({}, prop), optall);
|
||
if (empty || dataPriv.get(this, "finish")) {
|
||
anim.stop(true);
|
||
}
|
||
};
|
||
doAnimation.finish = doAnimation;
|
||
return empty || optall.queue === false ? this.each(doAnimation) : this.queue(optall.queue, doAnimation);
|
||
},
|
||
stop: function(type, clearQueue, gotoEnd) {
|
||
var stopQueue = function(hooks) {
|
||
var stop = hooks.stop;
|
||
delete hooks.stop;
|
||
stop(gotoEnd);
|
||
};
|
||
if (typeof type !== "string") {
|
||
gotoEnd = clearQueue;
|
||
clearQueue = type;
|
||
type = void 0;
|
||
}
|
||
if (clearQueue) {
|
||
this.queue(type || "fx", []);
|
||
}
|
||
return this.each(function() {
|
||
var dequeue = true, index = type != null && type + "queueHooks", timers = jQuery.timers, data = dataPriv.get(this);
|
||
if (index) {
|
||
if (data[index] && data[index].stop) {
|
||
stopQueue(data[index]);
|
||
}
|
||
} else {
|
||
for (index in data) {
|
||
if (data[index] && data[index].stop && rrun.test(index)) {
|
||
stopQueue(data[index]);
|
||
}
|
||
}
|
||
}
|
||
for (index = timers.length; index--; ) {
|
||
if (timers[index].elem === this && (type == null || timers[index].queue === type)) {
|
||
timers[index].anim.stop(gotoEnd);
|
||
dequeue = false;
|
||
timers.splice(index, 1);
|
||
}
|
||
}
|
||
if (dequeue || !gotoEnd) {
|
||
jQuery.dequeue(this, type);
|
||
}
|
||
});
|
||
},
|
||
finish: function(type) {
|
||
if (type !== false) {
|
||
type = type || "fx";
|
||
}
|
||
return this.each(function() {
|
||
var index, data = dataPriv.get(this), queue = data[type + "queue"], hooks = data[type + "queueHooks"], timers = jQuery.timers, length = queue ? queue.length : 0;
|
||
data.finish = true;
|
||
jQuery.queue(this, type, []);
|
||
if (hooks && hooks.stop) {
|
||
hooks.stop.call(this, true);
|
||
}
|
||
for (index = timers.length; index--; ) {
|
||
if (timers[index].elem === this && timers[index].queue === type) {
|
||
timers[index].anim.stop(true);
|
||
timers.splice(index, 1);
|
||
}
|
||
}
|
||
for (index = 0; index < length; index++) {
|
||
if (queue[index] && queue[index].finish) {
|
||
queue[index].finish.call(this);
|
||
}
|
||
}
|
||
delete data.finish;
|
||
});
|
||
}
|
||
});
|
||
jQuery.each(["toggle", "show", "hide"], function(_i, name) {
|
||
var cssFn = jQuery.fn[name];
|
||
jQuery.fn[name] = function(speed, easing, callback) {
|
||
return speed == null || typeof speed === "boolean" ? cssFn.apply(this, arguments) : this.animate(genFx(name, true), speed, easing, callback);
|
||
};
|
||
});
|
||
jQuery.each({
|
||
slideDown: genFx("show"),
|
||
slideUp: genFx("hide"),
|
||
slideToggle: genFx("toggle"),
|
||
fadeIn: { opacity: "show" },
|
||
fadeOut: { opacity: "hide" },
|
||
fadeToggle: { opacity: "toggle" }
|
||
}, function(name, props) {
|
||
jQuery.fn[name] = function(speed, easing, callback) {
|
||
return this.animate(props, speed, easing, callback);
|
||
};
|
||
});
|
||
jQuery.timers = [];
|
||
jQuery.fx.tick = function() {
|
||
var timer, i = 0, timers = jQuery.timers;
|
||
fxNow = Date.now();
|
||
for (; i < timers.length; i++) {
|
||
timer = timers[i];
|
||
if (!timer() && timers[i] === timer) {
|
||
timers.splice(i--, 1);
|
||
}
|
||
}
|
||
if (!timers.length) {
|
||
jQuery.fx.stop();
|
||
}
|
||
fxNow = void 0;
|
||
};
|
||
jQuery.fx.timer = function(timer) {
|
||
jQuery.timers.push(timer);
|
||
jQuery.fx.start();
|
||
};
|
||
jQuery.fx.interval = 13;
|
||
jQuery.fx.start = function() {
|
||
if (inProgress) {
|
||
return;
|
||
}
|
||
inProgress = true;
|
||
schedule();
|
||
};
|
||
jQuery.fx.stop = function() {
|
||
inProgress = null;
|
||
};
|
||
jQuery.fx.speeds = {
|
||
slow: 600,
|
||
fast: 200,
|
||
// Default speed
|
||
_default: 400
|
||
};
|
||
jQuery.fn.delay = function(time, type) {
|
||
time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
|
||
type = type || "fx";
|
||
return this.queue(type, function(next, hooks) {
|
||
var timeout2 = window2.setTimeout(next, time);
|
||
hooks.stop = function() {
|
||
window2.clearTimeout(timeout2);
|
||
};
|
||
});
|
||
};
|
||
(function() {
|
||
var input = document2.createElement("input"), select = document2.createElement("select"), opt = select.appendChild(document2.createElement("option"));
|
||
input.type = "checkbox";
|
||
support.checkOn = input.value !== "";
|
||
support.optSelected = opt.selected;
|
||
input = document2.createElement("input");
|
||
input.value = "t";
|
||
input.type = "radio";
|
||
support.radioValue = input.value === "t";
|
||
})();
|
||
var boolHook, attrHandle = jQuery.expr.attrHandle;
|
||
jQuery.fn.extend({
|
||
attr: function(name, value) {
|
||
return access(this, jQuery.attr, name, value, arguments.length > 1);
|
||
},
|
||
removeAttr: function(name) {
|
||
return this.each(function() {
|
||
jQuery.removeAttr(this, name);
|
||
});
|
||
}
|
||
});
|
||
jQuery.extend({
|
||
attr: function(elem, name, value) {
|
||
var ret, hooks, nType = elem.nodeType;
|
||
if (nType === 3 || nType === 8 || nType === 2) {
|
||
return;
|
||
}
|
||
if (typeof elem.getAttribute === "undefined") {
|
||
return jQuery.prop(elem, name, value);
|
||
}
|
||
if (nType !== 1 || !jQuery.isXMLDoc(elem)) {
|
||
hooks = jQuery.attrHooks[name.toLowerCase()] || (jQuery.expr.match.bool.test(name) ? boolHook : void 0);
|
||
}
|
||
if (value !== void 0) {
|
||
if (value === null) {
|
||
jQuery.removeAttr(elem, name);
|
||
return;
|
||
}
|
||
if (hooks && "set" in hooks && (ret = hooks.set(elem, value, name)) !== void 0) {
|
||
return ret;
|
||
}
|
||
elem.setAttribute(name, value + "");
|
||
return value;
|
||
}
|
||
if (hooks && "get" in hooks && (ret = hooks.get(elem, name)) !== null) {
|
||
return ret;
|
||
}
|
||
ret = jQuery.find.attr(elem, name);
|
||
return ret == null ? void 0 : ret;
|
||
},
|
||
attrHooks: {
|
||
type: {
|
||
set: function(elem, value) {
|
||
if (!support.radioValue && value === "radio" && nodeName(elem, "input")) {
|
||
var val = elem.value;
|
||
elem.setAttribute("type", value);
|
||
if (val) {
|
||
elem.value = val;
|
||
}
|
||
return value;
|
||
}
|
||
}
|
||
}
|
||
},
|
||
removeAttr: function(elem, value) {
|
||
var name, i = 0, attrNames = value && value.match(rnothtmlwhite);
|
||
if (attrNames && elem.nodeType === 1) {
|
||
while (name = attrNames[i++]) {
|
||
elem.removeAttribute(name);
|
||
}
|
||
}
|
||
}
|
||
});
|
||
boolHook = {
|
||
set: function(elem, value, name) {
|
||
if (value === false) {
|
||
jQuery.removeAttr(elem, name);
|
||
} else {
|
||
elem.setAttribute(name, name);
|
||
}
|
||
return name;
|
||
}
|
||
};
|
||
jQuery.each(jQuery.expr.match.bool.source.match(/\w+/g), function(_i, name) {
|
||
var getter = attrHandle[name] || jQuery.find.attr;
|
||
attrHandle[name] = function(elem, name2, isXML) {
|
||
var ret, handle, lowercaseName = name2.toLowerCase();
|
||
if (!isXML) {
|
||
handle = attrHandle[lowercaseName];
|
||
attrHandle[lowercaseName] = ret;
|
||
ret = getter(elem, name2, isXML) != null ? lowercaseName : null;
|
||
attrHandle[lowercaseName] = handle;
|
||
}
|
||
return ret;
|
||
};
|
||
});
|
||
var rfocusable = /^(?:input|select|textarea|button)$/i, rclickable = /^(?:a|area)$/i;
|
||
jQuery.fn.extend({
|
||
prop: function(name, value) {
|
||
return access(this, jQuery.prop, name, value, arguments.length > 1);
|
||
},
|
||
removeProp: function(name) {
|
||
return this.each(function() {
|
||
delete this[jQuery.propFix[name] || name];
|
||
});
|
||
}
|
||
});
|
||
jQuery.extend({
|
||
prop: function(elem, name, value) {
|
||
var ret, hooks, nType = elem.nodeType;
|
||
if (nType === 3 || nType === 8 || nType === 2) {
|
||
return;
|
||
}
|
||
if (nType !== 1 || !jQuery.isXMLDoc(elem)) {
|
||
name = jQuery.propFix[name] || name;
|
||
hooks = jQuery.propHooks[name];
|
||
}
|
||
if (value !== void 0) {
|
||
if (hooks && "set" in hooks && (ret = hooks.set(elem, value, name)) !== void 0) {
|
||
return ret;
|
||
}
|
||
return elem[name] = value;
|
||
}
|
||
if (hooks && "get" in hooks && (ret = hooks.get(elem, name)) !== null) {
|
||
return ret;
|
||
}
|
||
return elem[name];
|
||
},
|
||
propHooks: {
|
||
tabIndex: {
|
||
get: function(elem) {
|
||
var tabindex = jQuery.find.attr(elem, "tabindex");
|
||
if (tabindex) {
|
||
return parseInt(tabindex, 10);
|
||
}
|
||
if (rfocusable.test(elem.nodeName) || rclickable.test(elem.nodeName) && elem.href) {
|
||
return 0;
|
||
}
|
||
return -1;
|
||
}
|
||
}
|
||
},
|
||
propFix: {
|
||
"for": "htmlFor",
|
||
"class": "className"
|
||
}
|
||
});
|
||
if (!support.optSelected) {
|
||
jQuery.propHooks.selected = {
|
||
get: function(elem) {
|
||
var parent = elem.parentNode;
|
||
if (parent && parent.parentNode) {
|
||
parent.parentNode.selectedIndex;
|
||
}
|
||
return null;
|
||
},
|
||
set: function(elem) {
|
||
var parent = elem.parentNode;
|
||
if (parent) {
|
||
parent.selectedIndex;
|
||
if (parent.parentNode) {
|
||
parent.parentNode.selectedIndex;
|
||
}
|
||
}
|
||
}
|
||
};
|
||
}
|
||
jQuery.each([
|
||
"tabIndex",
|
||
"readOnly",
|
||
"maxLength",
|
||
"cellSpacing",
|
||
"cellPadding",
|
||
"rowSpan",
|
||
"colSpan",
|
||
"useMap",
|
||
"frameBorder",
|
||
"contentEditable"
|
||
], function() {
|
||
jQuery.propFix[this.toLowerCase()] = this;
|
||
});
|
||
function stripAndCollapse(value) {
|
||
var tokens = value.match(rnothtmlwhite) || [];
|
||
return tokens.join(" ");
|
||
}
|
||
function getClass(elem) {
|
||
return elem.getAttribute && elem.getAttribute("class") || "";
|
||
}
|
||
function classesToArray(value) {
|
||
if (Array.isArray(value)) {
|
||
return value;
|
||
}
|
||
if (typeof value === "string") {
|
||
return value.match(rnothtmlwhite) || [];
|
||
}
|
||
return [];
|
||
}
|
||
jQuery.fn.extend({
|
||
addClass: function(value) {
|
||
var classNames, cur, curValue, className, i, finalValue;
|
||
if (isFunction(value)) {
|
||
return this.each(function(j) {
|
||
jQuery(this).addClass(value.call(this, j, getClass(this)));
|
||
});
|
||
}
|
||
classNames = classesToArray(value);
|
||
if (classNames.length) {
|
||
return this.each(function() {
|
||
curValue = getClass(this);
|
||
cur = this.nodeType === 1 && " " + stripAndCollapse(curValue) + " ";
|
||
if (cur) {
|
||
for (i = 0; i < classNames.length; i++) {
|
||
className = classNames[i];
|
||
if (cur.indexOf(" " + className + " ") < 0) {
|
||
cur += className + " ";
|
||
}
|
||
}
|
||
finalValue = stripAndCollapse(cur);
|
||
if (curValue !== finalValue) {
|
||
this.setAttribute("class", finalValue);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
return this;
|
||
},
|
||
removeClass: function(value) {
|
||
var classNames, cur, curValue, className, i, finalValue;
|
||
if (isFunction(value)) {
|
||
return this.each(function(j) {
|
||
jQuery(this).removeClass(value.call(this, j, getClass(this)));
|
||
});
|
||
}
|
||
if (!arguments.length) {
|
||
return this.attr("class", "");
|
||
}
|
||
classNames = classesToArray(value);
|
||
if (classNames.length) {
|
||
return this.each(function() {
|
||
curValue = getClass(this);
|
||
cur = this.nodeType === 1 && " " + stripAndCollapse(curValue) + " ";
|
||
if (cur) {
|
||
for (i = 0; i < classNames.length; i++) {
|
||
className = classNames[i];
|
||
while (cur.indexOf(" " + className + " ") > -1) {
|
||
cur = cur.replace(" " + className + " ", " ");
|
||
}
|
||
}
|
||
finalValue = stripAndCollapse(cur);
|
||
if (curValue !== finalValue) {
|
||
this.setAttribute("class", finalValue);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
return this;
|
||
},
|
||
toggleClass: function(value, stateVal) {
|
||
var classNames, className, i, self2, type = typeof value, isValidValue = type === "string" || Array.isArray(value);
|
||
if (isFunction(value)) {
|
||
return this.each(function(i2) {
|
||
jQuery(this).toggleClass(
|
||
value.call(this, i2, getClass(this), stateVal),
|
||
stateVal
|
||
);
|
||
});
|
||
}
|
||
if (typeof stateVal === "boolean" && isValidValue) {
|
||
return stateVal ? this.addClass(value) : this.removeClass(value);
|
||
}
|
||
classNames = classesToArray(value);
|
||
return this.each(function() {
|
||
if (isValidValue) {
|
||
self2 = jQuery(this);
|
||
for (i = 0; i < classNames.length; i++) {
|
||
className = classNames[i];
|
||
if (self2.hasClass(className)) {
|
||
self2.removeClass(className);
|
||
} else {
|
||
self2.addClass(className);
|
||
}
|
||
}
|
||
} else if (value === void 0 || type === "boolean") {
|
||
className = getClass(this);
|
||
if (className) {
|
||
dataPriv.set(this, "__className__", className);
|
||
}
|
||
if (this.setAttribute) {
|
||
this.setAttribute(
|
||
"class",
|
||
className || value === false ? "" : dataPriv.get(this, "__className__") || ""
|
||
);
|
||
}
|
||
}
|
||
});
|
||
},
|
||
hasClass: function(selector) {
|
||
var className, elem, i = 0;
|
||
className = " " + selector + " ";
|
||
while (elem = this[i++]) {
|
||
if (elem.nodeType === 1 && (" " + stripAndCollapse(getClass(elem)) + " ").indexOf(className) > -1) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
});
|
||
var rreturn = /\r/g;
|
||
jQuery.fn.extend({
|
||
val: function(value) {
|
||
var hooks, ret, valueIsFunction, elem = this[0];
|
||
if (!arguments.length) {
|
||
if (elem) {
|
||
hooks = jQuery.valHooks[elem.type] || jQuery.valHooks[elem.nodeName.toLowerCase()];
|
||
if (hooks && "get" in hooks && (ret = hooks.get(elem, "value")) !== void 0) {
|
||
return ret;
|
||
}
|
||
ret = elem.value;
|
||
if (typeof ret === "string") {
|
||
return ret.replace(rreturn, "");
|
||
}
|
||
return ret == null ? "" : ret;
|
||
}
|
||
return;
|
||
}
|
||
valueIsFunction = isFunction(value);
|
||
return this.each(function(i) {
|
||
var val;
|
||
if (this.nodeType !== 1) {
|
||
return;
|
||
}
|
||
if (valueIsFunction) {
|
||
val = value.call(this, i, jQuery(this).val());
|
||
} else {
|
||
val = value;
|
||
}
|
||
if (val == null) {
|
||
val = "";
|
||
} else if (typeof val === "number") {
|
||
val += "";
|
||
} else if (Array.isArray(val)) {
|
||
val = jQuery.map(val, function(value2) {
|
||
return value2 == null ? "" : value2 + "";
|
||
});
|
||
}
|
||
hooks = jQuery.valHooks[this.type] || jQuery.valHooks[this.nodeName.toLowerCase()];
|
||
if (!hooks || !("set" in hooks) || hooks.set(this, val, "value") === void 0) {
|
||
this.value = val;
|
||
}
|
||
});
|
||
}
|
||
});
|
||
jQuery.extend({
|
||
valHooks: {
|
||
option: {
|
||
get: function(elem) {
|
||
var val = jQuery.find.attr(elem, "value");
|
||
return val != null ? val : (
|
||
// Support: IE <=10 - 11 only
|
||
// option.text throws exceptions (trac-14686, trac-14858)
|
||
// Strip and collapse whitespace
|
||
// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
|
||
stripAndCollapse(jQuery.text(elem))
|
||
);
|
||
}
|
||
},
|
||
select: {
|
||
get: function(elem) {
|
||
var value, option, i, options = elem.options, index = elem.selectedIndex, one = elem.type === "select-one", values = one ? null : [], max = one ? index + 1 : options.length;
|
||
if (index < 0) {
|
||
i = max;
|
||
} else {
|
||
i = one ? index : 0;
|
||
}
|
||
for (; i < max; i++) {
|
||
option = options[i];
|
||
if ((option.selected || i === index) && // Don't return options that are disabled or in a disabled optgroup
|
||
!option.disabled && (!option.parentNode.disabled || !nodeName(option.parentNode, "optgroup"))) {
|
||
value = jQuery(option).val();
|
||
if (one) {
|
||
return value;
|
||
}
|
||
values.push(value);
|
||
}
|
||
}
|
||
return values;
|
||
},
|
||
set: function(elem, value) {
|
||
var optionSet, option, options = elem.options, values = jQuery.makeArray(value), i = options.length;
|
||
while (i--) {
|
||
option = options[i];
|
||
if (option.selected = jQuery.inArray(jQuery.valHooks.option.get(option), values) > -1) {
|
||
optionSet = true;
|
||
}
|
||
}
|
||
if (!optionSet) {
|
||
elem.selectedIndex = -1;
|
||
}
|
||
return values;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
jQuery.each(["radio", "checkbox"], function() {
|
||
jQuery.valHooks[this] = {
|
||
set: function(elem, value) {
|
||
if (Array.isArray(value)) {
|
||
return elem.checked = jQuery.inArray(jQuery(elem).val(), value) > -1;
|
||
}
|
||
}
|
||
};
|
||
if (!support.checkOn) {
|
||
jQuery.valHooks[this].get = function(elem) {
|
||
return elem.getAttribute("value") === null ? "on" : elem.value;
|
||
};
|
||
}
|
||
});
|
||
var location = window2.location;
|
||
var nonce = { guid: Date.now() };
|
||
var rquery = /\?/;
|
||
jQuery.parseXML = function(data) {
|
||
var xml, parserErrorElem;
|
||
if (!data || typeof data !== "string") {
|
||
return null;
|
||
}
|
||
try {
|
||
xml = new window2.DOMParser().parseFromString(data, "text/xml");
|
||
} catch (e) {
|
||
}
|
||
parserErrorElem = xml && xml.getElementsByTagName("parsererror")[0];
|
||
if (!xml || parserErrorElem) {
|
||
jQuery.error("Invalid XML: " + (parserErrorElem ? jQuery.map(parserErrorElem.childNodes, function(el) {
|
||
return el.textContent;
|
||
}).join("\n") : data));
|
||
}
|
||
return xml;
|
||
};
|
||
var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, stopPropagationCallback = function(e) {
|
||
e.stopPropagation();
|
||
};
|
||
jQuery.extend(jQuery.event, {
|
||
trigger: function(event, data, elem, onlyHandlers) {
|
||
var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, eventPath = [elem || document2], type = hasOwn.call(event, "type") ? event.type : event, namespaces = hasOwn.call(event, "namespace") ? event.namespace.split(".") : [];
|
||
cur = lastElement = tmp = elem = elem || document2;
|
||
if (elem.nodeType === 3 || elem.nodeType === 8) {
|
||
return;
|
||
}
|
||
if (rfocusMorph.test(type + jQuery.event.triggered)) {
|
||
return;
|
||
}
|
||
if (type.indexOf(".") > -1) {
|
||
namespaces = type.split(".");
|
||
type = namespaces.shift();
|
||
namespaces.sort();
|
||
}
|
||
ontype = type.indexOf(":") < 0 && "on" + type;
|
||
event = event[jQuery.expando] ? event : new jQuery.Event(type, typeof event === "object" && event);
|
||
event.isTrigger = onlyHandlers ? 2 : 3;
|
||
event.namespace = namespaces.join(".");
|
||
event.rnamespace = event.namespace ? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)") : null;
|
||
event.result = void 0;
|
||
if (!event.target) {
|
||
event.target = elem;
|
||
}
|
||
data = data == null ? [event] : jQuery.makeArray(data, [event]);
|
||
special = jQuery.event.special[type] || {};
|
||
if (!onlyHandlers && special.trigger && special.trigger.apply(elem, data) === false) {
|
||
return;
|
||
}
|
||
if (!onlyHandlers && !special.noBubble && !isWindow(elem)) {
|
||
bubbleType = special.delegateType || type;
|
||
if (!rfocusMorph.test(bubbleType + type)) {
|
||
cur = cur.parentNode;
|
||
}
|
||
for (; cur; cur = cur.parentNode) {
|
||
eventPath.push(cur);
|
||
tmp = cur;
|
||
}
|
||
if (tmp === (elem.ownerDocument || document2)) {
|
||
eventPath.push(tmp.defaultView || tmp.parentWindow || window2);
|
||
}
|
||
}
|
||
i = 0;
|
||
while ((cur = eventPath[i++]) && !event.isPropagationStopped()) {
|
||
lastElement = cur;
|
||
event.type = i > 1 ? bubbleType : special.bindType || type;
|
||
handle = (dataPriv.get(cur, "events") || /* @__PURE__ */ Object.create(null))[event.type] && dataPriv.get(cur, "handle");
|
||
if (handle) {
|
||
handle.apply(cur, data);
|
||
}
|
||
handle = ontype && cur[ontype];
|
||
if (handle && handle.apply && acceptData(cur)) {
|
||
event.result = handle.apply(cur, data);
|
||
if (event.result === false) {
|
||
event.preventDefault();
|
||
}
|
||
}
|
||
}
|
||
event.type = type;
|
||
if (!onlyHandlers && !event.isDefaultPrevented()) {
|
||
if ((!special._default || special._default.apply(eventPath.pop(), data) === false) && acceptData(elem)) {
|
||
if (ontype && isFunction(elem[type]) && !isWindow(elem)) {
|
||
tmp = elem[ontype];
|
||
if (tmp) {
|
||
elem[ontype] = null;
|
||
}
|
||
jQuery.event.triggered = type;
|
||
if (event.isPropagationStopped()) {
|
||
lastElement.addEventListener(type, stopPropagationCallback);
|
||
}
|
||
elem[type]();
|
||
if (event.isPropagationStopped()) {
|
||
lastElement.removeEventListener(type, stopPropagationCallback);
|
||
}
|
||
jQuery.event.triggered = void 0;
|
||
if (tmp) {
|
||
elem[ontype] = tmp;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return event.result;
|
||
},
|
||
// Piggyback on a donor event to simulate a different one
|
||
// Used only for `focus(in | out)` events
|
||
simulate: function(type, elem, event) {
|
||
var e = jQuery.extend(
|
||
new jQuery.Event(),
|
||
event,
|
||
{
|
||
type,
|
||
isSimulated: true
|
||
}
|
||
);
|
||
jQuery.event.trigger(e, null, elem);
|
||
}
|
||
});
|
||
jQuery.fn.extend({
|
||
trigger: function(type, data) {
|
||
return this.each(function() {
|
||
jQuery.event.trigger(type, data, this);
|
||
});
|
||
},
|
||
triggerHandler: function(type, data) {
|
||
var elem = this[0];
|
||
if (elem) {
|
||
return jQuery.event.trigger(type, data, elem, true);
|
||
}
|
||
}
|
||
});
|
||
var rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i;
|
||
function buildParams(prefix2, obj, traditional, add) {
|
||
var name;
|
||
if (Array.isArray(obj)) {
|
||
jQuery.each(obj, function(i, v) {
|
||
if (traditional || rbracket.test(prefix2)) {
|
||
add(prefix2, v);
|
||
} else {
|
||
buildParams(
|
||
prefix2 + "[" + (typeof v === "object" && v != null ? i : "") + "]",
|
||
v,
|
||
traditional,
|
||
add
|
||
);
|
||
}
|
||
});
|
||
} else if (!traditional && toType(obj) === "object") {
|
||
for (name in obj) {
|
||
buildParams(prefix2 + "[" + name + "]", obj[name], traditional, add);
|
||
}
|
||
} else {
|
||
add(prefix2, obj);
|
||
}
|
||
}
|
||
jQuery.param = function(a, traditional) {
|
||
var prefix2, s = [], add = function(key, valueOrFunction) {
|
||
var value = isFunction(valueOrFunction) ? valueOrFunction() : valueOrFunction;
|
||
s[s.length] = encodeURIComponent(key) + "=" + encodeURIComponent(value == null ? "" : value);
|
||
};
|
||
if (a == null) {
|
||
return "";
|
||
}
|
||
if (Array.isArray(a) || a.jquery && !jQuery.isPlainObject(a)) {
|
||
jQuery.each(a, function() {
|
||
add(this.name, this.value);
|
||
});
|
||
} else {
|
||
for (prefix2 in a) {
|
||
buildParams(prefix2, a[prefix2], traditional, add);
|
||
}
|
||
}
|
||
return s.join("&");
|
||
};
|
||
jQuery.fn.extend({
|
||
serialize: function() {
|
||
return jQuery.param(this.serializeArray());
|
||
},
|
||
serializeArray: function() {
|
||
return this.map(function() {
|
||
var elements = jQuery.prop(this, "elements");
|
||
return elements ? jQuery.makeArray(elements) : this;
|
||
}).filter(function() {
|
||
var type = this.type;
|
||
return this.name && !jQuery(this).is(":disabled") && rsubmittable.test(this.nodeName) && !rsubmitterTypes.test(type) && (this.checked || !rcheckableType.test(type));
|
||
}).map(function(_i, elem) {
|
||
var val = jQuery(this).val();
|
||
if (val == null) {
|
||
return null;
|
||
}
|
||
if (Array.isArray(val)) {
|
||
return jQuery.map(val, function(val2) {
|
||
return { name: elem.name, value: val2.replace(rCRLF, "\r\n") };
|
||
});
|
||
}
|
||
return { name: elem.name, value: val.replace(rCRLF, "\r\n") };
|
||
}).get();
|
||
}
|
||
});
|
||
var r20 = /%20/g, rhash = /#.*$/, rantiCache = /([?&])_=[^&]*/, rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, rprotocol = /^\/\//, prefilters = {}, transports = {}, allTypes = "*/".concat("*"), originAnchor = document2.createElement("a");
|
||
originAnchor.href = location.href;
|
||
function addToPrefiltersOrTransports(structure) {
|
||
return function(dataTypeExpression, func) {
|
||
if (typeof dataTypeExpression !== "string") {
|
||
func = dataTypeExpression;
|
||
dataTypeExpression = "*";
|
||
}
|
||
var dataType, i = 0, dataTypes = dataTypeExpression.toLowerCase().match(rnothtmlwhite) || [];
|
||
if (isFunction(func)) {
|
||
while (dataType = dataTypes[i++]) {
|
||
if (dataType[0] === "+") {
|
||
dataType = dataType.slice(1) || "*";
|
||
(structure[dataType] = structure[dataType] || []).unshift(func);
|
||
} else {
|
||
(structure[dataType] = structure[dataType] || []).push(func);
|
||
}
|
||
}
|
||
}
|
||
};
|
||
}
|
||
function inspectPrefiltersOrTransports(structure, options, originalOptions, jqXHR) {
|
||
var inspected = {}, seekingTransport = structure === transports;
|
||
function inspect(dataType) {
|
||
var selected;
|
||
inspected[dataType] = true;
|
||
jQuery.each(structure[dataType] || [], function(_3, prefilterOrFactory) {
|
||
var dataTypeOrTransport = prefilterOrFactory(options, originalOptions, jqXHR);
|
||
if (typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[dataTypeOrTransport]) {
|
||
options.dataTypes.unshift(dataTypeOrTransport);
|
||
inspect(dataTypeOrTransport);
|
||
return false;
|
||
} else if (seekingTransport) {
|
||
return !(selected = dataTypeOrTransport);
|
||
}
|
||
});
|
||
return selected;
|
||
}
|
||
return inspect(options.dataTypes[0]) || !inspected["*"] && inspect("*");
|
||
}
|
||
function ajaxExtend(target, src) {
|
||
var key, deep, flatOptions = jQuery.ajaxSettings.flatOptions || {};
|
||
for (key in src) {
|
||
if (src[key] !== void 0) {
|
||
(flatOptions[key] ? target : deep || (deep = {}))[key] = src[key];
|
||
}
|
||
}
|
||
if (deep) {
|
||
jQuery.extend(true, target, deep);
|
||
}
|
||
return target;
|
||
}
|
||
function ajaxHandleResponses(s, jqXHR, responses) {
|
||
var ct, type, finalDataType, firstDataType, contents = s.contents, dataTypes = s.dataTypes;
|
||
while (dataTypes[0] === "*") {
|
||
dataTypes.shift();
|
||
if (ct === void 0) {
|
||
ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
|
||
}
|
||
}
|
||
if (ct) {
|
||
for (type in contents) {
|
||
if (contents[type] && contents[type].test(ct)) {
|
||
dataTypes.unshift(type);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
if (dataTypes[0] in responses) {
|
||
finalDataType = dataTypes[0];
|
||
} else {
|
||
for (type in responses) {
|
||
if (!dataTypes[0] || s.converters[type + " " + dataTypes[0]]) {
|
||
finalDataType = type;
|
||
break;
|
||
}
|
||
if (!firstDataType) {
|
||
firstDataType = type;
|
||
}
|
||
}
|
||
finalDataType = finalDataType || firstDataType;
|
||
}
|
||
if (finalDataType) {
|
||
if (finalDataType !== dataTypes[0]) {
|
||
dataTypes.unshift(finalDataType);
|
||
}
|
||
return responses[finalDataType];
|
||
}
|
||
}
|
||
function ajaxConvert(s, response, jqXHR, isSuccess) {
|
||
var conv2, current2, conv, tmp, prev, converters = {}, dataTypes = s.dataTypes.slice();
|
||
if (dataTypes[1]) {
|
||
for (conv in s.converters) {
|
||
converters[conv.toLowerCase()] = s.converters[conv];
|
||
}
|
||
}
|
||
current2 = dataTypes.shift();
|
||
while (current2) {
|
||
if (s.responseFields[current2]) {
|
||
jqXHR[s.responseFields[current2]] = response;
|
||
}
|
||
if (!prev && isSuccess && s.dataFilter) {
|
||
response = s.dataFilter(response, s.dataType);
|
||
}
|
||
prev = current2;
|
||
current2 = dataTypes.shift();
|
||
if (current2) {
|
||
if (current2 === "*") {
|
||
current2 = prev;
|
||
} else if (prev !== "*" && prev !== current2) {
|
||
conv = converters[prev + " " + current2] || converters["* " + current2];
|
||
if (!conv) {
|
||
for (conv2 in converters) {
|
||
tmp = conv2.split(" ");
|
||
if (tmp[1] === current2) {
|
||
conv = converters[prev + " " + tmp[0]] || converters["* " + tmp[0]];
|
||
if (conv) {
|
||
if (conv === true) {
|
||
conv = converters[conv2];
|
||
} else if (converters[conv2] !== true) {
|
||
current2 = tmp[0];
|
||
dataTypes.unshift(tmp[1]);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (conv !== true) {
|
||
if (conv && s.throws) {
|
||
response = conv(response);
|
||
} else {
|
||
try {
|
||
response = conv(response);
|
||
} catch (e) {
|
||
return {
|
||
state: "parsererror",
|
||
error: conv ? e : "No conversion from " + prev + " to " + current2
|
||
};
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return { state: "success", data: response };
|
||
}
|
||
jQuery.extend({
|
||
// Counter for holding the number of active queries
|
||
active: 0,
|
||
// Last-Modified header cache for next request
|
||
lastModified: {},
|
||
etag: {},
|
||
ajaxSettings: {
|
||
url: location.href,
|
||
type: "GET",
|
||
isLocal: rlocalProtocol.test(location.protocol),
|
||
global: true,
|
||
processData: true,
|
||
async: true,
|
||
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
||
/*
|
||
timeout: 0,
|
||
data: null,
|
||
dataType: null,
|
||
username: null,
|
||
password: null,
|
||
cache: null,
|
||
throws: false,
|
||
traditional: false,
|
||
headers: {},
|
||
*/
|
||
accepts: {
|
||
"*": allTypes,
|
||
text: "text/plain",
|
||
html: "text/html",
|
||
xml: "application/xml, text/xml",
|
||
json: "application/json, text/javascript"
|
||
},
|
||
contents: {
|
||
xml: /\bxml\b/,
|
||
html: /\bhtml/,
|
||
json: /\bjson\b/
|
||
},
|
||
responseFields: {
|
||
xml: "responseXML",
|
||
text: "responseText",
|
||
json: "responseJSON"
|
||
},
|
||
// Data converters
|
||
// Keys separate source (or catchall "*") and destination types with a single space
|
||
converters: {
|
||
// Convert anything to text
|
||
"* text": String,
|
||
// Text to html (true = no transformation)
|
||
"text html": true,
|
||
// Evaluate text as a json expression
|
||
"text json": JSON.parse,
|
||
// Parse text as xml
|
||
"text xml": jQuery.parseXML
|
||
},
|
||
// For options that shouldn't be deep extended:
|
||
// you can add your own custom options here if
|
||
// and when you create one that shouldn't be
|
||
// deep extended (see ajaxExtend)
|
||
flatOptions: {
|
||
url: true,
|
||
context: true
|
||
}
|
||
},
|
||
// Creates a full fledged settings object into target
|
||
// with both ajaxSettings and settings fields.
|
||
// If target is omitted, writes into ajaxSettings.
|
||
ajaxSetup: function(target, settings) {
|
||
return settings ? (
|
||
// Building a settings object
|
||
ajaxExtend(ajaxExtend(target, jQuery.ajaxSettings), settings)
|
||
) : (
|
||
// Extending ajaxSettings
|
||
ajaxExtend(jQuery.ajaxSettings, target)
|
||
);
|
||
},
|
||
ajaxPrefilter: addToPrefiltersOrTransports(prefilters),
|
||
ajaxTransport: addToPrefiltersOrTransports(transports),
|
||
// Main method
|
||
ajax: function(url, options) {
|
||
if (typeof url === "object") {
|
||
options = url;
|
||
url = void 0;
|
||
}
|
||
options = options || {};
|
||
var transport, cacheURL, responseHeadersString, responseHeaders, timeoutTimer, urlAnchor, completed2, fireGlobals, i, uncached, s = jQuery.ajaxSetup({}, options), callbackContext = s.context || s, globalEventContext = s.context && (callbackContext.nodeType || callbackContext.jquery) ? jQuery(callbackContext) : jQuery.event, deferred = jQuery.Deferred(), completeDeferred = jQuery.Callbacks("once memory"), statusCode = s.statusCode || {}, requestHeaders = {}, requestHeadersNames = {}, strAbort = "canceled", jqXHR = {
|
||
readyState: 0,
|
||
// Builds headers hashtable if needed
|
||
getResponseHeader: function(key) {
|
||
var match;
|
||
if (completed2) {
|
||
if (!responseHeaders) {
|
||
responseHeaders = {};
|
||
while (match = rheaders.exec(responseHeadersString)) {
|
||
responseHeaders[match[1].toLowerCase() + " "] = (responseHeaders[match[1].toLowerCase() + " "] || []).concat(match[2]);
|
||
}
|
||
}
|
||
match = responseHeaders[key.toLowerCase() + " "];
|
||
}
|
||
return match == null ? null : match.join(", ");
|
||
},
|
||
// Raw string
|
||
getAllResponseHeaders: function() {
|
||
return completed2 ? responseHeadersString : null;
|
||
},
|
||
// Caches the header
|
||
setRequestHeader: function(name, value) {
|
||
if (completed2 == null) {
|
||
name = requestHeadersNames[name.toLowerCase()] = requestHeadersNames[name.toLowerCase()] || name;
|
||
requestHeaders[name] = value;
|
||
}
|
||
return this;
|
||
},
|
||
// Overrides response content-type header
|
||
overrideMimeType: function(type) {
|
||
if (completed2 == null) {
|
||
s.mimeType = type;
|
||
}
|
||
return this;
|
||
},
|
||
// Status-dependent callbacks
|
||
statusCode: function(map) {
|
||
var code;
|
||
if (map) {
|
||
if (completed2) {
|
||
jqXHR.always(map[jqXHR.status]);
|
||
} else {
|
||
for (code in map) {
|
||
statusCode[code] = [statusCode[code], map[code]];
|
||
}
|
||
}
|
||
}
|
||
return this;
|
||
},
|
||
// Cancel the request
|
||
abort: function(statusText) {
|
||
var finalText = statusText || strAbort;
|
||
if (transport) {
|
||
transport.abort(finalText);
|
||
}
|
||
done(0, finalText);
|
||
return this;
|
||
}
|
||
};
|
||
deferred.promise(jqXHR);
|
||
s.url = ((url || s.url || location.href) + "").replace(rprotocol, location.protocol + "//");
|
||
s.type = options.method || options.type || s.method || s.type;
|
||
s.dataTypes = (s.dataType || "*").toLowerCase().match(rnothtmlwhite) || [""];
|
||
if (s.crossDomain == null) {
|
||
urlAnchor = document2.createElement("a");
|
||
try {
|
||
urlAnchor.href = s.url;
|
||
urlAnchor.href = urlAnchor.href;
|
||
s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== urlAnchor.protocol + "//" + urlAnchor.host;
|
||
} catch (e) {
|
||
s.crossDomain = true;
|
||
}
|
||
}
|
||
if (s.data && s.processData && typeof s.data !== "string") {
|
||
s.data = jQuery.param(s.data, s.traditional);
|
||
}
|
||
inspectPrefiltersOrTransports(prefilters, s, options, jqXHR);
|
||
if (completed2) {
|
||
return jqXHR;
|
||
}
|
||
fireGlobals = jQuery.event && s.global;
|
||
if (fireGlobals && jQuery.active++ === 0) {
|
||
jQuery.event.trigger("ajaxStart");
|
||
}
|
||
s.type = s.type.toUpperCase();
|
||
s.hasContent = !rnoContent.test(s.type);
|
||
cacheURL = s.url.replace(rhash, "");
|
||
if (!s.hasContent) {
|
||
uncached = s.url.slice(cacheURL.length);
|
||
if (s.data && (s.processData || typeof s.data === "string")) {
|
||
cacheURL += (rquery.test(cacheURL) ? "&" : "?") + s.data;
|
||
delete s.data;
|
||
}
|
||
if (s.cache === false) {
|
||
cacheURL = cacheURL.replace(rantiCache, "$1");
|
||
uncached = (rquery.test(cacheURL) ? "&" : "?") + "_=" + nonce.guid++ + uncached;
|
||
}
|
||
s.url = cacheURL + uncached;
|
||
} else if (s.data && s.processData && (s.contentType || "").indexOf("application/x-www-form-urlencoded") === 0) {
|
||
s.data = s.data.replace(r20, "+");
|
||
}
|
||
if (s.ifModified) {
|
||
if (jQuery.lastModified[cacheURL]) {
|
||
jqXHR.setRequestHeader("If-Modified-Since", jQuery.lastModified[cacheURL]);
|
||
}
|
||
if (jQuery.etag[cacheURL]) {
|
||
jqXHR.setRequestHeader("If-None-Match", jQuery.etag[cacheURL]);
|
||
}
|
||
}
|
||
if (s.data && s.hasContent && s.contentType !== false || options.contentType) {
|
||
jqXHR.setRequestHeader("Content-Type", s.contentType);
|
||
}
|
||
jqXHR.setRequestHeader(
|
||
"Accept",
|
||
s.dataTypes[0] && s.accepts[s.dataTypes[0]] ? s.accepts[s.dataTypes[0]] + (s.dataTypes[0] !== "*" ? ", " + allTypes + "; q=0.01" : "") : s.accepts["*"]
|
||
);
|
||
for (i in s.headers) {
|
||
jqXHR.setRequestHeader(i, s.headers[i]);
|
||
}
|
||
if (s.beforeSend && (s.beforeSend.call(callbackContext, jqXHR, s) === false || completed2)) {
|
||
return jqXHR.abort();
|
||
}
|
||
strAbort = "abort";
|
||
completeDeferred.add(s.complete);
|
||
jqXHR.done(s.success);
|
||
jqXHR.fail(s.error);
|
||
transport = inspectPrefiltersOrTransports(transports, s, options, jqXHR);
|
||
if (!transport) {
|
||
done(-1, "No Transport");
|
||
} else {
|
||
jqXHR.readyState = 1;
|
||
if (fireGlobals) {
|
||
globalEventContext.trigger("ajaxSend", [jqXHR, s]);
|
||
}
|
||
if (completed2) {
|
||
return jqXHR;
|
||
}
|
||
if (s.async && s.timeout > 0) {
|
||
timeoutTimer = window2.setTimeout(function() {
|
||
jqXHR.abort("timeout");
|
||
}, s.timeout);
|
||
}
|
||
try {
|
||
completed2 = false;
|
||
transport.send(requestHeaders, done);
|
||
} catch (e) {
|
||
if (completed2) {
|
||
throw e;
|
||
}
|
||
done(-1, e);
|
||
}
|
||
}
|
||
function done(status, nativeStatusText, responses, headers) {
|
||
var isSuccess, success, error, response, modified, statusText = nativeStatusText;
|
||
if (completed2) {
|
||
return;
|
||
}
|
||
completed2 = true;
|
||
if (timeoutTimer) {
|
||
window2.clearTimeout(timeoutTimer);
|
||
}
|
||
transport = void 0;
|
||
responseHeadersString = headers || "";
|
||
jqXHR.readyState = status > 0 ? 4 : 0;
|
||
isSuccess = status >= 200 && status < 300 || status === 304;
|
||
if (responses) {
|
||
response = ajaxHandleResponses(s, jqXHR, responses);
|
||
}
|
||
if (!isSuccess && jQuery.inArray("script", s.dataTypes) > -1 && jQuery.inArray("json", s.dataTypes) < 0) {
|
||
s.converters["text script"] = function() {
|
||
};
|
||
}
|
||
response = ajaxConvert(s, response, jqXHR, isSuccess);
|
||
if (isSuccess) {
|
||
if (s.ifModified) {
|
||
modified = jqXHR.getResponseHeader("Last-Modified");
|
||
if (modified) {
|
||
jQuery.lastModified[cacheURL] = modified;
|
||
}
|
||
modified = jqXHR.getResponseHeader("etag");
|
||
if (modified) {
|
||
jQuery.etag[cacheURL] = modified;
|
||
}
|
||
}
|
||
if (status === 204 || s.type === "HEAD") {
|
||
statusText = "nocontent";
|
||
} else if (status === 304) {
|
||
statusText = "notmodified";
|
||
} else {
|
||
statusText = response.state;
|
||
success = response.data;
|
||
error = response.error;
|
||
isSuccess = !error;
|
||
}
|
||
} else {
|
||
error = statusText;
|
||
if (status || !statusText) {
|
||
statusText = "error";
|
||
if (status < 0) {
|
||
status = 0;
|
||
}
|
||
}
|
||
}
|
||
jqXHR.status = status;
|
||
jqXHR.statusText = (nativeStatusText || statusText) + "";
|
||
if (isSuccess) {
|
||
deferred.resolveWith(callbackContext, [success, statusText, jqXHR]);
|
||
} else {
|
||
deferred.rejectWith(callbackContext, [jqXHR, statusText, error]);
|
||
}
|
||
jqXHR.statusCode(statusCode);
|
||
statusCode = void 0;
|
||
if (fireGlobals) {
|
||
globalEventContext.trigger(
|
||
isSuccess ? "ajaxSuccess" : "ajaxError",
|
||
[jqXHR, s, isSuccess ? success : error]
|
||
);
|
||
}
|
||
completeDeferred.fireWith(callbackContext, [jqXHR, statusText]);
|
||
if (fireGlobals) {
|
||
globalEventContext.trigger("ajaxComplete", [jqXHR, s]);
|
||
if (!--jQuery.active) {
|
||
jQuery.event.trigger("ajaxStop");
|
||
}
|
||
}
|
||
}
|
||
return jqXHR;
|
||
},
|
||
getJSON: function(url, data, callback) {
|
||
return jQuery.get(url, data, callback, "json");
|
||
},
|
||
getScript: function(url, callback) {
|
||
return jQuery.get(url, void 0, callback, "script");
|
||
}
|
||
});
|
||
jQuery.each(["get", "post"], function(_i, method) {
|
||
jQuery[method] = function(url, data, callback, type) {
|
||
if (isFunction(data)) {
|
||
type = type || callback;
|
||
callback = data;
|
||
data = void 0;
|
||
}
|
||
return jQuery.ajax(jQuery.extend({
|
||
url,
|
||
type: method,
|
||
dataType: type,
|
||
data,
|
||
success: callback
|
||
}, jQuery.isPlainObject(url) && url));
|
||
};
|
||
});
|
||
jQuery.ajaxPrefilter(function(s) {
|
||
var i;
|
||
for (i in s.headers) {
|
||
if (i.toLowerCase() === "content-type") {
|
||
s.contentType = s.headers[i] || "";
|
||
}
|
||
}
|
||
});
|
||
jQuery._evalUrl = function(url, options, doc) {
|
||
return jQuery.ajax({
|
||
url,
|
||
// Make this explicit, since user can override this through ajaxSetup (trac-11264)
|
||
type: "GET",
|
||
dataType: "script",
|
||
cache: true,
|
||
async: false,
|
||
global: false,
|
||
// Only evaluate the response if it is successful (gh-4126)
|
||
// dataFilter is not invoked for failure responses, so using it instead
|
||
// of the default converter is kludgy but it works.
|
||
converters: {
|
||
"text script": function() {
|
||
}
|
||
},
|
||
dataFilter: function(response) {
|
||
jQuery.globalEval(response, options, doc);
|
||
}
|
||
});
|
||
};
|
||
jQuery.fn.extend({
|
||
wrapAll: function(html) {
|
||
var wrap;
|
||
if (this[0]) {
|
||
if (isFunction(html)) {
|
||
html = html.call(this[0]);
|
||
}
|
||
wrap = jQuery(html, this[0].ownerDocument).eq(0).clone(true);
|
||
if (this[0].parentNode) {
|
||
wrap.insertBefore(this[0]);
|
||
}
|
||
wrap.map(function() {
|
||
var elem = this;
|
||
while (elem.firstElementChild) {
|
||
elem = elem.firstElementChild;
|
||
}
|
||
return elem;
|
||
}).append(this);
|
||
}
|
||
return this;
|
||
},
|
||
wrapInner: function(html) {
|
||
if (isFunction(html)) {
|
||
return this.each(function(i) {
|
||
jQuery(this).wrapInner(html.call(this, i));
|
||
});
|
||
}
|
||
return this.each(function() {
|
||
var self2 = jQuery(this), contents = self2.contents();
|
||
if (contents.length) {
|
||
contents.wrapAll(html);
|
||
} else {
|
||
self2.append(html);
|
||
}
|
||
});
|
||
},
|
||
wrap: function(html) {
|
||
var htmlIsFunction = isFunction(html);
|
||
return this.each(function(i) {
|
||
jQuery(this).wrapAll(htmlIsFunction ? html.call(this, i) : html);
|
||
});
|
||
},
|
||
unwrap: function(selector) {
|
||
this.parent(selector).not("body").each(function() {
|
||
jQuery(this).replaceWith(this.childNodes);
|
||
});
|
||
return this;
|
||
}
|
||
});
|
||
jQuery.expr.pseudos.hidden = function(elem) {
|
||
return !jQuery.expr.pseudos.visible(elem);
|
||
};
|
||
jQuery.expr.pseudos.visible = function(elem) {
|
||
return !!(elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length);
|
||
};
|
||
jQuery.ajaxSettings.xhr = function() {
|
||
try {
|
||
return new window2.XMLHttpRequest();
|
||
} catch (e) {
|
||
}
|
||
};
|
||
var xhrSuccessStatus = {
|
||
// File protocol always yields status code 0, assume 200
|
||
0: 200,
|
||
// Support: IE <=9 only
|
||
// trac-1450: sometimes IE returns 1223 when it should be 204
|
||
1223: 204
|
||
}, xhrSupported = jQuery.ajaxSettings.xhr();
|
||
support.cors = !!xhrSupported && "withCredentials" in xhrSupported;
|
||
support.ajax = xhrSupported = !!xhrSupported;
|
||
jQuery.ajaxTransport(function(options) {
|
||
var callback, errorCallback;
|
||
if (support.cors || xhrSupported && !options.crossDomain) {
|
||
return {
|
||
send: function(headers, complete) {
|
||
var i, xhr = options.xhr();
|
||
xhr.open(
|
||
options.type,
|
||
options.url,
|
||
options.async,
|
||
options.username,
|
||
options.password
|
||
);
|
||
if (options.xhrFields) {
|
||
for (i in options.xhrFields) {
|
||
xhr[i] = options.xhrFields[i];
|
||
}
|
||
}
|
||
if (options.mimeType && xhr.overrideMimeType) {
|
||
xhr.overrideMimeType(options.mimeType);
|
||
}
|
||
if (!options.crossDomain && !headers["X-Requested-With"]) {
|
||
headers["X-Requested-With"] = "XMLHttpRequest";
|
||
}
|
||
for (i in headers) {
|
||
xhr.setRequestHeader(i, headers[i]);
|
||
}
|
||
callback = function(type) {
|
||
return function() {
|
||
if (callback) {
|
||
callback = errorCallback = xhr.onload = xhr.onerror = xhr.onabort = xhr.ontimeout = xhr.onreadystatechange = null;
|
||
if (type === "abort") {
|
||
xhr.abort();
|
||
} else if (type === "error") {
|
||
if (typeof xhr.status !== "number") {
|
||
complete(0, "error");
|
||
} else {
|
||
complete(
|
||
// File: protocol always yields status 0; see trac-8605, trac-14207
|
||
xhr.status,
|
||
xhr.statusText
|
||
);
|
||
}
|
||
} else {
|
||
complete(
|
||
xhrSuccessStatus[xhr.status] || xhr.status,
|
||
xhr.statusText,
|
||
// Support: IE <=9 only
|
||
// IE9 has no XHR2 but throws on binary (trac-11426)
|
||
// For XHR2 non-text, let the caller handle it (gh-2498)
|
||
(xhr.responseType || "text") !== "text" || typeof xhr.responseText !== "string" ? { binary: xhr.response } : { text: xhr.responseText },
|
||
xhr.getAllResponseHeaders()
|
||
);
|
||
}
|
||
}
|
||
};
|
||
};
|
||
xhr.onload = callback();
|
||
errorCallback = xhr.onerror = xhr.ontimeout = callback("error");
|
||
if (xhr.onabort !== void 0) {
|
||
xhr.onabort = errorCallback;
|
||
} else {
|
||
xhr.onreadystatechange = function() {
|
||
if (xhr.readyState === 4) {
|
||
window2.setTimeout(function() {
|
||
if (callback) {
|
||
errorCallback();
|
||
}
|
||
});
|
||
}
|
||
};
|
||
}
|
||
callback = callback("abort");
|
||
try {
|
||
xhr.send(options.hasContent && options.data || null);
|
||
} catch (e) {
|
||
if (callback) {
|
||
throw e;
|
||
}
|
||
}
|
||
},
|
||
abort: function() {
|
||
if (callback) {
|
||
callback();
|
||
}
|
||
}
|
||
};
|
||
}
|
||
});
|
||
jQuery.ajaxPrefilter(function(s) {
|
||
if (s.crossDomain) {
|
||
s.contents.script = false;
|
||
}
|
||
});
|
||
jQuery.ajaxSetup({
|
||
accepts: {
|
||
script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
|
||
},
|
||
contents: {
|
||
script: /\b(?:java|ecma)script\b/
|
||
},
|
||
converters: {
|
||
"text script": function(text) {
|
||
jQuery.globalEval(text);
|
||
return text;
|
||
}
|
||
}
|
||
});
|
||
jQuery.ajaxPrefilter("script", function(s) {
|
||
if (s.cache === void 0) {
|
||
s.cache = false;
|
||
}
|
||
if (s.crossDomain) {
|
||
s.type = "GET";
|
||
}
|
||
});
|
||
jQuery.ajaxTransport("script", function(s) {
|
||
if (s.crossDomain || s.scriptAttrs) {
|
||
var script, callback;
|
||
return {
|
||
send: function(_3, complete) {
|
||
script = jQuery("<script>").attr(s.scriptAttrs || {}).prop({ charset: s.scriptCharset, src: s.url }).on("load error", callback = function(evt) {
|
||
script.remove();
|
||
callback = null;
|
||
if (evt) {
|
||
complete(evt.type === "error" ? 404 : 200, evt.type);
|
||
}
|
||
});
|
||
document2.head.appendChild(script[0]);
|
||
},
|
||
abort: function() {
|
||
if (callback) {
|
||
callback();
|
||
}
|
||
}
|
||
};
|
||
}
|
||
});
|
||
var oldCallbacks = [], rjsonp = /(=)\?(?=&|$)|\?\?/;
|
||
jQuery.ajaxSetup({
|
||
jsonp: "callback",
|
||
jsonpCallback: function() {
|
||
var callback = oldCallbacks.pop() || jQuery.expando + "_" + nonce.guid++;
|
||
this[callback] = true;
|
||
return callback;
|
||
}
|
||
});
|
||
jQuery.ajaxPrefilter("json jsonp", function(s, originalSettings, jqXHR) {
|
||
var callbackName, overwritten, responseContainer, jsonProp = s.jsonp !== false && (rjsonp.test(s.url) ? "url" : typeof s.data === "string" && (s.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && rjsonp.test(s.data) && "data");
|
||
if (jsonProp || s.dataTypes[0] === "jsonp") {
|
||
callbackName = s.jsonpCallback = isFunction(s.jsonpCallback) ? s.jsonpCallback() : s.jsonpCallback;
|
||
if (jsonProp) {
|
||
s[jsonProp] = s[jsonProp].replace(rjsonp, "$1" + callbackName);
|
||
} else if (s.jsonp !== false) {
|
||
s.url += (rquery.test(s.url) ? "&" : "?") + s.jsonp + "=" + callbackName;
|
||
}
|
||
s.converters["script json"] = function() {
|
||
if (!responseContainer) {
|
||
jQuery.error(callbackName + " was not called");
|
||
}
|
||
return responseContainer[0];
|
||
};
|
||
s.dataTypes[0] = "json";
|
||
overwritten = window2[callbackName];
|
||
window2[callbackName] = function() {
|
||
responseContainer = arguments;
|
||
};
|
||
jqXHR.always(function() {
|
||
if (overwritten === void 0) {
|
||
jQuery(window2).removeProp(callbackName);
|
||
} else {
|
||
window2[callbackName] = overwritten;
|
||
}
|
||
if (s[callbackName]) {
|
||
s.jsonpCallback = originalSettings.jsonpCallback;
|
||
oldCallbacks.push(callbackName);
|
||
}
|
||
if (responseContainer && isFunction(overwritten)) {
|
||
overwritten(responseContainer[0]);
|
||
}
|
||
responseContainer = overwritten = void 0;
|
||
});
|
||
return "script";
|
||
}
|
||
});
|
||
support.createHTMLDocument = function() {
|
||
var body = document2.implementation.createHTMLDocument("").body;
|
||
body.innerHTML = "<form></form><form></form>";
|
||
return body.childNodes.length === 2;
|
||
}();
|
||
jQuery.parseHTML = function(data, context, keepScripts) {
|
||
if (typeof data !== "string") {
|
||
return [];
|
||
}
|
||
if (typeof context === "boolean") {
|
||
keepScripts = context;
|
||
context = false;
|
||
}
|
||
var base, parsed, scripts;
|
||
if (!context) {
|
||
if (support.createHTMLDocument) {
|
||
context = document2.implementation.createHTMLDocument("");
|
||
base = context.createElement("base");
|
||
base.href = document2.location.href;
|
||
context.head.appendChild(base);
|
||
} else {
|
||
context = document2;
|
||
}
|
||
}
|
||
parsed = rsingleTag.exec(data);
|
||
scripts = !keepScripts && [];
|
||
if (parsed) {
|
||
return [context.createElement(parsed[1])];
|
||
}
|
||
parsed = buildFragment([data], context, scripts);
|
||
if (scripts && scripts.length) {
|
||
jQuery(scripts).remove();
|
||
}
|
||
return jQuery.merge([], parsed.childNodes);
|
||
};
|
||
jQuery.fn.load = function(url, params, callback) {
|
||
var selector, type, response, self2 = this, off = url.indexOf(" ");
|
||
if (off > -1) {
|
||
selector = stripAndCollapse(url.slice(off));
|
||
url = url.slice(0, off);
|
||
}
|
||
if (isFunction(params)) {
|
||
callback = params;
|
||
params = void 0;
|
||
} else if (params && typeof params === "object") {
|
||
type = "POST";
|
||
}
|
||
if (self2.length > 0) {
|
||
jQuery.ajax({
|
||
url,
|
||
// If "type" variable is undefined, then "GET" method will be used.
|
||
// Make value of this field explicit since
|
||
// user can override it through ajaxSetup method
|
||
type: type || "GET",
|
||
dataType: "html",
|
||
data: params
|
||
}).done(function(responseText) {
|
||
response = arguments;
|
||
self2.html(selector ? (
|
||
// If a selector was specified, locate the right elements in a dummy div
|
||
// Exclude scripts to avoid IE 'Permission Denied' errors
|
||
jQuery("<div>").append(jQuery.parseHTML(responseText)).find(selector)
|
||
) : (
|
||
// Otherwise use the full result
|
||
responseText
|
||
));
|
||
}).always(callback && function(jqXHR, status) {
|
||
self2.each(function() {
|
||
callback.apply(this, response || [jqXHR.responseText, status, jqXHR]);
|
||
});
|
||
});
|
||
}
|
||
return this;
|
||
};
|
||
jQuery.expr.pseudos.animated = function(elem) {
|
||
return jQuery.grep(jQuery.timers, function(fn) {
|
||
return elem === fn.elem;
|
||
}).length;
|
||
};
|
||
jQuery.offset = {
|
||
setOffset: function(elem, options, i) {
|
||
var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition, position = jQuery.css(elem, "position"), curElem = jQuery(elem), props = {};
|
||
if (position === "static") {
|
||
elem.style.position = "relative";
|
||
}
|
||
curOffset = curElem.offset();
|
||
curCSSTop = jQuery.css(elem, "top");
|
||
curCSSLeft = jQuery.css(elem, "left");
|
||
calculatePosition = (position === "absolute" || position === "fixed") && (curCSSTop + curCSSLeft).indexOf("auto") > -1;
|
||
if (calculatePosition) {
|
||
curPosition = curElem.position();
|
||
curTop = curPosition.top;
|
||
curLeft = curPosition.left;
|
||
} else {
|
||
curTop = parseFloat(curCSSTop) || 0;
|
||
curLeft = parseFloat(curCSSLeft) || 0;
|
||
}
|
||
if (isFunction(options)) {
|
||
options = options.call(elem, i, jQuery.extend({}, curOffset));
|
||
}
|
||
if (options.top != null) {
|
||
props.top = options.top - curOffset.top + curTop;
|
||
}
|
||
if (options.left != null) {
|
||
props.left = options.left - curOffset.left + curLeft;
|
||
}
|
||
if ("using" in options) {
|
||
options.using.call(elem, props);
|
||
} else {
|
||
curElem.css(props);
|
||
}
|
||
}
|
||
};
|
||
jQuery.fn.extend({
|
||
// offset() relates an element's border box to the document origin
|
||
offset: function(options) {
|
||
if (arguments.length) {
|
||
return options === void 0 ? this : this.each(function(i) {
|
||
jQuery.offset.setOffset(this, options, i);
|
||
});
|
||
}
|
||
var rect, win, elem = this[0];
|
||
if (!elem) {
|
||
return;
|
||
}
|
||
if (!elem.getClientRects().length) {
|
||
return { top: 0, left: 0 };
|
||
}
|
||
rect = elem.getBoundingClientRect();
|
||
win = elem.ownerDocument.defaultView;
|
||
return {
|
||
top: rect.top + win.pageYOffset,
|
||
left: rect.left + win.pageXOffset
|
||
};
|
||
},
|
||
// position() relates an element's margin box to its offset parent's padding box
|
||
// This corresponds to the behavior of CSS absolute positioning
|
||
position: function() {
|
||
if (!this[0]) {
|
||
return;
|
||
}
|
||
var offsetParent, offset, doc, elem = this[0], parentOffset = { top: 0, left: 0 };
|
||
if (jQuery.css(elem, "position") === "fixed") {
|
||
offset = elem.getBoundingClientRect();
|
||
} else {
|
||
offset = this.offset();
|
||
doc = elem.ownerDocument;
|
||
offsetParent = elem.offsetParent || doc.documentElement;
|
||
while (offsetParent && (offsetParent === doc.body || offsetParent === doc.documentElement) && jQuery.css(offsetParent, "position") === "static") {
|
||
offsetParent = offsetParent.parentNode;
|
||
}
|
||
if (offsetParent && offsetParent !== elem && offsetParent.nodeType === 1) {
|
||
parentOffset = jQuery(offsetParent).offset();
|
||
parentOffset.top += jQuery.css(offsetParent, "borderTopWidth", true);
|
||
parentOffset.left += jQuery.css(offsetParent, "borderLeftWidth", true);
|
||
}
|
||
}
|
||
return {
|
||
top: offset.top - parentOffset.top - jQuery.css(elem, "marginTop", true),
|
||
left: offset.left - parentOffset.left - jQuery.css(elem, "marginLeft", true)
|
||
};
|
||
},
|
||
// This method will return documentElement in the following cases:
|
||
// 1) For the element inside the iframe without offsetParent, this method will return
|
||
// documentElement of the parent window
|
||
// 2) For the hidden or detached element
|
||
// 3) For body or html element, i.e. in case of the html node - it will return itself
|
||
//
|
||
// but those exceptions were never presented as a real life use-cases
|
||
// and might be considered as more preferable results.
|
||
//
|
||
// This logic, however, is not guaranteed and can change at any point in the future
|
||
offsetParent: function() {
|
||
return this.map(function() {
|
||
var offsetParent = this.offsetParent;
|
||
while (offsetParent && jQuery.css(offsetParent, "position") === "static") {
|
||
offsetParent = offsetParent.offsetParent;
|
||
}
|
||
return offsetParent || documentElement;
|
||
});
|
||
}
|
||
});
|
||
jQuery.each({ scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(method, prop) {
|
||
var top = "pageYOffset" === prop;
|
||
jQuery.fn[method] = function(val) {
|
||
return access(this, function(elem, method2, val2) {
|
||
var win;
|
||
if (isWindow(elem)) {
|
||
win = elem;
|
||
} else if (elem.nodeType === 9) {
|
||
win = elem.defaultView;
|
||
}
|
||
if (val2 === void 0) {
|
||
return win ? win[prop] : elem[method2];
|
||
}
|
||
if (win) {
|
||
win.scrollTo(
|
||
!top ? val2 : win.pageXOffset,
|
||
top ? val2 : win.pageYOffset
|
||
);
|
||
} else {
|
||
elem[method2] = val2;
|
||
}
|
||
}, method, val, arguments.length);
|
||
};
|
||
});
|
||
jQuery.each(["top", "left"], function(_i, prop) {
|
||
jQuery.cssHooks[prop] = addGetHookIf(
|
||
support.pixelPosition,
|
||
function(elem, computed) {
|
||
if (computed) {
|
||
computed = curCSS(elem, prop);
|
||
return rnumnonpx.test(computed) ? jQuery(elem).position()[prop] + "px" : computed;
|
||
}
|
||
}
|
||
);
|
||
});
|
||
jQuery.each({ Height: "height", Width: "width" }, function(name, type) {
|
||
jQuery.each({
|
||
padding: "inner" + name,
|
||
content: type,
|
||
"": "outer" + name
|
||
}, function(defaultExtra, funcName) {
|
||
jQuery.fn[funcName] = function(margin, value) {
|
||
var chainable = arguments.length && (defaultExtra || typeof margin !== "boolean"), extra = defaultExtra || (margin === true || value === true ? "margin" : "border");
|
||
return access(this, function(elem, type2, value2) {
|
||
var doc;
|
||
if (isWindow(elem)) {
|
||
return funcName.indexOf("outer") === 0 ? elem["inner" + name] : elem.document.documentElement["client" + name];
|
||
}
|
||
if (elem.nodeType === 9) {
|
||
doc = elem.documentElement;
|
||
return Math.max(
|
||
elem.body["scroll" + name],
|
||
doc["scroll" + name],
|
||
elem.body["offset" + name],
|
||
doc["offset" + name],
|
||
doc["client" + name]
|
||
);
|
||
}
|
||
return value2 === void 0 ? (
|
||
// Get width or height on the element, requesting but not forcing parseFloat
|
||
jQuery.css(elem, type2, extra)
|
||
) : (
|
||
// Set width or height on the element
|
||
jQuery.style(elem, type2, value2, extra)
|
||
);
|
||
}, type, chainable ? margin : void 0, chainable);
|
||
};
|
||
});
|
||
});
|
||
jQuery.each([
|
||
"ajaxStart",
|
||
"ajaxStop",
|
||
"ajaxComplete",
|
||
"ajaxError",
|
||
"ajaxSuccess",
|
||
"ajaxSend"
|
||
], function(_i, type) {
|
||
jQuery.fn[type] = function(fn) {
|
||
return this.on(type, fn);
|
||
};
|
||
});
|
||
jQuery.fn.extend({
|
||
bind: function(types, data, fn) {
|
||
return this.on(types, null, data, fn);
|
||
},
|
||
unbind: function(types, fn) {
|
||
return this.off(types, null, fn);
|
||
},
|
||
delegate: function(selector, types, data, fn) {
|
||
return this.on(types, selector, data, fn);
|
||
},
|
||
undelegate: function(selector, types, fn) {
|
||
return arguments.length === 1 ? this.off(selector, "**") : this.off(types, selector || "**", fn);
|
||
},
|
||
hover: function(fnOver, fnOut) {
|
||
return this.mouseenter(fnOver).mouseleave(fnOut || fnOver);
|
||
}
|
||
});
|
||
jQuery.each(
|
||
"blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),
|
||
function(_i, name) {
|
||
jQuery.fn[name] = function(data, fn) {
|
||
return arguments.length > 0 ? this.on(name, null, data, fn) : this.trigger(name);
|
||
};
|
||
}
|
||
);
|
||
var rtrim = /^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;
|
||
jQuery.proxy = function(fn, context) {
|
||
var tmp, args, proxy;
|
||
if (typeof context === "string") {
|
||
tmp = fn[context];
|
||
context = fn;
|
||
fn = tmp;
|
||
}
|
||
if (!isFunction(fn)) {
|
||
return void 0;
|
||
}
|
||
args = slice.call(arguments, 2);
|
||
proxy = function() {
|
||
return fn.apply(context || this, args.concat(slice.call(arguments)));
|
||
};
|
||
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
|
||
return proxy;
|
||
};
|
||
jQuery.holdReady = function(hold) {
|
||
if (hold) {
|
||
jQuery.readyWait++;
|
||
} else {
|
||
jQuery.ready(true);
|
||
}
|
||
};
|
||
jQuery.isArray = Array.isArray;
|
||
jQuery.parseJSON = JSON.parse;
|
||
jQuery.nodeName = nodeName;
|
||
jQuery.isFunction = isFunction;
|
||
jQuery.isWindow = isWindow;
|
||
jQuery.camelCase = camelCase;
|
||
jQuery.type = toType;
|
||
jQuery.now = Date.now;
|
||
jQuery.isNumeric = function(obj) {
|
||
var type = jQuery.type(obj);
|
||
return (type === "number" || type === "string") && // parseFloat NaNs numeric-cast false positives ("")
|
||
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
|
||
// subtraction forces infinities to NaN
|
||
!isNaN(obj - parseFloat(obj));
|
||
};
|
||
jQuery.trim = function(text) {
|
||
return text == null ? "" : (text + "").replace(rtrim, "$1");
|
||
};
|
||
if (typeof define === "function" && define.amd) {
|
||
define("jquery", [], function() {
|
||
return jQuery;
|
||
});
|
||
}
|
||
var _jQuery = window2.jQuery, _$ = window2.$;
|
||
jQuery.noConflict = function(deep) {
|
||
if (window2.$ === jQuery) {
|
||
window2.$ = _$;
|
||
}
|
||
if (deep && window2.jQuery === jQuery) {
|
||
window2.jQuery = _jQuery;
|
||
}
|
||
return jQuery;
|
||
};
|
||
if (typeof noGlobal === "undefined") {
|
||
window2.jQuery = window2.$ = jQuery;
|
||
}
|
||
return jQuery;
|
||
});
|
||
}
|
||
});
|
||
|
||
// node_modules/react/cjs/react-jsx-runtime.development.js
|
||
var require_react_jsx_runtime_development = __commonJS({
|
||
"node_modules/react/cjs/react-jsx-runtime.development.js"(exports) {
|
||
"use strict";
|
||
if (true) {
|
||
(function() {
|
||
"use strict";
|
||
var React3 = require_react();
|
||
var REACT_ELEMENT_TYPE = Symbol.for("react.element");
|
||
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
||
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
||
var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
|
||
var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
||
var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
|
||
var REACT_CONTEXT_TYPE = Symbol.for("react.context");
|
||
var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
|
||
var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
|
||
var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
|
||
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
||
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
||
function getIteratorFn(maybeIterable) {
|
||
if (maybeIterable === null || typeof maybeIterable !== "object") {
|
||
return null;
|
||
}
|
||
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
||
if (typeof maybeIterator === "function") {
|
||
return maybeIterator;
|
||
}
|
||
return null;
|
||
}
|
||
var ReactSharedInternals = React3.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
||
function error(format) {
|
||
{
|
||
{
|
||
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
||
args[_key2 - 1] = arguments[_key2];
|
||
}
|
||
printWarning("error", format, args);
|
||
}
|
||
}
|
||
}
|
||
function printWarning(level, format, args) {
|
||
{
|
||
var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
var stack = ReactDebugCurrentFrame2.getStackAddendum();
|
||
if (stack !== "") {
|
||
format += "%s";
|
||
args = args.concat([stack]);
|
||
}
|
||
var argsWithFormat = args.map(function(item) {
|
||
return String(item);
|
||
});
|
||
argsWithFormat.unshift("Warning: " + format);
|
||
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
||
}
|
||
}
|
||
var enableScopeAPI = false;
|
||
var enableCacheElement = false;
|
||
var enableTransitionTracing = false;
|
||
var enableLegacyHidden = false;
|
||
var enableDebugTracing = false;
|
||
var REACT_MODULE_REFERENCE;
|
||
{
|
||
REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
|
||
}
|
||
function isValidElementType(type) {
|
||
if (typeof type === "string" || typeof type === "function") {
|
||
return true;
|
||
}
|
||
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
|
||
return true;
|
||
}
|
||
if (typeof type === "object" && type !== null) {
|
||
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
||
// types supported by any Flight configuration anywhere since
|
||
// we don't know which Flight build this will end up being used
|
||
// with.
|
||
type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== void 0) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function getWrappedName(outerType, innerType, wrapperName) {
|
||
var displayName = outerType.displayName;
|
||
if (displayName) {
|
||
return displayName;
|
||
}
|
||
var functionName = innerType.displayName || innerType.name || "";
|
||
return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
|
||
}
|
||
function getContextName(type) {
|
||
return type.displayName || "Context";
|
||
}
|
||
function getComponentNameFromType(type) {
|
||
if (type == null) {
|
||
return null;
|
||
}
|
||
{
|
||
if (typeof type.tag === "number") {
|
||
error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
if (typeof type === "function") {
|
||
return type.displayName || type.name || null;
|
||
}
|
||
if (typeof type === "string") {
|
||
return type;
|
||
}
|
||
switch (type) {
|
||
case REACT_FRAGMENT_TYPE:
|
||
return "Fragment";
|
||
case REACT_PORTAL_TYPE:
|
||
return "Portal";
|
||
case REACT_PROFILER_TYPE:
|
||
return "Profiler";
|
||
case REACT_STRICT_MODE_TYPE:
|
||
return "StrictMode";
|
||
case REACT_SUSPENSE_TYPE:
|
||
return "Suspense";
|
||
case REACT_SUSPENSE_LIST_TYPE:
|
||
return "SuspenseList";
|
||
}
|
||
if (typeof type === "object") {
|
||
switch (type.$$typeof) {
|
||
case REACT_CONTEXT_TYPE:
|
||
var context = type;
|
||
return getContextName(context) + ".Consumer";
|
||
case REACT_PROVIDER_TYPE:
|
||
var provider = type;
|
||
return getContextName(provider._context) + ".Provider";
|
||
case REACT_FORWARD_REF_TYPE:
|
||
return getWrappedName(type, type.render, "ForwardRef");
|
||
case REACT_MEMO_TYPE:
|
||
var outerName = type.displayName || null;
|
||
if (outerName !== null) {
|
||
return outerName;
|
||
}
|
||
return getComponentNameFromType(type.type) || "Memo";
|
||
case REACT_LAZY_TYPE: {
|
||
var lazyComponent = type;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
try {
|
||
return getComponentNameFromType(init(payload));
|
||
} catch (x) {
|
||
return null;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
var assign = Object.assign;
|
||
var disabledDepth = 0;
|
||
var prevLog;
|
||
var prevInfo;
|
||
var prevWarn;
|
||
var prevError;
|
||
var prevGroup;
|
||
var prevGroupCollapsed;
|
||
var prevGroupEnd;
|
||
function disabledLog() {
|
||
}
|
||
disabledLog.__reactDisabledLog = true;
|
||
function disableLogs() {
|
||
{
|
||
if (disabledDepth === 0) {
|
||
prevLog = console.log;
|
||
prevInfo = console.info;
|
||
prevWarn = console.warn;
|
||
prevError = console.error;
|
||
prevGroup = console.group;
|
||
prevGroupCollapsed = console.groupCollapsed;
|
||
prevGroupEnd = console.groupEnd;
|
||
var props = {
|
||
configurable: true,
|
||
enumerable: true,
|
||
value: disabledLog,
|
||
writable: true
|
||
};
|
||
Object.defineProperties(console, {
|
||
info: props,
|
||
log: props,
|
||
warn: props,
|
||
error: props,
|
||
group: props,
|
||
groupCollapsed: props,
|
||
groupEnd: props
|
||
});
|
||
}
|
||
disabledDepth++;
|
||
}
|
||
}
|
||
function reenableLogs() {
|
||
{
|
||
disabledDepth--;
|
||
if (disabledDepth === 0) {
|
||
var props = {
|
||
configurable: true,
|
||
enumerable: true,
|
||
writable: true
|
||
};
|
||
Object.defineProperties(console, {
|
||
log: assign({}, props, {
|
||
value: prevLog
|
||
}),
|
||
info: assign({}, props, {
|
||
value: prevInfo
|
||
}),
|
||
warn: assign({}, props, {
|
||
value: prevWarn
|
||
}),
|
||
error: assign({}, props, {
|
||
value: prevError
|
||
}),
|
||
group: assign({}, props, {
|
||
value: prevGroup
|
||
}),
|
||
groupCollapsed: assign({}, props, {
|
||
value: prevGroupCollapsed
|
||
}),
|
||
groupEnd: assign({}, props, {
|
||
value: prevGroupEnd
|
||
})
|
||
});
|
||
}
|
||
if (disabledDepth < 0) {
|
||
error("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
||
}
|
||
}
|
||
}
|
||
var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
|
||
var prefix2;
|
||
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
||
{
|
||
if (prefix2 === void 0) {
|
||
try {
|
||
throw Error();
|
||
} catch (x) {
|
||
var match = x.stack.trim().match(/\n( *(at )?)/);
|
||
prefix2 = match && match[1] || "";
|
||
}
|
||
}
|
||
return "\n" + prefix2 + name;
|
||
}
|
||
}
|
||
var reentry = false;
|
||
var componentFrameCache;
|
||
{
|
||
var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
|
||
componentFrameCache = new PossiblyWeakMap();
|
||
}
|
||
function describeNativeComponentFrame(fn, construct) {
|
||
if (!fn || reentry) {
|
||
return "";
|
||
}
|
||
{
|
||
var frame = componentFrameCache.get(fn);
|
||
if (frame !== void 0) {
|
||
return frame;
|
||
}
|
||
}
|
||
var control;
|
||
reentry = true;
|
||
var previousPrepareStackTrace = Error.prepareStackTrace;
|
||
Error.prepareStackTrace = void 0;
|
||
var previousDispatcher;
|
||
{
|
||
previousDispatcher = ReactCurrentDispatcher.current;
|
||
ReactCurrentDispatcher.current = null;
|
||
disableLogs();
|
||
}
|
||
try {
|
||
if (construct) {
|
||
var Fake = function() {
|
||
throw Error();
|
||
};
|
||
Object.defineProperty(Fake.prototype, "props", {
|
||
set: function() {
|
||
throw Error();
|
||
}
|
||
});
|
||
if (typeof Reflect === "object" && Reflect.construct) {
|
||
try {
|
||
Reflect.construct(Fake, []);
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
Reflect.construct(fn, [], Fake);
|
||
} else {
|
||
try {
|
||
Fake.call();
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
fn.call(Fake.prototype);
|
||
}
|
||
} else {
|
||
try {
|
||
throw Error();
|
||
} catch (x) {
|
||
control = x;
|
||
}
|
||
fn();
|
||
}
|
||
} catch (sample) {
|
||
if (sample && control && typeof sample.stack === "string") {
|
||
var sampleLines = sample.stack.split("\n");
|
||
var controlLines = control.stack.split("\n");
|
||
var s = sampleLines.length - 1;
|
||
var c = controlLines.length - 1;
|
||
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
||
c--;
|
||
}
|
||
for (; s >= 1 && c >= 0; s--, c--) {
|
||
if (sampleLines[s] !== controlLines[c]) {
|
||
if (s !== 1 || c !== 1) {
|
||
do {
|
||
s--;
|
||
c--;
|
||
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
||
var _frame = "\n" + sampleLines[s].replace(" at new ", " at ");
|
||
if (fn.displayName && _frame.includes("<anonymous>")) {
|
||
_frame = _frame.replace("<anonymous>", fn.displayName);
|
||
}
|
||
{
|
||
if (typeof fn === "function") {
|
||
componentFrameCache.set(fn, _frame);
|
||
}
|
||
}
|
||
return _frame;
|
||
}
|
||
} while (s >= 1 && c >= 0);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
} finally {
|
||
reentry = false;
|
||
{
|
||
ReactCurrentDispatcher.current = previousDispatcher;
|
||
reenableLogs();
|
||
}
|
||
Error.prepareStackTrace = previousPrepareStackTrace;
|
||
}
|
||
var name = fn ? fn.displayName || fn.name : "";
|
||
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
|
||
{
|
||
if (typeof fn === "function") {
|
||
componentFrameCache.set(fn, syntheticFrame);
|
||
}
|
||
}
|
||
return syntheticFrame;
|
||
}
|
||
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
||
{
|
||
return describeNativeComponentFrame(fn, false);
|
||
}
|
||
}
|
||
function shouldConstruct(Component2) {
|
||
var prototype = Component2.prototype;
|
||
return !!(prototype && prototype.isReactComponent);
|
||
}
|
||
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
||
if (type == null) {
|
||
return "";
|
||
}
|
||
if (typeof type === "function") {
|
||
{
|
||
return describeNativeComponentFrame(type, shouldConstruct(type));
|
||
}
|
||
}
|
||
if (typeof type === "string") {
|
||
return describeBuiltInComponentFrame(type);
|
||
}
|
||
switch (type) {
|
||
case REACT_SUSPENSE_TYPE:
|
||
return describeBuiltInComponentFrame("Suspense");
|
||
case REACT_SUSPENSE_LIST_TYPE:
|
||
return describeBuiltInComponentFrame("SuspenseList");
|
||
}
|
||
if (typeof type === "object") {
|
||
switch (type.$$typeof) {
|
||
case REACT_FORWARD_REF_TYPE:
|
||
return describeFunctionComponentFrame(type.render);
|
||
case REACT_MEMO_TYPE:
|
||
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
||
case REACT_LAZY_TYPE: {
|
||
var lazyComponent = type;
|
||
var payload = lazyComponent._payload;
|
||
var init = lazyComponent._init;
|
||
try {
|
||
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
||
} catch (x) {
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return "";
|
||
}
|
||
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
||
var loggedTypeFailures = {};
|
||
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
function setCurrentlyValidatingElement(element) {
|
||
{
|
||
if (element) {
|
||
var owner = element._owner;
|
||
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
||
ReactDebugCurrentFrame.setExtraStackFrame(stack);
|
||
} else {
|
||
ReactDebugCurrentFrame.setExtraStackFrame(null);
|
||
}
|
||
}
|
||
}
|
||
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
||
{
|
||
var has2 = Function.call.bind(hasOwnProperty);
|
||
for (var typeSpecName in typeSpecs) {
|
||
if (has2(typeSpecs, typeSpecName)) {
|
||
var error$1 = void 0;
|
||
try {
|
||
if (typeof typeSpecs[typeSpecName] !== "function") {
|
||
var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
||
err.name = "Invariant Violation";
|
||
throw err;
|
||
}
|
||
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
||
} catch (ex) {
|
||
error$1 = ex;
|
||
}
|
||
if (error$1 && !(error$1 instanceof Error)) {
|
||
setCurrentlyValidatingElement(element);
|
||
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1);
|
||
setCurrentlyValidatingElement(null);
|
||
}
|
||
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
||
loggedTypeFailures[error$1.message] = true;
|
||
setCurrentlyValidatingElement(element);
|
||
error("Failed %s type: %s", location, error$1.message);
|
||
setCurrentlyValidatingElement(null);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var isArrayImpl = Array.isArray;
|
||
function isArray(a) {
|
||
return isArrayImpl(a);
|
||
}
|
||
function typeName(value) {
|
||
{
|
||
var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
|
||
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
||
return type;
|
||
}
|
||
}
|
||
function willCoercionThrow(value) {
|
||
{
|
||
try {
|
||
testStringCoercion(value);
|
||
return false;
|
||
} catch (e) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
function testStringCoercion(value) {
|
||
return "" + value;
|
||
}
|
||
function checkKeyStringCoercion(value) {
|
||
{
|
||
if (willCoercionThrow(value)) {
|
||
error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value));
|
||
return testStringCoercion(value);
|
||
}
|
||
}
|
||
}
|
||
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
|
||
var RESERVED_PROPS = {
|
||
key: true,
|
||
ref: true,
|
||
__self: true,
|
||
__source: true
|
||
};
|
||
var specialPropKeyWarningShown;
|
||
var specialPropRefWarningShown;
|
||
var didWarnAboutStringRefs;
|
||
{
|
||
didWarnAboutStringRefs = {};
|
||
}
|
||
function hasValidRef(config) {
|
||
{
|
||
if (hasOwnProperty.call(config, "ref")) {
|
||
var getter = Object.getOwnPropertyDescriptor(config, "ref").get;
|
||
if (getter && getter.isReactWarning) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
return config.ref !== void 0;
|
||
}
|
||
function hasValidKey(config) {
|
||
{
|
||
if (hasOwnProperty.call(config, "key")) {
|
||
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
||
if (getter && getter.isReactWarning) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
return config.key !== void 0;
|
||
}
|
||
function warnIfStringRefCannotBeAutoConverted(config, self2) {
|
||
{
|
||
if (typeof config.ref === "string" && ReactCurrentOwner.current && self2 && ReactCurrentOwner.current.stateNode !== self2) {
|
||
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
|
||
if (!didWarnAboutStringRefs[componentName]) {
|
||
error('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);
|
||
didWarnAboutStringRefs[componentName] = true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function defineKeyPropWarningGetter(props, displayName) {
|
||
{
|
||
var warnAboutAccessingKey = function() {
|
||
if (!specialPropKeyWarningShown) {
|
||
specialPropKeyWarningShown = true;
|
||
error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
|
||
}
|
||
};
|
||
warnAboutAccessingKey.isReactWarning = true;
|
||
Object.defineProperty(props, "key", {
|
||
get: warnAboutAccessingKey,
|
||
configurable: true
|
||
});
|
||
}
|
||
}
|
||
function defineRefPropWarningGetter(props, displayName) {
|
||
{
|
||
var warnAboutAccessingRef = function() {
|
||
if (!specialPropRefWarningShown) {
|
||
specialPropRefWarningShown = true;
|
||
error("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
|
||
}
|
||
};
|
||
warnAboutAccessingRef.isReactWarning = true;
|
||
Object.defineProperty(props, "ref", {
|
||
get: warnAboutAccessingRef,
|
||
configurable: true
|
||
});
|
||
}
|
||
}
|
||
var ReactElement = function(type, key, ref, self2, source, owner, props) {
|
||
var element = {
|
||
// This tag allows us to uniquely identify this as a React Element
|
||
$$typeof: REACT_ELEMENT_TYPE,
|
||
// Built-in properties that belong on the element
|
||
type,
|
||
key,
|
||
ref,
|
||
props,
|
||
// Record the component responsible for creating this element.
|
||
_owner: owner
|
||
};
|
||
{
|
||
element._store = {};
|
||
Object.defineProperty(element._store, "validated", {
|
||
configurable: false,
|
||
enumerable: false,
|
||
writable: true,
|
||
value: false
|
||
});
|
||
Object.defineProperty(element, "_self", {
|
||
configurable: false,
|
||
enumerable: false,
|
||
writable: false,
|
||
value: self2
|
||
});
|
||
Object.defineProperty(element, "_source", {
|
||
configurable: false,
|
||
enumerable: false,
|
||
writable: false,
|
||
value: source
|
||
});
|
||
if (Object.freeze) {
|
||
Object.freeze(element.props);
|
||
Object.freeze(element);
|
||
}
|
||
}
|
||
return element;
|
||
};
|
||
function jsxDEV(type, config, maybeKey, source, self2) {
|
||
{
|
||
var propName;
|
||
var props = {};
|
||
var key = null;
|
||
var ref = null;
|
||
if (maybeKey !== void 0) {
|
||
{
|
||
checkKeyStringCoercion(maybeKey);
|
||
}
|
||
key = "" + maybeKey;
|
||
}
|
||
if (hasValidKey(config)) {
|
||
{
|
||
checkKeyStringCoercion(config.key);
|
||
}
|
||
key = "" + config.key;
|
||
}
|
||
if (hasValidRef(config)) {
|
||
ref = config.ref;
|
||
warnIfStringRefCannotBeAutoConverted(config, self2);
|
||
}
|
||
for (propName in config) {
|
||
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
||
props[propName] = config[propName];
|
||
}
|
||
}
|
||
if (type && type.defaultProps) {
|
||
var defaultProps = type.defaultProps;
|
||
for (propName in defaultProps) {
|
||
if (props[propName] === void 0) {
|
||
props[propName] = defaultProps[propName];
|
||
}
|
||
}
|
||
}
|
||
if (key || ref) {
|
||
var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type;
|
||
if (key) {
|
||
defineKeyPropWarningGetter(props, displayName);
|
||
}
|
||
if (ref) {
|
||
defineRefPropWarningGetter(props, displayName);
|
||
}
|
||
}
|
||
return ReactElement(type, key, ref, self2, source, ReactCurrentOwner.current, props);
|
||
}
|
||
}
|
||
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
|
||
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
||
function setCurrentlyValidatingElement$1(element) {
|
||
{
|
||
if (element) {
|
||
var owner = element._owner;
|
||
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
||
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
||
} else {
|
||
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
||
}
|
||
}
|
||
}
|
||
var propTypesMisspellWarningShown;
|
||
{
|
||
propTypesMisspellWarningShown = false;
|
||
}
|
||
function isValidElement(object) {
|
||
{
|
||
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
||
}
|
||
}
|
||
function getDeclarationErrorAddendum() {
|
||
{
|
||
if (ReactCurrentOwner$1.current) {
|
||
var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
|
||
if (name) {
|
||
return "\n\nCheck the render method of `" + name + "`.";
|
||
}
|
||
}
|
||
return "";
|
||
}
|
||
}
|
||
function getSourceInfoErrorAddendum(source) {
|
||
{
|
||
if (source !== void 0) {
|
||
var fileName = source.fileName.replace(/^.*[\\\/]/, "");
|
||
var lineNumber = source.lineNumber;
|
||
return "\n\nCheck your code at " + fileName + ":" + lineNumber + ".";
|
||
}
|
||
return "";
|
||
}
|
||
}
|
||
var ownerHasKeyUseWarning = {};
|
||
function getCurrentComponentErrorInfo(parentType) {
|
||
{
|
||
var info = getDeclarationErrorAddendum();
|
||
if (!info) {
|
||
var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name;
|
||
if (parentName) {
|
||
info = "\n\nCheck the top-level render call using <" + parentName + ">.";
|
||
}
|
||
}
|
||
return info;
|
||
}
|
||
}
|
||
function validateExplicitKey(element, parentType) {
|
||
{
|
||
if (!element._store || element._store.validated || element.key != null) {
|
||
return;
|
||
}
|
||
element._store.validated = true;
|
||
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
||
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
|
||
return;
|
||
}
|
||
ownerHasKeyUseWarning[currentComponentErrorInfo] = true;
|
||
var childOwner = "";
|
||
if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
|
||
childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
|
||
}
|
||
setCurrentlyValidatingElement$1(element);
|
||
error('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
|
||
setCurrentlyValidatingElement$1(null);
|
||
}
|
||
}
|
||
function validateChildKeys(node, parentType) {
|
||
{
|
||
if (typeof node !== "object") {
|
||
return;
|
||
}
|
||
if (isArray(node)) {
|
||
for (var i = 0; i < node.length; i++) {
|
||
var child = node[i];
|
||
if (isValidElement(child)) {
|
||
validateExplicitKey(child, parentType);
|
||
}
|
||
}
|
||
} else if (isValidElement(node)) {
|
||
if (node._store) {
|
||
node._store.validated = true;
|
||
}
|
||
} else if (node) {
|
||
var iteratorFn = getIteratorFn(node);
|
||
if (typeof iteratorFn === "function") {
|
||
if (iteratorFn !== node.entries) {
|
||
var iterator = iteratorFn.call(node);
|
||
var step;
|
||
while (!(step = iterator.next()).done) {
|
||
if (isValidElement(step.value)) {
|
||
validateExplicitKey(step.value, parentType);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function validatePropTypes(element) {
|
||
{
|
||
var type = element.type;
|
||
if (type === null || type === void 0 || typeof type === "string") {
|
||
return;
|
||
}
|
||
var propTypes;
|
||
if (typeof type === "function") {
|
||
propTypes = type.propTypes;
|
||
} else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.
|
||
// Inner props are checked in the reconciler.
|
||
type.$$typeof === REACT_MEMO_TYPE)) {
|
||
propTypes = type.propTypes;
|
||
} else {
|
||
return;
|
||
}
|
||
if (propTypes) {
|
||
var name = getComponentNameFromType(type);
|
||
checkPropTypes(propTypes, element.props, "prop", name, element);
|
||
} else if (type.PropTypes !== void 0 && !propTypesMisspellWarningShown) {
|
||
propTypesMisspellWarningShown = true;
|
||
var _name = getComponentNameFromType(type);
|
||
error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", _name || "Unknown");
|
||
}
|
||
if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) {
|
||
error("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
||
}
|
||
}
|
||
}
|
||
function validateFragmentProps(fragment) {
|
||
{
|
||
var keys = Object.keys(fragment.props);
|
||
for (var i = 0; i < keys.length; i++) {
|
||
var key = keys[i];
|
||
if (key !== "children" && key !== "key") {
|
||
setCurrentlyValidatingElement$1(fragment);
|
||
error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", key);
|
||
setCurrentlyValidatingElement$1(null);
|
||
break;
|
||
}
|
||
}
|
||
if (fragment.ref !== null) {
|
||
setCurrentlyValidatingElement$1(fragment);
|
||
error("Invalid attribute `ref` supplied to `React.Fragment`.");
|
||
setCurrentlyValidatingElement$1(null);
|
||
}
|
||
}
|
||
}
|
||
function jsxWithValidation(type, props, key, isStaticChildren, source, self2) {
|
||
{
|
||
var validType = isValidElementType(type);
|
||
if (!validType) {
|
||
var info = "";
|
||
if (type === void 0 || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
|
||
info += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";
|
||
}
|
||
var sourceInfo = getSourceInfoErrorAddendum(source);
|
||
if (sourceInfo) {
|
||
info += sourceInfo;
|
||
} else {
|
||
info += getDeclarationErrorAddendum();
|
||
}
|
||
var typeString;
|
||
if (type === null) {
|
||
typeString = "null";
|
||
} else if (isArray(type)) {
|
||
typeString = "array";
|
||
} else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) {
|
||
typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
|
||
info = " Did you accidentally export a JSX literal instead of a component?";
|
||
} else {
|
||
typeString = typeof type;
|
||
}
|
||
error("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", typeString, info);
|
||
}
|
||
var element = jsxDEV(type, props, key, source, self2);
|
||
if (element == null) {
|
||
return element;
|
||
}
|
||
if (validType) {
|
||
var children = props.children;
|
||
if (children !== void 0) {
|
||
if (isStaticChildren) {
|
||
if (isArray(children)) {
|
||
for (var i = 0; i < children.length; i++) {
|
||
validateChildKeys(children[i], type);
|
||
}
|
||
if (Object.freeze) {
|
||
Object.freeze(children);
|
||
}
|
||
} else {
|
||
error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
||
}
|
||
} else {
|
||
validateChildKeys(children, type);
|
||
}
|
||
}
|
||
}
|
||
if (type === REACT_FRAGMENT_TYPE) {
|
||
validateFragmentProps(element);
|
||
} else {
|
||
validatePropTypes(element);
|
||
}
|
||
return element;
|
||
}
|
||
}
|
||
function jsxWithValidationStatic(type, props, key) {
|
||
{
|
||
return jsxWithValidation(type, props, key, true);
|
||
}
|
||
}
|
||
function jsxWithValidationDynamic(type, props, key) {
|
||
{
|
||
return jsxWithValidation(type, props, key, false);
|
||
}
|
||
}
|
||
var jsx8 = jsxWithValidationDynamic;
|
||
var jsxs4 = jsxWithValidationStatic;
|
||
exports.Fragment = REACT_FRAGMENT_TYPE;
|
||
exports.jsx = jsx8;
|
||
exports.jsxs = jsxs4;
|
||
})();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/react/jsx-runtime.js
|
||
var require_jsx_runtime = __commonJS({
|
||
"node_modules/react/jsx-runtime.js"(exports, module2) {
|
||
"use strict";
|
||
if (false) {
|
||
module2.exports = null;
|
||
} else {
|
||
module2.exports = require_react_jsx_runtime_development();
|
||
}
|
||
}
|
||
});
|
||
|
||
// node_modules/fast-deep-equal/index.js
|
||
var require_fast_deep_equal = __commonJS({
|
||
"node_modules/fast-deep-equal/index.js"(exports, module2) {
|
||
"use strict";
|
||
module2.exports = function equal(a, b) {
|
||
if (a === b)
|
||
return true;
|
||
if (a && b && typeof a == "object" && typeof b == "object") {
|
||
if (a.constructor !== b.constructor)
|
||
return false;
|
||
var length, i, keys;
|
||
if (Array.isArray(a)) {
|
||
length = a.length;
|
||
if (length != b.length)
|
||
return false;
|
||
for (i = length; i-- !== 0; )
|
||
if (!equal(a[i], b[i]))
|
||
return false;
|
||
return true;
|
||
}
|
||
if (a.constructor === RegExp)
|
||
return a.source === b.source && a.flags === b.flags;
|
||
if (a.valueOf !== Object.prototype.valueOf)
|
||
return a.valueOf() === b.valueOf();
|
||
if (a.toString !== Object.prototype.toString)
|
||
return a.toString() === b.toString();
|
||
keys = Object.keys(a);
|
||
length = keys.length;
|
||
if (length !== Object.keys(b).length)
|
||
return false;
|
||
for (i = length; i-- !== 0; )
|
||
if (!Object.prototype.hasOwnProperty.call(b, keys[i]))
|
||
return false;
|
||
for (i = length; i-- !== 0; ) {
|
||
var key = keys[i];
|
||
if (!equal(a[key], b[key]))
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
return a !== a && b !== b;
|
||
};
|
||
}
|
||
});
|
||
|
||
// node_modules/react-contenteditable/lib/react-contenteditable.js
|
||
var require_react_contenteditable = __commonJS({
|
||
"node_modules/react-contenteditable/lib/react-contenteditable.js"(exports) {
|
||
"use strict";
|
||
var __extends = exports && exports.__extends || function() {
|
||
var extendStatics = function(d, b) {
|
||
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
||
d2.__proto__ = b2;
|
||
} || function(d2, b2) {
|
||
for (var p in b2)
|
||
if (Object.prototype.hasOwnProperty.call(b2, p))
|
||
d2[p] = b2[p];
|
||
};
|
||
return extendStatics(d, b);
|
||
};
|
||
return function(d, b) {
|
||
if (typeof b !== "function" && b !== null)
|
||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||
extendStatics(d, b);
|
||
function __() {
|
||
this.constructor = d;
|
||
}
|
||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
};
|
||
}();
|
||
var __assign = exports && exports.__assign || function() {
|
||
__assign = Object.assign || function(t) {
|
||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||
s = arguments[i];
|
||
for (var p in s)
|
||
if (Object.prototype.hasOwnProperty.call(s, p))
|
||
t[p] = s[p];
|
||
}
|
||
return t;
|
||
};
|
||
return __assign.apply(this, arguments);
|
||
};
|
||
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
||
if (k2 === void 0)
|
||
k2 = k;
|
||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||
desc = { enumerable: true, get: function() {
|
||
return m[k];
|
||
} };
|
||
}
|
||
Object.defineProperty(o, k2, desc);
|
||
} : function(o, m, k, k2) {
|
||
if (k2 === void 0)
|
||
k2 = k;
|
||
o[k2] = m[k];
|
||
});
|
||
var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? function(o, v) {
|
||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||
} : function(o, v) {
|
||
o["default"] = v;
|
||
});
|
||
var __importStar = exports && exports.__importStar || function(mod) {
|
||
if (mod && mod.__esModule)
|
||
return mod;
|
||
var result = {};
|
||
if (mod != null) {
|
||
for (var k in mod)
|
||
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
||
__createBinding(result, mod, k);
|
||
}
|
||
__setModuleDefault(result, mod);
|
||
return result;
|
||
};
|
||
var __rest = exports && exports.__rest || function(s, e) {
|
||
var t = {};
|
||
for (var p in s)
|
||
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||
t[p] = s[p];
|
||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||
t[p[i]] = s[p[i]];
|
||
}
|
||
return t;
|
||
};
|
||
var __importDefault = exports && exports.__importDefault || function(mod) {
|
||
return mod && mod.__esModule ? mod : { "default": mod };
|
||
};
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
var React3 = __importStar(require_react());
|
||
var fast_deep_equal_1 = __importDefault(require_fast_deep_equal());
|
||
var PropTypes3 = __importStar(require_prop_types());
|
||
function normalizeHtml(str) {
|
||
return str && str.replace(/ |\u202F|\u00A0/g, " ").replace(/<br \/>/g, "<br>");
|
||
}
|
||
function replaceCaret(el) {
|
||
var target = document.createTextNode("");
|
||
el.appendChild(target);
|
||
var isTargetFocused = document.activeElement === el;
|
||
if (target !== null && target.nodeValue !== null && isTargetFocused) {
|
||
var sel = window.getSelection();
|
||
if (sel !== null) {
|
||
var range = document.createRange();
|
||
range.setStart(target, target.nodeValue.length);
|
||
range.collapse(true);
|
||
sel.removeAllRanges();
|
||
sel.addRange(range);
|
||
}
|
||
if (el instanceof HTMLElement)
|
||
el.focus();
|
||
}
|
||
}
|
||
var ContentEditable2 = (
|
||
/** @class */
|
||
function(_super) {
|
||
__extends(ContentEditable3, _super);
|
||
function ContentEditable3() {
|
||
var _this = _super !== null && _super.apply(this, arguments) || this;
|
||
_this.lastHtml = _this.props.html;
|
||
_this.el = typeof _this.props.innerRef === "function" ? { current: null } : React3.createRef();
|
||
_this.getEl = function() {
|
||
return (_this.props.innerRef && typeof _this.props.innerRef !== "function" ? _this.props.innerRef : _this.el).current;
|
||
};
|
||
_this.emitChange = function(originalEvt) {
|
||
var el = _this.getEl();
|
||
if (!el)
|
||
return;
|
||
var html = el.innerHTML;
|
||
if (_this.props.onChange && html !== _this.lastHtml) {
|
||
var evt = Object.assign({}, originalEvt, {
|
||
target: {
|
||
value: html
|
||
}
|
||
});
|
||
_this.props.onChange(evt);
|
||
}
|
||
_this.lastHtml = html;
|
||
};
|
||
return _this;
|
||
}
|
||
ContentEditable3.prototype.render = function() {
|
||
var _this = this;
|
||
var _a = this.props, tagName = _a.tagName, html = _a.html, innerRef = _a.innerRef, props = __rest(_a, ["tagName", "html", "innerRef"]);
|
||
return React3.createElement(tagName || "div", __assign(__assign({}, props), { ref: typeof innerRef === "function" ? function(current2) {
|
||
innerRef(current2);
|
||
_this.el.current = current2;
|
||
} : innerRef || this.el, onInput: this.emitChange, onBlur: this.props.onBlur || this.emitChange, onKeyUp: this.props.onKeyUp || this.emitChange, onKeyDown: this.props.onKeyDown || this.emitChange, contentEditable: !this.props.disabled, dangerouslySetInnerHTML: { __html: html } }), this.props.children);
|
||
};
|
||
ContentEditable3.prototype.shouldComponentUpdate = function(nextProps) {
|
||
var props = this.props;
|
||
var el = this.getEl();
|
||
if (!el)
|
||
return true;
|
||
if (normalizeHtml(nextProps.html) !== normalizeHtml(el.innerHTML)) {
|
||
return true;
|
||
}
|
||
return props.disabled !== nextProps.disabled || props.tagName !== nextProps.tagName || props.className !== nextProps.className || props.innerRef !== nextProps.innerRef || props.placeholder !== nextProps.placeholder || !(0, fast_deep_equal_1.default)(props.style, nextProps.style);
|
||
};
|
||
ContentEditable3.prototype.componentDidUpdate = function() {
|
||
var el = this.getEl();
|
||
if (!el)
|
||
return;
|
||
if (this.props.html !== el.innerHTML) {
|
||
el.innerHTML = this.props.html;
|
||
}
|
||
this.lastHtml = this.props.html;
|
||
replaceCaret(el);
|
||
};
|
||
ContentEditable3.propTypes = {
|
||
html: PropTypes3.string.isRequired,
|
||
onChange: PropTypes3.func,
|
||
disabled: PropTypes3.bool,
|
||
tagName: PropTypes3.string,
|
||
className: PropTypes3.string,
|
||
style: PropTypes3.object,
|
||
innerRef: PropTypes3.oneOfType([
|
||
PropTypes3.object,
|
||
PropTypes3.func
|
||
])
|
||
};
|
||
return ContentEditable3;
|
||
}(React3.Component)
|
||
);
|
||
exports.default = ContentEditable2;
|
||
}
|
||
});
|
||
|
||
// node_modules/react-usestateref/dist/index.js
|
||
var require_dist = __commonJS({
|
||
"node_modules/react-usestateref/dist/index.js"(exports, module2) {
|
||
"use strict";
|
||
var react_1 = require_react();
|
||
var isFunction = function(setStateAction) {
|
||
return typeof setStateAction === "function";
|
||
};
|
||
var useStateRef2 = function(initialState) {
|
||
var _a = react_1.useState(initialState), state = _a[0], setState = _a[1];
|
||
var ref = react_1.useRef(state);
|
||
var dispatch = react_1.useCallback(function(setStateAction) {
|
||
ref.current = isFunction(setStateAction) ? setStateAction(ref.current) : setStateAction;
|
||
setState(ref.current);
|
||
}, []);
|
||
return [state, dispatch, ref];
|
||
};
|
||
module2.exports = useStateRef2;
|
||
}
|
||
});
|
||
|
||
// src/plugins/obsidian-link-tree/src/main.ts
|
||
var main_exports = {};
|
||
__export(main_exports, {
|
||
LINK_TREE_VIEW: () => LINK_TREE_VIEW,
|
||
default: () => FoldableList
|
||
});
|
||
module.exports = __toCommonJS(main_exports);
|
||
var import_obsidian4 = require("obsidian");
|
||
var import_obsidian_dataview2 = __toESM(require_lib());
|
||
|
||
// src/plugins/obsidian-link-tree/src/LinkTreeView.tsx
|
||
var import_obsidian3 = require("obsidian");
|
||
|
||
// src/plugins/obsidian-link-tree/src/services/ObsidianAPI.ts
|
||
var import_obsidian = require("obsidian");
|
||
var import_obsidian_dataview = __toESM(require_lib());
|
||
|
||
// node_modules/zustand/esm/vanilla.mjs
|
||
var import_meta = {};
|
||
var createStoreImpl = (createState) => {
|
||
let state;
|
||
const listeners = /* @__PURE__ */ new Set();
|
||
const setState = (partial, replace) => {
|
||
const nextState = typeof partial === "function" ? partial(state) : partial;
|
||
if (!Object.is(nextState, state)) {
|
||
const previousState = state;
|
||
state = (replace != null ? replace : typeof nextState !== "object") ? nextState : Object.assign({}, state, nextState);
|
||
listeners.forEach((listener) => listener(state, previousState));
|
||
}
|
||
};
|
||
const getState = () => state;
|
||
const subscribe = (listener) => {
|
||
listeners.add(listener);
|
||
return () => listeners.delete(listener);
|
||
};
|
||
const destroy = () => {
|
||
if ((import_meta.env && import_meta.env.MODE) !== "production") {
|
||
console.warn(
|
||
"[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."
|
||
);
|
||
}
|
||
listeners.clear();
|
||
};
|
||
const api = { setState, getState, subscribe, destroy };
|
||
state = createState(setState, getState, api);
|
||
return api;
|
||
};
|
||
var createStore = (createState) => createState ? createStoreImpl(createState) : createStoreImpl;
|
||
|
||
// node_modules/zustand/esm/index.mjs
|
||
var import_react = __toESM(require_react(), 1);
|
||
var import_with_selector = __toESM(require_with_selector(), 1);
|
||
var import_meta2 = {};
|
||
var { useSyncExternalStoreWithSelector } = import_with_selector.default;
|
||
function useStore(api, selector = api.getState, equalityFn) {
|
||
const slice = useSyncExternalStoreWithSelector(
|
||
api.subscribe,
|
||
api.getState,
|
||
api.getServerState || api.getState,
|
||
selector,
|
||
equalityFn
|
||
);
|
||
(0, import_react.useDebugValue)(slice);
|
||
return slice;
|
||
}
|
||
var createImpl = (createState) => {
|
||
if ((import_meta2.env && import_meta2.env.MODE) !== "production" && typeof createState !== "function") {
|
||
console.warn(
|
||
"[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`."
|
||
);
|
||
}
|
||
const api = typeof createState === "function" ? createStore(createState) : createState;
|
||
const useBoundStore = (selector, equalityFn) => useStore(api, selector, equalityFn);
|
||
Object.assign(useBoundStore, api);
|
||
return useBoundStore;
|
||
};
|
||
var create = (createState) => createState ? createImpl(createState) : createImpl;
|
||
|
||
// node_modules/immer/dist/immer.mjs
|
||
var NOTHING = Symbol.for("immer-nothing");
|
||
var DRAFTABLE = Symbol.for("immer-draftable");
|
||
var DRAFT_STATE = Symbol.for("immer-state");
|
||
var errors = true ? [
|
||
// All error codes, starting by 0:
|
||
function(plugin) {
|
||
return `The plugin for '${plugin}' has not been loaded into Immer. To enable the plugin, import and call \`enable${plugin}()\` when initializing your application.`;
|
||
},
|
||
function(thing) {
|
||
return `produce can only be called on things that are draftable: plain objects, arrays, Map, Set or classes that are marked with '[immerable]: true'. Got '${thing}'`;
|
||
},
|
||
"This object has been frozen and should not be mutated",
|
||
function(data) {
|
||
return "Cannot use a proxy that has been revoked. Did you pass an object from inside an immer function to an async process? " + data;
|
||
},
|
||
"An immer producer returned a new value *and* modified its draft. Either return a new value *or* modify the draft.",
|
||
"Immer forbids circular references",
|
||
"The first or second argument to `produce` must be a function",
|
||
"The third argument to `produce` must be a function or undefined",
|
||
"First argument to `createDraft` must be a plain object, an array, or an immerable object",
|
||
"First argument to `finishDraft` must be a draft returned by `createDraft`",
|
||
function(thing) {
|
||
return `'current' expects a draft, got: ${thing}`;
|
||
},
|
||
"Object.defineProperty() cannot be used on an Immer draft",
|
||
"Object.setPrototypeOf() cannot be used on an Immer draft",
|
||
"Immer only supports deleting array indices",
|
||
"Immer only supports setting array indices and the 'length' property",
|
||
function(thing) {
|
||
return `'original' expects a draft, got: ${thing}`;
|
||
}
|
||
// Note: if more errors are added, the errorOffset in Patches.ts should be increased
|
||
// See Patches.ts for additional errors
|
||
] : [];
|
||
function die(error, ...args) {
|
||
if (true) {
|
||
const e = errors[error];
|
||
const msg = typeof e === "function" ? e.apply(null, args) : e;
|
||
throw new Error(`[Immer] ${msg}`);
|
||
}
|
||
throw new Error(
|
||
`[Immer] minified error nr: ${error}. Full error at: https://bit.ly/3cXEKWf`
|
||
);
|
||
}
|
||
var getPrototypeOf = Object.getPrototypeOf;
|
||
function isDraft(value) {
|
||
return !!value && !!value[DRAFT_STATE];
|
||
}
|
||
function isDraftable(value) {
|
||
var _a;
|
||
if (!value)
|
||
return false;
|
||
return isPlainObject(value) || Array.isArray(value) || !!value[DRAFTABLE] || !!((_a = value.constructor) == null ? void 0 : _a[DRAFTABLE]) || isMap(value) || isSet(value);
|
||
}
|
||
var objectCtorString = Object.prototype.constructor.toString();
|
||
function isPlainObject(value) {
|
||
if (!value || typeof value !== "object")
|
||
return false;
|
||
const proto = getPrototypeOf(value);
|
||
if (proto === null) {
|
||
return true;
|
||
}
|
||
const Ctor = Object.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
||
if (Ctor === Object)
|
||
return true;
|
||
return typeof Ctor == "function" && Function.toString.call(Ctor) === objectCtorString;
|
||
}
|
||
function each(obj, iter) {
|
||
if (getArchtype(obj) === 0) {
|
||
Object.entries(obj).forEach(([key, value]) => {
|
||
iter(key, value, obj);
|
||
});
|
||
} else {
|
||
obj.forEach((entry, index) => iter(index, entry, obj));
|
||
}
|
||
}
|
||
function getArchtype(thing) {
|
||
const state = thing[DRAFT_STATE];
|
||
return state ? state.type_ : Array.isArray(thing) ? 1 : isMap(thing) ? 2 : isSet(thing) ? 3 : 0;
|
||
}
|
||
function has(thing, prop) {
|
||
return getArchtype(thing) === 2 ? thing.has(prop) : Object.prototype.hasOwnProperty.call(thing, prop);
|
||
}
|
||
function set(thing, propOrOldValue, value) {
|
||
const t = getArchtype(thing);
|
||
if (t === 2)
|
||
thing.set(propOrOldValue, value);
|
||
else if (t === 3) {
|
||
thing.add(value);
|
||
} else
|
||
thing[propOrOldValue] = value;
|
||
}
|
||
function is(x, y) {
|
||
if (x === y) {
|
||
return x !== 0 || 1 / x === 1 / y;
|
||
} else {
|
||
return x !== x && y !== y;
|
||
}
|
||
}
|
||
function isMap(target) {
|
||
return target instanceof Map;
|
||
}
|
||
function isSet(target) {
|
||
return target instanceof Set;
|
||
}
|
||
function latest(state) {
|
||
return state.copy_ || state.base_;
|
||
}
|
||
function shallowCopy(base, strict) {
|
||
if (isMap(base)) {
|
||
return new Map(base);
|
||
}
|
||
if (isSet(base)) {
|
||
return new Set(base);
|
||
}
|
||
if (Array.isArray(base))
|
||
return Array.prototype.slice.call(base);
|
||
if (!strict && isPlainObject(base)) {
|
||
if (!getPrototypeOf(base)) {
|
||
const obj = /* @__PURE__ */ Object.create(null);
|
||
return Object.assign(obj, base);
|
||
}
|
||
return { ...base };
|
||
}
|
||
const descriptors = Object.getOwnPropertyDescriptors(base);
|
||
delete descriptors[DRAFT_STATE];
|
||
let keys = Reflect.ownKeys(descriptors);
|
||
for (let i = 0; i < keys.length; i++) {
|
||
const key = keys[i];
|
||
const desc = descriptors[key];
|
||
if (desc.writable === false) {
|
||
desc.writable = true;
|
||
desc.configurable = true;
|
||
}
|
||
if (desc.get || desc.set)
|
||
descriptors[key] = {
|
||
configurable: true,
|
||
writable: true,
|
||
// could live with !!desc.set as well here...
|
||
enumerable: desc.enumerable,
|
||
value: base[key]
|
||
};
|
||
}
|
||
return Object.create(getPrototypeOf(base), descriptors);
|
||
}
|
||
function freeze(obj, deep = false) {
|
||
if (isFrozen(obj) || isDraft(obj) || !isDraftable(obj))
|
||
return obj;
|
||
if (getArchtype(obj) > 1) {
|
||
obj.set = obj.add = obj.clear = obj.delete = dontMutateFrozenCollections;
|
||
}
|
||
Object.freeze(obj);
|
||
if (deep)
|
||
each(obj, (_key, value) => freeze(value, true), true);
|
||
return obj;
|
||
}
|
||
function dontMutateFrozenCollections() {
|
||
die(2);
|
||
}
|
||
function isFrozen(obj) {
|
||
return Object.isFrozen(obj);
|
||
}
|
||
var plugins = {};
|
||
function getPlugin(pluginKey) {
|
||
const plugin = plugins[pluginKey];
|
||
if (!plugin) {
|
||
die(0, pluginKey);
|
||
}
|
||
return plugin;
|
||
}
|
||
var currentScope;
|
||
function getCurrentScope() {
|
||
return currentScope;
|
||
}
|
||
function createScope(parent_, immer_) {
|
||
return {
|
||
drafts_: [],
|
||
parent_,
|
||
immer_,
|
||
// Whenever the modified draft contains a draft from another scope, we
|
||
// need to prevent auto-freezing so the unowned draft can be finalized.
|
||
canAutoFreeze_: true,
|
||
unfinalizedDrafts_: 0
|
||
};
|
||
}
|
||
function usePatchesInScope(scope, patchListener) {
|
||
if (patchListener) {
|
||
getPlugin("Patches");
|
||
scope.patches_ = [];
|
||
scope.inversePatches_ = [];
|
||
scope.patchListener_ = patchListener;
|
||
}
|
||
}
|
||
function revokeScope(scope) {
|
||
leaveScope(scope);
|
||
scope.drafts_.forEach(revokeDraft);
|
||
scope.drafts_ = null;
|
||
}
|
||
function leaveScope(scope) {
|
||
if (scope === currentScope) {
|
||
currentScope = scope.parent_;
|
||
}
|
||
}
|
||
function enterScope(immer22) {
|
||
return currentScope = createScope(currentScope, immer22);
|
||
}
|
||
function revokeDraft(draft) {
|
||
const state = draft[DRAFT_STATE];
|
||
if (state.type_ === 0 || state.type_ === 1)
|
||
state.revoke_();
|
||
else
|
||
state.revoked_ = true;
|
||
}
|
||
function processResult(result, scope) {
|
||
scope.unfinalizedDrafts_ = scope.drafts_.length;
|
||
const baseDraft = scope.drafts_[0];
|
||
const isReplaced = result !== void 0 && result !== baseDraft;
|
||
if (isReplaced) {
|
||
if (baseDraft[DRAFT_STATE].modified_) {
|
||
revokeScope(scope);
|
||
die(4);
|
||
}
|
||
if (isDraftable(result)) {
|
||
result = finalize(scope, result);
|
||
if (!scope.parent_)
|
||
maybeFreeze(scope, result);
|
||
}
|
||
if (scope.patches_) {
|
||
getPlugin("Patches").generateReplacementPatches_(
|
||
baseDraft[DRAFT_STATE].base_,
|
||
result,
|
||
scope.patches_,
|
||
scope.inversePatches_
|
||
);
|
||
}
|
||
} else {
|
||
result = finalize(scope, baseDraft, []);
|
||
}
|
||
revokeScope(scope);
|
||
if (scope.patches_) {
|
||
scope.patchListener_(scope.patches_, scope.inversePatches_);
|
||
}
|
||
return result !== NOTHING ? result : void 0;
|
||
}
|
||
function finalize(rootScope, value, path) {
|
||
if (isFrozen(value))
|
||
return value;
|
||
const state = value[DRAFT_STATE];
|
||
if (!state) {
|
||
each(
|
||
value,
|
||
(key, childValue) => finalizeProperty(rootScope, state, value, key, childValue, path),
|
||
true
|
||
// See #590, don't recurse into non-enumerable of non drafted objects
|
||
);
|
||
return value;
|
||
}
|
||
if (state.scope_ !== rootScope)
|
||
return value;
|
||
if (!state.modified_) {
|
||
maybeFreeze(rootScope, state.base_, true);
|
||
return state.base_;
|
||
}
|
||
if (!state.finalized_) {
|
||
state.finalized_ = true;
|
||
state.scope_.unfinalizedDrafts_--;
|
||
const result = state.copy_;
|
||
let resultEach = result;
|
||
let isSet2 = false;
|
||
if (state.type_ === 3) {
|
||
resultEach = new Set(result);
|
||
result.clear();
|
||
isSet2 = true;
|
||
}
|
||
each(
|
||
resultEach,
|
||
(key, childValue) => finalizeProperty(rootScope, state, result, key, childValue, path, isSet2)
|
||
);
|
||
maybeFreeze(rootScope, result, false);
|
||
if (path && rootScope.patches_) {
|
||
getPlugin("Patches").generatePatches_(
|
||
state,
|
||
path,
|
||
rootScope.patches_,
|
||
rootScope.inversePatches_
|
||
);
|
||
}
|
||
}
|
||
return state.copy_;
|
||
}
|
||
function finalizeProperty(rootScope, parentState, targetObject, prop, childValue, rootPath, targetIsSet) {
|
||
if (childValue === targetObject)
|
||
die(5);
|
||
if (isDraft(childValue)) {
|
||
const path = rootPath && parentState && parentState.type_ !== 3 && // Set objects are atomic since they have no keys.
|
||
!has(parentState.assigned_, prop) ? rootPath.concat(prop) : void 0;
|
||
const res = finalize(rootScope, childValue, path);
|
||
set(targetObject, prop, res);
|
||
if (isDraft(res)) {
|
||
rootScope.canAutoFreeze_ = false;
|
||
} else
|
||
return;
|
||
} else if (targetIsSet) {
|
||
targetObject.add(childValue);
|
||
}
|
||
if (isDraftable(childValue) && !isFrozen(childValue)) {
|
||
if (!rootScope.immer_.autoFreeze_ && rootScope.unfinalizedDrafts_ < 1) {
|
||
return;
|
||
}
|
||
finalize(rootScope, childValue);
|
||
if (!parentState || !parentState.scope_.parent_)
|
||
maybeFreeze(rootScope, childValue);
|
||
}
|
||
}
|
||
function maybeFreeze(scope, value, deep = false) {
|
||
if (!scope.parent_ && scope.immer_.autoFreeze_ && scope.canAutoFreeze_) {
|
||
freeze(value, deep);
|
||
}
|
||
}
|
||
function createProxyProxy(base, parent) {
|
||
const isArray = Array.isArray(base);
|
||
const state = {
|
||
type_: isArray ? 1 : 0,
|
||
// Track which produce call this is associated with.
|
||
scope_: parent ? parent.scope_ : getCurrentScope(),
|
||
// True for both shallow and deep changes.
|
||
modified_: false,
|
||
// Used during finalization.
|
||
finalized_: false,
|
||
// Track which properties have been assigned (true) or deleted (false).
|
||
assigned_: {},
|
||
// The parent draft state.
|
||
parent_: parent,
|
||
// The base state.
|
||
base_: base,
|
||
// The base proxy.
|
||
draft_: null,
|
||
// set below
|
||
// The base copy with any updated values.
|
||
copy_: null,
|
||
// Called by the `produce` function.
|
||
revoke_: null,
|
||
isManual_: false
|
||
};
|
||
let target = state;
|
||
let traps = objectTraps;
|
||
if (isArray) {
|
||
target = [state];
|
||
traps = arrayTraps;
|
||
}
|
||
const { revoke, proxy } = Proxy.revocable(target, traps);
|
||
state.draft_ = proxy;
|
||
state.revoke_ = revoke;
|
||
return proxy;
|
||
}
|
||
var objectTraps = {
|
||
get(state, prop) {
|
||
if (prop === DRAFT_STATE)
|
||
return state;
|
||
const source = latest(state);
|
||
if (!has(source, prop)) {
|
||
return readPropFromProto(state, source, prop);
|
||
}
|
||
const value = source[prop];
|
||
if (state.finalized_ || !isDraftable(value)) {
|
||
return value;
|
||
}
|
||
if (value === peek(state.base_, prop)) {
|
||
prepareCopy(state);
|
||
return state.copy_[prop] = createProxy(value, state);
|
||
}
|
||
return value;
|
||
},
|
||
has(state, prop) {
|
||
return prop in latest(state);
|
||
},
|
||
ownKeys(state) {
|
||
return Reflect.ownKeys(latest(state));
|
||
},
|
||
set(state, prop, value) {
|
||
const desc = getDescriptorFromProto(latest(state), prop);
|
||
if (desc == null ? void 0 : desc.set) {
|
||
desc.set.call(state.draft_, value);
|
||
return true;
|
||
}
|
||
if (!state.modified_) {
|
||
const current2 = peek(latest(state), prop);
|
||
const currentState = current2 == null ? void 0 : current2[DRAFT_STATE];
|
||
if (currentState && currentState.base_ === value) {
|
||
state.copy_[prop] = value;
|
||
state.assigned_[prop] = false;
|
||
return true;
|
||
}
|
||
if (is(value, current2) && (value !== void 0 || has(state.base_, prop)))
|
||
return true;
|
||
prepareCopy(state);
|
||
markChanged(state);
|
||
}
|
||
if (state.copy_[prop] === value && // special case: handle new props with value 'undefined'
|
||
(value !== void 0 || prop in state.copy_) || // special case: NaN
|
||
Number.isNaN(value) && Number.isNaN(state.copy_[prop]))
|
||
return true;
|
||
state.copy_[prop] = value;
|
||
state.assigned_[prop] = true;
|
||
return true;
|
||
},
|
||
deleteProperty(state, prop) {
|
||
if (peek(state.base_, prop) !== void 0 || prop in state.base_) {
|
||
state.assigned_[prop] = false;
|
||
prepareCopy(state);
|
||
markChanged(state);
|
||
} else {
|
||
delete state.assigned_[prop];
|
||
}
|
||
if (state.copy_) {
|
||
delete state.copy_[prop];
|
||
}
|
||
return true;
|
||
},
|
||
// Note: We never coerce `desc.value` into an Immer draft, because we can't make
|
||
// the same guarantee in ES5 mode.
|
||
getOwnPropertyDescriptor(state, prop) {
|
||
const owner = latest(state);
|
||
const desc = Reflect.getOwnPropertyDescriptor(owner, prop);
|
||
if (!desc)
|
||
return desc;
|
||
return {
|
||
writable: true,
|
||
configurable: state.type_ !== 1 || prop !== "length",
|
||
enumerable: desc.enumerable,
|
||
value: owner[prop]
|
||
};
|
||
},
|
||
defineProperty() {
|
||
die(11);
|
||
},
|
||
getPrototypeOf(state) {
|
||
return getPrototypeOf(state.base_);
|
||
},
|
||
setPrototypeOf() {
|
||
die(12);
|
||
}
|
||
};
|
||
var arrayTraps = {};
|
||
each(objectTraps, (key, fn) => {
|
||
arrayTraps[key] = function() {
|
||
arguments[0] = arguments[0][0];
|
||
return fn.apply(this, arguments);
|
||
};
|
||
});
|
||
arrayTraps.deleteProperty = function(state, prop) {
|
||
if (isNaN(parseInt(prop)))
|
||
die(13);
|
||
return arrayTraps.set.call(this, state, prop, void 0);
|
||
};
|
||
arrayTraps.set = function(state, prop, value) {
|
||
if (prop !== "length" && isNaN(parseInt(prop)))
|
||
die(14);
|
||
return objectTraps.set.call(this, state[0], prop, value, state[0]);
|
||
};
|
||
function peek(draft, prop) {
|
||
const state = draft[DRAFT_STATE];
|
||
const source = state ? latest(state) : draft;
|
||
return source[prop];
|
||
}
|
||
function readPropFromProto(state, source, prop) {
|
||
var _a;
|
||
const desc = getDescriptorFromProto(source, prop);
|
||
return desc ? `value` in desc ? desc.value : (
|
||
// This is a very special case, if the prop is a getter defined by the
|
||
// prototype, we should invoke it with the draft as context!
|
||
(_a = desc.get) == null ? void 0 : _a.call(state.draft_)
|
||
) : void 0;
|
||
}
|
||
function getDescriptorFromProto(source, prop) {
|
||
if (!(prop in source))
|
||
return void 0;
|
||
let proto = getPrototypeOf(source);
|
||
while (proto) {
|
||
const desc = Object.getOwnPropertyDescriptor(proto, prop);
|
||
if (desc)
|
||
return desc;
|
||
proto = getPrototypeOf(proto);
|
||
}
|
||
return void 0;
|
||
}
|
||
function markChanged(state) {
|
||
if (!state.modified_) {
|
||
state.modified_ = true;
|
||
if (state.parent_) {
|
||
markChanged(state.parent_);
|
||
}
|
||
}
|
||
}
|
||
function prepareCopy(state) {
|
||
if (!state.copy_) {
|
||
state.copy_ = shallowCopy(
|
||
state.base_,
|
||
state.scope_.immer_.useStrictShallowCopy_
|
||
);
|
||
}
|
||
}
|
||
var Immer2 = class {
|
||
constructor(config) {
|
||
this.autoFreeze_ = true;
|
||
this.useStrictShallowCopy_ = false;
|
||
this.produce = (base, recipe, patchListener) => {
|
||
if (typeof base === "function" && typeof recipe !== "function") {
|
||
const defaultBase = recipe;
|
||
recipe = base;
|
||
const self2 = this;
|
||
return function curriedProduce(base2 = defaultBase, ...args) {
|
||
return self2.produce(base2, (draft) => recipe.call(this, draft, ...args));
|
||
};
|
||
}
|
||
if (typeof recipe !== "function")
|
||
die(6);
|
||
if (patchListener !== void 0 && typeof patchListener !== "function")
|
||
die(7);
|
||
let result;
|
||
if (isDraftable(base)) {
|
||
const scope = enterScope(this);
|
||
const proxy = createProxy(base, void 0);
|
||
let hasError = true;
|
||
try {
|
||
result = recipe(proxy);
|
||
hasError = false;
|
||
} finally {
|
||
if (hasError)
|
||
revokeScope(scope);
|
||
else
|
||
leaveScope(scope);
|
||
}
|
||
usePatchesInScope(scope, patchListener);
|
||
return processResult(result, scope);
|
||
} else if (!base || typeof base !== "object") {
|
||
result = recipe(base);
|
||
if (result === void 0)
|
||
result = base;
|
||
if (result === NOTHING)
|
||
result = void 0;
|
||
if (this.autoFreeze_)
|
||
freeze(result, true);
|
||
if (patchListener) {
|
||
const p = [];
|
||
const ip = [];
|
||
getPlugin("Patches").generateReplacementPatches_(base, result, p, ip);
|
||
patchListener(p, ip);
|
||
}
|
||
return result;
|
||
} else
|
||
die(1, base);
|
||
};
|
||
this.produceWithPatches = (base, recipe) => {
|
||
if (typeof base === "function") {
|
||
return (state, ...args) => this.produceWithPatches(state, (draft) => base(draft, ...args));
|
||
}
|
||
let patches, inversePatches;
|
||
const result = this.produce(base, recipe, (p, ip) => {
|
||
patches = p;
|
||
inversePatches = ip;
|
||
});
|
||
return [result, patches, inversePatches];
|
||
};
|
||
if (typeof (config == null ? void 0 : config.autoFreeze) === "boolean")
|
||
this.setAutoFreeze(config.autoFreeze);
|
||
if (typeof (config == null ? void 0 : config.useStrictShallowCopy) === "boolean")
|
||
this.setUseStrictShallowCopy(config.useStrictShallowCopy);
|
||
}
|
||
createDraft(base) {
|
||
if (!isDraftable(base))
|
||
die(8);
|
||
if (isDraft(base))
|
||
base = current(base);
|
||
const scope = enterScope(this);
|
||
const proxy = createProxy(base, void 0);
|
||
proxy[DRAFT_STATE].isManual_ = true;
|
||
leaveScope(scope);
|
||
return proxy;
|
||
}
|
||
finishDraft(draft, patchListener) {
|
||
const state = draft && draft[DRAFT_STATE];
|
||
if (!state || !state.isManual_)
|
||
die(9);
|
||
const { scope_: scope } = state;
|
||
usePatchesInScope(scope, patchListener);
|
||
return processResult(void 0, scope);
|
||
}
|
||
/**
|
||
* Pass true to automatically freeze all copies created by Immer.
|
||
*
|
||
* By default, auto-freezing is enabled.
|
||
*/
|
||
setAutoFreeze(value) {
|
||
this.autoFreeze_ = value;
|
||
}
|
||
/**
|
||
* Pass true to enable strict shallow copy.
|
||
*
|
||
* By default, immer does not copy the object descriptors such as getter, setter and non-enumrable properties.
|
||
*/
|
||
setUseStrictShallowCopy(value) {
|
||
this.useStrictShallowCopy_ = value;
|
||
}
|
||
applyPatches(base, patches) {
|
||
let i;
|
||
for (i = patches.length - 1; i >= 0; i--) {
|
||
const patch = patches[i];
|
||
if (patch.path.length === 0 && patch.op === "replace") {
|
||
base = patch.value;
|
||
break;
|
||
}
|
||
}
|
||
if (i > -1) {
|
||
patches = patches.slice(i + 1);
|
||
}
|
||
const applyPatchesImpl = getPlugin("Patches").applyPatches_;
|
||
if (isDraft(base)) {
|
||
return applyPatchesImpl(base, patches);
|
||
}
|
||
return this.produce(
|
||
base,
|
||
(draft) => applyPatchesImpl(draft, patches)
|
||
);
|
||
}
|
||
};
|
||
function createProxy(value, parent) {
|
||
const draft = isMap(value) ? getPlugin("MapSet").proxyMap_(value, parent) : isSet(value) ? getPlugin("MapSet").proxySet_(value, parent) : createProxyProxy(value, parent);
|
||
const scope = parent ? parent.scope_ : getCurrentScope();
|
||
scope.drafts_.push(draft);
|
||
return draft;
|
||
}
|
||
function current(value) {
|
||
if (!isDraft(value))
|
||
die(10, value);
|
||
return currentImpl(value);
|
||
}
|
||
function currentImpl(value) {
|
||
if (!isDraftable(value) || isFrozen(value))
|
||
return value;
|
||
const state = value[DRAFT_STATE];
|
||
let copy;
|
||
if (state) {
|
||
if (!state.modified_)
|
||
return state.base_;
|
||
state.finalized_ = true;
|
||
copy = shallowCopy(value, state.scope_.immer_.useStrictShallowCopy_);
|
||
} else {
|
||
copy = shallowCopy(value, true);
|
||
}
|
||
each(copy, (key, childValue) => {
|
||
set(copy, key, currentImpl(childValue));
|
||
});
|
||
if (state) {
|
||
state.finalized_ = false;
|
||
}
|
||
return copy;
|
||
}
|
||
var immer = new Immer2();
|
||
var produce = immer.produce;
|
||
var produceWithPatches = immer.produceWithPatches.bind(
|
||
immer
|
||
);
|
||
var setAutoFreeze = immer.setAutoFreeze.bind(immer);
|
||
var setUseStrictShallowCopy = immer.setUseStrictShallowCopy.bind(immer);
|
||
var applyPatches = immer.applyPatches.bind(immer);
|
||
var createDraft = immer.createDraft.bind(immer);
|
||
var finishDraft = immer.finishDraft.bind(immer);
|
||
|
||
// node_modules/zustand/esm/middleware/immer.mjs
|
||
var immerImpl = (initializer) => (set2, get, store) => {
|
||
store.setState = (updater, replace, ...a) => {
|
||
const nextState = typeof updater === "function" ? produce(updater) : updater;
|
||
return set2(nextState, replace, ...a);
|
||
};
|
||
return initializer(store.setState, get, store);
|
||
};
|
||
var immer2 = immerImpl;
|
||
|
||
// src/plugins/obsidian-link-tree/src/services/store.ts
|
||
var useStore2 = create(
|
||
immer2((set2) => {
|
||
const state = {
|
||
links: {},
|
||
search: "",
|
||
showForward: true,
|
||
showBack: true
|
||
};
|
||
const actions = {
|
||
setState: (newState) => {
|
||
set2((state2) => {
|
||
for (let key of Object.keys(newState)) {
|
||
state2[key] = newState[key];
|
||
}
|
||
});
|
||
},
|
||
setLinks: (newLinks) => {
|
||
set2((state2) => {
|
||
state2.links = { ...state2.links, ...newLinks };
|
||
});
|
||
}
|
||
};
|
||
return { ...state, ...actions };
|
||
})
|
||
);
|
||
var getStore = (action) => useStore2.getState()[action];
|
||
var getLink = (link) => getStore("links")[link];
|
||
var getObsidianAPI = () => getStore("obsidianAPI");
|
||
|
||
// src/plugins/obsidian-link-tree/src/services/ObsidianAPI.ts
|
||
var import_lodash = __toESM(require_lodash());
|
||
var dv;
|
||
var ObsidianAPI = class extends import_obsidian.Component {
|
||
constructor() {
|
||
super();
|
||
dv = (0, import_obsidian_dataview.getAPI)();
|
||
this.setState = getStore("setState");
|
||
this.setLinks = getStore("setLinks");
|
||
this.load();
|
||
}
|
||
onload() {
|
||
let indexReady = { current: false };
|
||
this.registerEvent(
|
||
// @ts-ignore
|
||
app.metadataCache.on("dataview:metadata-change", () => {
|
||
if (!indexReady.current)
|
||
return;
|
||
this.loadLinks();
|
||
})
|
||
);
|
||
this.registerEvent(
|
||
// @ts-ignore
|
||
app.metadataCache.on("dataview:index-ready", () => {
|
||
indexReady.current = true;
|
||
this.loadLinks();
|
||
})
|
||
);
|
||
this.registerEvent(
|
||
app.workspace.on("active-leaf-change", (leaf) => {
|
||
var _a;
|
||
if (((_a = leaf == null ? void 0 : leaf.getViewState()) == null ? void 0 : _a.type) === "markdown" && indexReady.current)
|
||
this.loadLinks();
|
||
})
|
||
);
|
||
if (dv.index.initialized) {
|
||
indexReady.current = true;
|
||
this.loadLinks();
|
||
}
|
||
}
|
||
loadLinks() {
|
||
var _a;
|
||
const currentEditor = app.workspace.activeEditor;
|
||
if (!currentEditor) {
|
||
return;
|
||
}
|
||
const current2 = (_a = currentEditor.file) == null ? void 0 : _a.path.replace(".md", "");
|
||
if (!current2) {
|
||
return;
|
||
}
|
||
this.loadLink(current2, true);
|
||
this.loadLinkChildren(current2);
|
||
this.setState({ current: current2 });
|
||
}
|
||
async loadNotes(link) {
|
||
let thisLink = getLink(link);
|
||
if (!thisLink) {
|
||
this.loadLink(link);
|
||
thisLink = getLink(link);
|
||
if (!thisLink) {
|
||
return;
|
||
}
|
||
}
|
||
const file = app.vault.getAbstractFileByPath(link + ".md");
|
||
if (!(file instanceof import_obsidian.TFile))
|
||
return;
|
||
const text = await app.vault.read(file);
|
||
const paragraphs = text.split("\n");
|
||
const notes = [];
|
||
for (let i = 0; i < paragraphs.length; i++) {
|
||
const paragraph = paragraphs[i];
|
||
notes.push({
|
||
text: paragraph,
|
||
line: i
|
||
});
|
||
}
|
||
this.setLinks({
|
||
[link]: {
|
||
...thisLink,
|
||
notes
|
||
}
|
||
});
|
||
}
|
||
updateText(link, note) {
|
||
console.log(note);
|
||
const file = app.vault.getAbstractFileByPath(link + ".md");
|
||
if (!(file instanceof import_obsidian.TFile))
|
||
return;
|
||
app.vault.process(file, (text) => {
|
||
const lines = text.split("\n");
|
||
lines[note.line] = note.text;
|
||
console.log("new line:", lines);
|
||
return lines.join("\n");
|
||
});
|
||
}
|
||
loadLinkChildren(link) {
|
||
let thisLink = getLink(link);
|
||
if (!thisLink) {
|
||
this.loadLink(link);
|
||
thisLink = getLink(link);
|
||
if (!thisLink) {
|
||
return;
|
||
}
|
||
} else if (thisLink.loadedChildren)
|
||
return;
|
||
for (let child of thisLink.children) {
|
||
this.loadLink(child.link);
|
||
}
|
||
this.setLinks({ [link]: { ...thisLink, loadedChildren: true } });
|
||
}
|
||
loadLink(link, force = false) {
|
||
try {
|
||
if (!force) {
|
||
const alreadyGotLink = getLink(link);
|
||
if (alreadyGotLink)
|
||
return;
|
||
}
|
||
const back = dv.pages(`[[${link}]]`)["file"]["path"].map((link2) => link2.replace(".md", "")).array();
|
||
const forward = dv.pages(`outgoing([[${link}]])`)["file"]["path"].map((link2) => link2.replace(".md", "")).array();
|
||
const children = import_lodash.default.sortBy(
|
||
import_lodash.default.uniq(forward.concat(back)),
|
||
(link2) => link2.includes("/") ? link2.slice(link2.lastIndexOf("/" + 1)) : link2
|
||
).map((link2) => ({
|
||
forward: forward.includes(link2),
|
||
back: back.includes(link2),
|
||
link: link2
|
||
}));
|
||
this.setLinks({ [link]: { children, loadedChildren: false } });
|
||
} catch (err) {
|
||
return;
|
||
}
|
||
}
|
||
};
|
||
|
||
// src/plugins/obsidian-link-tree/src/LinkTreeView.tsx
|
||
var import_client = __toESM(require_client());
|
||
|
||
// src/plugins/obsidian-link-tree/src/components/Link.tsx
|
||
var import_react5 = __toESM(require_react());
|
||
|
||
// node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js
|
||
function _objectWithoutPropertiesLoose(source, excluded) {
|
||
if (source == null)
|
||
return {};
|
||
var target = {};
|
||
var sourceKeys = Object.keys(source);
|
||
var key, i;
|
||
for (i = 0; i < sourceKeys.length; i++) {
|
||
key = sourceKeys[i];
|
||
if (excluded.indexOf(key) >= 0)
|
||
continue;
|
||
target[key] = source[key];
|
||
}
|
||
return target;
|
||
}
|
||
|
||
// node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
|
||
function _setPrototypeOf(o, p) {
|
||
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
||
o2.__proto__ = p2;
|
||
return o2;
|
||
};
|
||
return _setPrototypeOf(o, p);
|
||
}
|
||
|
||
// node_modules/@babel/runtime/helpers/esm/inheritsLoose.js
|
||
function _inheritsLoose(subClass, superClass) {
|
||
subClass.prototype = Object.create(superClass.prototype);
|
||
subClass.prototype.constructor = subClass;
|
||
_setPrototypeOf(subClass, superClass);
|
||
}
|
||
|
||
// node_modules/react-transition-group/esm/Transition.js
|
||
var import_prop_types2 = __toESM(require_prop_types());
|
||
var import_react3 = __toESM(require_react());
|
||
var import_react_dom = __toESM(require_react_dom());
|
||
|
||
// node_modules/react-transition-group/esm/config.js
|
||
var config_default = {
|
||
disabled: false
|
||
};
|
||
|
||
// node_modules/react-transition-group/esm/utils/PropTypes.js
|
||
var import_prop_types = __toESM(require_prop_types());
|
||
var timeoutsShape = true ? import_prop_types.default.oneOfType([import_prop_types.default.number, import_prop_types.default.shape({
|
||
enter: import_prop_types.default.number,
|
||
exit: import_prop_types.default.number,
|
||
appear: import_prop_types.default.number
|
||
}).isRequired]) : null;
|
||
var classNamesShape = true ? import_prop_types.default.oneOfType([import_prop_types.default.string, import_prop_types.default.shape({
|
||
enter: import_prop_types.default.string,
|
||
exit: import_prop_types.default.string,
|
||
active: import_prop_types.default.string
|
||
}), import_prop_types.default.shape({
|
||
enter: import_prop_types.default.string,
|
||
enterDone: import_prop_types.default.string,
|
||
enterActive: import_prop_types.default.string,
|
||
exit: import_prop_types.default.string,
|
||
exitDone: import_prop_types.default.string,
|
||
exitActive: import_prop_types.default.string
|
||
})]) : null;
|
||
|
||
// node_modules/react-transition-group/esm/TransitionGroupContext.js
|
||
var import_react2 = __toESM(require_react());
|
||
var TransitionGroupContext_default = import_react2.default.createContext(null);
|
||
|
||
// node_modules/react-transition-group/esm/utils/reflow.js
|
||
var forceReflow = function forceReflow2(node) {
|
||
return node.scrollTop;
|
||
};
|
||
|
||
// node_modules/react-transition-group/esm/Transition.js
|
||
var UNMOUNTED = "unmounted";
|
||
var EXITED = "exited";
|
||
var ENTERING = "entering";
|
||
var ENTERED = "entered";
|
||
var EXITING = "exiting";
|
||
var Transition = /* @__PURE__ */ function(_React$Component) {
|
||
_inheritsLoose(Transition2, _React$Component);
|
||
function Transition2(props, context) {
|
||
var _this;
|
||
_this = _React$Component.call(this, props, context) || this;
|
||
var parentGroup = context;
|
||
var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;
|
||
var initialStatus;
|
||
_this.appearStatus = null;
|
||
if (props.in) {
|
||
if (appear) {
|
||
initialStatus = EXITED;
|
||
_this.appearStatus = ENTERING;
|
||
} else {
|
||
initialStatus = ENTERED;
|
||
}
|
||
} else {
|
||
if (props.unmountOnExit || props.mountOnEnter) {
|
||
initialStatus = UNMOUNTED;
|
||
} else {
|
||
initialStatus = EXITED;
|
||
}
|
||
}
|
||
_this.state = {
|
||
status: initialStatus
|
||
};
|
||
_this.nextCallback = null;
|
||
return _this;
|
||
}
|
||
Transition2.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {
|
||
var nextIn = _ref.in;
|
||
if (nextIn && prevState.status === UNMOUNTED) {
|
||
return {
|
||
status: EXITED
|
||
};
|
||
}
|
||
return null;
|
||
};
|
||
var _proto = Transition2.prototype;
|
||
_proto.componentDidMount = function componentDidMount() {
|
||
this.updateStatus(true, this.appearStatus);
|
||
};
|
||
_proto.componentDidUpdate = function componentDidUpdate(prevProps) {
|
||
var nextStatus = null;
|
||
if (prevProps !== this.props) {
|
||
var status = this.state.status;
|
||
if (this.props.in) {
|
||
if (status !== ENTERING && status !== ENTERED) {
|
||
nextStatus = ENTERING;
|
||
}
|
||
} else {
|
||
if (status === ENTERING || status === ENTERED) {
|
||
nextStatus = EXITING;
|
||
}
|
||
}
|
||
}
|
||
this.updateStatus(false, nextStatus);
|
||
};
|
||
_proto.componentWillUnmount = function componentWillUnmount() {
|
||
this.cancelNextCallback();
|
||
};
|
||
_proto.getTimeouts = function getTimeouts() {
|
||
var timeout2 = this.props.timeout;
|
||
var exit, enter, appear;
|
||
exit = enter = appear = timeout2;
|
||
if (timeout2 != null && typeof timeout2 !== "number") {
|
||
exit = timeout2.exit;
|
||
enter = timeout2.enter;
|
||
appear = timeout2.appear !== void 0 ? timeout2.appear : enter;
|
||
}
|
||
return {
|
||
exit,
|
||
enter,
|
||
appear
|
||
};
|
||
};
|
||
_proto.updateStatus = function updateStatus(mounting, nextStatus) {
|
||
if (mounting === void 0) {
|
||
mounting = false;
|
||
}
|
||
if (nextStatus !== null) {
|
||
this.cancelNextCallback();
|
||
if (nextStatus === ENTERING) {
|
||
if (this.props.unmountOnExit || this.props.mountOnEnter) {
|
||
var node = this.props.nodeRef ? this.props.nodeRef.current : import_react_dom.default.findDOMNode(this);
|
||
if (node)
|
||
forceReflow(node);
|
||
}
|
||
this.performEnter(mounting);
|
||
} else {
|
||
this.performExit();
|
||
}
|
||
} else if (this.props.unmountOnExit && this.state.status === EXITED) {
|
||
this.setState({
|
||
status: UNMOUNTED
|
||
});
|
||
}
|
||
};
|
||
_proto.performEnter = function performEnter(mounting) {
|
||
var _this2 = this;
|
||
var enter = this.props.enter;
|
||
var appearing = this.context ? this.context.isMounting : mounting;
|
||
var _ref2 = this.props.nodeRef ? [appearing] : [import_react_dom.default.findDOMNode(this), appearing], maybeNode = _ref2[0], maybeAppearing = _ref2[1];
|
||
var timeouts = this.getTimeouts();
|
||
var enterTimeout = appearing ? timeouts.appear : timeouts.enter;
|
||
if (!mounting && !enter || config_default.disabled) {
|
||
this.safeSetState({
|
||
status: ENTERED
|
||
}, function() {
|
||
_this2.props.onEntered(maybeNode);
|
||
});
|
||
return;
|
||
}
|
||
this.props.onEnter(maybeNode, maybeAppearing);
|
||
this.safeSetState({
|
||
status: ENTERING
|
||
}, function() {
|
||
_this2.props.onEntering(maybeNode, maybeAppearing);
|
||
_this2.onTransitionEnd(enterTimeout, function() {
|
||
_this2.safeSetState({
|
||
status: ENTERED
|
||
}, function() {
|
||
_this2.props.onEntered(maybeNode, maybeAppearing);
|
||
});
|
||
});
|
||
});
|
||
};
|
||
_proto.performExit = function performExit() {
|
||
var _this3 = this;
|
||
var exit = this.props.exit;
|
||
var timeouts = this.getTimeouts();
|
||
var maybeNode = this.props.nodeRef ? void 0 : import_react_dom.default.findDOMNode(this);
|
||
if (!exit || config_default.disabled) {
|
||
this.safeSetState({
|
||
status: EXITED
|
||
}, function() {
|
||
_this3.props.onExited(maybeNode);
|
||
});
|
||
return;
|
||
}
|
||
this.props.onExit(maybeNode);
|
||
this.safeSetState({
|
||
status: EXITING
|
||
}, function() {
|
||
_this3.props.onExiting(maybeNode);
|
||
_this3.onTransitionEnd(timeouts.exit, function() {
|
||
_this3.safeSetState({
|
||
status: EXITED
|
||
}, function() {
|
||
_this3.props.onExited(maybeNode);
|
||
});
|
||
});
|
||
});
|
||
};
|
||
_proto.cancelNextCallback = function cancelNextCallback() {
|
||
if (this.nextCallback !== null) {
|
||
this.nextCallback.cancel();
|
||
this.nextCallback = null;
|
||
}
|
||
};
|
||
_proto.safeSetState = function safeSetState(nextState, callback) {
|
||
callback = this.setNextCallback(callback);
|
||
this.setState(nextState, callback);
|
||
};
|
||
_proto.setNextCallback = function setNextCallback(callback) {
|
||
var _this4 = this;
|
||
var active = true;
|
||
this.nextCallback = function(event) {
|
||
if (active) {
|
||
active = false;
|
||
_this4.nextCallback = null;
|
||
callback(event);
|
||
}
|
||
};
|
||
this.nextCallback.cancel = function() {
|
||
active = false;
|
||
};
|
||
return this.nextCallback;
|
||
};
|
||
_proto.onTransitionEnd = function onTransitionEnd(timeout2, handler) {
|
||
this.setNextCallback(handler);
|
||
var node = this.props.nodeRef ? this.props.nodeRef.current : import_react_dom.default.findDOMNode(this);
|
||
var doesNotHaveTimeoutOrListener = timeout2 == null && !this.props.addEndListener;
|
||
if (!node || doesNotHaveTimeoutOrListener) {
|
||
setTimeout(this.nextCallback, 0);
|
||
return;
|
||
}
|
||
if (this.props.addEndListener) {
|
||
var _ref3 = this.props.nodeRef ? [this.nextCallback] : [node, this.nextCallback], maybeNode = _ref3[0], maybeNextCallback = _ref3[1];
|
||
this.props.addEndListener(maybeNode, maybeNextCallback);
|
||
}
|
||
if (timeout2 != null) {
|
||
setTimeout(this.nextCallback, timeout2);
|
||
}
|
||
};
|
||
_proto.render = function render() {
|
||
var status = this.state.status;
|
||
if (status === UNMOUNTED) {
|
||
return null;
|
||
}
|
||
var _this$props = this.props, children = _this$props.children, _in = _this$props.in, _mountOnEnter = _this$props.mountOnEnter, _unmountOnExit = _this$props.unmountOnExit, _appear = _this$props.appear, _enter = _this$props.enter, _exit = _this$props.exit, _timeout = _this$props.timeout, _addEndListener = _this$props.addEndListener, _onEnter = _this$props.onEnter, _onEntering = _this$props.onEntering, _onEntered = _this$props.onEntered, _onExit = _this$props.onExit, _onExiting = _this$props.onExiting, _onExited = _this$props.onExited, _nodeRef = _this$props.nodeRef, childProps = _objectWithoutPropertiesLoose(_this$props, ["children", "in", "mountOnEnter", "unmountOnExit", "appear", "enter", "exit", "timeout", "addEndListener", "onEnter", "onEntering", "onEntered", "onExit", "onExiting", "onExited", "nodeRef"]);
|
||
return (
|
||
// allows for nested Transitions
|
||
/* @__PURE__ */ import_react3.default.createElement(TransitionGroupContext_default.Provider, {
|
||
value: null
|
||
}, typeof children === "function" ? children(status, childProps) : import_react3.default.cloneElement(import_react3.default.Children.only(children), childProps))
|
||
);
|
||
};
|
||
return Transition2;
|
||
}(import_react3.default.Component);
|
||
Transition.contextType = TransitionGroupContext_default;
|
||
Transition.propTypes = true ? {
|
||
/**
|
||
* A React reference to DOM element that need to transition:
|
||
* https://stackoverflow.com/a/51127130/4671932
|
||
*
|
||
* - When `nodeRef` prop is used, `node` is not passed to callback functions
|
||
* (e.g. `onEnter`) because user already has direct access to the node.
|
||
* - When changing `key` prop of `Transition` in a `TransitionGroup` a new
|
||
* `nodeRef` need to be provided to `Transition` with changed `key` prop
|
||
* (see
|
||
* [test/CSSTransition-test.js](https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e19d724f145596f5910581c/test/CSSTransition-test.js#L362-L437)).
|
||
*/
|
||
nodeRef: import_prop_types2.default.shape({
|
||
current: typeof Element === "undefined" ? import_prop_types2.default.any : function(propValue, key, componentName, location, propFullName, secret) {
|
||
var value = propValue[key];
|
||
return import_prop_types2.default.instanceOf(value && "ownerDocument" in value ? value.ownerDocument.defaultView.Element : Element)(propValue, key, componentName, location, propFullName, secret);
|
||
}
|
||
}),
|
||
/**
|
||
* A `function` child can be used instead of a React element. This function is
|
||
* called with the current transition status (`'entering'`, `'entered'`,
|
||
* `'exiting'`, `'exited'`), which can be used to apply context
|
||
* specific props to a component.
|
||
*
|
||
* ```jsx
|
||
* <Transition in={this.state.in} timeout={150}>
|
||
* {state => (
|
||
* <MyComponent className={`fade fade-${state}`} />
|
||
* )}
|
||
* </Transition>
|
||
* ```
|
||
*/
|
||
children: import_prop_types2.default.oneOfType([import_prop_types2.default.func.isRequired, import_prop_types2.default.element.isRequired]).isRequired,
|
||
/**
|
||
* Show the component; triggers the enter or exit states
|
||
*/
|
||
in: import_prop_types2.default.bool,
|
||
/**
|
||
* By default the child component is mounted immediately along with
|
||
* the parent `Transition` component. If you want to "lazy mount" the component on the
|
||
* first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay
|
||
* mounted, even on "exited", unless you also specify `unmountOnExit`.
|
||
*/
|
||
mountOnEnter: import_prop_types2.default.bool,
|
||
/**
|
||
* By default the child component stays mounted after it reaches the `'exited'` state.
|
||
* Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.
|
||
*/
|
||
unmountOnExit: import_prop_types2.default.bool,
|
||
/**
|
||
* By default the child component does not perform the enter transition when
|
||
* it first mounts, regardless of the value of `in`. If you want this
|
||
* behavior, set both `appear` and `in` to `true`.
|
||
*
|
||
* > **Note**: there are no special appear states like `appearing`/`appeared`, this prop
|
||
* > only adds an additional enter transition. However, in the
|
||
* > `<CSSTransition>` component that first enter transition does result in
|
||
* > additional `.appear-*` classes, that way you can choose to style it
|
||
* > differently.
|
||
*/
|
||
appear: import_prop_types2.default.bool,
|
||
/**
|
||
* Enable or disable enter transitions.
|
||
*/
|
||
enter: import_prop_types2.default.bool,
|
||
/**
|
||
* Enable or disable exit transitions.
|
||
*/
|
||
exit: import_prop_types2.default.bool,
|
||
/**
|
||
* The duration of the transition, in milliseconds.
|
||
* Required unless `addEndListener` is provided.
|
||
*
|
||
* You may specify a single timeout for all transitions:
|
||
*
|
||
* ```jsx
|
||
* timeout={500}
|
||
* ```
|
||
*
|
||
* or individually:
|
||
*
|
||
* ```jsx
|
||
* timeout={{
|
||
* appear: 500,
|
||
* enter: 300,
|
||
* exit: 500,
|
||
* }}
|
||
* ```
|
||
*
|
||
* - `appear` defaults to the value of `enter`
|
||
* - `enter` defaults to `0`
|
||
* - `exit` defaults to `0`
|
||
*
|
||
* @type {number | { enter?: number, exit?: number, appear?: number }}
|
||
*/
|
||
timeout: function timeout(props) {
|
||
var pt = timeoutsShape;
|
||
if (!props.addEndListener)
|
||
pt = pt.isRequired;
|
||
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||
args[_key - 1] = arguments[_key];
|
||
}
|
||
return pt.apply(void 0, [props].concat(args));
|
||
},
|
||
/**
|
||
* Add a custom transition end trigger. Called with the transitioning
|
||
* DOM node and a `done` callback. Allows for more fine grained transition end
|
||
* logic. Timeouts are still used as a fallback if provided.
|
||
*
|
||
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
||
*
|
||
* ```jsx
|
||
* addEndListener={(node, done) => {
|
||
* // use the css transitionend event to mark the finish of a transition
|
||
* node.addEventListener('transitionend', done, false);
|
||
* }}
|
||
* ```
|
||
*/
|
||
addEndListener: import_prop_types2.default.func,
|
||
/**
|
||
* Callback fired before the "entering" status is applied. An extra parameter
|
||
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
||
*
|
||
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
||
*
|
||
* @type Function(node: HtmlElement, isAppearing: bool) -> void
|
||
*/
|
||
onEnter: import_prop_types2.default.func,
|
||
/**
|
||
* Callback fired after the "entering" status is applied. An extra parameter
|
||
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
||
*
|
||
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
||
*
|
||
* @type Function(node: HtmlElement, isAppearing: bool)
|
||
*/
|
||
onEntering: import_prop_types2.default.func,
|
||
/**
|
||
* Callback fired after the "entered" status is applied. An extra parameter
|
||
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
||
*
|
||
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
||
*
|
||
* @type Function(node: HtmlElement, isAppearing: bool) -> void
|
||
*/
|
||
onEntered: import_prop_types2.default.func,
|
||
/**
|
||
* Callback fired before the "exiting" status is applied.
|
||
*
|
||
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
||
*
|
||
* @type Function(node: HtmlElement) -> void
|
||
*/
|
||
onExit: import_prop_types2.default.func,
|
||
/**
|
||
* Callback fired after the "exiting" status is applied.
|
||
*
|
||
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
||
*
|
||
* @type Function(node: HtmlElement) -> void
|
||
*/
|
||
onExiting: import_prop_types2.default.func,
|
||
/**
|
||
* Callback fired after the "exited" status is applied.
|
||
*
|
||
* **Note**: when `nodeRef` prop is passed, `node` is not passed
|
||
*
|
||
* @type Function(node: HtmlElement) -> void
|
||
*/
|
||
onExited: import_prop_types2.default.func
|
||
} : {};
|
||
function noop() {
|
||
}
|
||
Transition.defaultProps = {
|
||
in: false,
|
||
mountOnEnter: false,
|
||
unmountOnExit: false,
|
||
appear: false,
|
||
enter: true,
|
||
exit: true,
|
||
onEnter: noop,
|
||
onEntering: noop,
|
||
onEntered: noop,
|
||
onExit: noop,
|
||
onExiting: noop,
|
||
onExited: noop
|
||
};
|
||
Transition.UNMOUNTED = UNMOUNTED;
|
||
Transition.EXITED = EXITED;
|
||
Transition.ENTERING = ENTERING;
|
||
Transition.ENTERED = ENTERED;
|
||
Transition.EXITING = EXITING;
|
||
var Transition_default = Transition;
|
||
|
||
// src/plugins/obsidian-link-tree/src/components/Link.tsx
|
||
var import_lodash2 = __toESM(require_lodash());
|
||
var import_jquery = __toESM(require_jquery());
|
||
|
||
// packages/obsidian-components/Logo.tsx
|
||
var import_obsidian2 = require("obsidian");
|
||
var import_react4 = __toESM(require_react());
|
||
|
||
// node_modules/tiny-invariant/dist/esm/tiny-invariant.js
|
||
var isProduction = false;
|
||
var prefix = "Invariant failed";
|
||
function invariant(condition, message) {
|
||
if (condition) {
|
||
return;
|
||
}
|
||
if (isProduction) {
|
||
throw new Error(prefix);
|
||
}
|
||
var provided = typeof message === "function" ? message() : message;
|
||
var value = provided ? "".concat(prefix, ": ").concat(provided) : prefix;
|
||
throw new Error(value);
|
||
}
|
||
|
||
// packages/obsidian-components/Logo.tsx
|
||
var import_jsx_runtime = __toESM(require_jsx_runtime());
|
||
function Logo({ src, className = "", title = "" }) {
|
||
const frame = (0, import_react4.useRef)(null);
|
||
(0, import_react4.useLayoutEffect)(() => {
|
||
invariant(frame.current);
|
||
(0, import_obsidian2.setIcon)(frame.current, src);
|
||
}, [src]);
|
||
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
||
"div",
|
||
{
|
||
className: `flex select-none flex-col items-center justify-center ${className} ${!className.includes("h-") ? "h-full" : ""} ${!className.includes("w-") ? "w-full" : ""}`,
|
||
ref: frame
|
||
}
|
||
);
|
||
}
|
||
|
||
// src/plugins/obsidian-link-tree/src/components/Note.tsx
|
||
var import_react_contenteditable = __toESM(require_react_contenteditable());
|
||
var import_react_usestateref = __toESM(require_dist());
|
||
var import_jsx_runtime2 = __toESM(require_jsx_runtime());
|
||
function Note({
|
||
link,
|
||
note
|
||
}) {
|
||
const { text, line } = note;
|
||
const [thisText, setThisText, thisTextRef] = (0, import_react_usestateref.default)(text);
|
||
const updateText = () => {
|
||
getObsidianAPI().updateText(link, {
|
||
text: thisTextRef.current.replace(/<[^>]+>/g, ""),
|
||
line
|
||
});
|
||
};
|
||
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
||
import_react_contenteditable.default,
|
||
{
|
||
suppressContentEditableWarning: true,
|
||
onChange: (ev) => setThisText(ev.target.value),
|
||
html: thisText,
|
||
className: "my-1 w-full font-serif text-sm text-muted",
|
||
onBlur: updateText
|
||
}
|
||
);
|
||
}
|
||
|
||
// src/plugins/obsidian-link-tree/src/components/Link.tsx
|
||
var import_jsx_runtime3 = __toESM(require_jsx_runtime());
|
||
function Link({
|
||
link,
|
||
forward,
|
||
back,
|
||
parents,
|
||
backlinkTo
|
||
}) {
|
||
var _a;
|
||
const showForward = useStore2((state) => state.showForward);
|
||
const showBack = useStore2((state) => state.showBack);
|
||
const thisLink = useStore2((state) => state.links[link]);
|
||
const [collapsed, setCollapsed] = (0, import_react5.useState)(true);
|
||
const [loadedChildren, setLoadedChildren] = (0, import_react5.useState)(false);
|
||
const shownChildren = thisLink == null ? void 0 : thisLink.children.filter(
|
||
({ forward: forward2, back: back2, link: childLink }) => (forward2 && showForward || back2 && showBack) && childLink !== link && !parents.has(childLink)
|
||
);
|
||
const nodeRef = (0, import_react5.useRef)(null);
|
||
const matchedSearch = useStore2(
|
||
(state) => !state.search || new RegExp(import_lodash2.default.escapeRegExp(state.search), "i").test(link)
|
||
);
|
||
const childrenHeight = !nodeRef.current ? (_a = thisLink == null ? void 0 : thisLink.children.length) != null ? _a : 0 * 20 : (0, import_jquery.default)(nodeRef.current).children().toArray().reduce((total, el) => total + el.getBoundingClientRect().height, 0);
|
||
const transitionStyles = {
|
||
entering: {
|
||
maxHeight: !(thisLink == null ? void 0 : thisLink.children) ? 0 : childrenHeight
|
||
},
|
||
entered: { maxHeight: "" },
|
||
exiting: {
|
||
maxHeight: !(thisLink == null ? void 0 : thisLink.children) ? 0 : childrenHeight
|
||
},
|
||
exited: { maxHeight: 0 }
|
||
};
|
||
const newParents = new Set(parents);
|
||
newParents.add(link);
|
||
if (thisLink)
|
||
thisLink.children.map((child) => child.link).forEach((child) => newParents.add(child));
|
||
const [showingNotes, setShowingNotes] = (0, import_react5.useState)(
|
||
"none"
|
||
);
|
||
const shownNotes = (0, import_react5.useMemo)(() => {
|
||
var _a2, _b;
|
||
const linkTest = new RegExp(
|
||
`\\[\\[(.*?\\/)?${import_lodash2.default.escapeRegExp(
|
||
backlinkTo.slice(
|
||
backlinkTo.includes("/") ? backlinkTo.lastIndexOf("/") + 1 : 0
|
||
)
|
||
)}(#.*?)?(\\|.*?)?\\]\\]`
|
||
);
|
||
return showingNotes === "none" ? [] : showingNotes === "all" ? thisLink == null ? void 0 : thisLink.notes : !back ? (_a2 = thisLink == null ? void 0 : thisLink.notes) == null ? void 0 : _a2.slice(0, 1) : (_b = thisLink == null ? void 0 : thisLink.notes) == null ? void 0 : _b.filter((note) => {
|
||
return linkTest.test(note.text);
|
||
});
|
||
}, [backlinkTo, thisLink == null ? void 0 : thisLink.notes, showingNotes]);
|
||
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
|
||
matchedSearch && /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
||
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "flex", children: [
|
||
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
||
"div",
|
||
{
|
||
className: "flex w-6 flex-none items-center pl-1",
|
||
onClick: () => {
|
||
if (!loadedChildren) {
|
||
getObsidianAPI().loadLinkChildren(link);
|
||
setLoadedChildren(true);
|
||
setTimeout(() => setCollapsed(!collapsed));
|
||
} else
|
||
setCollapsed(!collapsed);
|
||
},
|
||
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "relative h-4 w-4", children: [
|
||
shownChildren && shownChildren.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
||
"div",
|
||
{
|
||
className: `absolute left-0 top-0 h-full w-full rounded-full bg-faint transition-opacity duration-300 ${!collapsed ? "opacity-0" : "opacity-40"}`
|
||
}
|
||
),
|
||
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "absolute left-1/2 top-1/2 h-1.5 w-1.5 -translate-x-1/2 -translate-y-1/2 rounded-full bg-muted" })
|
||
] })
|
||
}
|
||
),
|
||
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
||
"div",
|
||
{
|
||
className: `w-full cursor-pointer hover:underline ${!thisLink ? "text-faint line-through" : ""}`,
|
||
onClick: () => {
|
||
var _a2;
|
||
return app.workspace.openLinkText(
|
||
link,
|
||
(_a2 = getStore("current")) != null ? _a2 : "/",
|
||
false
|
||
);
|
||
},
|
||
children: [
|
||
link.includes("/") ? link.slice(link.lastIndexOf("/") + 1) : link,
|
||
!thisLink ? " [not loaded]" : ""
|
||
]
|
||
}
|
||
),
|
||
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
||
"div",
|
||
{
|
||
onClick: async () => {
|
||
if (showingNotes === "none")
|
||
await getObsidianAPI().loadNotes(link);
|
||
setShowingNotes(
|
||
showingNotes === "none" ? "one" : showingNotes === "one" ? "all" : "none"
|
||
);
|
||
},
|
||
className: "mx-1 flex h-4 w-4 cursor-pointer items-center justify-center rounded-full border-faint mouse:hover:border mouse:hover:border-solid",
|
||
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
||
Logo,
|
||
{
|
||
src: showingNotes === "none" ? "more-horizontal" : showingNotes === "one" ? "chevron-down" : "chevron-up",
|
||
className: "h-full w-full text-faint"
|
||
}
|
||
)
|
||
}
|
||
),
|
||
back && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Logo, { src: "arrow-left", className: "h-3 w-3 flex-none opacity-75" }),
|
||
forward && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
||
Logo,
|
||
{
|
||
src: "arrow-right",
|
||
className: "h-3 w-3 flex-none opacity-75"
|
||
}
|
||
)
|
||
] }),
|
||
showingNotes && shownNotes && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "pl-6", children: shownNotes.map((note) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Note, { ...{ note, link } }, note.line)) })
|
||
] }),
|
||
shownChildren && shownChildren.length > 0 && loadedChildren && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Transition_default, { nodeRef, in: !collapsed, appear: true, timeout: 250, children: (state) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
||
"div",
|
||
{
|
||
className: "pl-6",
|
||
ref: nodeRef,
|
||
style: {
|
||
transition: `max-height ${250}ms ease-in-out`,
|
||
maxHeight: 0,
|
||
overflow: "hidden",
|
||
...transitionStyles[state]
|
||
},
|
||
children: shownChildren.map(({ link: childLink, forward: forward2, back: back2 }) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
||
Link,
|
||
{
|
||
...{ link: childLink, forward: forward2, back: back2 },
|
||
parents: newParents,
|
||
backlinkTo: link
|
||
},
|
||
childLink
|
||
))
|
||
}
|
||
) })
|
||
] });
|
||
}
|
||
|
||
// src/plugins/obsidian-link-tree/src/components/Search.tsx
|
||
var import_jsx_runtime4 = __toESM(require_jsx_runtime());
|
||
function Search() {
|
||
const search = useStore2((state) => state.search);
|
||
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "flex w-full items-center", children: [
|
||
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: "flex w-6 flex-none justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Logo, { src: "search", className: " h-3 w-3" }) }),
|
||
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
||
"input",
|
||
{
|
||
placeholder: "search...",
|
||
className: "w-full rounded-lg border-none bg-transparent font-menu shadow-none",
|
||
onChange: (ev) => {
|
||
const setState = getStore("setState");
|
||
setState({ search: ev.target.value });
|
||
}
|
||
}
|
||
)
|
||
] });
|
||
}
|
||
|
||
// packages/obsidian-components/Button.tsx
|
||
var import_react6 = __toESM(require_react());
|
||
var import_jsx_runtime5 = __toESM(require_jsx_runtime());
|
||
var Button = (0, import_react6.forwardRef)(({ className, src, children, ...rest }, ref) => {
|
||
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
||
"div",
|
||
{
|
||
className: `clickable-icon whitespace-nowrap font-menu text-sm ${className}`,
|
||
...rest,
|
||
ref,
|
||
children: src ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Logo, { src }) : children != null ? children : null
|
||
}
|
||
);
|
||
});
|
||
var Button_default = Button;
|
||
|
||
// src/plugins/obsidian-link-tree/src/components/View.tsx
|
||
var import_react7 = __toESM(require_react());
|
||
var import_jsx_runtime6 = __toESM(require_jsx_runtime());
|
||
function View() {
|
||
const current2 = useStore2((state) => state.current);
|
||
const currentLink = useStore2(
|
||
(state) => current2 ? state.links[current2] : void 0
|
||
);
|
||
const showForward = useStore2((state) => state.showForward);
|
||
const showBack = useStore2((state) => state.showBack);
|
||
const setState = useStore2((state) => state.setState);
|
||
const segments = current2 ? current2.split("/").slice(0, -1) : [];
|
||
const currentParents = current2 && currentLink ? [current2, ...currentLink.children.map((child) => child.link)] : [];
|
||
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { id: "link-tree", style: { height: "100%", width: "100%" }, children: current2 && currentLink && /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "flex h-full w-full flex-col space-y-2", children: [
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "flex-none pl-2", children: [
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
||
"div",
|
||
{
|
||
className: "selectable flex flex-wrap items-center space-x-1 rounded-lg",
|
||
onClick: () => {
|
||
app.commands.executeCommandById(
|
||
"file-explorer:reveal-active-file"
|
||
);
|
||
},
|
||
children: segments.map((segment, i) => {
|
||
const pathSegment = segments.slice(0, i + 1).join("/");
|
||
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_react7.Fragment, { children: [
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "text-muted", children: segment }),
|
||
i < segments.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "text-faint", children: "/" })
|
||
] }, segments.slice(0, i + 1).join("/"));
|
||
})
|
||
}
|
||
),
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "flex w-full items-center space-x-1", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "w-full text-lg font-bold", children: current2.includes("/") ? current2.slice(current2.lastIndexOf("/") + 1) : current2 }) })
|
||
] }),
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "flex w-full flex-none items-center space-x-1", children: [
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Search, {}),
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
||
Button_default,
|
||
{
|
||
src: "arrow-left",
|
||
className: `w-6 flex-none ${showBack ? "border border-solid border-faint bg-primary-alt" : ""}`,
|
||
onClick: () => setState({ showBack: !showBack })
|
||
}
|
||
),
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
||
Button_default,
|
||
{
|
||
src: "arrow-right",
|
||
className: `w-6 flex-none ${showForward ? "border border-solid border-faint bg-primary-alt" : ""}`,
|
||
onClick: () => setState({ showForward: !showForward })
|
||
}
|
||
)
|
||
] }),
|
||
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "h-0 grow overflow-y-auto overflow-x-hidden", children: currentLink.children.filter(
|
||
({ forward, back }) => forward && showForward || back && showBack
|
||
).map(({ link, forward, back }) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
||
Link,
|
||
{
|
||
link,
|
||
forward,
|
||
back,
|
||
parents: new Set(currentParents),
|
||
backlinkTo: current2
|
||
},
|
||
link
|
||
)) })
|
||
] }) });
|
||
}
|
||
|
||
// src/plugins/obsidian-link-tree/src/LinkTreeView.tsx
|
||
var import_jsx_runtime7 = __toESM(require_jsx_runtime());
|
||
var LinkTreeView = class extends import_obsidian3.ItemView {
|
||
constructor(leaf) {
|
||
super(leaf);
|
||
this.icon = "list-tree";
|
||
this.navigation = false;
|
||
this.obsidianAPI = new ObsidianAPI();
|
||
getStore("setState")({ obsidianAPI: this.obsidianAPI });
|
||
}
|
||
getDisplayText() {
|
||
return "Link Tree";
|
||
}
|
||
getViewType() {
|
||
return "link-tree";
|
||
}
|
||
async onOpen() {
|
||
this.root = (0, import_client.createRoot)(this.containerEl.children[1]);
|
||
this.root.render(/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(View, {}));
|
||
}
|
||
async onClose() {
|
||
this.root.unmount();
|
||
}
|
||
};
|
||
|
||
// src/plugins/obsidian-link-tree/src/main.ts
|
||
var DEFAULT_SETTINGS = {};
|
||
var LINK_TREE_VIEW = "link-tree";
|
||
var FoldableList = class extends import_obsidian4.Plugin {
|
||
async onload() {
|
||
const dv2 = (0, import_obsidian_dataview2.getAPI)();
|
||
if (!dv2) {
|
||
new import_obsidian4.Notice("Please install Dataview to use Foldable List");
|
||
return;
|
||
}
|
||
this.registerView(LINK_TREE_VIEW, (leaf) => new LinkTreeView(leaf));
|
||
this.addCommand({
|
||
icon: "list-tree",
|
||
callback: () => this.activateView(),
|
||
id: "activate-view",
|
||
name: "View Link Tree"
|
||
});
|
||
this.addRibbonIcon("list-tree", "Link Tree", () => this.activateView());
|
||
await this.loadSettings();
|
||
}
|
||
async loadSettings() {
|
||
this.settings = Object.assign(DEFAULT_SETTINGS, await this.loadData());
|
||
}
|
||
async saveSettings() {
|
||
await this.saveData(this.settings);
|
||
}
|
||
async getDataView() {
|
||
let dataViewPlugin = (0, import_obsidian_dataview2.getAPI)(this.app);
|
||
if (!dataViewPlugin) {
|
||
dataViewPlugin = await new Promise((resolve) => {
|
||
setTimeout(() => resolve((0, import_obsidian_dataview2.getAPI)(this.app)), 350);
|
||
});
|
||
if (!dataViewPlugin) {
|
||
new import_obsidian4.Notice("Please enable the DataView plugin for Link Tree to work.");
|
||
this.app.workspace.detachLeavesOfType(LINK_TREE_VIEW);
|
||
throw new Error("no Dataview");
|
||
}
|
||
}
|
||
}
|
||
async activateView() {
|
||
var _a, _b;
|
||
await this.getDataView();
|
||
const leaf = (_b = (_a = this.app.workspace.getLeavesOfType(LINK_TREE_VIEW)) == null ? void 0 : _a[0]) != null ? _b : this.app.workspace.getRightLeaf(false);
|
||
await leaf.setViewState({
|
||
type: LINK_TREE_VIEW,
|
||
active: true
|
||
});
|
||
this.app.workspace.revealLeaf(leaf);
|
||
}
|
||
};
|
||
/*! Bundled license information:
|
||
|
||
react/cjs/react.development.js:
|
||
(**
|
||
* @license React
|
||
* react.development.js
|
||
*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*
|
||
* This source code is licensed under the MIT license found in the
|
||
* LICENSE file in the root directory of this source tree.
|
||
*)
|
||
|
||
use-sync-external-store/cjs/use-sync-external-store-shim.development.js:
|
||
(**
|
||
* @license React
|
||
* use-sync-external-store-shim.development.js
|
||
*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*
|
||
* This source code is licensed under the MIT license found in the
|
||
* LICENSE file in the root directory of this source tree.
|
||
*)
|
||
|
||
use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js:
|
||
(**
|
||
* @license React
|
||
* use-sync-external-store-shim/with-selector.development.js
|
||
*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*
|
||
* This source code is licensed under the MIT license found in the
|
||
* LICENSE file in the root directory of this source tree.
|
||
*)
|
||
|
||
lodash/lodash.js:
|
||
(**
|
||
* @license
|
||
* Lodash <https://lodash.com/>
|
||
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
||
* Released under MIT license <https://lodash.com/license>
|
||
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
||
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
||
*)
|
||
|
||
scheduler/cjs/scheduler.development.js:
|
||
(**
|
||
* @license React
|
||
* scheduler.development.js
|
||
*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*
|
||
* This source code is licensed under the MIT license found in the
|
||
* LICENSE file in the root directory of this source tree.
|
||
*)
|
||
|
||
react-dom/cjs/react-dom.development.js:
|
||
(**
|
||
* @license React
|
||
* react-dom.development.js
|
||
*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*
|
||
* This source code is licensed under the MIT license found in the
|
||
* LICENSE file in the root directory of this source tree.
|
||
*)
|
||
(**
|
||
* Checks if an event is supported in the current execution environment.
|
||
*
|
||
* NOTE: This will not work correctly for non-generic events such as `change`,
|
||
* `reset`, `load`, `error`, and `select`.
|
||
*
|
||
* Borrows from Modernizr.
|
||
*
|
||
* @param {string} eventNameSuffix Event name, e.g. "click".
|
||
* @return {boolean} True if the event is supported.
|
||
* @internal
|
||
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
||
*)
|
||
|
||
react-is/cjs/react-is.development.js:
|
||
(** @license React v16.13.1
|
||
* react-is.development.js
|
||
*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*
|
||
* This source code is licensed under the MIT license found in the
|
||
* LICENSE file in the root directory of this source tree.
|
||
*)
|
||
|
||
object-assign/index.js:
|
||
(*
|
||
object-assign
|
||
(c) Sindre Sorhus
|
||
@license MIT
|
||
*)
|
||
|
||
jquery/dist/jquery.js:
|
||
(*!
|
||
* jQuery JavaScript Library v3.7.0
|
||
* https://jquery.com/
|
||
*
|
||
* Copyright OpenJS Foundation and other contributors
|
||
* Released under the MIT license
|
||
* https://jquery.org/license
|
||
*
|
||
* Date: 2023-05-11T18:29Z
|
||
*)
|
||
|
||
react/cjs/react-jsx-runtime.development.js:
|
||
(**
|
||
* @license React
|
||
* react-jsx-runtime.development.js
|
||
*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*
|
||
* This source code is licensed under the MIT license found in the
|
||
* LICENSE file in the root directory of this source tree.
|
||
*)
|
||
*/
|
||
|
||
/* nosourcemap */ |