mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
12445 lines
400 KiB
JavaScript
12445 lines
400 KiB
JavaScript
(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react'), require('react-dom')) :
|
|
typeof define === 'function' && define.amd ? define(['exports', 'react', 'react-dom'], factory) :
|
|
(global = global || self, factory(global.Reactstrap = {}, global.React, global.ReactDOM));
|
|
}(this, (function (exports, React, ReactDOM) { 'use strict';
|
|
|
|
var React__default = 'default' in React ? React['default'] : React;
|
|
ReactDOM = ReactDOM && Object.prototype.hasOwnProperty.call(ReactDOM, 'default') ? ReactDOM['default'] : ReactDOM;
|
|
|
|
function _extends() {
|
|
_extends = Object.assign || function (target) {
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
|
|
for (var key in source) {
|
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
target[key] = source[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
return target;
|
|
};
|
|
|
|
return _extends.apply(this, arguments);
|
|
}
|
|
|
|
function _inheritsLoose(subClass, superClass) {
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
subClass.prototype.constructor = subClass;
|
|
subClass.__proto__ = superClass;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
function _assertThisInitialized(self) {
|
|
if (self === void 0) {
|
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
|
|
function unwrapExports (x) {
|
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
}
|
|
|
|
function createCommonjsModule(fn, module) {
|
|
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
|
}
|
|
|
|
/** @license React v16.13.1
|
|
* react-is.production.min.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.
|
|
*/
|
|
|
|
var b = "function" === typeof Symbol && Symbol.for,
|
|
c = b ? Symbol.for("react.element") : 60103,
|
|
d = b ? Symbol.for("react.portal") : 60106,
|
|
e = b ? Symbol.for("react.fragment") : 60107,
|
|
f = b ? Symbol.for("react.strict_mode") : 60108,
|
|
g = b ? Symbol.for("react.profiler") : 60114,
|
|
h = b ? Symbol.for("react.provider") : 60109,
|
|
k = b ? Symbol.for("react.context") : 60110,
|
|
l = b ? Symbol.for("react.async_mode") : 60111,
|
|
m = b ? Symbol.for("react.concurrent_mode") : 60111,
|
|
n = b ? Symbol.for("react.forward_ref") : 60112,
|
|
p = b ? Symbol.for("react.suspense") : 60113,
|
|
q = b ? Symbol.for("react.suspense_list") : 60120,
|
|
r = b ? Symbol.for("react.memo") : 60115,
|
|
t = b ? Symbol.for("react.lazy") : 60116,
|
|
v = b ? Symbol.for("react.block") : 60121,
|
|
w = b ? Symbol.for("react.fundamental") : 60117,
|
|
x = b ? Symbol.for("react.responder") : 60118,
|
|
y = b ? Symbol.for("react.scope") : 60119;
|
|
|
|
function z(a) {
|
|
if ("object" === typeof a && null !== a) {
|
|
var u = a.$$typeof;
|
|
|
|
switch (u) {
|
|
case c:
|
|
switch (a = a.type, a) {
|
|
case l:
|
|
case m:
|
|
case e:
|
|
case g:
|
|
case f:
|
|
case p:
|
|
return a;
|
|
|
|
default:
|
|
switch (a = a && a.$$typeof, a) {
|
|
case k:
|
|
case n:
|
|
case t:
|
|
case r:
|
|
case h:
|
|
return a;
|
|
|
|
default:
|
|
return u;
|
|
}
|
|
|
|
}
|
|
|
|
case d:
|
|
return u;
|
|
}
|
|
}
|
|
}
|
|
|
|
function A(a) {
|
|
return z(a) === m;
|
|
}
|
|
|
|
var AsyncMode = l;
|
|
var ConcurrentMode = m;
|
|
var ContextConsumer = k;
|
|
var ContextProvider = h;
|
|
var Element = c;
|
|
var ForwardRef = n;
|
|
var Fragment = e;
|
|
var Lazy = t;
|
|
var Memo = r;
|
|
var Portal = d;
|
|
var Profiler = g;
|
|
var StrictMode = f;
|
|
var Suspense = p;
|
|
|
|
var isAsyncMode = function isAsyncMode(a) {
|
|
return A(a) || z(a) === l;
|
|
};
|
|
|
|
var isConcurrentMode = A;
|
|
|
|
var isContextConsumer = function isContextConsumer(a) {
|
|
return z(a) === k;
|
|
};
|
|
|
|
var isContextProvider = function isContextProvider(a) {
|
|
return z(a) === h;
|
|
};
|
|
|
|
var isElement = function isElement(a) {
|
|
return "object" === typeof a && null !== a && a.$$typeof === c;
|
|
};
|
|
|
|
var isForwardRef = function isForwardRef(a) {
|
|
return z(a) === n;
|
|
};
|
|
|
|
var isFragment = function isFragment(a) {
|
|
return z(a) === e;
|
|
};
|
|
|
|
var isLazy = function isLazy(a) {
|
|
return z(a) === t;
|
|
};
|
|
|
|
var isMemo = function isMemo(a) {
|
|
return z(a) === r;
|
|
};
|
|
|
|
var isPortal = function isPortal(a) {
|
|
return z(a) === d;
|
|
};
|
|
|
|
var isProfiler = function isProfiler(a) {
|
|
return z(a) === g;
|
|
};
|
|
|
|
var isStrictMode = function isStrictMode(a) {
|
|
return z(a) === f;
|
|
};
|
|
|
|
var isSuspense = function isSuspense(a) {
|
|
return z(a) === p;
|
|
};
|
|
|
|
var isValidElementType = function isValidElementType(a) {
|
|
return "string" === typeof a || "function" === typeof a || a === e || a === m || a === g || a === f || a === p || a === q || "object" === typeof a && null !== a && (a.$$typeof === t || a.$$typeof === r || a.$$typeof === h || a.$$typeof === k || a.$$typeof === n || a.$$typeof === w || a.$$typeof === x || a.$$typeof === y || a.$$typeof === v);
|
|
};
|
|
|
|
var typeOf = z;
|
|
var reactIs_production_min = {
|
|
AsyncMode: AsyncMode,
|
|
ConcurrentMode: ConcurrentMode,
|
|
ContextConsumer: ContextConsumer,
|
|
ContextProvider: ContextProvider,
|
|
Element: Element,
|
|
ForwardRef: ForwardRef,
|
|
Fragment: Fragment,
|
|
Lazy: Lazy,
|
|
Memo: Memo,
|
|
Portal: Portal,
|
|
Profiler: Profiler,
|
|
StrictMode: StrictMode,
|
|
Suspense: Suspense,
|
|
isAsyncMode: isAsyncMode,
|
|
isConcurrentMode: isConcurrentMode,
|
|
isContextConsumer: isContextConsumer,
|
|
isContextProvider: isContextProvider,
|
|
isElement: isElement,
|
|
isForwardRef: isForwardRef,
|
|
isFragment: isFragment,
|
|
isLazy: isLazy,
|
|
isMemo: isMemo,
|
|
isPortal: isPortal,
|
|
isProfiler: isProfiler,
|
|
isStrictMode: isStrictMode,
|
|
isSuspense: isSuspense,
|
|
isValidElementType: isValidElementType,
|
|
typeOf: typeOf
|
|
};
|
|
|
|
var reactIs_development = createCommonjsModule(function (module, exports) {
|
|
});
|
|
var reactIs_development_1 = reactIs_development.AsyncMode;
|
|
var reactIs_development_2 = reactIs_development.ConcurrentMode;
|
|
var reactIs_development_3 = reactIs_development.ContextConsumer;
|
|
var reactIs_development_4 = reactIs_development.ContextProvider;
|
|
var reactIs_development_5 = reactIs_development.Element;
|
|
var reactIs_development_6 = reactIs_development.ForwardRef;
|
|
var reactIs_development_7 = reactIs_development.Fragment;
|
|
var reactIs_development_8 = reactIs_development.Lazy;
|
|
var reactIs_development_9 = reactIs_development.Memo;
|
|
var reactIs_development_10 = reactIs_development.Portal;
|
|
var reactIs_development_11 = reactIs_development.Profiler;
|
|
var reactIs_development_12 = reactIs_development.StrictMode;
|
|
var reactIs_development_13 = reactIs_development.Suspense;
|
|
var reactIs_development_14 = reactIs_development.isAsyncMode;
|
|
var reactIs_development_15 = reactIs_development.isConcurrentMode;
|
|
var reactIs_development_16 = reactIs_development.isContextConsumer;
|
|
var reactIs_development_17 = reactIs_development.isContextProvider;
|
|
var reactIs_development_18 = reactIs_development.isElement;
|
|
var reactIs_development_19 = reactIs_development.isForwardRef;
|
|
var reactIs_development_20 = reactIs_development.isFragment;
|
|
var reactIs_development_21 = reactIs_development.isLazy;
|
|
var reactIs_development_22 = reactIs_development.isMemo;
|
|
var reactIs_development_23 = reactIs_development.isPortal;
|
|
var reactIs_development_24 = reactIs_development.isProfiler;
|
|
var reactIs_development_25 = reactIs_development.isStrictMode;
|
|
var reactIs_development_26 = reactIs_development.isSuspense;
|
|
var reactIs_development_27 = reactIs_development.isValidElementType;
|
|
var reactIs_development_28 = reactIs_development.typeOf;
|
|
|
|
var reactIs = createCommonjsModule(function (module) {
|
|
|
|
{
|
|
module.exports = reactIs_production_min;
|
|
}
|
|
});
|
|
|
|
/*
|
|
object-assign
|
|
(c) Sindre Sorhus
|
|
@license MIT
|
|
*/
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
|
|
function toObject(val) {
|
|
if (val === null || val === undefined) {
|
|
throw new TypeError('Object.assign cannot be called with null or undefined');
|
|
}
|
|
|
|
return Object(val);
|
|
}
|
|
|
|
function shouldUseNative() {
|
|
try {
|
|
if (!Object.assign) {
|
|
return false;
|
|
} // Detect buggy property enumeration order in older V8 versions.
|
|
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
|
|
|
|
|
var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
|
|
|
|
test1[5] = 'de';
|
|
|
|
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
|
return false;
|
|
} // https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
|
|
|
|
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;
|
|
} // https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
|
|
|
|
var test3 = {};
|
|
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
|
test3[letter] = letter;
|
|
});
|
|
|
|
if (Object.keys(Object.assign({}, test3)).join('') !== 'abcdefghijklmnopqrst') {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (err) {
|
|
// We don't expect any of the above to throw, but better to be safe.
|
|
return false;
|
|
}
|
|
}
|
|
|
|
var objectAssign = 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;
|
|
};
|
|
|
|
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
var ReactPropTypesSecret_1 = ReactPropTypesSecret;
|
|
|
|
var has = Function.call.bind(Object.prototype.hasOwnProperty);
|
|
|
|
function emptyFunction() {}
|
|
|
|
function emptyFunctionWithReset() {}
|
|
|
|
emptyFunctionWithReset.resetWarningCache = emptyFunction;
|
|
|
|
var factoryWithThrowingShims = function factoryWithThrowingShims() {
|
|
function shim(props, propName, componentName, location, propFullName, secret) {
|
|
if (secret === ReactPropTypesSecret_1) {
|
|
// It is still safe when called from React.
|
|
return;
|
|
}
|
|
|
|
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;
|
|
}
|
|
shim.isRequired = shim;
|
|
|
|
function getShim() {
|
|
return shim;
|
|
}
|
|
// Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
|
|
|
|
var ReactPropTypes = {
|
|
array: shim,
|
|
bool: shim,
|
|
func: shim,
|
|
number: shim,
|
|
object: shim,
|
|
string: shim,
|
|
symbol: shim,
|
|
any: shim,
|
|
arrayOf: getShim,
|
|
element: shim,
|
|
elementType: shim,
|
|
instanceOf: getShim,
|
|
node: shim,
|
|
objectOf: getShim,
|
|
oneOf: getShim,
|
|
oneOfType: getShim,
|
|
shape: getShim,
|
|
exact: getShim,
|
|
checkPropTypes: emptyFunctionWithReset,
|
|
resetWarningCache: emptyFunction
|
|
};
|
|
ReactPropTypes.PropTypes = ReactPropTypes;
|
|
return ReactPropTypes;
|
|
};
|
|
|
|
var propTypes = createCommonjsModule(function (module) {
|
|
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
{
|
|
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
// http://fb.me/prop-types-in-prod
|
|
module.exports = factoryWithThrowingShims();
|
|
}
|
|
});
|
|
|
|
var classnames = createCommonjsModule(function (module) {
|
|
/*!
|
|
Copyright (c) 2017 Jed Watson.
|
|
Licensed under the MIT License (MIT), see
|
|
http://jedwatson.github.io/classnames
|
|
*/
|
|
|
|
/* global define */
|
|
(function () {
|
|
|
|
var hasOwn = {}.hasOwnProperty;
|
|
|
|
function classNames() {
|
|
var classes = [];
|
|
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
var arg = arguments[i];
|
|
if (!arg) continue;
|
|
var argType = typeof arg;
|
|
|
|
if (argType === 'string' || argType === 'number') {
|
|
classes.push(arg);
|
|
} else if (Array.isArray(arg) && arg.length) {
|
|
var inner = classNames.apply(null, arg);
|
|
|
|
if (inner) {
|
|
classes.push(inner);
|
|
}
|
|
} else if (argType === 'object') {
|
|
for (var key in arg) {
|
|
if (hasOwn.call(arg, key) && arg[key]) {
|
|
classes.push(key);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return classes.join(' ');
|
|
}
|
|
|
|
if ( module.exports) {
|
|
classNames.default = classNames;
|
|
module.exports = classNames;
|
|
} else {
|
|
window.classNames = classNames;
|
|
}
|
|
})();
|
|
});
|
|
|
|
function getScrollbarWidth() {
|
|
var scrollDiv = document.createElement('div'); // .modal-scrollbar-measure styles // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.4/scss/_modal.scss#L106-L113
|
|
|
|
scrollDiv.style.position = 'absolute';
|
|
scrollDiv.style.top = '-9999px';
|
|
scrollDiv.style.width = '50px';
|
|
scrollDiv.style.height = '50px';
|
|
scrollDiv.style.overflow = 'scroll';
|
|
document.body.appendChild(scrollDiv);
|
|
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
|
|
document.body.removeChild(scrollDiv);
|
|
return scrollbarWidth;
|
|
}
|
|
function setScrollbarWidth(padding) {
|
|
document.body.style.paddingRight = padding > 0 ? padding + "px" : null;
|
|
}
|
|
function isBodyOverflowing() {
|
|
return document.body.clientWidth < window.innerWidth;
|
|
}
|
|
function getOriginalBodyPadding() {
|
|
var style = window.getComputedStyle(document.body, null);
|
|
return parseInt(style && style.getPropertyValue('padding-right') || 0, 10);
|
|
}
|
|
function conditionallyUpdateScrollbar() {
|
|
var scrollbarWidth = getScrollbarWidth(); // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.6/js/src/modal.js#L433
|
|
|
|
var fixedContent = document.querySelectorAll('.fixed-top, .fixed-bottom, .is-fixed, .sticky-top')[0];
|
|
var bodyPadding = fixedContent ? parseInt(fixedContent.style.paddingRight || 0, 10) : 0;
|
|
|
|
if (isBodyOverflowing()) {
|
|
setScrollbarWidth(bodyPadding + scrollbarWidth);
|
|
}
|
|
}
|
|
var globalCssModule;
|
|
function setGlobalCssModule(cssModule) {
|
|
globalCssModule = cssModule;
|
|
}
|
|
function mapToCssModules(className, cssModule) {
|
|
if (className === void 0) {
|
|
className = '';
|
|
}
|
|
|
|
if (cssModule === void 0) {
|
|
cssModule = globalCssModule;
|
|
}
|
|
|
|
if (!cssModule) return className;
|
|
return className.split(' ').map(function (c) {
|
|
return cssModule[c] || c;
|
|
}).join(' ');
|
|
}
|
|
/**
|
|
* Returns a new object with the key/value pairs from `obj` that are not in the array `omitKeys`.
|
|
*/
|
|
|
|
function omit(obj, omitKeys) {
|
|
var result = {};
|
|
Object.keys(obj).forEach(function (key) {
|
|
if (omitKeys.indexOf(key) === -1) {
|
|
result[key] = obj[key];
|
|
}
|
|
});
|
|
return result;
|
|
}
|
|
/**
|
|
* Returns a filtered copy of an object with only the specified keys.
|
|
*/
|
|
|
|
function pick(obj, keys) {
|
|
var pickKeys = Array.isArray(keys) ? keys : [keys];
|
|
var length = pickKeys.length;
|
|
var key;
|
|
var result = {};
|
|
|
|
while (length > 0) {
|
|
length -= 1;
|
|
key = pickKeys[length];
|
|
result[key] = obj[key];
|
|
}
|
|
|
|
return result;
|
|
}
|
|
var warned = {};
|
|
function warnOnce(message) {
|
|
if (!warned[message]) {
|
|
/* istanbul ignore else */
|
|
if (typeof console !== 'undefined') {
|
|
console.error(message); // eslint-disable-line no-console
|
|
}
|
|
|
|
warned[message] = true;
|
|
}
|
|
}
|
|
function deprecated(propType, explanation) {
|
|
return function validate(props, propName, componentName) {
|
|
if (props[propName] !== null && typeof props[propName] !== 'undefined') {
|
|
warnOnce("\"" + propName + "\" property of \"" + componentName + "\" has been deprecated.\n" + explanation);
|
|
}
|
|
|
|
for (var _len = arguments.length, rest = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
|
|
rest[_key - 3] = arguments[_key];
|
|
}
|
|
|
|
return propType.apply(void 0, [props, propName, componentName].concat(rest));
|
|
};
|
|
} // Shim Element if needed (e.g. in Node environment)
|
|
|
|
var Element$1 = typeof window === 'object' && window.Element || function () {};
|
|
|
|
function DOMElement(props, propName, componentName) {
|
|
if (!(props[propName] instanceof Element$1)) {
|
|
return new Error('Invalid prop `' + propName + '` supplied to `' + componentName + '`. Expected prop to be an instance of Element. Validation failed.');
|
|
}
|
|
}
|
|
var targetPropType = propTypes.oneOfType([propTypes.string, propTypes.func, DOMElement, propTypes.shape({
|
|
current: propTypes.any
|
|
})]);
|
|
var tagPropType = propTypes.oneOfType([propTypes.func, propTypes.string, propTypes.shape({
|
|
$$typeof: propTypes.symbol,
|
|
render: propTypes.func
|
|
}), propTypes.arrayOf(propTypes.oneOfType([propTypes.func, propTypes.string, propTypes.shape({
|
|
$$typeof: propTypes.symbol,
|
|
render: propTypes.func
|
|
})]))]);
|
|
/* eslint key-spacing: ["error", { afterColon: true, align: "value" }] */
|
|
// These are all setup to match what is in the bootstrap _variables.scss
|
|
// https://github.com/twbs/bootstrap/blob/v4-dev/scss/_variables.scss
|
|
|
|
var TransitionTimeouts = {
|
|
Fade: 150,
|
|
// $transition-fade
|
|
Collapse: 350,
|
|
// $transition-collapse
|
|
Modal: 300,
|
|
// $modal-transition
|
|
Carousel: 600 // $carousel-transition
|
|
|
|
}; // Duplicated Transition.propType keys to ensure that Reactstrap builds
|
|
// for distribution properly exclude these keys for nested child HTML attributes
|
|
// since `react-transition-group` removes propTypes in production builds.
|
|
|
|
var TransitionPropTypeKeys = ['in', 'mountOnEnter', 'unmountOnExit', 'appear', 'enter', 'exit', 'timeout', 'onEnter', 'onEntering', 'onEntered', 'onExit', 'onExiting', 'onExited'];
|
|
var TransitionStatuses = {
|
|
ENTERING: 'entering',
|
|
ENTERED: 'entered',
|
|
EXITING: 'exiting',
|
|
EXITED: 'exited'
|
|
};
|
|
var keyCodes = {
|
|
esc: 27,
|
|
space: 32,
|
|
enter: 13,
|
|
tab: 9,
|
|
up: 38,
|
|
down: 40,
|
|
home: 36,
|
|
end: 35,
|
|
n: 78,
|
|
p: 80
|
|
};
|
|
var PopperPlacements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];
|
|
var canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);
|
|
function isReactRefObj(target) {
|
|
if (target && typeof target === 'object') {
|
|
return 'current' in target;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function getTag(value) {
|
|
if (value == null) {
|
|
return value === undefined ? '[object Undefined]' : '[object Null]';
|
|
}
|
|
|
|
return Object.prototype.toString.call(value);
|
|
}
|
|
|
|
function toNumber(value) {
|
|
var type = typeof value;
|
|
var NAN = 0 / 0;
|
|
|
|
if (type === 'number') {
|
|
return value;
|
|
}
|
|
|
|
if (type === 'symbol' || type === 'object' && getTag(value) === '[object Symbol]') {
|
|
return NAN;
|
|
}
|
|
|
|
if (isObject(value)) {
|
|
var other = typeof value.valueOf === 'function' ? value.valueOf() : value;
|
|
value = isObject(other) ? "" + other : other;
|
|
}
|
|
|
|
if (type !== 'string') {
|
|
return value === 0 ? value : +value;
|
|
}
|
|
|
|
value = value.replace(/^\s+|\s+$/g, '');
|
|
var isBinary = /^0b[01]+$/i.test(value);
|
|
return isBinary || /^0o[0-7]+$/i.test(value) ? parseInt(value.slice(2), isBinary ? 2 : 8) : /^[-+]0x[0-9a-f]+$/i.test(value) ? NAN : +value;
|
|
}
|
|
function isObject(value) {
|
|
var type = typeof value;
|
|
return value != null && (type === 'object' || type === 'function');
|
|
}
|
|
function isFunction(value) {
|
|
if (!isObject(value)) {
|
|
return false;
|
|
}
|
|
|
|
var tag = getTag(value);
|
|
return tag === '[object Function]' || tag === '[object AsyncFunction]' || tag === '[object GeneratorFunction]' || tag === '[object Proxy]';
|
|
}
|
|
function findDOMElements(target) {
|
|
if (isReactRefObj(target)) {
|
|
return target.current;
|
|
}
|
|
|
|
if (isFunction(target)) {
|
|
return target();
|
|
}
|
|
|
|
if (typeof target === 'string' && canUseDOM) {
|
|
var selection = document.querySelectorAll(target);
|
|
|
|
if (!selection.length) {
|
|
selection = document.querySelectorAll("#" + target);
|
|
}
|
|
|
|
if (!selection.length) {
|
|
throw new Error("The target '" + target + "' could not be identified in the dom, tip: check spelling");
|
|
}
|
|
|
|
return selection;
|
|
}
|
|
|
|
return target;
|
|
}
|
|
function isArrayOrNodeList(els) {
|
|
if (els === null) {
|
|
return false;
|
|
}
|
|
|
|
return Array.isArray(els) || canUseDOM && typeof els.length === 'number';
|
|
}
|
|
function getTarget(target, allElements) {
|
|
var els = findDOMElements(target);
|
|
|
|
if (allElements) {
|
|
if (isArrayOrNodeList(els)) {
|
|
return els;
|
|
}
|
|
|
|
if (els === null) {
|
|
return [];
|
|
}
|
|
|
|
return [els];
|
|
} else {
|
|
if (isArrayOrNodeList(els)) {
|
|
return els[0];
|
|
}
|
|
|
|
return els;
|
|
}
|
|
}
|
|
var defaultToggleEvents = ['touchstart', 'click'];
|
|
function addMultipleEventListeners(_els, handler, _events, useCapture) {
|
|
var els = _els;
|
|
|
|
if (!isArrayOrNodeList(els)) {
|
|
els = [els];
|
|
}
|
|
|
|
var events = _events;
|
|
|
|
if (typeof events === 'string') {
|
|
events = events.split(/\s+/);
|
|
}
|
|
|
|
if (!isArrayOrNodeList(els) || typeof handler !== 'function' || !Array.isArray(events)) {
|
|
throw new Error("\n The first argument of this function must be DOM node or an array on DOM nodes or NodeList.\n The second must be a function.\n The third is a string or an array of strings that represents DOM events\n ");
|
|
}
|
|
|
|
Array.prototype.forEach.call(events, function (event) {
|
|
Array.prototype.forEach.call(els, function (el) {
|
|
el.addEventListener(event, handler, useCapture);
|
|
});
|
|
});
|
|
return function removeEvents() {
|
|
Array.prototype.forEach.call(events, function (event) {
|
|
Array.prototype.forEach.call(els, function (el) {
|
|
el.removeEventListener(event, handler, useCapture);
|
|
});
|
|
});
|
|
};
|
|
}
|
|
var focusableElements = ['a[href]', 'area[href]', 'input:not([disabled]):not([type=hidden])', 'select:not([disabled])', 'textarea:not([disabled])', 'button:not([disabled])', 'object', 'embed', '[tabindex]:not(.modal)', 'audio[controls]', 'video[controls]', '[contenteditable]:not([contenteditable="false"])'];
|
|
|
|
var utils = /*#__PURE__*/Object.freeze({
|
|
__proto__: null,
|
|
getScrollbarWidth: getScrollbarWidth,
|
|
setScrollbarWidth: setScrollbarWidth,
|
|
isBodyOverflowing: isBodyOverflowing,
|
|
getOriginalBodyPadding: getOriginalBodyPadding,
|
|
conditionallyUpdateScrollbar: conditionallyUpdateScrollbar,
|
|
setGlobalCssModule: setGlobalCssModule,
|
|
mapToCssModules: mapToCssModules,
|
|
omit: omit,
|
|
pick: pick,
|
|
warnOnce: warnOnce,
|
|
deprecated: deprecated,
|
|
DOMElement: DOMElement,
|
|
targetPropType: targetPropType,
|
|
tagPropType: tagPropType,
|
|
TransitionTimeouts: TransitionTimeouts,
|
|
TransitionPropTypeKeys: TransitionPropTypeKeys,
|
|
TransitionStatuses: TransitionStatuses,
|
|
keyCodes: keyCodes,
|
|
PopperPlacements: PopperPlacements,
|
|
canUseDOM: canUseDOM,
|
|
isReactRefObj: isReactRefObj,
|
|
toNumber: toNumber,
|
|
isObject: isObject,
|
|
isFunction: isFunction,
|
|
findDOMElements: findDOMElements,
|
|
isArrayOrNodeList: isArrayOrNodeList,
|
|
getTarget: getTarget,
|
|
defaultToggleEvents: defaultToggleEvents,
|
|
addMultipleEventListeners: addMultipleEventListeners,
|
|
focusableElements: focusableElements
|
|
});
|
|
|
|
var propTypes$1 = {
|
|
tag: tagPropType,
|
|
fluid: propTypes.oneOfType([propTypes.bool, propTypes.string]),
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var Container = function Container(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
fluid = props.fluid,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "fluid", "tag"]);
|
|
|
|
var containerClass = 'container';
|
|
|
|
if (fluid === true) {
|
|
containerClass = 'container-fluid';
|
|
} else if (fluid) {
|
|
containerClass = "container-" + fluid;
|
|
}
|
|
|
|
var classes = mapToCssModules(classnames(className, containerClass), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Container.propTypes = propTypes$1;
|
|
Container.defaultProps = defaultProps;
|
|
|
|
var rowColWidths = ['xs', 'sm', 'md', 'lg', 'xl'];
|
|
var rowColsPropType = propTypes.oneOfType([propTypes.number, propTypes.string]);
|
|
var propTypes$2 = {
|
|
tag: tagPropType,
|
|
noGutters: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
form: propTypes.bool,
|
|
xs: rowColsPropType,
|
|
sm: rowColsPropType,
|
|
md: rowColsPropType,
|
|
lg: rowColsPropType,
|
|
xl: rowColsPropType
|
|
};
|
|
var defaultProps$1 = {
|
|
tag: 'div',
|
|
widths: rowColWidths
|
|
};
|
|
|
|
var Row = function Row(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
noGutters = props.noGutters,
|
|
Tag = props.tag,
|
|
form = props.form,
|
|
widths = props.widths,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "noGutters", "tag", "form", "widths"]);
|
|
|
|
var colClasses = [];
|
|
widths.forEach(function (colWidth, i) {
|
|
var colSize = props[colWidth];
|
|
delete attributes[colWidth];
|
|
|
|
if (!colSize) {
|
|
return;
|
|
}
|
|
|
|
var isXs = !i;
|
|
colClasses.push(isXs ? "row-cols-" + colSize : "row-cols-" + colWidth + "-" + colSize);
|
|
});
|
|
var classes = mapToCssModules(classnames(className, noGutters ? 'no-gutters' : null, form ? 'form-row' : 'row', colClasses), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Row.propTypes = propTypes$2;
|
|
Row.defaultProps = defaultProps$1;
|
|
|
|
var colWidths = ['xs', 'sm', 'md', 'lg', 'xl'];
|
|
var stringOrNumberProp = propTypes.oneOfType([propTypes.number, propTypes.string]);
|
|
var columnProps = propTypes.oneOfType([propTypes.bool, propTypes.number, propTypes.string, propTypes.shape({
|
|
size: propTypes.oneOfType([propTypes.bool, propTypes.number, propTypes.string]),
|
|
order: stringOrNumberProp,
|
|
offset: stringOrNumberProp
|
|
})]);
|
|
var propTypes$3 = {
|
|
tag: tagPropType,
|
|
xs: columnProps,
|
|
sm: columnProps,
|
|
md: columnProps,
|
|
lg: columnProps,
|
|
xl: columnProps,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
widths: propTypes.array
|
|
};
|
|
var defaultProps$2 = {
|
|
tag: 'div',
|
|
widths: colWidths
|
|
};
|
|
|
|
var getColumnSizeClass = function getColumnSizeClass(isXs, colWidth, colSize) {
|
|
if (colSize === true || colSize === '') {
|
|
return isXs ? 'col' : "col-" + colWidth;
|
|
} else if (colSize === 'auto') {
|
|
return isXs ? 'col-auto' : "col-" + colWidth + "-auto";
|
|
}
|
|
|
|
return isXs ? "col-" + colSize : "col-" + colWidth + "-" + colSize;
|
|
};
|
|
|
|
var Col = function Col(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
widths = props.widths,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "widths", "tag"]);
|
|
|
|
var colClasses = [];
|
|
widths.forEach(function (colWidth, i) {
|
|
var columnProp = props[colWidth];
|
|
delete attributes[colWidth];
|
|
|
|
if (!columnProp && columnProp !== '') {
|
|
return;
|
|
}
|
|
|
|
var isXs = !i;
|
|
|
|
if (isObject(columnProp)) {
|
|
var _classNames;
|
|
|
|
var colSizeInterfix = isXs ? '-' : "-" + colWidth + "-";
|
|
var colClass = getColumnSizeClass(isXs, colWidth, columnProp.size);
|
|
colClasses.push(mapToCssModules(classnames((_classNames = {}, _classNames[colClass] = columnProp.size || columnProp.size === '', _classNames["order" + colSizeInterfix + columnProp.order] = columnProp.order || columnProp.order === 0, _classNames["offset" + colSizeInterfix + columnProp.offset] = columnProp.offset || columnProp.offset === 0, _classNames)), cssModule));
|
|
} else {
|
|
var _colClass = getColumnSizeClass(isXs, colWidth, columnProp);
|
|
|
|
colClasses.push(_colClass);
|
|
}
|
|
});
|
|
|
|
if (!colClasses.length) {
|
|
colClasses.push('col');
|
|
}
|
|
|
|
var classes = mapToCssModules(classnames(className, colClasses), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Col.propTypes = propTypes$3;
|
|
Col.defaultProps = defaultProps$2;
|
|
|
|
var propTypes$4 = {
|
|
light: propTypes.bool,
|
|
dark: propTypes.bool,
|
|
full: propTypes.bool,
|
|
fixed: propTypes.string,
|
|
sticky: propTypes.string,
|
|
color: propTypes.string,
|
|
role: propTypes.string,
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
expand: propTypes.oneOfType([propTypes.bool, propTypes.string])
|
|
};
|
|
var defaultProps$3 = {
|
|
tag: 'nav',
|
|
expand: false
|
|
};
|
|
|
|
var getExpandClass = function getExpandClass(expand) {
|
|
if (expand === false) {
|
|
return false;
|
|
} else if (expand === true || expand === 'xs') {
|
|
return 'navbar-expand';
|
|
}
|
|
|
|
return "navbar-expand-" + expand;
|
|
};
|
|
|
|
var Navbar = function Navbar(props) {
|
|
var _classNames;
|
|
|
|
var expand = props.expand,
|
|
className = props.className,
|
|
cssModule = props.cssModule,
|
|
light = props.light,
|
|
dark = props.dark,
|
|
fixed = props.fixed,
|
|
sticky = props.sticky,
|
|
color = props.color,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["expand", "className", "cssModule", "light", "dark", "fixed", "sticky", "color", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'navbar', getExpandClass(expand), (_classNames = {
|
|
'navbar-light': light,
|
|
'navbar-dark': dark
|
|
}, _classNames["bg-" + color] = color, _classNames["fixed-" + fixed] = fixed, _classNames["sticky-" + sticky] = sticky, _classNames)), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Navbar.propTypes = propTypes$4;
|
|
Navbar.defaultProps = defaultProps$3;
|
|
|
|
var propTypes$5 = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$4 = {
|
|
tag: 'a'
|
|
};
|
|
|
|
var NavbarBrand = function NavbarBrand(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'navbar-brand'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
NavbarBrand.propTypes = propTypes$5;
|
|
NavbarBrand.defaultProps = defaultProps$4;
|
|
|
|
var propTypes$6 = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$5 = {
|
|
tag: 'span'
|
|
};
|
|
|
|
var NavbarText = function NavbarText(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
active = props.active,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "active", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'navbar-text'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
NavbarText.propTypes = propTypes$6;
|
|
NavbarText.defaultProps = defaultProps$5;
|
|
|
|
var propTypes$7 = {
|
|
tag: tagPropType,
|
|
type: propTypes.string,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
children: propTypes.node
|
|
};
|
|
var defaultProps$6 = {
|
|
tag: 'button',
|
|
type: 'button'
|
|
};
|
|
|
|
var NavbarToggler = function NavbarToggler(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
children = props.children,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "children", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'navbar-toggler'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
"aria-label": "Toggle navigation"
|
|
}, attributes, {
|
|
className: classes
|
|
}), children || /*#__PURE__*/React__default.createElement("span", {
|
|
className: mapToCssModules('navbar-toggler-icon', cssModule)
|
|
}));
|
|
};
|
|
|
|
NavbarToggler.propTypes = propTypes$7;
|
|
NavbarToggler.defaultProps = defaultProps$6;
|
|
|
|
var propTypes$8 = {
|
|
tabs: propTypes.bool,
|
|
pills: propTypes.bool,
|
|
vertical: propTypes.oneOfType([propTypes.bool, propTypes.string]),
|
|
horizontal: propTypes.string,
|
|
justified: propTypes.bool,
|
|
fill: propTypes.bool,
|
|
navbar: propTypes.bool,
|
|
card: propTypes.bool,
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$7 = {
|
|
tag: 'ul',
|
|
vertical: false
|
|
};
|
|
|
|
var getVerticalClass = function getVerticalClass(vertical) {
|
|
if (vertical === false) {
|
|
return false;
|
|
} else if (vertical === true || vertical === 'xs') {
|
|
return 'flex-column';
|
|
}
|
|
|
|
return "flex-" + vertical + "-column";
|
|
};
|
|
|
|
var Nav = function Nav(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
tabs = props.tabs,
|
|
pills = props.pills,
|
|
vertical = props.vertical,
|
|
horizontal = props.horizontal,
|
|
justified = props.justified,
|
|
fill = props.fill,
|
|
navbar = props.navbar,
|
|
card = props.card,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tabs", "pills", "vertical", "horizontal", "justified", "fill", "navbar", "card", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, navbar ? 'navbar-nav' : 'nav', horizontal ? "justify-content-" + horizontal : false, getVerticalClass(vertical), {
|
|
'nav-tabs': tabs,
|
|
'card-header-tabs': card && tabs,
|
|
'nav-pills': pills,
|
|
'card-header-pills': card && pills,
|
|
'nav-justified': justified,
|
|
'nav-fill': fill
|
|
}), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Nav.propTypes = propTypes$8;
|
|
Nav.defaultProps = defaultProps$7;
|
|
|
|
var propTypes$9 = {
|
|
tag: tagPropType,
|
|
active: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$8 = {
|
|
tag: 'li'
|
|
};
|
|
|
|
var NavItem = function NavItem(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
active = props.active,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "active", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'nav-item', active ? 'active' : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
NavItem.propTypes = propTypes$9;
|
|
NavItem.defaultProps = defaultProps$8;
|
|
|
|
var propTypes$a = {
|
|
tag: tagPropType,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.func, propTypes.string]),
|
|
disabled: propTypes.bool,
|
|
active: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
onClick: propTypes.func,
|
|
href: propTypes.any
|
|
};
|
|
var defaultProps$9 = {
|
|
tag: 'a'
|
|
};
|
|
|
|
var NavLink = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(NavLink, _React$Component);
|
|
|
|
function NavLink(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.onClick = _this.onClick.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = NavLink.prototype;
|
|
|
|
_proto.onClick = function onClick(e) {
|
|
if (this.props.disabled) {
|
|
e.preventDefault();
|
|
return;
|
|
}
|
|
|
|
if (this.props.href === '#') {
|
|
e.preventDefault();
|
|
}
|
|
|
|
if (this.props.onClick) {
|
|
this.props.onClick(e);
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
cssModule = _this$props.cssModule,
|
|
active = _this$props.active,
|
|
Tag = _this$props.tag,
|
|
innerRef = _this$props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(_this$props, ["className", "cssModule", "active", "tag", "innerRef"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'nav-link', {
|
|
disabled: attributes.disabled,
|
|
active: active
|
|
}), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
ref: innerRef,
|
|
onClick: this.onClick,
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
return NavLink;
|
|
}(React__default.Component);
|
|
|
|
NavLink.propTypes = propTypes$a;
|
|
NavLink.defaultProps = defaultProps$9;
|
|
|
|
var propTypes$b = {
|
|
tag: tagPropType,
|
|
listTag: tagPropType,
|
|
className: propTypes.string,
|
|
listClassName: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
children: propTypes.node,
|
|
'aria-label': propTypes.string
|
|
};
|
|
var defaultProps$a = {
|
|
tag: 'nav',
|
|
listTag: 'ol',
|
|
'aria-label': 'breadcrumb'
|
|
};
|
|
|
|
var Breadcrumb = function Breadcrumb(props) {
|
|
var className = props.className,
|
|
listClassName = props.listClassName,
|
|
cssModule = props.cssModule,
|
|
children = props.children,
|
|
Tag = props.tag,
|
|
ListTag = props.listTag,
|
|
label = props['aria-label'],
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "listClassName", "cssModule", "children", "tag", "listTag", "aria-label"]);
|
|
|
|
var classes = mapToCssModules(classnames(className), cssModule);
|
|
var listClasses = mapToCssModules(classnames('breadcrumb', listClassName), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
"aria-label": label
|
|
}), /*#__PURE__*/React__default.createElement(ListTag, {
|
|
className: listClasses
|
|
}, children));
|
|
};
|
|
|
|
Breadcrumb.propTypes = propTypes$b;
|
|
Breadcrumb.defaultProps = defaultProps$a;
|
|
|
|
var propTypes$c = {
|
|
tag: tagPropType,
|
|
active: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$b = {
|
|
tag: 'li'
|
|
};
|
|
|
|
var BreadcrumbItem = function BreadcrumbItem(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
active = props.active,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "active", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, active ? 'active' : false, 'breadcrumb-item'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
"aria-current": active ? 'page' : undefined
|
|
}));
|
|
};
|
|
|
|
BreadcrumbItem.propTypes = propTypes$c;
|
|
BreadcrumbItem.defaultProps = defaultProps$b;
|
|
|
|
var propTypes$d = {
|
|
active: propTypes.bool,
|
|
'aria-label': propTypes.string,
|
|
block: propTypes.bool,
|
|
color: propTypes.string,
|
|
disabled: propTypes.bool,
|
|
outline: propTypes.bool,
|
|
tag: tagPropType,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.func, propTypes.string]),
|
|
onClick: propTypes.func,
|
|
size: propTypes.string,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
close: propTypes.bool
|
|
};
|
|
var defaultProps$c = {
|
|
color: 'secondary',
|
|
tag: 'button'
|
|
};
|
|
|
|
var Button = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(Button, _React$Component);
|
|
|
|
function Button(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.onClick = _this.onClick.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Button.prototype;
|
|
|
|
_proto.onClick = function onClick(e) {
|
|
if (this.props.disabled) {
|
|
e.preventDefault();
|
|
return;
|
|
}
|
|
|
|
if (this.props.onClick) {
|
|
return this.props.onClick(e);
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
active = _this$props.active,
|
|
ariaLabel = _this$props['aria-label'],
|
|
block = _this$props.block,
|
|
className = _this$props.className,
|
|
close = _this$props.close,
|
|
cssModule = _this$props.cssModule,
|
|
color = _this$props.color,
|
|
outline = _this$props.outline,
|
|
size = _this$props.size,
|
|
Tag = _this$props.tag,
|
|
innerRef = _this$props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(_this$props, ["active", "aria-label", "block", "className", "close", "cssModule", "color", "outline", "size", "tag", "innerRef"]);
|
|
|
|
if (close && typeof attributes.children === 'undefined') {
|
|
attributes.children = /*#__PURE__*/React__default.createElement("span", {
|
|
"aria-hidden": true
|
|
}, "\xD7");
|
|
}
|
|
|
|
var btnOutlineColor = "btn" + (outline ? '-outline' : '') + "-" + color;
|
|
var classes = mapToCssModules(classnames(className, {
|
|
close: close
|
|
}, close || 'btn', close || btnOutlineColor, size ? "btn-" + size : false, block ? 'btn-block' : false, {
|
|
active: active,
|
|
disabled: this.props.disabled
|
|
}), cssModule);
|
|
|
|
if (attributes.href && Tag === 'button') {
|
|
Tag = 'a';
|
|
}
|
|
|
|
var defaultAriaLabel = close ? 'Close' : null;
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
type: Tag === 'button' && attributes.onClick ? 'button' : undefined
|
|
}, attributes, {
|
|
className: classes,
|
|
ref: innerRef,
|
|
onClick: this.onClick,
|
|
"aria-label": ariaLabel || defaultAriaLabel
|
|
}));
|
|
};
|
|
|
|
return Button;
|
|
}(React__default.Component);
|
|
|
|
Button.propTypes = propTypes$d;
|
|
Button.defaultProps = defaultProps$c;
|
|
|
|
var propTypes$e = {
|
|
onClick: propTypes.func,
|
|
onBlur: propTypes.func,
|
|
onFocus: propTypes.func,
|
|
defaultValue: propTypes.bool
|
|
};
|
|
var defaultProps$d = {
|
|
defaultValue: false
|
|
};
|
|
|
|
var ButtonToggle = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(ButtonToggle, _React$Component);
|
|
|
|
function ButtonToggle(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.state = {
|
|
toggled: props.defaultValue,
|
|
focus: false
|
|
};
|
|
_this.onBlur = _this.onBlur.bind(_assertThisInitialized(_this));
|
|
_this.onFocus = _this.onFocus.bind(_assertThisInitialized(_this));
|
|
_this.onClick = _this.onClick.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = ButtonToggle.prototype;
|
|
|
|
_proto.onBlur = function onBlur(e) {
|
|
if (this.props.onBlur) {
|
|
this.props.onBlur(e);
|
|
}
|
|
|
|
this.setState({
|
|
focus: false
|
|
});
|
|
};
|
|
|
|
_proto.onFocus = function onFocus(e) {
|
|
if (this.props.onFocus) {
|
|
this.props.onFocus(e);
|
|
}
|
|
|
|
this.setState({
|
|
focus: true
|
|
});
|
|
};
|
|
|
|
_proto.onClick = function onClick(e) {
|
|
if (this.props.onClick) {
|
|
this.props.onClick(e);
|
|
}
|
|
|
|
this.setState(function (_ref) {
|
|
var toggled = _ref.toggled;
|
|
return {
|
|
toggled: !toggled
|
|
};
|
|
});
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
attributes = _objectWithoutPropertiesLoose(_this$props, ["className"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, {
|
|
focus: this.state.focus
|
|
}), this.props.cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Button, _extends({
|
|
active: this.state.toggled,
|
|
onBlur: this.onBlur,
|
|
onFocus: this.onFocus,
|
|
onClick: this.onClick,
|
|
className: classes
|
|
}, attributes));
|
|
};
|
|
|
|
return ButtonToggle;
|
|
}(React__default.Component);
|
|
|
|
ButtonToggle.propTypes = propTypes$e;
|
|
ButtonToggle.defaultProps = defaultProps$d;
|
|
|
|
function _objectWithoutPropertiesLoose$1(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;
|
|
}
|
|
|
|
var objectWithoutPropertiesLoose = _objectWithoutPropertiesLoose$1;
|
|
|
|
var _extends_1 = createCommonjsModule(function (module) {
|
|
function _extends() {
|
|
module.exports = _extends = Object.assign || function (target) {
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
|
|
for (var key in source) {
|
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
target[key] = source[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
return target;
|
|
};
|
|
|
|
return _extends.apply(this, arguments);
|
|
}
|
|
|
|
module.exports = _extends;
|
|
});
|
|
|
|
function _assertThisInitialized$1(self) {
|
|
if (self === void 0) {
|
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
var assertThisInitialized = _assertThisInitialized$1;
|
|
|
|
function _inheritsLoose$1(subClass, superClass) {
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
subClass.prototype.constructor = subClass;
|
|
subClass.__proto__ = superClass;
|
|
}
|
|
|
|
var inheritsLoose = _inheritsLoose$1;
|
|
|
|
function _defineProperty(obj, key, value) {
|
|
if (key in obj) {
|
|
Object.defineProperty(obj, key, {
|
|
value: value,
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true
|
|
});
|
|
} else {
|
|
obj[key] = value;
|
|
}
|
|
|
|
return obj;
|
|
}
|
|
|
|
var defineProperty = _defineProperty;
|
|
|
|
var toStr = Object.prototype.toString;
|
|
|
|
var isArguments = function isArguments(value) {
|
|
var str = toStr.call(value);
|
|
var isArgs = str === '[object Arguments]';
|
|
|
|
if (!isArgs) {
|
|
isArgs = str !== '[object Array]' && value !== null && typeof value === 'object' && typeof value.length === 'number' && value.length >= 0 && toStr.call(value.callee) === '[object Function]';
|
|
}
|
|
|
|
return isArgs;
|
|
};
|
|
|
|
var keysShim;
|
|
|
|
if (!Object.keys) {
|
|
// modified from https://github.com/es-shims/es5-shim
|
|
var has$1 = Object.prototype.hasOwnProperty;
|
|
var toStr$1 = Object.prototype.toString;
|
|
var isArgs = isArguments; // eslint-disable-line global-require
|
|
|
|
var isEnumerable = Object.prototype.propertyIsEnumerable;
|
|
var hasDontEnumBug = !isEnumerable.call({
|
|
toString: null
|
|
}, 'toString');
|
|
var hasProtoEnumBug = isEnumerable.call(function () {}, 'prototype');
|
|
var dontEnums = ['toString', 'toLocaleString', 'valueOf', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'constructor'];
|
|
|
|
var equalsConstructorPrototype = function equalsConstructorPrototype(o) {
|
|
var ctor = o.constructor;
|
|
return ctor && ctor.prototype === o;
|
|
};
|
|
|
|
var excludedKeys = {
|
|
$applicationCache: true,
|
|
$console: true,
|
|
$external: true,
|
|
$frame: true,
|
|
$frameElement: true,
|
|
$frames: true,
|
|
$innerHeight: true,
|
|
$innerWidth: true,
|
|
$onmozfullscreenchange: true,
|
|
$onmozfullscreenerror: true,
|
|
$outerHeight: true,
|
|
$outerWidth: true,
|
|
$pageXOffset: true,
|
|
$pageYOffset: true,
|
|
$parent: true,
|
|
$scrollLeft: true,
|
|
$scrollTop: true,
|
|
$scrollX: true,
|
|
$scrollY: true,
|
|
$self: true,
|
|
$webkitIndexedDB: true,
|
|
$webkitStorageInfo: true,
|
|
$window: true
|
|
};
|
|
|
|
var hasAutomationEqualityBug = function () {
|
|
/* global window */
|
|
if (typeof window === 'undefined') {
|
|
return false;
|
|
}
|
|
|
|
for (var k in window) {
|
|
try {
|
|
if (!excludedKeys['$' + k] && has$1.call(window, k) && window[k] !== null && typeof window[k] === 'object') {
|
|
try {
|
|
equalsConstructorPrototype(window[k]);
|
|
} catch (e) {
|
|
return true;
|
|
}
|
|
}
|
|
} catch (e) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}();
|
|
|
|
var equalsConstructorPrototypeIfNotBuggy = function equalsConstructorPrototypeIfNotBuggy(o) {
|
|
/* global window */
|
|
if (typeof window === 'undefined' || !hasAutomationEqualityBug) {
|
|
return equalsConstructorPrototype(o);
|
|
}
|
|
|
|
try {
|
|
return equalsConstructorPrototype(o);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
keysShim = function keys(object) {
|
|
var isObject = object !== null && typeof object === 'object';
|
|
var isFunction = toStr$1.call(object) === '[object Function]';
|
|
var isArguments = isArgs(object);
|
|
var isString = isObject && toStr$1.call(object) === '[object String]';
|
|
var theKeys = [];
|
|
|
|
if (!isObject && !isFunction && !isArguments) {
|
|
throw new TypeError('Object.keys called on a non-object');
|
|
}
|
|
|
|
var skipProto = hasProtoEnumBug && isFunction;
|
|
|
|
if (isString && object.length > 0 && !has$1.call(object, 0)) {
|
|
for (var i = 0; i < object.length; ++i) {
|
|
theKeys.push(String(i));
|
|
}
|
|
}
|
|
|
|
if (isArguments && object.length > 0) {
|
|
for (var j = 0; j < object.length; ++j) {
|
|
theKeys.push(String(j));
|
|
}
|
|
} else {
|
|
for (var name in object) {
|
|
if (!(skipProto && name === 'prototype') && has$1.call(object, name)) {
|
|
theKeys.push(String(name));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (hasDontEnumBug) {
|
|
var skipConstructor = equalsConstructorPrototypeIfNotBuggy(object);
|
|
|
|
for (var k = 0; k < dontEnums.length; ++k) {
|
|
if (!(skipConstructor && dontEnums[k] === 'constructor') && has$1.call(object, dontEnums[k])) {
|
|
theKeys.push(dontEnums[k]);
|
|
}
|
|
}
|
|
}
|
|
|
|
return theKeys;
|
|
};
|
|
}
|
|
|
|
var implementation = keysShim;
|
|
|
|
var slice = Array.prototype.slice;
|
|
var origKeys = Object.keys;
|
|
var keysShim$1 = origKeys ? function keys(o) {
|
|
return origKeys(o);
|
|
} : implementation;
|
|
var originalKeys = Object.keys;
|
|
|
|
keysShim$1.shim = function shimObjectKeys() {
|
|
if (Object.keys) {
|
|
var keysWorksWithArguments = function () {
|
|
// Safari 5.0 bug
|
|
var args = Object.keys(arguments);
|
|
return args && args.length === arguments.length;
|
|
}(1, 2);
|
|
|
|
if (!keysWorksWithArguments) {
|
|
Object.keys = function keys(object) {
|
|
// eslint-disable-line func-name-matching
|
|
if (isArguments(object)) {
|
|
return originalKeys(slice.call(object));
|
|
}
|
|
|
|
return originalKeys(object);
|
|
};
|
|
}
|
|
} else {
|
|
Object.keys = keysShim$1;
|
|
}
|
|
|
|
return Object.keys || keysShim$1;
|
|
};
|
|
|
|
var objectKeys = keysShim$1;
|
|
|
|
var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
|
|
var toStr$2 = Object.prototype.toString;
|
|
|
|
var isStandardArguments = function isArguments(value) {
|
|
if (hasToStringTag && value && typeof value === 'object' && Symbol.toStringTag in value) {
|
|
return false;
|
|
}
|
|
|
|
return toStr$2.call(value) === '[object Arguments]';
|
|
};
|
|
|
|
var isLegacyArguments = function isArguments(value) {
|
|
if (isStandardArguments(value)) {
|
|
return true;
|
|
}
|
|
|
|
return value !== null && typeof value === 'object' && typeof value.length === 'number' && value.length >= 0 && toStr$2.call(value) !== '[object Array]' && toStr$2.call(value.callee) === '[object Function]';
|
|
};
|
|
|
|
var supportsStandardArguments = function () {
|
|
return isStandardArguments(arguments);
|
|
}();
|
|
|
|
isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
|
var isArguments$1 = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
|
|
var hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';
|
|
var toStr$3 = Object.prototype.toString;
|
|
var concat = Array.prototype.concat;
|
|
var origDefineProperty = Object.defineProperty;
|
|
|
|
var isFunction$1 = function isFunction(fn) {
|
|
return typeof fn === 'function' && toStr$3.call(fn) === '[object Function]';
|
|
};
|
|
|
|
var arePropertyDescriptorsSupported = function arePropertyDescriptorsSupported() {
|
|
var obj = {};
|
|
|
|
try {
|
|
origDefineProperty(obj, 'x', {
|
|
enumerable: false,
|
|
value: obj
|
|
}); // eslint-disable-next-line no-unused-vars, no-restricted-syntax
|
|
|
|
for (var _ in obj) {
|
|
// jscs:ignore disallowUnusedVariables
|
|
return false;
|
|
}
|
|
|
|
return obj.x === obj;
|
|
} catch (e) {
|
|
/* this is IE 8. */
|
|
return false;
|
|
}
|
|
};
|
|
|
|
var supportsDescriptors = origDefineProperty && arePropertyDescriptorsSupported();
|
|
|
|
var defineProperty$1 = function defineProperty(object, name, value, predicate) {
|
|
if (name in object && (!isFunction$1(predicate) || !predicate())) {
|
|
return;
|
|
}
|
|
|
|
if (supportsDescriptors) {
|
|
origDefineProperty(object, name, {
|
|
configurable: true,
|
|
enumerable: false,
|
|
value: value,
|
|
writable: true
|
|
});
|
|
} else {
|
|
object[name] = value;
|
|
}
|
|
};
|
|
|
|
var defineProperties = function defineProperties(object, map) {
|
|
var predicates = arguments.length > 2 ? arguments[2] : {};
|
|
var props = objectKeys(map);
|
|
|
|
if (hasSymbols) {
|
|
props = concat.call(props, Object.getOwnPropertySymbols(map));
|
|
}
|
|
|
|
for (var i = 0; i < props.length; i += 1) {
|
|
defineProperty$1(object, props[i], map[props[i]], predicates[props[i]]);
|
|
}
|
|
};
|
|
|
|
defineProperties.supportsDescriptors = !!supportsDescriptors;
|
|
var defineProperties_1 = defineProperties;
|
|
|
|
/* eslint no-invalid-this: 1 */
|
|
|
|
var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
|
|
var slice$1 = Array.prototype.slice;
|
|
var toStr$4 = Object.prototype.toString;
|
|
var funcType = '[object Function]';
|
|
|
|
var implementation$1 = function bind(that) {
|
|
var target = this;
|
|
|
|
if (typeof target !== 'function' || toStr$4.call(target) !== funcType) {
|
|
throw new TypeError(ERROR_MESSAGE + target);
|
|
}
|
|
|
|
var args = slice$1.call(arguments, 1);
|
|
var bound;
|
|
|
|
var binder = function binder() {
|
|
if (this instanceof bound) {
|
|
var result = target.apply(this, args.concat(slice$1.call(arguments)));
|
|
|
|
if (Object(result) === result) {
|
|
return result;
|
|
}
|
|
|
|
return this;
|
|
} else {
|
|
return target.apply(that, args.concat(slice$1.call(arguments)));
|
|
}
|
|
};
|
|
|
|
var boundLength = Math.max(0, target.length - args.length);
|
|
var boundArgs = [];
|
|
|
|
for (var i = 0; i < boundLength; i++) {
|
|
boundArgs.push('$' + i);
|
|
}
|
|
|
|
bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);
|
|
|
|
if (target.prototype) {
|
|
var Empty = function Empty() {};
|
|
|
|
Empty.prototype = target.prototype;
|
|
bound.prototype = new Empty();
|
|
Empty.prototype = null;
|
|
}
|
|
|
|
return bound;
|
|
};
|
|
|
|
var functionBind = Function.prototype.bind || implementation$1;
|
|
|
|
/* eslint complexity: [2, 18], max-statements: [2, 33] */
|
|
|
|
var shams = function hasSymbols() {
|
|
if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') {
|
|
return false;
|
|
}
|
|
|
|
if (typeof Symbol.iterator === 'symbol') {
|
|
return true;
|
|
}
|
|
|
|
var obj = {};
|
|
var sym = Symbol('test');
|
|
var symObj = Object(sym);
|
|
|
|
if (typeof sym === 'string') {
|
|
return false;
|
|
}
|
|
|
|
if (Object.prototype.toString.call(sym) !== '[object Symbol]') {
|
|
return false;
|
|
}
|
|
|
|
if (Object.prototype.toString.call(symObj) !== '[object Symbol]') {
|
|
return false;
|
|
} // temp disabled per https://github.com/ljharb/object.assign/issues/17
|
|
// if (sym instanceof Symbol) { return false; }
|
|
// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4
|
|
// if (!(symObj instanceof Symbol)) { return false; }
|
|
// if (typeof Symbol.prototype.toString !== 'function') { return false; }
|
|
// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }
|
|
|
|
|
|
var symVal = 42;
|
|
obj[sym] = symVal;
|
|
|
|
for (sym in obj) {
|
|
return false;
|
|
} // eslint-disable-line no-restricted-syntax
|
|
|
|
|
|
if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) {
|
|
return false;
|
|
}
|
|
|
|
if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) {
|
|
return false;
|
|
}
|
|
|
|
var syms = Object.getOwnPropertySymbols(obj);
|
|
|
|
if (syms.length !== 1 || syms[0] !== sym) {
|
|
return false;
|
|
}
|
|
|
|
if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) {
|
|
return false;
|
|
}
|
|
|
|
if (typeof Object.getOwnPropertyDescriptor === 'function') {
|
|
var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
|
|
|
|
if (descriptor.value !== symVal || descriptor.enumerable !== true) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
var origSymbol = commonjsGlobal.Symbol;
|
|
|
|
var hasSymbols$1 = function hasNativeSymbols() {
|
|
if (typeof origSymbol !== 'function') {
|
|
return false;
|
|
}
|
|
|
|
if (typeof Symbol !== 'function') {
|
|
return false;
|
|
}
|
|
|
|
if (typeof origSymbol('foo') !== 'symbol') {
|
|
return false;
|
|
}
|
|
|
|
if (typeof Symbol('bar') !== 'symbol') {
|
|
return false;
|
|
}
|
|
|
|
return shams();
|
|
};
|
|
|
|
/* globals
|
|
Atomics,
|
|
SharedArrayBuffer,
|
|
*/
|
|
|
|
|
|
var undefined$1;
|
|
var $TypeError = TypeError;
|
|
var $gOPD = Object.getOwnPropertyDescriptor;
|
|
|
|
if ($gOPD) {
|
|
try {
|
|
$gOPD({}, '');
|
|
} catch (e) {
|
|
$gOPD = null; // this is IE 8, which has a broken gOPD
|
|
}
|
|
}
|
|
|
|
var throwTypeError = function throwTypeError() {
|
|
throw new $TypeError();
|
|
};
|
|
|
|
var ThrowTypeError = $gOPD ? function () {
|
|
try {
|
|
// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties
|
|
arguments.callee; // IE 8 does not throw here
|
|
|
|
return throwTypeError;
|
|
} catch (calleeThrows) {
|
|
try {
|
|
// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')
|
|
return $gOPD(arguments, 'callee').get;
|
|
} catch (gOPDthrows) {
|
|
return throwTypeError;
|
|
}
|
|
}
|
|
}() : throwTypeError;
|
|
var hasSymbols$2 = hasSymbols$1();
|
|
|
|
var getProto = Object.getPrototypeOf || function (x) {
|
|
return x.__proto__;
|
|
}; // eslint-disable-line no-proto
|
|
|
|
var generatorFunction = undefined$1;
|
|
|
|
var asyncFunction = undefined$1;
|
|
|
|
var asyncGenFunction = undefined$1;
|
|
var TypedArray = typeof Uint8Array === 'undefined' ? undefined$1 : getProto(Uint8Array);
|
|
var INTRINSICS = {
|
|
'%Array%': Array,
|
|
'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined$1 : ArrayBuffer,
|
|
'%ArrayBufferPrototype%': typeof ArrayBuffer === 'undefined' ? undefined$1 : ArrayBuffer.prototype,
|
|
'%ArrayIteratorPrototype%': hasSymbols$2 ? getProto([][Symbol.iterator]()) : undefined$1,
|
|
'%ArrayPrototype%': Array.prototype,
|
|
'%ArrayProto_entries%': Array.prototype.entries,
|
|
'%ArrayProto_forEach%': Array.prototype.forEach,
|
|
'%ArrayProto_keys%': Array.prototype.keys,
|
|
'%ArrayProto_values%': Array.prototype.values,
|
|
'%AsyncFromSyncIteratorPrototype%': undefined$1,
|
|
'%AsyncFunction%': asyncFunction,
|
|
'%AsyncFunctionPrototype%': undefined$1,
|
|
'%AsyncGenerator%': undefined$1,
|
|
'%AsyncGeneratorFunction%': asyncGenFunction,
|
|
'%AsyncGeneratorPrototype%': undefined$1,
|
|
'%AsyncIteratorPrototype%': undefined$1,
|
|
'%Atomics%': typeof Atomics === 'undefined' ? undefined$1 : Atomics,
|
|
'%Boolean%': Boolean,
|
|
'%BooleanPrototype%': Boolean.prototype,
|
|
'%DataView%': typeof DataView === 'undefined' ? undefined$1 : DataView,
|
|
'%DataViewPrototype%': typeof DataView === 'undefined' ? undefined$1 : DataView.prototype,
|
|
'%Date%': Date,
|
|
'%DatePrototype%': Date.prototype,
|
|
'%decodeURI%': decodeURI,
|
|
'%decodeURIComponent%': decodeURIComponent,
|
|
'%encodeURI%': encodeURI,
|
|
'%encodeURIComponent%': encodeURIComponent,
|
|
'%Error%': Error,
|
|
'%ErrorPrototype%': Error.prototype,
|
|
'%eval%': eval,
|
|
// eslint-disable-line no-eval
|
|
'%EvalError%': EvalError,
|
|
'%EvalErrorPrototype%': EvalError.prototype,
|
|
'%Float32Array%': typeof Float32Array === 'undefined' ? undefined$1 : Float32Array,
|
|
'%Float32ArrayPrototype%': typeof Float32Array === 'undefined' ? undefined$1 : Float32Array.prototype,
|
|
'%Float64Array%': typeof Float64Array === 'undefined' ? undefined$1 : Float64Array,
|
|
'%Float64ArrayPrototype%': typeof Float64Array === 'undefined' ? undefined$1 : Float64Array.prototype,
|
|
'%Function%': Function,
|
|
'%FunctionPrototype%': Function.prototype,
|
|
'%Generator%': undefined$1,
|
|
'%GeneratorFunction%': generatorFunction,
|
|
'%GeneratorPrototype%': undefined$1,
|
|
'%Int8Array%': typeof Int8Array === 'undefined' ? undefined$1 : Int8Array,
|
|
'%Int8ArrayPrototype%': typeof Int8Array === 'undefined' ? undefined$1 : Int8Array.prototype,
|
|
'%Int16Array%': typeof Int16Array === 'undefined' ? undefined$1 : Int16Array,
|
|
'%Int16ArrayPrototype%': typeof Int16Array === 'undefined' ? undefined$1 : Int8Array.prototype,
|
|
'%Int32Array%': typeof Int32Array === 'undefined' ? undefined$1 : Int32Array,
|
|
'%Int32ArrayPrototype%': typeof Int32Array === 'undefined' ? undefined$1 : Int32Array.prototype,
|
|
'%isFinite%': isFinite,
|
|
'%isNaN%': isNaN,
|
|
'%IteratorPrototype%': hasSymbols$2 ? getProto(getProto([][Symbol.iterator]())) : undefined$1,
|
|
'%JSON%': typeof JSON === 'object' ? JSON : undefined$1,
|
|
'%JSONParse%': typeof JSON === 'object' ? JSON.parse : undefined$1,
|
|
'%Map%': typeof Map === 'undefined' ? undefined$1 : Map,
|
|
'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols$2 ? undefined$1 : getProto(new Map()[Symbol.iterator]()),
|
|
'%MapPrototype%': typeof Map === 'undefined' ? undefined$1 : Map.prototype,
|
|
'%Math%': Math,
|
|
'%Number%': Number,
|
|
'%NumberPrototype%': Number.prototype,
|
|
'%Object%': Object,
|
|
'%ObjectPrototype%': Object.prototype,
|
|
'%ObjProto_toString%': Object.prototype.toString,
|
|
'%ObjProto_valueOf%': Object.prototype.valueOf,
|
|
'%parseFloat%': parseFloat,
|
|
'%parseInt%': parseInt,
|
|
'%Promise%': typeof Promise === 'undefined' ? undefined$1 : Promise,
|
|
'%PromisePrototype%': typeof Promise === 'undefined' ? undefined$1 : Promise.prototype,
|
|
'%PromiseProto_then%': typeof Promise === 'undefined' ? undefined$1 : Promise.prototype.then,
|
|
'%Promise_all%': typeof Promise === 'undefined' ? undefined$1 : Promise.all,
|
|
'%Promise_reject%': typeof Promise === 'undefined' ? undefined$1 : Promise.reject,
|
|
'%Promise_resolve%': typeof Promise === 'undefined' ? undefined$1 : Promise.resolve,
|
|
'%Proxy%': typeof Proxy === 'undefined' ? undefined$1 : Proxy,
|
|
'%RangeError%': RangeError,
|
|
'%RangeErrorPrototype%': RangeError.prototype,
|
|
'%ReferenceError%': ReferenceError,
|
|
'%ReferenceErrorPrototype%': ReferenceError.prototype,
|
|
'%Reflect%': typeof Reflect === 'undefined' ? undefined$1 : Reflect,
|
|
'%RegExp%': RegExp,
|
|
'%RegExpPrototype%': RegExp.prototype,
|
|
'%Set%': typeof Set === 'undefined' ? undefined$1 : Set,
|
|
'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols$2 ? undefined$1 : getProto(new Set()[Symbol.iterator]()),
|
|
'%SetPrototype%': typeof Set === 'undefined' ? undefined$1 : Set.prototype,
|
|
'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined$1 : SharedArrayBuffer,
|
|
'%SharedArrayBufferPrototype%': typeof SharedArrayBuffer === 'undefined' ? undefined$1 : SharedArrayBuffer.prototype,
|
|
'%String%': String,
|
|
'%StringIteratorPrototype%': hasSymbols$2 ? getProto(''[Symbol.iterator]()) : undefined$1,
|
|
'%StringPrototype%': String.prototype,
|
|
'%Symbol%': hasSymbols$2 ? Symbol : undefined$1,
|
|
'%SymbolPrototype%': hasSymbols$2 ? Symbol.prototype : undefined$1,
|
|
'%SyntaxError%': SyntaxError,
|
|
'%SyntaxErrorPrototype%': SyntaxError.prototype,
|
|
'%ThrowTypeError%': ThrowTypeError,
|
|
'%TypedArray%': TypedArray,
|
|
'%TypedArrayPrototype%': TypedArray ? TypedArray.prototype : undefined$1,
|
|
'%TypeError%': $TypeError,
|
|
'%TypeErrorPrototype%': $TypeError.prototype,
|
|
'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined$1 : Uint8Array,
|
|
'%Uint8ArrayPrototype%': typeof Uint8Array === 'undefined' ? undefined$1 : Uint8Array.prototype,
|
|
'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined$1 : Uint8ClampedArray,
|
|
'%Uint8ClampedArrayPrototype%': typeof Uint8ClampedArray === 'undefined' ? undefined$1 : Uint8ClampedArray.prototype,
|
|
'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined$1 : Uint16Array,
|
|
'%Uint16ArrayPrototype%': typeof Uint16Array === 'undefined' ? undefined$1 : Uint16Array.prototype,
|
|
'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined$1 : Uint32Array,
|
|
'%Uint32ArrayPrototype%': typeof Uint32Array === 'undefined' ? undefined$1 : Uint32Array.prototype,
|
|
'%URIError%': URIError,
|
|
'%URIErrorPrototype%': URIError.prototype,
|
|
'%WeakMap%': typeof WeakMap === 'undefined' ? undefined$1 : WeakMap,
|
|
'%WeakMapPrototype%': typeof WeakMap === 'undefined' ? undefined$1 : WeakMap.prototype,
|
|
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined$1 : WeakSet,
|
|
'%WeakSetPrototype%': typeof WeakSet === 'undefined' ? undefined$1 : WeakSet.prototype
|
|
};
|
|
var $replace = functionBind.call(Function.call, String.prototype.replace);
|
|
/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
|
|
|
|
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
var reEscapeChar = /\\(\\)?/g;
|
|
/** Used to match backslashes in property paths. */
|
|
|
|
var stringToPath = function stringToPath(string) {
|
|
var result = [];
|
|
$replace(string, rePropName, function (match, number, quote, subString) {
|
|
result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;
|
|
});
|
|
return result;
|
|
};
|
|
/* end adaptation */
|
|
|
|
|
|
var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
|
|
if (!(name in INTRINSICS)) {
|
|
throw new SyntaxError('intrinsic ' + name + ' does not exist!');
|
|
} // istanbul ignore if // hopefully this is impossible to test :-)
|
|
|
|
|
|
if (typeof INTRINSICS[name] === 'undefined' && !allowMissing) {
|
|
throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');
|
|
}
|
|
|
|
return INTRINSICS[name];
|
|
};
|
|
|
|
var GetIntrinsic = function GetIntrinsic(name, allowMissing) {
|
|
if (typeof name !== 'string' || name.length === 0) {
|
|
throw new TypeError('intrinsic name must be a non-empty string');
|
|
}
|
|
|
|
if (arguments.length > 1 && typeof allowMissing !== 'boolean') {
|
|
throw new TypeError('"allowMissing" argument must be a boolean');
|
|
}
|
|
|
|
var parts = stringToPath(name);
|
|
var value = getBaseIntrinsic('%' + (parts.length > 0 ? parts[0] : '') + '%', allowMissing);
|
|
|
|
for (var i = 1; i < parts.length; i += 1) {
|
|
if (value != null) {
|
|
if ($gOPD && i + 1 >= parts.length) {
|
|
var desc = $gOPD(value, parts[i]);
|
|
|
|
if (!allowMissing && !(parts[i] in value)) {
|
|
throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
|
|
}
|
|
|
|
value = desc ? desc.get || desc.value : value[parts[i]];
|
|
} else {
|
|
value = value[parts[i]];
|
|
}
|
|
}
|
|
}
|
|
|
|
return value;
|
|
};
|
|
|
|
var $apply = GetIntrinsic('%Function.prototype.apply%');
|
|
var $call = GetIntrinsic('%Function.prototype.call%');
|
|
var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || functionBind.call($call, $apply);
|
|
|
|
var callBind = function callBind() {
|
|
return $reflectApply(functionBind, $call, arguments);
|
|
};
|
|
|
|
var apply = function applyBind() {
|
|
return $reflectApply(functionBind, $apply, arguments);
|
|
};
|
|
callBind.apply = apply;
|
|
|
|
var numberIsNaN = function numberIsNaN(value) {
|
|
return value !== value;
|
|
};
|
|
|
|
var implementation$2 = function is(a, b) {
|
|
if (a === 0 && b === 0) {
|
|
return 1 / a === 1 / b;
|
|
}
|
|
|
|
if (a === b) {
|
|
return true;
|
|
}
|
|
|
|
if (numberIsNaN(a) && numberIsNaN(b)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
var polyfill = function getPolyfill() {
|
|
return typeof Object.is === 'function' ? Object.is : implementation$2;
|
|
};
|
|
|
|
var shim = function shimObjectIs() {
|
|
var polyfill$1 = polyfill();
|
|
defineProperties_1(Object, {
|
|
is: polyfill$1
|
|
}, {
|
|
is: function testObjectIs() {
|
|
return Object.is !== polyfill$1;
|
|
}
|
|
});
|
|
return polyfill$1;
|
|
};
|
|
|
|
var polyfill$1 = callBind(polyfill(), Object);
|
|
defineProperties_1(polyfill$1, {
|
|
getPolyfill: polyfill,
|
|
implementation: implementation$2,
|
|
shim: shim
|
|
});
|
|
var objectIs = polyfill$1;
|
|
|
|
var hasSymbols$3 = hasSymbols$1();
|
|
var hasToStringTag$1 = hasSymbols$3 && typeof Symbol.toStringTag === 'symbol';
|
|
var regexExec;
|
|
var isRegexMarker;
|
|
var badStringifier;
|
|
|
|
if (hasToStringTag$1) {
|
|
regexExec = Function.call.bind(RegExp.prototype.exec);
|
|
isRegexMarker = {};
|
|
|
|
var throwRegexMarker = function throwRegexMarker() {
|
|
throw isRegexMarker;
|
|
};
|
|
|
|
badStringifier = {
|
|
toString: throwRegexMarker,
|
|
valueOf: throwRegexMarker
|
|
};
|
|
|
|
if (typeof Symbol.toPrimitive === 'symbol') {
|
|
badStringifier[Symbol.toPrimitive] = throwRegexMarker;
|
|
}
|
|
}
|
|
|
|
var toStr$5 = Object.prototype.toString;
|
|
var regexClass = '[object RegExp]';
|
|
var isRegex = hasToStringTag$1 // eslint-disable-next-line consistent-return
|
|
? function isRegex(value) {
|
|
if (!value || typeof value !== 'object') {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
regexExec(value, badStringifier);
|
|
} catch (e) {
|
|
return e === isRegexMarker;
|
|
}
|
|
} : function isRegex(value) {
|
|
// In older browsers, typeof regex incorrectly returns 'function'
|
|
if (!value || typeof value !== 'object' && typeof value !== 'function') {
|
|
return false;
|
|
}
|
|
|
|
return toStr$5.call(value) === regexClass;
|
|
};
|
|
|
|
var $Object = Object;
|
|
var $TypeError$1 = TypeError;
|
|
|
|
var implementation$3 = function flags() {
|
|
if (this != null && this !== $Object(this)) {
|
|
throw new $TypeError$1('RegExp.prototype.flags getter called on non-object');
|
|
}
|
|
|
|
var result = '';
|
|
|
|
if (this.global) {
|
|
result += 'g';
|
|
}
|
|
|
|
if (this.ignoreCase) {
|
|
result += 'i';
|
|
}
|
|
|
|
if (this.multiline) {
|
|
result += 'm';
|
|
}
|
|
|
|
if (this.dotAll) {
|
|
result += 's';
|
|
}
|
|
|
|
if (this.unicode) {
|
|
result += 'u';
|
|
}
|
|
|
|
if (this.sticky) {
|
|
result += 'y';
|
|
}
|
|
|
|
return result;
|
|
};
|
|
|
|
var supportsDescriptors$1 = defineProperties_1.supportsDescriptors;
|
|
var $gOPD$1 = Object.getOwnPropertyDescriptor;
|
|
var $TypeError$2 = TypeError;
|
|
|
|
var polyfill$2 = function getPolyfill() {
|
|
if (!supportsDescriptors$1) {
|
|
throw new $TypeError$2('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');
|
|
}
|
|
|
|
if (/a/mig.flags === 'gim') {
|
|
var descriptor = $gOPD$1(RegExp.prototype, 'flags');
|
|
|
|
if (descriptor && typeof descriptor.get === 'function' && typeof /a/.dotAll === 'boolean') {
|
|
return descriptor.get;
|
|
}
|
|
}
|
|
|
|
return implementation$3;
|
|
};
|
|
|
|
var supportsDescriptors$2 = defineProperties_1.supportsDescriptors;
|
|
var gOPD = Object.getOwnPropertyDescriptor;
|
|
var defineProperty$2 = Object.defineProperty;
|
|
var TypeErr = TypeError;
|
|
var getProto$1 = Object.getPrototypeOf;
|
|
var regex = /a/;
|
|
|
|
var shim$1 = function shimFlags() {
|
|
if (!supportsDescriptors$2 || !getProto$1) {
|
|
throw new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');
|
|
}
|
|
|
|
var polyfill = polyfill$2();
|
|
var proto = getProto$1(regex);
|
|
var descriptor = gOPD(proto, 'flags');
|
|
|
|
if (!descriptor || descriptor.get !== polyfill) {
|
|
defineProperty$2(proto, 'flags', {
|
|
configurable: true,
|
|
enumerable: false,
|
|
get: polyfill
|
|
});
|
|
}
|
|
|
|
return polyfill;
|
|
};
|
|
|
|
var flagsBound = callBind(implementation$3);
|
|
defineProperties_1(flagsBound, {
|
|
getPolyfill: polyfill$2,
|
|
implementation: implementation$3,
|
|
shim: shim$1
|
|
});
|
|
var regexp_prototype_flags = flagsBound;
|
|
|
|
var getDay = Date.prototype.getDay;
|
|
|
|
var tryDateObject = function tryDateGetDayCall(value) {
|
|
try {
|
|
getDay.call(value);
|
|
return true;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
var toStr$6 = Object.prototype.toString;
|
|
var dateClass = '[object Date]';
|
|
var hasToStringTag$2 = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
|
|
|
|
var isDateObject = function isDateObject(value) {
|
|
if (typeof value !== 'object' || value === null) {
|
|
return false;
|
|
}
|
|
|
|
return hasToStringTag$2 ? tryDateObject(value) : toStr$6.call(value) === dateClass;
|
|
};
|
|
|
|
var getTime = Date.prototype.getTime;
|
|
|
|
function deepEqual(actual, expected, options) {
|
|
var opts = options || {}; // 7.1. All identical values are equivalent, as determined by ===.
|
|
|
|
if (opts.strict ? objectIs(actual, expected) : actual === expected) {
|
|
return true;
|
|
} // 7.3. Other pairs that do not both pass typeof value == 'object', equivalence is determined by ==.
|
|
|
|
|
|
if (!actual || !expected || typeof actual !== 'object' && typeof expected !== 'object') {
|
|
return opts.strict ? objectIs(actual, expected) : actual == expected;
|
|
}
|
|
/*
|
|
* 7.4. For all other Object pairs, including Array objects, equivalence is
|
|
* determined by having the same number of owned properties (as verified
|
|
* with Object.prototype.hasOwnProperty.call), the same set of keys
|
|
* (although not necessarily the same order), equivalent values for every
|
|
* corresponding key, and an identical 'prototype' property. Note: this
|
|
* accounts for both named and indexed properties on Arrays.
|
|
*/
|
|
// eslint-disable-next-line no-use-before-define
|
|
|
|
|
|
return objEquiv(actual, expected, opts);
|
|
}
|
|
|
|
function isUndefinedOrNull(value) {
|
|
return value === null || value === undefined;
|
|
}
|
|
|
|
function isBuffer(x) {
|
|
if (!x || typeof x !== 'object' || typeof x.length !== 'number') {
|
|
return false;
|
|
}
|
|
|
|
if (typeof x.copy !== 'function' || typeof x.slice !== 'function') {
|
|
return false;
|
|
}
|
|
|
|
if (x.length > 0 && typeof x[0] !== 'number') {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
function objEquiv(a, b, opts) {
|
|
/* eslint max-statements: [2, 50] */
|
|
var i, key;
|
|
|
|
if (typeof a !== typeof b) {
|
|
return false;
|
|
}
|
|
|
|
if (isUndefinedOrNull(a) || isUndefinedOrNull(b)) {
|
|
return false;
|
|
} // an identical 'prototype' property.
|
|
|
|
|
|
if (a.prototype !== b.prototype) {
|
|
return false;
|
|
}
|
|
|
|
if (isArguments$1(a) !== isArguments$1(b)) {
|
|
return false;
|
|
}
|
|
|
|
var aIsRegex = isRegex(a);
|
|
var bIsRegex = isRegex(b);
|
|
|
|
if (aIsRegex !== bIsRegex) {
|
|
return false;
|
|
}
|
|
|
|
if (aIsRegex || bIsRegex) {
|
|
return a.source === b.source && regexp_prototype_flags(a) === regexp_prototype_flags(b);
|
|
}
|
|
|
|
if (isDateObject(a) && isDateObject(b)) {
|
|
return getTime.call(a) === getTime.call(b);
|
|
}
|
|
|
|
var aIsBuffer = isBuffer(a);
|
|
var bIsBuffer = isBuffer(b);
|
|
|
|
if (aIsBuffer !== bIsBuffer) {
|
|
return false;
|
|
}
|
|
|
|
if (aIsBuffer || bIsBuffer) {
|
|
// && would work too, because both are true or both false here
|
|
if (a.length !== b.length) {
|
|
return false;
|
|
}
|
|
|
|
for (i = 0; i < a.length; i++) {
|
|
if (a[i] !== b[i]) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
if (typeof a !== typeof b) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
var ka = objectKeys(a);
|
|
var kb = objectKeys(b);
|
|
} catch (e) {
|
|
// happens when one is a string literal and the other isn't
|
|
return false;
|
|
} // having the same number of owned properties (keys incorporates hasOwnProperty)
|
|
|
|
|
|
if (ka.length !== kb.length) {
|
|
return false;
|
|
} // the same set of keys (although not necessarily the same order),
|
|
|
|
|
|
ka.sort();
|
|
kb.sort(); // ~~~cheap key test
|
|
|
|
for (i = ka.length - 1; i >= 0; i--) {
|
|
if (ka[i] != kb[i]) {
|
|
return false;
|
|
}
|
|
} // equivalent values for every corresponding key, and ~~~possibly expensive deep test
|
|
|
|
|
|
for (i = ka.length - 1; i >= 0; i--) {
|
|
key = ka[i];
|
|
|
|
if (!deepEqual(a[key], b[key], opts)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
var deepEqual_1 = deepEqual;
|
|
|
|
/**!
|
|
* @fileOverview Kickass library to create and place poppers near their reference elements.
|
|
* @version 1.16.1
|
|
* @license
|
|
* Copyright (c) 2016 Federico Zivolo and contributors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && typeof navigator !== 'undefined';
|
|
|
|
var timeoutDuration = function () {
|
|
var longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];
|
|
|
|
for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) {
|
|
if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}();
|
|
|
|
function microtaskDebounce(fn) {
|
|
var called = false;
|
|
return function () {
|
|
if (called) {
|
|
return;
|
|
}
|
|
|
|
called = true;
|
|
window.Promise.resolve().then(function () {
|
|
called = false;
|
|
fn();
|
|
});
|
|
};
|
|
}
|
|
|
|
function taskDebounce(fn) {
|
|
var scheduled = false;
|
|
return function () {
|
|
if (!scheduled) {
|
|
scheduled = true;
|
|
setTimeout(function () {
|
|
scheduled = false;
|
|
fn();
|
|
}, timeoutDuration);
|
|
}
|
|
};
|
|
}
|
|
|
|
var supportsMicroTasks = isBrowser && window.Promise;
|
|
/**
|
|
* Create a debounced version of a method, that's asynchronously deferred
|
|
* but called in the minimum time possible.
|
|
*
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Function} fn
|
|
* @returns {Function}
|
|
*/
|
|
|
|
var debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce;
|
|
/**
|
|
* Check if the given variable is a function
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Any} functionToCheck - variable to check
|
|
* @returns {Boolean} answer to: is a function?
|
|
*/
|
|
|
|
function isFunction$2(functionToCheck) {
|
|
var getType = {};
|
|
return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';
|
|
}
|
|
/**
|
|
* Get CSS computed property of the given element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Eement} element
|
|
* @argument {String} property
|
|
*/
|
|
|
|
|
|
function getStyleComputedProperty(element, property) {
|
|
if (element.nodeType !== 1) {
|
|
return [];
|
|
} // NOTE: 1 DOM access here
|
|
|
|
|
|
var window = element.ownerDocument.defaultView;
|
|
var css = window.getComputedStyle(element, null);
|
|
return property ? css[property] : css;
|
|
}
|
|
/**
|
|
* Returns the parentNode or the host of the element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element
|
|
* @returns {Element} parent
|
|
*/
|
|
|
|
|
|
function getParentNode(element) {
|
|
if (element.nodeName === 'HTML') {
|
|
return element;
|
|
}
|
|
|
|
return element.parentNode || element.host;
|
|
}
|
|
/**
|
|
* Returns the scrolling parent of the given element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element
|
|
* @returns {Element} scroll parent
|
|
*/
|
|
|
|
|
|
function getScrollParent(element) {
|
|
// Return body, `getScroll` will take care to get the correct `scrollTop` from it
|
|
if (!element) {
|
|
return document.body;
|
|
}
|
|
|
|
switch (element.nodeName) {
|
|
case 'HTML':
|
|
case 'BODY':
|
|
return element.ownerDocument.body;
|
|
|
|
case '#document':
|
|
return element.body;
|
|
} // Firefox want us to check `-x` and `-y` variations as well
|
|
|
|
|
|
var _getStyleComputedProp = getStyleComputedProperty(element),
|
|
overflow = _getStyleComputedProp.overflow,
|
|
overflowX = _getStyleComputedProp.overflowX,
|
|
overflowY = _getStyleComputedProp.overflowY;
|
|
|
|
if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {
|
|
return element;
|
|
}
|
|
|
|
return getScrollParent(getParentNode(element));
|
|
}
|
|
/**
|
|
* Returns the reference node of the reference object, or the reference object itself.
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {Element|Object} reference - the reference element (the popper will be relative to this)
|
|
* @returns {Element} parent
|
|
*/
|
|
|
|
|
|
function getReferenceNode(reference) {
|
|
return reference && reference.referenceNode ? reference.referenceNode : reference;
|
|
}
|
|
|
|
var isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);
|
|
var isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);
|
|
/**
|
|
* Determines if the browser is Internet Explorer
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {Number} version to check
|
|
* @returns {Boolean} isIE
|
|
*/
|
|
|
|
function isIE(version) {
|
|
if (version === 11) {
|
|
return isIE11;
|
|
}
|
|
|
|
if (version === 10) {
|
|
return isIE10;
|
|
}
|
|
|
|
return isIE11 || isIE10;
|
|
}
|
|
/**
|
|
* Returns the offset parent of the given element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element
|
|
* @returns {Element} offset parent
|
|
*/
|
|
|
|
|
|
function getOffsetParent(element) {
|
|
if (!element) {
|
|
return document.documentElement;
|
|
}
|
|
|
|
var noOffsetParent = isIE(10) ? document.body : null; // NOTE: 1 DOM access here
|
|
|
|
var offsetParent = element.offsetParent || null; // Skip hidden elements which don't have an offsetParent
|
|
|
|
while (offsetParent === noOffsetParent && element.nextElementSibling) {
|
|
offsetParent = (element = element.nextElementSibling).offsetParent;
|
|
}
|
|
|
|
var nodeName = offsetParent && offsetParent.nodeName;
|
|
|
|
if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {
|
|
return element ? element.ownerDocument.documentElement : document.documentElement;
|
|
} // .offsetParent will return the closest TH, TD or TABLE in case
|
|
// no offsetParent is present, I hate this job...
|
|
|
|
|
|
if (['TH', 'TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') {
|
|
return getOffsetParent(offsetParent);
|
|
}
|
|
|
|
return offsetParent;
|
|
}
|
|
|
|
function isOffsetContainer(element) {
|
|
var nodeName = element.nodeName;
|
|
|
|
if (nodeName === 'BODY') {
|
|
return false;
|
|
}
|
|
|
|
return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element;
|
|
}
|
|
/**
|
|
* Finds the root node (document, shadowDOM root) of the given element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} node
|
|
* @returns {Element} root node
|
|
*/
|
|
|
|
|
|
function getRoot(node) {
|
|
if (node.parentNode !== null) {
|
|
return getRoot(node.parentNode);
|
|
}
|
|
|
|
return node;
|
|
}
|
|
/**
|
|
* Finds the offset parent common to the two provided nodes
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element1
|
|
* @argument {Element} element2
|
|
* @returns {Element} common offset parent
|
|
*/
|
|
|
|
|
|
function findCommonOffsetParent(element1, element2) {
|
|
// This check is needed to avoid errors in case one of the elements isn't defined for any reason
|
|
if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {
|
|
return document.documentElement;
|
|
} // Here we make sure to give as "start" the element that comes first in the DOM
|
|
|
|
|
|
var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING;
|
|
var start = order ? element1 : element2;
|
|
var end = order ? element2 : element1; // Get common ancestor container
|
|
|
|
var range = document.createRange();
|
|
range.setStart(start, 0);
|
|
range.setEnd(end, 0);
|
|
var commonAncestorContainer = range.commonAncestorContainer; // Both nodes are inside #document
|
|
|
|
if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) {
|
|
if (isOffsetContainer(commonAncestorContainer)) {
|
|
return commonAncestorContainer;
|
|
}
|
|
|
|
return getOffsetParent(commonAncestorContainer);
|
|
} // one of the nodes is inside shadowDOM, find which one
|
|
|
|
|
|
var element1root = getRoot(element1);
|
|
|
|
if (element1root.host) {
|
|
return findCommonOffsetParent(element1root.host, element2);
|
|
} else {
|
|
return findCommonOffsetParent(element1, getRoot(element2).host);
|
|
}
|
|
}
|
|
/**
|
|
* Gets the scroll value of the given element in the given side (top and left)
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element
|
|
* @argument {String} side `top` or `left`
|
|
* @returns {number} amount of scrolled pixels
|
|
*/
|
|
|
|
|
|
function getScroll(element) {
|
|
var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top';
|
|
var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';
|
|
var nodeName = element.nodeName;
|
|
|
|
if (nodeName === 'BODY' || nodeName === 'HTML') {
|
|
var html = element.ownerDocument.documentElement;
|
|
var scrollingElement = element.ownerDocument.scrollingElement || html;
|
|
return scrollingElement[upperSide];
|
|
}
|
|
|
|
return element[upperSide];
|
|
}
|
|
/*
|
|
* Sum or subtract the element scroll values (left and top) from a given rect object
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {Object} rect - Rect object you want to change
|
|
* @param {HTMLElement} element - The element from the function reads the scroll values
|
|
* @param {Boolean} subtract - set to true if you want to subtract the scroll values
|
|
* @return {Object} rect - The modifier rect object
|
|
*/
|
|
|
|
|
|
function includeScroll(rect, element) {
|
|
var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
var scrollTop = getScroll(element, 'top');
|
|
var scrollLeft = getScroll(element, 'left');
|
|
var modifier = subtract ? -1 : 1;
|
|
rect.top += scrollTop * modifier;
|
|
rect.bottom += scrollTop * modifier;
|
|
rect.left += scrollLeft * modifier;
|
|
rect.right += scrollLeft * modifier;
|
|
return rect;
|
|
}
|
|
/*
|
|
* Helper to detect borders of a given element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {CSSStyleDeclaration} styles
|
|
* Result of `getStyleComputedProperty` on the given element
|
|
* @param {String} axis - `x` or `y`
|
|
* @return {number} borders - The borders size of the given axis
|
|
*/
|
|
|
|
|
|
function getBordersSize(styles, axis) {
|
|
var sideA = axis === 'x' ? 'Left' : 'Top';
|
|
var sideB = sideA === 'Left' ? 'Right' : 'Bottom';
|
|
return parseFloat(styles['border' + sideA + 'Width']) + parseFloat(styles['border' + sideB + 'Width']);
|
|
}
|
|
|
|
function getSize(axis, body, html, computedStyle) {
|
|
return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? parseInt(html['offset' + axis]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')]) : 0);
|
|
}
|
|
|
|
function getWindowSizes(document) {
|
|
var body = document.body;
|
|
var html = document.documentElement;
|
|
var computedStyle = isIE(10) && getComputedStyle(html);
|
|
return {
|
|
height: getSize('Height', body, html, computedStyle),
|
|
width: getSize('Width', body, html, computedStyle)
|
|
};
|
|
}
|
|
|
|
var classCallCheck = function classCallCheck(instance, Constructor) {
|
|
if (!(instance instanceof Constructor)) {
|
|
throw new TypeError("Cannot call a class as a function");
|
|
}
|
|
};
|
|
|
|
var createClass = function () {
|
|
function defineProperties(target, props) {
|
|
for (var i = 0; i < props.length; i++) {
|
|
var descriptor = props[i];
|
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
descriptor.configurable = true;
|
|
if ("value" in descriptor) descriptor.writable = true;
|
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
}
|
|
}
|
|
|
|
return function (Constructor, protoProps, staticProps) {
|
|
if (protoProps) defineProperties(Constructor.prototype, protoProps);
|
|
if (staticProps) defineProperties(Constructor, staticProps);
|
|
return Constructor;
|
|
};
|
|
}();
|
|
|
|
var defineProperty$3 = function defineProperty(obj, key, value) {
|
|
if (key in obj) {
|
|
Object.defineProperty(obj, key, {
|
|
value: value,
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true
|
|
});
|
|
} else {
|
|
obj[key] = value;
|
|
}
|
|
|
|
return obj;
|
|
};
|
|
|
|
var _extends$1 = Object.assign || function (target) {
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
|
|
for (var key in source) {
|
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
target[key] = source[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
return target;
|
|
};
|
|
/**
|
|
* Given element offsets, generate an output similar to getBoundingClientRect
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Object} offsets
|
|
* @returns {Object} ClientRect like output
|
|
*/
|
|
|
|
|
|
function getClientRect(offsets) {
|
|
return _extends$1({}, offsets, {
|
|
right: offsets.left + offsets.width,
|
|
bottom: offsets.top + offsets.height
|
|
});
|
|
}
|
|
/**
|
|
* Get bounding client rect of given element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {HTMLElement} element
|
|
* @return {Object} client rect
|
|
*/
|
|
|
|
|
|
function getBoundingClientRect(element) {
|
|
var rect = {}; // IE10 10 FIX: Please, don't ask, the element isn't
|
|
// considered in DOM in some circumstances...
|
|
// This isn't reproducible in IE10 compatibility mode of IE11
|
|
|
|
try {
|
|
if (isIE(10)) {
|
|
rect = element.getBoundingClientRect();
|
|
var scrollTop = getScroll(element, 'top');
|
|
var scrollLeft = getScroll(element, 'left');
|
|
rect.top += scrollTop;
|
|
rect.left += scrollLeft;
|
|
rect.bottom += scrollTop;
|
|
rect.right += scrollLeft;
|
|
} else {
|
|
rect = element.getBoundingClientRect();
|
|
}
|
|
} catch (e) {}
|
|
|
|
var result = {
|
|
left: rect.left,
|
|
top: rect.top,
|
|
width: rect.right - rect.left,
|
|
height: rect.bottom - rect.top
|
|
}; // subtract scrollbar size from sizes
|
|
|
|
var sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {};
|
|
var width = sizes.width || element.clientWidth || result.width;
|
|
var height = sizes.height || element.clientHeight || result.height;
|
|
var horizScrollbar = element.offsetWidth - width;
|
|
var vertScrollbar = element.offsetHeight - height; // if an hypothetical scrollbar is detected, we must be sure it's not a `border`
|
|
// we make this check conditional for performance reasons
|
|
|
|
if (horizScrollbar || vertScrollbar) {
|
|
var styles = getStyleComputedProperty(element);
|
|
horizScrollbar -= getBordersSize(styles, 'x');
|
|
vertScrollbar -= getBordersSize(styles, 'y');
|
|
result.width -= horizScrollbar;
|
|
result.height -= vertScrollbar;
|
|
}
|
|
|
|
return getClientRect(result);
|
|
}
|
|
|
|
function getOffsetRectRelativeToArbitraryNode(children, parent) {
|
|
var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
var isIE10 = isIE(10);
|
|
var isHTML = parent.nodeName === 'HTML';
|
|
var childrenRect = getBoundingClientRect(children);
|
|
var parentRect = getBoundingClientRect(parent);
|
|
var scrollParent = getScrollParent(children);
|
|
var styles = getStyleComputedProperty(parent);
|
|
var borderTopWidth = parseFloat(styles.borderTopWidth);
|
|
var borderLeftWidth = parseFloat(styles.borderLeftWidth); // In cases where the parent is fixed, we must ignore negative scroll in offset calc
|
|
|
|
if (fixedPosition && isHTML) {
|
|
parentRect.top = Math.max(parentRect.top, 0);
|
|
parentRect.left = Math.max(parentRect.left, 0);
|
|
}
|
|
|
|
var offsets = getClientRect({
|
|
top: childrenRect.top - parentRect.top - borderTopWidth,
|
|
left: childrenRect.left - parentRect.left - borderLeftWidth,
|
|
width: childrenRect.width,
|
|
height: childrenRect.height
|
|
});
|
|
offsets.marginTop = 0;
|
|
offsets.marginLeft = 0; // Subtract margins of documentElement in case it's being used as parent
|
|
// we do this only on HTML because it's the only element that behaves
|
|
// differently when margins are applied to it. The margins are included in
|
|
// the box of the documentElement, in the other cases not.
|
|
|
|
if (!isIE10 && isHTML) {
|
|
var marginTop = parseFloat(styles.marginTop);
|
|
var marginLeft = parseFloat(styles.marginLeft);
|
|
offsets.top -= borderTopWidth - marginTop;
|
|
offsets.bottom -= borderTopWidth - marginTop;
|
|
offsets.left -= borderLeftWidth - marginLeft;
|
|
offsets.right -= borderLeftWidth - marginLeft; // Attach marginTop and marginLeft because in some circumstances we may need them
|
|
|
|
offsets.marginTop = marginTop;
|
|
offsets.marginLeft = marginLeft;
|
|
}
|
|
|
|
if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') {
|
|
offsets = includeScroll(offsets, parent);
|
|
}
|
|
|
|
return offsets;
|
|
}
|
|
|
|
function getViewportOffsetRectRelativeToArtbitraryNode(element) {
|
|
var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
var html = element.ownerDocument.documentElement;
|
|
var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);
|
|
var width = Math.max(html.clientWidth, window.innerWidth || 0);
|
|
var height = Math.max(html.clientHeight, window.innerHeight || 0);
|
|
var scrollTop = !excludeScroll ? getScroll(html) : 0;
|
|
var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0;
|
|
var offset = {
|
|
top: scrollTop - relativeOffset.top + relativeOffset.marginTop,
|
|
left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,
|
|
width: width,
|
|
height: height
|
|
};
|
|
return getClientRect(offset);
|
|
}
|
|
/**
|
|
* Check if the given element is fixed or is inside a fixed parent
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element
|
|
* @argument {Element} customContainer
|
|
* @returns {Boolean} answer to "isFixed?"
|
|
*/
|
|
|
|
|
|
function isFixed(element) {
|
|
var nodeName = element.nodeName;
|
|
|
|
if (nodeName === 'BODY' || nodeName === 'HTML') {
|
|
return false;
|
|
}
|
|
|
|
if (getStyleComputedProperty(element, 'position') === 'fixed') {
|
|
return true;
|
|
}
|
|
|
|
var parentNode = getParentNode(element);
|
|
|
|
if (!parentNode) {
|
|
return false;
|
|
}
|
|
|
|
return isFixed(parentNode);
|
|
}
|
|
/**
|
|
* Finds the first parent of an element that has a transformed property defined
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element
|
|
* @returns {Element} first transformed parent or documentElement
|
|
*/
|
|
|
|
|
|
function getFixedPositionOffsetParent(element) {
|
|
// This check is needed to avoid errors in case one of the elements isn't defined for any reason
|
|
if (!element || !element.parentElement || isIE()) {
|
|
return document.documentElement;
|
|
}
|
|
|
|
var el = element.parentElement;
|
|
|
|
while (el && getStyleComputedProperty(el, 'transform') === 'none') {
|
|
el = el.parentElement;
|
|
}
|
|
|
|
return el || document.documentElement;
|
|
}
|
|
/**
|
|
* Computed the boundaries limits and return them
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {HTMLElement} popper
|
|
* @param {HTMLElement} reference
|
|
* @param {number} padding
|
|
* @param {HTMLElement} boundariesElement - Element used to define the boundaries
|
|
* @param {Boolean} fixedPosition - Is in fixed position mode
|
|
* @returns {Object} Coordinates of the boundaries
|
|
*/
|
|
|
|
|
|
function getBoundaries(popper, reference, padding, boundariesElement) {
|
|
var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false; // NOTE: 1 DOM access here
|
|
|
|
var boundaries = {
|
|
top: 0,
|
|
left: 0
|
|
};
|
|
var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference)); // Handle viewport case
|
|
|
|
if (boundariesElement === 'viewport') {
|
|
boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);
|
|
} else {
|
|
// Handle other cases based on DOM element used as boundaries
|
|
var boundariesNode = void 0;
|
|
|
|
if (boundariesElement === 'scrollParent') {
|
|
boundariesNode = getScrollParent(getParentNode(reference));
|
|
|
|
if (boundariesNode.nodeName === 'BODY') {
|
|
boundariesNode = popper.ownerDocument.documentElement;
|
|
}
|
|
} else if (boundariesElement === 'window') {
|
|
boundariesNode = popper.ownerDocument.documentElement;
|
|
} else {
|
|
boundariesNode = boundariesElement;
|
|
}
|
|
|
|
var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition); // In case of HTML, we need a different computation
|
|
|
|
if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {
|
|
var _getWindowSizes = getWindowSizes(popper.ownerDocument),
|
|
height = _getWindowSizes.height,
|
|
width = _getWindowSizes.width;
|
|
|
|
boundaries.top += offsets.top - offsets.marginTop;
|
|
boundaries.bottom = height + offsets.top;
|
|
boundaries.left += offsets.left - offsets.marginLeft;
|
|
boundaries.right = width + offsets.left;
|
|
} else {
|
|
// for all the other DOM elements, this one is good
|
|
boundaries = offsets;
|
|
}
|
|
} // Add paddings
|
|
|
|
|
|
padding = padding || 0;
|
|
var isPaddingNumber = typeof padding === 'number';
|
|
boundaries.left += isPaddingNumber ? padding : padding.left || 0;
|
|
boundaries.top += isPaddingNumber ? padding : padding.top || 0;
|
|
boundaries.right -= isPaddingNumber ? padding : padding.right || 0;
|
|
boundaries.bottom -= isPaddingNumber ? padding : padding.bottom || 0;
|
|
return boundaries;
|
|
}
|
|
|
|
function getArea(_ref) {
|
|
var width = _ref.width,
|
|
height = _ref.height;
|
|
return width * height;
|
|
}
|
|
/**
|
|
* Utility used to transform the `auto` placement to the placement with more
|
|
* available space.
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Object} data - The data object generated by update method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) {
|
|
var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;
|
|
|
|
if (placement.indexOf('auto') === -1) {
|
|
return placement;
|
|
}
|
|
|
|
var boundaries = getBoundaries(popper, reference, padding, boundariesElement);
|
|
var rects = {
|
|
top: {
|
|
width: boundaries.width,
|
|
height: refRect.top - boundaries.top
|
|
},
|
|
right: {
|
|
width: boundaries.right - refRect.right,
|
|
height: boundaries.height
|
|
},
|
|
bottom: {
|
|
width: boundaries.width,
|
|
height: boundaries.bottom - refRect.bottom
|
|
},
|
|
left: {
|
|
width: refRect.left - boundaries.left,
|
|
height: boundaries.height
|
|
}
|
|
};
|
|
var sortedAreas = Object.keys(rects).map(function (key) {
|
|
return _extends$1({
|
|
key: key
|
|
}, rects[key], {
|
|
area: getArea(rects[key])
|
|
});
|
|
}).sort(function (a, b) {
|
|
return b.area - a.area;
|
|
});
|
|
var filteredAreas = sortedAreas.filter(function (_ref2) {
|
|
var width = _ref2.width,
|
|
height = _ref2.height;
|
|
return width >= popper.clientWidth && height >= popper.clientHeight;
|
|
});
|
|
var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key;
|
|
var variation = placement.split('-')[1];
|
|
return computedPlacement + (variation ? '-' + variation : '');
|
|
}
|
|
/**
|
|
* Get offsets to the reference element
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {Object} state
|
|
* @param {Element} popper - the popper element
|
|
* @param {Element} reference - the reference element (the popper will be relative to this)
|
|
* @param {Element} fixedPosition - is in fixed position mode
|
|
* @returns {Object} An object containing the offsets which will be applied to the popper
|
|
*/
|
|
|
|
|
|
function getReferenceOffsets(state, popper, reference) {
|
|
var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
|
|
var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference));
|
|
return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition);
|
|
}
|
|
/**
|
|
* Get the outer sizes of the given element (offset size + margins)
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element
|
|
* @returns {Object} object containing width and height properties
|
|
*/
|
|
|
|
|
|
function getOuterSizes(element) {
|
|
var window = element.ownerDocument.defaultView;
|
|
var styles = window.getComputedStyle(element);
|
|
var x = parseFloat(styles.marginTop || 0) + parseFloat(styles.marginBottom || 0);
|
|
var y = parseFloat(styles.marginLeft || 0) + parseFloat(styles.marginRight || 0);
|
|
var result = {
|
|
width: element.offsetWidth + y,
|
|
height: element.offsetHeight + x
|
|
};
|
|
return result;
|
|
}
|
|
/**
|
|
* Get the opposite placement of the given one
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {String} placement
|
|
* @returns {String} flipped placement
|
|
*/
|
|
|
|
|
|
function getOppositePlacement(placement) {
|
|
var hash = {
|
|
left: 'right',
|
|
right: 'left',
|
|
bottom: 'top',
|
|
top: 'bottom'
|
|
};
|
|
return placement.replace(/left|right|bottom|top/g, function (matched) {
|
|
return hash[matched];
|
|
});
|
|
}
|
|
/**
|
|
* Get offsets to the popper
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {Object} position - CSS position the Popper will get applied
|
|
* @param {HTMLElement} popper - the popper element
|
|
* @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)
|
|
* @param {String} placement - one of the valid placement options
|
|
* @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper
|
|
*/
|
|
|
|
|
|
function getPopperOffsets(popper, referenceOffsets, placement) {
|
|
placement = placement.split('-')[0]; // Get popper node sizes
|
|
|
|
var popperRect = getOuterSizes(popper); // Add position, width and height to our offsets object
|
|
|
|
var popperOffsets = {
|
|
width: popperRect.width,
|
|
height: popperRect.height
|
|
}; // depending by the popper placement we have to compute its offsets slightly differently
|
|
|
|
var isHoriz = ['right', 'left'].indexOf(placement) !== -1;
|
|
var mainSide = isHoriz ? 'top' : 'left';
|
|
var secondarySide = isHoriz ? 'left' : 'top';
|
|
var measurement = isHoriz ? 'height' : 'width';
|
|
var secondaryMeasurement = !isHoriz ? 'height' : 'width';
|
|
popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2;
|
|
|
|
if (placement === secondarySide) {
|
|
popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];
|
|
} else {
|
|
popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)];
|
|
}
|
|
|
|
return popperOffsets;
|
|
}
|
|
/**
|
|
* Mimics the `find` method of Array
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Array} arr
|
|
* @argument prop
|
|
* @argument value
|
|
* @returns index or -1
|
|
*/
|
|
|
|
|
|
function find(arr, check) {
|
|
// use native find if supported
|
|
if (Array.prototype.find) {
|
|
return arr.find(check);
|
|
} // use `filter` to obtain the same behavior of `find`
|
|
|
|
|
|
return arr.filter(check)[0];
|
|
}
|
|
/**
|
|
* Return the index of the matching object
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Array} arr
|
|
* @argument prop
|
|
* @argument value
|
|
* @returns index or -1
|
|
*/
|
|
|
|
|
|
function findIndex(arr, prop, value) {
|
|
// use native findIndex if supported
|
|
if (Array.prototype.findIndex) {
|
|
return arr.findIndex(function (cur) {
|
|
return cur[prop] === value;
|
|
});
|
|
} // use `find` + `indexOf` if `findIndex` isn't supported
|
|
|
|
|
|
var match = find(arr, function (obj) {
|
|
return obj[prop] === value;
|
|
});
|
|
return arr.indexOf(match);
|
|
}
|
|
/**
|
|
* Loop trough the list of modifiers and run them in order,
|
|
* each of them will then edit the data object.
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {dataObject} data
|
|
* @param {Array} modifiers
|
|
* @param {String} ends - Optional modifier name used as stopper
|
|
* @returns {dataObject}
|
|
*/
|
|
|
|
|
|
function runModifiers(modifiers, data, ends) {
|
|
var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends));
|
|
modifiersToRun.forEach(function (modifier) {
|
|
if (modifier['function']) {
|
|
// eslint-disable-line dot-notation
|
|
console.warn('`modifier.function` is deprecated, use `modifier.fn`!');
|
|
}
|
|
|
|
var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation
|
|
|
|
if (modifier.enabled && isFunction$2(fn)) {
|
|
// Add properties to offsets to make them a complete clientRect object
|
|
// we do this before each modifier to make sure the previous one doesn't
|
|
// mess with these values
|
|
data.offsets.popper = getClientRect(data.offsets.popper);
|
|
data.offsets.reference = getClientRect(data.offsets.reference);
|
|
data = fn(data, modifier);
|
|
}
|
|
});
|
|
return data;
|
|
}
|
|
/**
|
|
* Updates the position of the popper, computing the new offsets and applying
|
|
* the new style.<br />
|
|
* Prefer `scheduleUpdate` over `update` because of performance reasons.
|
|
* @method
|
|
* @memberof Popper
|
|
*/
|
|
|
|
|
|
function update() {
|
|
// if popper is destroyed, don't perform any further update
|
|
if (this.state.isDestroyed) {
|
|
return;
|
|
}
|
|
|
|
var data = {
|
|
instance: this,
|
|
styles: {},
|
|
arrowStyles: {},
|
|
attributes: {},
|
|
flipped: false,
|
|
offsets: {}
|
|
}; // compute reference element offsets
|
|
|
|
data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed); // compute auto placement, store placement inside the data object,
|
|
// modifiers will be able to edit `placement` if needed
|
|
// and refer to originalPlacement to know the original value
|
|
|
|
data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding); // store the computed placement inside `originalPlacement`
|
|
|
|
data.originalPlacement = data.placement;
|
|
data.positionFixed = this.options.positionFixed; // compute the popper offsets
|
|
|
|
data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement);
|
|
data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute'; // run the modifiers
|
|
|
|
data = runModifiers(this.modifiers, data); // the first `update` will call `onCreate` callback
|
|
// the other ones will call `onUpdate` callback
|
|
|
|
if (!this.state.isCreated) {
|
|
this.state.isCreated = true;
|
|
this.options.onCreate(data);
|
|
} else {
|
|
this.options.onUpdate(data);
|
|
}
|
|
}
|
|
/**
|
|
* Helper used to know if the given modifier is enabled.
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
|
|
function isModifierEnabled(modifiers, modifierName) {
|
|
return modifiers.some(function (_ref) {
|
|
var name = _ref.name,
|
|
enabled = _ref.enabled;
|
|
return enabled && name === modifierName;
|
|
});
|
|
}
|
|
/**
|
|
* Get the prefixed supported property name
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {String} property (camelCase)
|
|
* @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)
|
|
*/
|
|
|
|
|
|
function getSupportedPropertyName(property) {
|
|
var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];
|
|
var upperProp = property.charAt(0).toUpperCase() + property.slice(1);
|
|
|
|
for (var i = 0; i < prefixes.length; i++) {
|
|
var prefix = prefixes[i];
|
|
var toCheck = prefix ? '' + prefix + upperProp : property;
|
|
|
|
if (typeof document.body.style[toCheck] !== 'undefined') {
|
|
return toCheck;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
/**
|
|
* Destroys the popper.
|
|
* @method
|
|
* @memberof Popper
|
|
*/
|
|
|
|
|
|
function destroy() {
|
|
this.state.isDestroyed = true; // touch DOM only if `applyStyle` modifier is enabled
|
|
|
|
if (isModifierEnabled(this.modifiers, 'applyStyle')) {
|
|
this.popper.removeAttribute('x-placement');
|
|
this.popper.style.position = '';
|
|
this.popper.style.top = '';
|
|
this.popper.style.left = '';
|
|
this.popper.style.right = '';
|
|
this.popper.style.bottom = '';
|
|
this.popper.style.willChange = '';
|
|
this.popper.style[getSupportedPropertyName('transform')] = '';
|
|
}
|
|
|
|
this.disableEventListeners(); // remove the popper if user explicitly asked for the deletion on destroy
|
|
// do not use `remove` because IE11 doesn't support it
|
|
|
|
if (this.options.removeOnDestroy) {
|
|
this.popper.parentNode.removeChild(this.popper);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* Get the window associated with the element
|
|
* @argument {Element} element
|
|
* @returns {Window}
|
|
*/
|
|
|
|
|
|
function getWindow(element) {
|
|
var ownerDocument = element.ownerDocument;
|
|
return ownerDocument ? ownerDocument.defaultView : window;
|
|
}
|
|
|
|
function attachToScrollParents(scrollParent, event, callback, scrollParents) {
|
|
var isBody = scrollParent.nodeName === 'BODY';
|
|
var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;
|
|
target.addEventListener(event, callback, {
|
|
passive: true
|
|
});
|
|
|
|
if (!isBody) {
|
|
attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents);
|
|
}
|
|
|
|
scrollParents.push(target);
|
|
}
|
|
/**
|
|
* Setup needed event listeners used to update the popper position
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @private
|
|
*/
|
|
|
|
|
|
function setupEventListeners(reference, options, state, updateBound) {
|
|
// Resize event listener on window
|
|
state.updateBound = updateBound;
|
|
getWindow(reference).addEventListener('resize', state.updateBound, {
|
|
passive: true
|
|
}); // Scroll event listener on scroll parents
|
|
|
|
var scrollElement = getScrollParent(reference);
|
|
attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents);
|
|
state.scrollElement = scrollElement;
|
|
state.eventsEnabled = true;
|
|
return state;
|
|
}
|
|
/**
|
|
* It will add resize/scroll events and start recalculating
|
|
* position of the popper element when they are triggered.
|
|
* @method
|
|
* @memberof Popper
|
|
*/
|
|
|
|
|
|
function enableEventListeners() {
|
|
if (!this.state.eventsEnabled) {
|
|
this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate);
|
|
}
|
|
}
|
|
/**
|
|
* Remove event listeners used to update the popper position
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @private
|
|
*/
|
|
|
|
|
|
function removeEventListeners(reference, state) {
|
|
// Remove resize event listener on window
|
|
getWindow(reference).removeEventListener('resize', state.updateBound); // Remove scroll event listener on scroll parents
|
|
|
|
state.scrollParents.forEach(function (target) {
|
|
target.removeEventListener('scroll', state.updateBound);
|
|
}); // Reset state
|
|
|
|
state.updateBound = null;
|
|
state.scrollParents = [];
|
|
state.scrollElement = null;
|
|
state.eventsEnabled = false;
|
|
return state;
|
|
}
|
|
/**
|
|
* It will remove resize/scroll events and won't recalculate popper position
|
|
* when they are triggered. It also won't trigger `onUpdate` callback anymore,
|
|
* unless you call `update` method manually.
|
|
* @method
|
|
* @memberof Popper
|
|
*/
|
|
|
|
|
|
function disableEventListeners() {
|
|
if (this.state.eventsEnabled) {
|
|
cancelAnimationFrame(this.scheduleUpdate);
|
|
this.state = removeEventListeners(this.reference, this.state);
|
|
}
|
|
}
|
|
/**
|
|
* Tells if a given input is a number
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {*} input to check
|
|
* @return {Boolean}
|
|
*/
|
|
|
|
|
|
function isNumeric(n) {
|
|
return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);
|
|
}
|
|
/**
|
|
* Set the style to the given popper
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element - Element to apply the style to
|
|
* @argument {Object} styles
|
|
* Object with a list of properties and values which will be applied to the element
|
|
*/
|
|
|
|
|
|
function setStyles(element, styles) {
|
|
Object.keys(styles).forEach(function (prop) {
|
|
var unit = ''; // add unit if the value is numeric and is one of the following
|
|
|
|
if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) {
|
|
unit = 'px';
|
|
}
|
|
|
|
element.style[prop] = styles[prop] + unit;
|
|
});
|
|
}
|
|
/**
|
|
* Set the attributes to the given popper
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {Element} element - Element to apply the attributes to
|
|
* @argument {Object} styles
|
|
* Object with a list of properties and values which will be applied to the element
|
|
*/
|
|
|
|
|
|
function setAttributes(element, attributes) {
|
|
Object.keys(attributes).forEach(function (prop) {
|
|
var value = attributes[prop];
|
|
|
|
if (value !== false) {
|
|
element.setAttribute(prop, attributes[prop]);
|
|
} else {
|
|
element.removeAttribute(prop);
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by `update` method
|
|
* @argument {Object} data.styles - List of style properties - values to apply to popper element
|
|
* @argument {Object} data.attributes - List of attribute properties - values to apply to popper element
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The same data object
|
|
*/
|
|
|
|
|
|
function applyStyle(data) {
|
|
// any property present in `data.styles` will be applied to the popper,
|
|
// in this way we can make the 3rd party modifiers add custom styles to it
|
|
// Be aware, modifiers could override the properties defined in the previous
|
|
// lines of this modifier!
|
|
setStyles(data.instance.popper, data.styles); // any property present in `data.attributes` will be applied to the popper,
|
|
// they will be set as HTML attributes of the element
|
|
|
|
setAttributes(data.instance.popper, data.attributes); // if arrowElement is defined and arrowStyles has some properties
|
|
|
|
if (data.arrowElement && Object.keys(data.arrowStyles).length) {
|
|
setStyles(data.arrowElement, data.arrowStyles);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
/**
|
|
* Set the x-placement attribute before everything else because it could be used
|
|
* to add margins to the popper margins needs to be calculated to get the
|
|
* correct popper offsets.
|
|
* @method
|
|
* @memberof Popper.modifiers
|
|
* @param {HTMLElement} reference - The reference element used to position the popper
|
|
* @param {HTMLElement} popper - The HTML element used as popper
|
|
* @param {Object} options - Popper.js options
|
|
*/
|
|
|
|
|
|
function applyStyleOnLoad(reference, popper, options, modifierOptions, state) {
|
|
// compute reference element offsets
|
|
var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed); // compute auto placement, store placement inside the data object,
|
|
// modifiers will be able to edit `placement` if needed
|
|
// and refer to originalPlacement to know the original value
|
|
|
|
var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding);
|
|
popper.setAttribute('x-placement', placement); // Apply `position` to popper before anything else because
|
|
// without the position applied we can't guarantee correct computations
|
|
|
|
setStyles(popper, {
|
|
position: options.positionFixed ? 'fixed' : 'absolute'
|
|
});
|
|
return options;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Popper.Utils
|
|
* @argument {Object} data - The data object generated by `update` method
|
|
* @argument {Boolean} shouldRound - If the offsets should be rounded at all
|
|
* @returns {Object} The popper's position offsets rounded
|
|
*
|
|
* The tale of pixel-perfect positioning. It's still not 100% perfect, but as
|
|
* good as it can be within reason.
|
|
* Discussion here: https://github.com/FezVrasta/popper.js/pull/715
|
|
*
|
|
* Low DPI screens cause a popper to be blurry if not using full pixels (Safari
|
|
* as well on High DPI screens).
|
|
*
|
|
* Firefox prefers no rounding for positioning and does not have blurriness on
|
|
* high DPI screens.
|
|
*
|
|
* Only horizontal placement and left/right values need to be considered.
|
|
*/
|
|
|
|
|
|
function getRoundedOffsets(data, shouldRound) {
|
|
var _data$offsets = data.offsets,
|
|
popper = _data$offsets.popper,
|
|
reference = _data$offsets.reference;
|
|
var round = Math.round,
|
|
floor = Math.floor;
|
|
|
|
var noRound = function noRound(v) {
|
|
return v;
|
|
};
|
|
|
|
var referenceWidth = round(reference.width);
|
|
var popperWidth = round(popper.width);
|
|
var isVertical = ['left', 'right'].indexOf(data.placement) !== -1;
|
|
var isVariation = data.placement.indexOf('-') !== -1;
|
|
var sameWidthParity = referenceWidth % 2 === popperWidth % 2;
|
|
var bothOddWidth = referenceWidth % 2 === 1 && popperWidth % 2 === 1;
|
|
var horizontalToInteger = !shouldRound ? noRound : isVertical || isVariation || sameWidthParity ? round : floor;
|
|
var verticalToInteger = !shouldRound ? noRound : round;
|
|
return {
|
|
left: horizontalToInteger(bothOddWidth && !isVariation && shouldRound ? popper.left - 1 : popper.left),
|
|
top: verticalToInteger(popper.top),
|
|
bottom: verticalToInteger(popper.bottom),
|
|
right: horizontalToInteger(popper.right)
|
|
};
|
|
}
|
|
|
|
var isFirefox = isBrowser && /Firefox/i.test(navigator.userAgent);
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by `update` method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
function computeStyle(data, options) {
|
|
var x = options.x,
|
|
y = options.y;
|
|
var popper = data.offsets.popper; // Remove this legacy support in Popper.js v2
|
|
|
|
var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) {
|
|
return modifier.name === 'applyStyle';
|
|
}).gpuAcceleration;
|
|
|
|
if (legacyGpuAccelerationOption !== undefined) {
|
|
console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');
|
|
}
|
|
|
|
var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration;
|
|
var offsetParent = getOffsetParent(data.instance.popper);
|
|
var offsetParentRect = getBoundingClientRect(offsetParent); // Styles
|
|
|
|
var styles = {
|
|
position: popper.position
|
|
};
|
|
var offsets = getRoundedOffsets(data, window.devicePixelRatio < 2 || !isFirefox);
|
|
var sideA = x === 'bottom' ? 'top' : 'bottom';
|
|
var sideB = y === 'right' ? 'left' : 'right'; // if gpuAcceleration is set to `true` and transform is supported,
|
|
// we use `translate3d` to apply the position to the popper we
|
|
// automatically use the supported prefixed version if needed
|
|
|
|
var prefixedProperty = getSupportedPropertyName('transform'); // now, let's make a step back and look at this code closely (wtf?)
|
|
// If the content of the popper grows once it's been positioned, it
|
|
// may happen that the popper gets misplaced because of the new content
|
|
// overflowing its reference element
|
|
// To avoid this problem, we provide two options (x and y), which allow
|
|
// the consumer to define the offset origin.
|
|
// If we position a popper on top of a reference element, we can set
|
|
// `x` to `top` to make the popper grow towards its top instead of
|
|
// its bottom.
|
|
|
|
var left = void 0,
|
|
top = void 0;
|
|
|
|
if (sideA === 'bottom') {
|
|
// when offsetParent is <html> the positioning is relative to the bottom of the screen (excluding the scrollbar)
|
|
// and not the bottom of the html element
|
|
if (offsetParent.nodeName === 'HTML') {
|
|
top = -offsetParent.clientHeight + offsets.bottom;
|
|
} else {
|
|
top = -offsetParentRect.height + offsets.bottom;
|
|
}
|
|
} else {
|
|
top = offsets.top;
|
|
}
|
|
|
|
if (sideB === 'right') {
|
|
if (offsetParent.nodeName === 'HTML') {
|
|
left = -offsetParent.clientWidth + offsets.right;
|
|
} else {
|
|
left = -offsetParentRect.width + offsets.right;
|
|
}
|
|
} else {
|
|
left = offsets.left;
|
|
}
|
|
|
|
if (gpuAcceleration && prefixedProperty) {
|
|
styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)';
|
|
styles[sideA] = 0;
|
|
styles[sideB] = 0;
|
|
styles.willChange = 'transform';
|
|
} else {
|
|
// othwerise, we use the standard `top`, `left`, `bottom` and `right` properties
|
|
var invertTop = sideA === 'bottom' ? -1 : 1;
|
|
var invertLeft = sideB === 'right' ? -1 : 1;
|
|
styles[sideA] = top * invertTop;
|
|
styles[sideB] = left * invertLeft;
|
|
styles.willChange = sideA + ', ' + sideB;
|
|
} // Attributes
|
|
|
|
|
|
var attributes = {
|
|
'x-placement': data.placement
|
|
}; // Update `data` attributes, styles and arrowStyles
|
|
|
|
data.attributes = _extends$1({}, attributes, data.attributes);
|
|
data.styles = _extends$1({}, styles, data.styles);
|
|
data.arrowStyles = _extends$1({}, data.offsets.arrow, data.arrowStyles);
|
|
return data;
|
|
}
|
|
/**
|
|
* Helper used to know if the given modifier depends from another one.<br />
|
|
* It checks if the needed modifier is listed and enabled.
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @param {Array} modifiers - list of modifiers
|
|
* @param {String} requestingName - name of requesting modifier
|
|
* @param {String} requestedName - name of requested modifier
|
|
* @returns {Boolean}
|
|
*/
|
|
|
|
|
|
function isModifierRequired(modifiers, requestingName, requestedName) {
|
|
var requesting = find(modifiers, function (_ref) {
|
|
var name = _ref.name;
|
|
return name === requestingName;
|
|
});
|
|
var isRequired = !!requesting && modifiers.some(function (modifier) {
|
|
return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order;
|
|
});
|
|
|
|
if (!isRequired) {
|
|
var _requesting = '`' + requestingName + '`';
|
|
|
|
var requested = '`' + requestedName + '`';
|
|
console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!');
|
|
}
|
|
|
|
return isRequired;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by update method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function arrow(data, options) {
|
|
var _data$offsets$arrow; // arrow depends on keepTogether in order to work
|
|
|
|
|
|
if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {
|
|
return data;
|
|
}
|
|
|
|
var arrowElement = options.element; // if arrowElement is a string, suppose it's a CSS selector
|
|
|
|
if (typeof arrowElement === 'string') {
|
|
arrowElement = data.instance.popper.querySelector(arrowElement); // if arrowElement is not found, don't run the modifier
|
|
|
|
if (!arrowElement) {
|
|
return data;
|
|
}
|
|
} else {
|
|
// if the arrowElement isn't a query selector we must check that the
|
|
// provided DOM node is child of its popper node
|
|
if (!data.instance.popper.contains(arrowElement)) {
|
|
console.warn('WARNING: `arrow.element` must be child of its popper element!');
|
|
return data;
|
|
}
|
|
}
|
|
|
|
var placement = data.placement.split('-')[0];
|
|
var _data$offsets = data.offsets,
|
|
popper = _data$offsets.popper,
|
|
reference = _data$offsets.reference;
|
|
var isVertical = ['left', 'right'].indexOf(placement) !== -1;
|
|
var len = isVertical ? 'height' : 'width';
|
|
var sideCapitalized = isVertical ? 'Top' : 'Left';
|
|
var side = sideCapitalized.toLowerCase();
|
|
var altSide = isVertical ? 'left' : 'top';
|
|
var opSide = isVertical ? 'bottom' : 'right';
|
|
var arrowElementSize = getOuterSizes(arrowElement)[len]; //
|
|
// extends keepTogether behavior making sure the popper and its
|
|
// reference have enough pixels in conjunction
|
|
//
|
|
// top/left side
|
|
|
|
if (reference[opSide] - arrowElementSize < popper[side]) {
|
|
data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize);
|
|
} // bottom/right side
|
|
|
|
|
|
if (reference[side] + arrowElementSize > popper[opSide]) {
|
|
data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide];
|
|
}
|
|
|
|
data.offsets.popper = getClientRect(data.offsets.popper); // compute center of the popper
|
|
|
|
var center = reference[side] + reference[len] / 2 - arrowElementSize / 2; // Compute the sideValue using the updated popper offsets
|
|
// take popper margin in account because we don't have this info available
|
|
|
|
var css = getStyleComputedProperty(data.instance.popper);
|
|
var popperMarginSide = parseFloat(css['margin' + sideCapitalized]);
|
|
var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width']);
|
|
var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide; // prevent arrowElement from being placed not contiguously to its popper
|
|
|
|
sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);
|
|
data.arrowElement = arrowElement;
|
|
data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty$3(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty$3(_data$offsets$arrow, altSide, ''), _data$offsets$arrow);
|
|
return data;
|
|
}
|
|
/**
|
|
* Get the opposite placement variation of the given one
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {String} placement variation
|
|
* @returns {String} flipped placement variation
|
|
*/
|
|
|
|
|
|
function getOppositeVariation(variation) {
|
|
if (variation === 'end') {
|
|
return 'start';
|
|
} else if (variation === 'start') {
|
|
return 'end';
|
|
}
|
|
|
|
return variation;
|
|
}
|
|
/**
|
|
* List of accepted placements to use as values of the `placement` option.<br />
|
|
* Valid placements are:
|
|
* - `auto`
|
|
* - `top`
|
|
* - `right`
|
|
* - `bottom`
|
|
* - `left`
|
|
*
|
|
* Each placement can have a variation from this list:
|
|
* - `-start`
|
|
* - `-end`
|
|
*
|
|
* Variations are interpreted easily if you think of them as the left to right
|
|
* written languages. Horizontally (`top` and `bottom`), `start` is left and `end`
|
|
* is right.<br />
|
|
* Vertically (`left` and `right`), `start` is top and `end` is bottom.
|
|
*
|
|
* Some valid examples are:
|
|
* - `top-end` (on top of reference, right aligned)
|
|
* - `right-start` (on right of reference, top aligned)
|
|
* - `bottom` (on bottom, centered)
|
|
* - `auto-end` (on the side with more space available, alignment depends by placement)
|
|
*
|
|
* @static
|
|
* @type {Array}
|
|
* @enum {String}
|
|
* @readonly
|
|
* @method placements
|
|
* @memberof Popper
|
|
*/
|
|
|
|
|
|
var placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start']; // Get rid of `auto` `auto-start` and `auto-end`
|
|
|
|
var validPlacements = placements.slice(3);
|
|
/**
|
|
* Given an initial placement, returns all the subsequent placements
|
|
* clockwise (or counter-clockwise).
|
|
*
|
|
* @method
|
|
* @memberof Popper.Utils
|
|
* @argument {String} placement - A valid placement (it accepts variations)
|
|
* @argument {Boolean} counter - Set to true to walk the placements counterclockwise
|
|
* @returns {Array} placements including their variations
|
|
*/
|
|
|
|
function clockwise(placement) {
|
|
var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
var index = validPlacements.indexOf(placement);
|
|
var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index));
|
|
return counter ? arr.reverse() : arr;
|
|
}
|
|
|
|
var BEHAVIORS = {
|
|
FLIP: 'flip',
|
|
CLOCKWISE: 'clockwise',
|
|
COUNTERCLOCKWISE: 'counterclockwise'
|
|
};
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by update method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
function flip(data, options) {
|
|
// if `inner` modifier is enabled, we can't use the `flip` modifier
|
|
if (isModifierEnabled(data.instance.modifiers, 'inner')) {
|
|
return data;
|
|
}
|
|
|
|
if (data.flipped && data.placement === data.originalPlacement) {
|
|
// seems like flip is trying to loop, probably there's not enough space on any of the flippable sides
|
|
return data;
|
|
}
|
|
|
|
var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed);
|
|
var placement = data.placement.split('-')[0];
|
|
var placementOpposite = getOppositePlacement(placement);
|
|
var variation = data.placement.split('-')[1] || '';
|
|
var flipOrder = [];
|
|
|
|
switch (options.behavior) {
|
|
case BEHAVIORS.FLIP:
|
|
flipOrder = [placement, placementOpposite];
|
|
break;
|
|
|
|
case BEHAVIORS.CLOCKWISE:
|
|
flipOrder = clockwise(placement);
|
|
break;
|
|
|
|
case BEHAVIORS.COUNTERCLOCKWISE:
|
|
flipOrder = clockwise(placement, true);
|
|
break;
|
|
|
|
default:
|
|
flipOrder = options.behavior;
|
|
}
|
|
|
|
flipOrder.forEach(function (step, index) {
|
|
if (placement !== step || flipOrder.length === index + 1) {
|
|
return data;
|
|
}
|
|
|
|
placement = data.placement.split('-')[0];
|
|
placementOpposite = getOppositePlacement(placement);
|
|
var popperOffsets = data.offsets.popper;
|
|
var refOffsets = data.offsets.reference; // using floor because the reference offsets may contain decimals we are not going to consider here
|
|
|
|
var floor = Math.floor;
|
|
var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom);
|
|
var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);
|
|
var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);
|
|
var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);
|
|
var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom);
|
|
var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom; // flip the variation if required
|
|
|
|
var isVertical = ['top', 'bottom'].indexOf(placement) !== -1; // flips variation if reference element overflows boundaries
|
|
|
|
var flippedVariationByRef = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom); // flips variation if popper content overflows boundaries
|
|
|
|
var flippedVariationByContent = !!options.flipVariationsByContent && (isVertical && variation === 'start' && overflowsRight || isVertical && variation === 'end' && overflowsLeft || !isVertical && variation === 'start' && overflowsBottom || !isVertical && variation === 'end' && overflowsTop);
|
|
var flippedVariation = flippedVariationByRef || flippedVariationByContent;
|
|
|
|
if (overlapsRef || overflowsBoundaries || flippedVariation) {
|
|
// this boolean to detect any flip loop
|
|
data.flipped = true;
|
|
|
|
if (overlapsRef || overflowsBoundaries) {
|
|
placement = flipOrder[index + 1];
|
|
}
|
|
|
|
if (flippedVariation) {
|
|
variation = getOppositeVariation(variation);
|
|
}
|
|
|
|
data.placement = placement + (variation ? '-' + variation : ''); // this object contains `position`, we want to preserve it along with
|
|
// any additional property we may add in the future
|
|
|
|
data.offsets.popper = _extends$1({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement));
|
|
data = runModifiers(data.instance.modifiers, data, 'flip');
|
|
}
|
|
});
|
|
return data;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by update method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function keepTogether(data) {
|
|
var _data$offsets = data.offsets,
|
|
popper = _data$offsets.popper,
|
|
reference = _data$offsets.reference;
|
|
var placement = data.placement.split('-')[0];
|
|
var floor = Math.floor;
|
|
var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;
|
|
var side = isVertical ? 'right' : 'bottom';
|
|
var opSide = isVertical ? 'left' : 'top';
|
|
var measurement = isVertical ? 'width' : 'height';
|
|
|
|
if (popper[side] < floor(reference[opSide])) {
|
|
data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement];
|
|
}
|
|
|
|
if (popper[opSide] > floor(reference[side])) {
|
|
data.offsets.popper[opSide] = floor(reference[side]);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
/**
|
|
* Converts a string containing value + unit into a px value number
|
|
* @function
|
|
* @memberof {modifiers~offset}
|
|
* @private
|
|
* @argument {String} str - Value + unit string
|
|
* @argument {String} measurement - `height` or `width`
|
|
* @argument {Object} popperOffsets
|
|
* @argument {Object} referenceOffsets
|
|
* @returns {Number|String}
|
|
* Value in pixels, or original string if no values were extracted
|
|
*/
|
|
|
|
|
|
function toValue(str, measurement, popperOffsets, referenceOffsets) {
|
|
// separate value from unit
|
|
var split = str.match(/((?:\-|\+)?\d*\.?\d*)(.*)/);
|
|
var value = +split[1];
|
|
var unit = split[2]; // If it's not a number it's an operator, I guess
|
|
|
|
if (!value) {
|
|
return str;
|
|
}
|
|
|
|
if (unit.indexOf('%') === 0) {
|
|
var element = void 0;
|
|
|
|
switch (unit) {
|
|
case '%p':
|
|
element = popperOffsets;
|
|
break;
|
|
|
|
case '%':
|
|
case '%r':
|
|
default:
|
|
element = referenceOffsets;
|
|
}
|
|
|
|
var rect = getClientRect(element);
|
|
return rect[measurement] / 100 * value;
|
|
} else if (unit === 'vh' || unit === 'vw') {
|
|
// if is a vh or vw, we calculate the size based on the viewport
|
|
var size = void 0;
|
|
|
|
if (unit === 'vh') {
|
|
size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
|
|
} else {
|
|
size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
|
|
}
|
|
|
|
return size / 100 * value;
|
|
} else {
|
|
// if is an explicit pixel unit, we get rid of the unit and keep the value
|
|
// if is an implicit unit, it's px, and we return just the value
|
|
return value;
|
|
}
|
|
}
|
|
/**
|
|
* Parse an `offset` string to extrapolate `x` and `y` numeric offsets.
|
|
* @function
|
|
* @memberof {modifiers~offset}
|
|
* @private
|
|
* @argument {String} offset
|
|
* @argument {Object} popperOffsets
|
|
* @argument {Object} referenceOffsets
|
|
* @argument {String} basePlacement
|
|
* @returns {Array} a two cells array with x and y offsets in numbers
|
|
*/
|
|
|
|
|
|
function parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) {
|
|
var offsets = [0, 0]; // Use height if placement is left or right and index is 0 otherwise use width
|
|
// in this way the first offset will use an axis and the second one
|
|
// will use the other one
|
|
|
|
var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1; // Split the offset string to obtain a list of values and operands
|
|
// The regex addresses values with the plus or minus sign in front (+10, -20, etc)
|
|
|
|
var fragments = offset.split(/(\+|\-)/).map(function (frag) {
|
|
return frag.trim();
|
|
}); // Detect if the offset string contains a pair of values or a single one
|
|
// they could be separated by comma or space
|
|
|
|
var divider = fragments.indexOf(find(fragments, function (frag) {
|
|
return frag.search(/,|\s/) !== -1;
|
|
}));
|
|
|
|
if (fragments[divider] && fragments[divider].indexOf(',') === -1) {
|
|
console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');
|
|
} // If divider is found, we divide the list of values and operands to divide
|
|
// them by ofset X and Y.
|
|
|
|
|
|
var splitRegex = /\s*,\s*|\s+/;
|
|
var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments]; // Convert the values with units to absolute pixels to allow our computations
|
|
|
|
ops = ops.map(function (op, index) {
|
|
// Most of the units rely on the orientation of the popper
|
|
var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width';
|
|
var mergeWithPrevious = false;
|
|
return op // This aggregates any `+` or `-` sign that aren't considered operators
|
|
// e.g.: 10 + +5 => [10, +, +5]
|
|
.reduce(function (a, b) {
|
|
if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {
|
|
a[a.length - 1] = b;
|
|
mergeWithPrevious = true;
|
|
return a;
|
|
} else if (mergeWithPrevious) {
|
|
a[a.length - 1] += b;
|
|
mergeWithPrevious = false;
|
|
return a;
|
|
} else {
|
|
return a.concat(b);
|
|
}
|
|
}, []) // Here we convert the string values into number values (in px)
|
|
.map(function (str) {
|
|
return toValue(str, measurement, popperOffsets, referenceOffsets);
|
|
});
|
|
}); // Loop trough the offsets arrays and execute the operations
|
|
|
|
ops.forEach(function (op, index) {
|
|
op.forEach(function (frag, index2) {
|
|
if (isNumeric(frag)) {
|
|
offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);
|
|
}
|
|
});
|
|
});
|
|
return offsets;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by update method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @argument {Number|String} options.offset=0
|
|
* The offset value as described in the modifier description
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function offset(data, _ref) {
|
|
var offset = _ref.offset;
|
|
var placement = data.placement,
|
|
_data$offsets = data.offsets,
|
|
popper = _data$offsets.popper,
|
|
reference = _data$offsets.reference;
|
|
var basePlacement = placement.split('-')[0];
|
|
var offsets = void 0;
|
|
|
|
if (isNumeric(+offset)) {
|
|
offsets = [+offset, 0];
|
|
} else {
|
|
offsets = parseOffset(offset, popper, reference, basePlacement);
|
|
}
|
|
|
|
if (basePlacement === 'left') {
|
|
popper.top += offsets[0];
|
|
popper.left -= offsets[1];
|
|
} else if (basePlacement === 'right') {
|
|
popper.top += offsets[0];
|
|
popper.left += offsets[1];
|
|
} else if (basePlacement === 'top') {
|
|
popper.left += offsets[0];
|
|
popper.top -= offsets[1];
|
|
} else if (basePlacement === 'bottom') {
|
|
popper.left += offsets[0];
|
|
popper.top += offsets[1];
|
|
}
|
|
|
|
data.popper = popper;
|
|
return data;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by `update` method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function preventOverflow(data, options) {
|
|
var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper); // If offsetParent is the reference element, we really want to
|
|
// go one step up and use the next offsetParent as reference to
|
|
// avoid to make this modifier completely useless and look like broken
|
|
|
|
if (data.instance.reference === boundariesElement) {
|
|
boundariesElement = getOffsetParent(boundariesElement);
|
|
} // NOTE: DOM access here
|
|
// resets the popper's position so that the document size can be calculated excluding
|
|
// the size of the popper element itself
|
|
|
|
|
|
var transformProp = getSupportedPropertyName('transform');
|
|
var popperStyles = data.instance.popper.style; // assignment to help minification
|
|
|
|
var top = popperStyles.top,
|
|
left = popperStyles.left,
|
|
transform = popperStyles[transformProp];
|
|
popperStyles.top = '';
|
|
popperStyles.left = '';
|
|
popperStyles[transformProp] = '';
|
|
var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed); // NOTE: DOM access here
|
|
// restores the original style properties after the offsets have been computed
|
|
|
|
popperStyles.top = top;
|
|
popperStyles.left = left;
|
|
popperStyles[transformProp] = transform;
|
|
options.boundaries = boundaries;
|
|
var order = options.priority;
|
|
var popper = data.offsets.popper;
|
|
var check = {
|
|
primary: function primary(placement) {
|
|
var value = popper[placement];
|
|
|
|
if (popper[placement] < boundaries[placement] && !options.escapeWithReference) {
|
|
value = Math.max(popper[placement], boundaries[placement]);
|
|
}
|
|
|
|
return defineProperty$3({}, placement, value);
|
|
},
|
|
secondary: function secondary(placement) {
|
|
var mainSide = placement === 'right' ? 'left' : 'top';
|
|
var value = popper[mainSide];
|
|
|
|
if (popper[placement] > boundaries[placement] && !options.escapeWithReference) {
|
|
value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height));
|
|
}
|
|
|
|
return defineProperty$3({}, mainSide, value);
|
|
}
|
|
};
|
|
order.forEach(function (placement) {
|
|
var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';
|
|
popper = _extends$1({}, popper, check[side](placement));
|
|
});
|
|
data.offsets.popper = popper;
|
|
return data;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by `update` method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function shift(data) {
|
|
var placement = data.placement;
|
|
var basePlacement = placement.split('-')[0];
|
|
var shiftvariation = placement.split('-')[1]; // if shift shiftvariation is specified, run the modifier
|
|
|
|
if (shiftvariation) {
|
|
var _data$offsets = data.offsets,
|
|
reference = _data$offsets.reference,
|
|
popper = _data$offsets.popper;
|
|
var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;
|
|
var side = isVertical ? 'left' : 'top';
|
|
var measurement = isVertical ? 'width' : 'height';
|
|
var shiftOffsets = {
|
|
start: defineProperty$3({}, side, reference[side]),
|
|
end: defineProperty$3({}, side, reference[side] + reference[measurement] - popper[measurement])
|
|
};
|
|
data.offsets.popper = _extends$1({}, popper, shiftOffsets[shiftvariation]);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by update method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function hide(data) {
|
|
if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {
|
|
return data;
|
|
}
|
|
|
|
var refRect = data.offsets.reference;
|
|
var bound = find(data.instance.modifiers, function (modifier) {
|
|
return modifier.name === 'preventOverflow';
|
|
}).boundaries;
|
|
|
|
if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) {
|
|
// Avoid unnecessary DOM access if visibility hasn't changed
|
|
if (data.hide === true) {
|
|
return data;
|
|
}
|
|
|
|
data.hide = true;
|
|
data.attributes['x-out-of-boundaries'] = '';
|
|
} else {
|
|
// Avoid unnecessary DOM access if visibility hasn't changed
|
|
if (data.hide === false) {
|
|
return data;
|
|
}
|
|
|
|
data.hide = false;
|
|
data.attributes['x-out-of-boundaries'] = false;
|
|
}
|
|
|
|
return data;
|
|
}
|
|
/**
|
|
* @function
|
|
* @memberof Modifiers
|
|
* @argument {Object} data - The data object generated by `update` method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {Object} The data object, properly modified
|
|
*/
|
|
|
|
|
|
function inner(data) {
|
|
var placement = data.placement;
|
|
var basePlacement = placement.split('-')[0];
|
|
var _data$offsets = data.offsets,
|
|
popper = _data$offsets.popper,
|
|
reference = _data$offsets.reference;
|
|
var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;
|
|
var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;
|
|
popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);
|
|
data.placement = getOppositePlacement(placement);
|
|
data.offsets.popper = getClientRect(popper);
|
|
return data;
|
|
}
|
|
/**
|
|
* Modifier function, each modifier can have a function of this type assigned
|
|
* to its `fn` property.<br />
|
|
* These functions will be called on each update, this means that you must
|
|
* make sure they are performant enough to avoid performance bottlenecks.
|
|
*
|
|
* @function ModifierFn
|
|
* @argument {dataObject} data - The data object generated by `update` method
|
|
* @argument {Object} options - Modifiers configuration and options
|
|
* @returns {dataObject} The data object, properly modified
|
|
*/
|
|
|
|
/**
|
|
* Modifiers are plugins used to alter the behavior of your poppers.<br />
|
|
* Popper.js uses a set of 9 modifiers to provide all the basic functionalities
|
|
* needed by the library.
|
|
*
|
|
* Usually you don't want to override the `order`, `fn` and `onLoad` props.
|
|
* All the other properties are configurations that could be tweaked.
|
|
* @namespace modifiers
|
|
*/
|
|
|
|
|
|
var modifiers = {
|
|
/**
|
|
* Modifier used to shift the popper on the start or end of its reference
|
|
* element.<br />
|
|
* It will read the variation of the `placement` property.<br />
|
|
* It can be one either `-end` or `-start`.
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
shift: {
|
|
/** @prop {number} order=100 - Index used to define the order of execution */
|
|
order: 100,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: shift
|
|
},
|
|
|
|
/**
|
|
* The `offset` modifier can shift your popper on both its axis.
|
|
*
|
|
* It accepts the following units:
|
|
* - `px` or unit-less, interpreted as pixels
|
|
* - `%` or `%r`, percentage relative to the length of the reference element
|
|
* - `%p`, percentage relative to the length of the popper element
|
|
* - `vw`, CSS viewport width unit
|
|
* - `vh`, CSS viewport height unit
|
|
*
|
|
* For length is intended the main axis relative to the placement of the popper.<br />
|
|
* This means that if the placement is `top` or `bottom`, the length will be the
|
|
* `width`. In case of `left` or `right`, it will be the `height`.
|
|
*
|
|
* You can provide a single value (as `Number` or `String`), or a pair of values
|
|
* as `String` divided by a comma or one (or more) white spaces.<br />
|
|
* The latter is a deprecated method because it leads to confusion and will be
|
|
* removed in v2.<br />
|
|
* Additionally, it accepts additions and subtractions between different units.
|
|
* Note that multiplications and divisions aren't supported.
|
|
*
|
|
* Valid examples are:
|
|
* ```
|
|
* 10
|
|
* '10%'
|
|
* '10, 10'
|
|
* '10%, 10'
|
|
* '10 + 10%'
|
|
* '10 - 5vh + 3%'
|
|
* '-10px + 5vh, 5px - 6%'
|
|
* ```
|
|
* > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap
|
|
* > with their reference element, unfortunately, you will have to disable the `flip` modifier.
|
|
* > You can read more on this at this [issue](https://github.com/FezVrasta/popper.js/issues/373).
|
|
*
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
offset: {
|
|
/** @prop {number} order=200 - Index used to define the order of execution */
|
|
order: 200,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: offset,
|
|
|
|
/** @prop {Number|String} offset=0
|
|
* The offset value as described in the modifier description
|
|
*/
|
|
offset: 0
|
|
},
|
|
|
|
/**
|
|
* Modifier used to prevent the popper from being positioned outside the boundary.
|
|
*
|
|
* A scenario exists where the reference itself is not within the boundaries.<br />
|
|
* We can say it has "escaped the boundaries" — or just "escaped".<br />
|
|
* In this case we need to decide whether the popper should either:
|
|
*
|
|
* - detach from the reference and remain "trapped" in the boundaries, or
|
|
* - if it should ignore the boundary and "escape with its reference"
|
|
*
|
|
* When `escapeWithReference` is set to`true` and reference is completely
|
|
* outside its boundaries, the popper will overflow (or completely leave)
|
|
* the boundaries in order to remain attached to the edge of the reference.
|
|
*
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
preventOverflow: {
|
|
/** @prop {number} order=300 - Index used to define the order of execution */
|
|
order: 300,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: preventOverflow,
|
|
|
|
/**
|
|
* @prop {Array} [priority=['left','right','top','bottom']]
|
|
* Popper will try to prevent overflow following these priorities by default,
|
|
* then, it could overflow on the left and on top of the `boundariesElement`
|
|
*/
|
|
priority: ['left', 'right', 'top', 'bottom'],
|
|
|
|
/**
|
|
* @prop {number} padding=5
|
|
* Amount of pixel used to define a minimum distance between the boundaries
|
|
* and the popper. This makes sure the popper always has a little padding
|
|
* between the edges of its container
|
|
*/
|
|
padding: 5,
|
|
|
|
/**
|
|
* @prop {String|HTMLElement} boundariesElement='scrollParent'
|
|
* Boundaries used by the modifier. Can be `scrollParent`, `window`,
|
|
* `viewport` or any DOM element.
|
|
*/
|
|
boundariesElement: 'scrollParent'
|
|
},
|
|
|
|
/**
|
|
* Modifier used to make sure the reference and its popper stay near each other
|
|
* without leaving any gap between the two. Especially useful when the arrow is
|
|
* enabled and you want to ensure that it points to its reference element.
|
|
* It cares only about the first axis. You can still have poppers with margin
|
|
* between the popper and its reference element.
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
keepTogether: {
|
|
/** @prop {number} order=400 - Index used to define the order of execution */
|
|
order: 400,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: keepTogether
|
|
},
|
|
|
|
/**
|
|
* This modifier is used to move the `arrowElement` of the popper to make
|
|
* sure it is positioned between the reference element and its popper element.
|
|
* It will read the outer size of the `arrowElement` node to detect how many
|
|
* pixels of conjunction are needed.
|
|
*
|
|
* It has no effect if no `arrowElement` is provided.
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
arrow: {
|
|
/** @prop {number} order=500 - Index used to define the order of execution */
|
|
order: 500,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: arrow,
|
|
|
|
/** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */
|
|
element: '[x-arrow]'
|
|
},
|
|
|
|
/**
|
|
* Modifier used to flip the popper's placement when it starts to overlap its
|
|
* reference element.
|
|
*
|
|
* Requires the `preventOverflow` modifier before it in order to work.
|
|
*
|
|
* **NOTE:** this modifier will interrupt the current update cycle and will
|
|
* restart it if it detects the need to flip the placement.
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
flip: {
|
|
/** @prop {number} order=600 - Index used to define the order of execution */
|
|
order: 600,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: flip,
|
|
|
|
/**
|
|
* @prop {String|Array} behavior='flip'
|
|
* The behavior used to change the popper's placement. It can be one of
|
|
* `flip`, `clockwise`, `counterclockwise` or an array with a list of valid
|
|
* placements (with optional variations)
|
|
*/
|
|
behavior: 'flip',
|
|
|
|
/**
|
|
* @prop {number} padding=5
|
|
* The popper will flip if it hits the edges of the `boundariesElement`
|
|
*/
|
|
padding: 5,
|
|
|
|
/**
|
|
* @prop {String|HTMLElement} boundariesElement='viewport'
|
|
* The element which will define the boundaries of the popper position.
|
|
* The popper will never be placed outside of the defined boundaries
|
|
* (except if `keepTogether` is enabled)
|
|
*/
|
|
boundariesElement: 'viewport',
|
|
|
|
/**
|
|
* @prop {Boolean} flipVariations=false
|
|
* The popper will switch placement variation between `-start` and `-end` when
|
|
* the reference element overlaps its boundaries.
|
|
*
|
|
* The original placement should have a set variation.
|
|
*/
|
|
flipVariations: false,
|
|
|
|
/**
|
|
* @prop {Boolean} flipVariationsByContent=false
|
|
* The popper will switch placement variation between `-start` and `-end` when
|
|
* the popper element overlaps its reference boundaries.
|
|
*
|
|
* The original placement should have a set variation.
|
|
*/
|
|
flipVariationsByContent: false
|
|
},
|
|
|
|
/**
|
|
* Modifier used to make the popper flow toward the inner of the reference element.
|
|
* By default, when this modifier is disabled, the popper will be placed outside
|
|
* the reference element.
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
inner: {
|
|
/** @prop {number} order=700 - Index used to define the order of execution */
|
|
order: 700,
|
|
|
|
/** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */
|
|
enabled: false,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: inner
|
|
},
|
|
|
|
/**
|
|
* Modifier used to hide the popper when its reference element is outside of the
|
|
* popper boundaries. It will set a `x-out-of-boundaries` attribute which can
|
|
* be used to hide with a CSS selector the popper when its reference is
|
|
* out of boundaries.
|
|
*
|
|
* Requires the `preventOverflow` modifier before it in order to work.
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
hide: {
|
|
/** @prop {number} order=800 - Index used to define the order of execution */
|
|
order: 800,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: hide
|
|
},
|
|
|
|
/**
|
|
* Computes the style that will be applied to the popper element to gets
|
|
* properly positioned.
|
|
*
|
|
* Note that this modifier will not touch the DOM, it just prepares the styles
|
|
* so that `applyStyle` modifier can apply it. This separation is useful
|
|
* in case you need to replace `applyStyle` with a custom implementation.
|
|
*
|
|
* This modifier has `850` as `order` value to maintain backward compatibility
|
|
* with previous versions of Popper.js. Expect the modifiers ordering method
|
|
* to change in future major versions of the library.
|
|
*
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
computeStyle: {
|
|
/** @prop {number} order=850 - Index used to define the order of execution */
|
|
order: 850,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: computeStyle,
|
|
|
|
/**
|
|
* @prop {Boolean} gpuAcceleration=true
|
|
* If true, it uses the CSS 3D transformation to position the popper.
|
|
* Otherwise, it will use the `top` and `left` properties
|
|
*/
|
|
gpuAcceleration: true,
|
|
|
|
/**
|
|
* @prop {string} [x='bottom']
|
|
* Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.
|
|
* Change this if your popper should grow in a direction different from `bottom`
|
|
*/
|
|
x: 'bottom',
|
|
|
|
/**
|
|
* @prop {string} [x='left']
|
|
* Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.
|
|
* Change this if your popper should grow in a direction different from `right`
|
|
*/
|
|
y: 'right'
|
|
},
|
|
|
|
/**
|
|
* Applies the computed styles to the popper element.
|
|
*
|
|
* All the DOM manipulations are limited to this modifier. This is useful in case
|
|
* you want to integrate Popper.js inside a framework or view library and you
|
|
* want to delegate all the DOM manipulations to it.
|
|
*
|
|
* Note that if you disable this modifier, you must make sure the popper element
|
|
* has its position set to `absolute` before Popper.js can do its work!
|
|
*
|
|
* Just disable this modifier and define your own to achieve the desired effect.
|
|
*
|
|
* @memberof modifiers
|
|
* @inner
|
|
*/
|
|
applyStyle: {
|
|
/** @prop {number} order=900 - Index used to define the order of execution */
|
|
order: 900,
|
|
|
|
/** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */
|
|
enabled: true,
|
|
|
|
/** @prop {ModifierFn} */
|
|
fn: applyStyle,
|
|
|
|
/** @prop {Function} */
|
|
onLoad: applyStyleOnLoad,
|
|
|
|
/**
|
|
* @deprecated since version 1.10.0, the property moved to `computeStyle` modifier
|
|
* @prop {Boolean} gpuAcceleration=true
|
|
* If true, it uses the CSS 3D transformation to position the popper.
|
|
* Otherwise, it will use the `top` and `left` properties
|
|
*/
|
|
gpuAcceleration: undefined
|
|
}
|
|
};
|
|
/**
|
|
* The `dataObject` is an object containing all the information used by Popper.js.
|
|
* This object is passed to modifiers and to the `onCreate` and `onUpdate` callbacks.
|
|
* @name dataObject
|
|
* @property {Object} data.instance The Popper.js instance
|
|
* @property {String} data.placement Placement applied to popper
|
|
* @property {String} data.originalPlacement Placement originally defined on init
|
|
* @property {Boolean} data.flipped True if popper has been flipped by flip modifier
|
|
* @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper
|
|
* @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier
|
|
* @property {Object} data.styles Any CSS property defined here will be applied to the popper. It expects the JavaScript nomenclature (eg. `marginBottom`)
|
|
* @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow. It expects the JavaScript nomenclature (eg. `marginBottom`)
|
|
* @property {Object} data.boundaries Offsets of the popper boundaries
|
|
* @property {Object} data.offsets The measurements of popper, reference and arrow elements
|
|
* @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values
|
|
* @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values
|
|
* @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0
|
|
*/
|
|
|
|
/**
|
|
* Default options provided to Popper.js constructor.<br />
|
|
* These can be overridden using the `options` argument of Popper.js.<br />
|
|
* To override an option, simply pass an object with the same
|
|
* structure of the `options` object, as the 3rd argument. For example:
|
|
* ```
|
|
* new Popper(ref, pop, {
|
|
* modifiers: {
|
|
* preventOverflow: { enabled: false }
|
|
* }
|
|
* })
|
|
* ```
|
|
* @type {Object}
|
|
* @static
|
|
* @memberof Popper
|
|
*/
|
|
|
|
var Defaults = {
|
|
/**
|
|
* Popper's placement.
|
|
* @prop {Popper.placements} placement='bottom'
|
|
*/
|
|
placement: 'bottom',
|
|
|
|
/**
|
|
* Set this to true if you want popper to position it self in 'fixed' mode
|
|
* @prop {Boolean} positionFixed=false
|
|
*/
|
|
positionFixed: false,
|
|
|
|
/**
|
|
* Whether events (resize, scroll) are initially enabled.
|
|
* @prop {Boolean} eventsEnabled=true
|
|
*/
|
|
eventsEnabled: true,
|
|
|
|
/**
|
|
* Set to true if you want to automatically remove the popper when
|
|
* you call the `destroy` method.
|
|
* @prop {Boolean} removeOnDestroy=false
|
|
*/
|
|
removeOnDestroy: false,
|
|
|
|
/**
|
|
* Callback called when the popper is created.<br />
|
|
* By default, it is set to no-op.<br />
|
|
* Access Popper.js instance with `data.instance`.
|
|
* @prop {onCreate}
|
|
*/
|
|
onCreate: function onCreate() {},
|
|
|
|
/**
|
|
* Callback called when the popper is updated. This callback is not called
|
|
* on the initialization/creation of the popper, but only on subsequent
|
|
* updates.<br />
|
|
* By default, it is set to no-op.<br />
|
|
* Access Popper.js instance with `data.instance`.
|
|
* @prop {onUpdate}
|
|
*/
|
|
onUpdate: function onUpdate() {},
|
|
|
|
/**
|
|
* List of modifiers used to modify the offsets before they are applied to the popper.
|
|
* They provide most of the functionalities of Popper.js.
|
|
* @prop {modifiers}
|
|
*/
|
|
modifiers: modifiers
|
|
};
|
|
/**
|
|
* @callback onCreate
|
|
* @param {dataObject} data
|
|
*/
|
|
|
|
/**
|
|
* @callback onUpdate
|
|
* @param {dataObject} data
|
|
*/
|
|
// Utils
|
|
// Methods
|
|
|
|
var Popper = function () {
|
|
/**
|
|
* Creates a new Popper.js instance.
|
|
* @class Popper
|
|
* @param {Element|referenceObject} reference - The reference element used to position the popper
|
|
* @param {Element} popper - The HTML / XML element used as the popper
|
|
* @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)
|
|
* @return {Object} instance - The generated Popper.js instance
|
|
*/
|
|
function Popper(reference, popper) {
|
|
var _this = this;
|
|
|
|
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
classCallCheck(this, Popper);
|
|
|
|
this.scheduleUpdate = function () {
|
|
return requestAnimationFrame(_this.update);
|
|
}; // make update() debounced, so that it only runs at most once-per-tick
|
|
|
|
|
|
this.update = debounce(this.update.bind(this)); // with {} we create a new object with the options inside it
|
|
|
|
this.options = _extends$1({}, Popper.Defaults, options); // init state
|
|
|
|
this.state = {
|
|
isDestroyed: false,
|
|
isCreated: false,
|
|
scrollParents: []
|
|
}; // get reference and popper elements (allow jQuery wrappers)
|
|
|
|
this.reference = reference && reference.jquery ? reference[0] : reference;
|
|
this.popper = popper && popper.jquery ? popper[0] : popper; // Deep merge modifiers options
|
|
|
|
this.options.modifiers = {};
|
|
Object.keys(_extends$1({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) {
|
|
_this.options.modifiers[name] = _extends$1({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {});
|
|
}); // Refactoring modifiers' list (Object => Array)
|
|
|
|
this.modifiers = Object.keys(this.options.modifiers).map(function (name) {
|
|
return _extends$1({
|
|
name: name
|
|
}, _this.options.modifiers[name]);
|
|
}) // sort the modifiers by order
|
|
.sort(function (a, b) {
|
|
return a.order - b.order;
|
|
}); // modifiers have the ability to execute arbitrary code when Popper.js get inited
|
|
// such code is executed in the same order of its modifier
|
|
// they could add new properties to their options configuration
|
|
// BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!
|
|
|
|
this.modifiers.forEach(function (modifierOptions) {
|
|
if (modifierOptions.enabled && isFunction$2(modifierOptions.onLoad)) {
|
|
modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state);
|
|
}
|
|
}); // fire the first update to position the popper in the right place
|
|
|
|
this.update();
|
|
var eventsEnabled = this.options.eventsEnabled;
|
|
|
|
if (eventsEnabled) {
|
|
// setup event listeners, they will take care of update the position in specific situations
|
|
this.enableEventListeners();
|
|
}
|
|
|
|
this.state.eventsEnabled = eventsEnabled;
|
|
} // We can't use class properties because they don't get listed in the
|
|
// class prototype and break stuff like Sinon stubs
|
|
|
|
|
|
createClass(Popper, [{
|
|
key: 'update',
|
|
value: function update$$1() {
|
|
return update.call(this);
|
|
}
|
|
}, {
|
|
key: 'destroy',
|
|
value: function destroy$$1() {
|
|
return destroy.call(this);
|
|
}
|
|
}, {
|
|
key: 'enableEventListeners',
|
|
value: function enableEventListeners$$1() {
|
|
return enableEventListeners.call(this);
|
|
}
|
|
}, {
|
|
key: 'disableEventListeners',
|
|
value: function disableEventListeners$$1() {
|
|
return disableEventListeners.call(this);
|
|
}
|
|
/**
|
|
* Schedules an update. It will run on the next UI update available.
|
|
* @method scheduleUpdate
|
|
* @memberof Popper
|
|
*/
|
|
|
|
/**
|
|
* Collection of utilities useful when writing custom modifiers.
|
|
* Starting from version 1.7, this method is available only if you
|
|
* include `popper-utils.js` before `popper.js`.
|
|
*
|
|
* **DEPRECATION**: This way to access PopperUtils is deprecated
|
|
* and will be removed in v2! Use the PopperUtils module directly instead.
|
|
* Due to the high instability of the methods contained in Utils, we can't
|
|
* guarantee them to follow semver. Use them at your own risk!
|
|
* @static
|
|
* @private
|
|
* @type {Object}
|
|
* @deprecated since version 1.8
|
|
* @member Utils
|
|
* @memberof Popper
|
|
*/
|
|
|
|
}]);
|
|
return Popper;
|
|
}();
|
|
/**
|
|
* The `referenceObject` is an object that provides an interface compatible with Popper.js
|
|
* and lets you use it as replacement of a real DOM node.<br />
|
|
* You can use this method to position a popper relatively to a set of coordinates
|
|
* in case you don't have a DOM node to use as reference.
|
|
*
|
|
* ```
|
|
* new Popper(referenceObject, popperNode);
|
|
* ```
|
|
*
|
|
* NB: This feature isn't supported in Internet Explorer 10.
|
|
* @name referenceObject
|
|
* @property {Function} data.getBoundingClientRect
|
|
* A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.
|
|
* @property {number} data.clientWidth
|
|
* An ES6 getter that will return the width of the virtual reference element.
|
|
* @property {number} data.clientHeight
|
|
* An ES6 getter that will return the height of the virtual reference element.
|
|
*/
|
|
|
|
|
|
Popper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;
|
|
Popper.placements = placements;
|
|
Popper.Defaults = Defaults;
|
|
|
|
var key = '__global_unique_id__';
|
|
|
|
var gud = function gud() {
|
|
return commonjsGlobal[key] = (commonjsGlobal[key] || 0) + 1;
|
|
};
|
|
|
|
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
var warning = function warning() {};
|
|
|
|
var warning_1 = warning;
|
|
|
|
var implementation$4 = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
|
|
var _react2 = _interopRequireDefault(React__default);
|
|
|
|
var _propTypes2 = _interopRequireDefault(propTypes);
|
|
|
|
var _gud2 = _interopRequireDefault(gud);
|
|
|
|
var _warning2 = _interopRequireDefault(warning_1);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
function _classCallCheck(instance, Constructor) {
|
|
if (!(instance instanceof Constructor)) {
|
|
throw new TypeError("Cannot call a class as a function");
|
|
}
|
|
}
|
|
|
|
function _possibleConstructorReturn(self, call) {
|
|
if (!self) {
|
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
}
|
|
|
|
return call && (typeof call === "object" || typeof call === "function") ? call : self;
|
|
}
|
|
|
|
function _inherits(subClass, superClass) {
|
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
|
|
}
|
|
|
|
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
constructor: {
|
|
value: subClass,
|
|
enumerable: false,
|
|
writable: true,
|
|
configurable: true
|
|
}
|
|
});
|
|
if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
|
|
}
|
|
|
|
var MAX_SIGNED_31_BIT_INT = 1073741823; // Inlined Object.is polyfill.
|
|
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
|
|
|
|
function objectIs(x, y) {
|
|
if (x === y) {
|
|
return x !== 0 || 1 / x === 1 / y;
|
|
} else {
|
|
return x !== x && y !== y;
|
|
}
|
|
}
|
|
|
|
function createEventEmitter(value) {
|
|
var handlers = [];
|
|
return {
|
|
on: function on(handler) {
|
|
handlers.push(handler);
|
|
},
|
|
off: function off(handler) {
|
|
handlers = handlers.filter(function (h) {
|
|
return h !== handler;
|
|
});
|
|
},
|
|
get: function get() {
|
|
return value;
|
|
},
|
|
set: function set(newValue, changedBits) {
|
|
value = newValue;
|
|
handlers.forEach(function (handler) {
|
|
return handler(value, changedBits);
|
|
});
|
|
}
|
|
};
|
|
}
|
|
|
|
function onlyChild(children) {
|
|
return Array.isArray(children) ? children[0] : children;
|
|
}
|
|
|
|
function createReactContext(defaultValue, calculateChangedBits) {
|
|
var _Provider$childContex, _Consumer$contextType;
|
|
|
|
var contextProp = '__create-react-context-' + (0, _gud2.default)() + '__';
|
|
|
|
var Provider = function (_Component) {
|
|
_inherits(Provider, _Component);
|
|
|
|
function Provider() {
|
|
var _temp, _this, _ret;
|
|
|
|
_classCallCheck(this, Provider);
|
|
|
|
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
|
|
return _ret = (_temp = (_this = _possibleConstructorReturn(this, _Component.call.apply(_Component, [this].concat(args))), _this), _this.emitter = createEventEmitter(_this.props.value), _temp), _possibleConstructorReturn(_this, _ret);
|
|
}
|
|
|
|
Provider.prototype.getChildContext = function getChildContext() {
|
|
var _ref;
|
|
|
|
return _ref = {}, _ref[contextProp] = this.emitter, _ref;
|
|
};
|
|
|
|
Provider.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {
|
|
if (this.props.value !== nextProps.value) {
|
|
var oldValue = this.props.value;
|
|
var newValue = nextProps.value;
|
|
var changedBits = void 0;
|
|
|
|
if (objectIs(oldValue, newValue)) {
|
|
changedBits = 0; // No change
|
|
} else {
|
|
changedBits = typeof calculateChangedBits === 'function' ? calculateChangedBits(oldValue, newValue) : MAX_SIGNED_31_BIT_INT;
|
|
|
|
changedBits |= 0;
|
|
|
|
if (changedBits !== 0) {
|
|
this.emitter.set(nextProps.value, changedBits);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
Provider.prototype.render = function render() {
|
|
return this.props.children;
|
|
};
|
|
|
|
return Provider;
|
|
}(React__default.Component);
|
|
|
|
Provider.childContextTypes = (_Provider$childContex = {}, _Provider$childContex[contextProp] = _propTypes2.default.object.isRequired, _Provider$childContex);
|
|
|
|
var Consumer = function (_Component2) {
|
|
_inherits(Consumer, _Component2);
|
|
|
|
function Consumer() {
|
|
var _temp2, _this2, _ret2;
|
|
|
|
_classCallCheck(this, Consumer);
|
|
|
|
for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
args[_key2] = arguments[_key2];
|
|
}
|
|
|
|
return _ret2 = (_temp2 = (_this2 = _possibleConstructorReturn(this, _Component2.call.apply(_Component2, [this].concat(args))), _this2), _this2.state = {
|
|
value: _this2.getValue()
|
|
}, _this2.onUpdate = function (newValue, changedBits) {
|
|
var observedBits = _this2.observedBits | 0;
|
|
|
|
if ((observedBits & changedBits) !== 0) {
|
|
_this2.setState({
|
|
value: _this2.getValue()
|
|
});
|
|
}
|
|
}, _temp2), _possibleConstructorReturn(_this2, _ret2);
|
|
}
|
|
|
|
Consumer.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {
|
|
var observedBits = nextProps.observedBits;
|
|
this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT // Subscribe to all changes by default
|
|
: observedBits;
|
|
};
|
|
|
|
Consumer.prototype.componentDidMount = function componentDidMount() {
|
|
if (this.context[contextProp]) {
|
|
this.context[contextProp].on(this.onUpdate);
|
|
}
|
|
|
|
var observedBits = this.props.observedBits;
|
|
this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT // Subscribe to all changes by default
|
|
: observedBits;
|
|
};
|
|
|
|
Consumer.prototype.componentWillUnmount = function componentWillUnmount() {
|
|
if (this.context[contextProp]) {
|
|
this.context[contextProp].off(this.onUpdate);
|
|
}
|
|
};
|
|
|
|
Consumer.prototype.getValue = function getValue() {
|
|
if (this.context[contextProp]) {
|
|
return this.context[contextProp].get();
|
|
} else {
|
|
return defaultValue;
|
|
}
|
|
};
|
|
|
|
Consumer.prototype.render = function render() {
|
|
return onlyChild(this.props.children)(this.state.value);
|
|
};
|
|
|
|
return Consumer;
|
|
}(React__default.Component);
|
|
|
|
Consumer.contextTypes = (_Consumer$contextType = {}, _Consumer$contextType[contextProp] = _propTypes2.default.object, _Consumer$contextType);
|
|
return {
|
|
Provider: Provider,
|
|
Consumer: Consumer
|
|
};
|
|
}
|
|
|
|
exports.default = createReactContext;
|
|
module.exports = exports['default'];
|
|
});
|
|
unwrapExports(implementation$4);
|
|
|
|
var lib = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
|
|
var _react2 = _interopRequireDefault(React__default);
|
|
|
|
var _implementation2 = _interopRequireDefault(implementation$4);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
exports.default = _react2.default.createContext || _implementation2.default;
|
|
module.exports = exports['default'];
|
|
});
|
|
var createContext = unwrapExports(lib);
|
|
|
|
var ManagerReferenceNodeContext = createContext();
|
|
var ManagerReferenceNodeSetterContext = createContext();
|
|
|
|
var Manager = /*#__PURE__*/function (_React$Component) {
|
|
inheritsLoose(Manager, _React$Component);
|
|
|
|
function Manager() {
|
|
var _this;
|
|
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
|
|
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
|
|
|
defineProperty(assertThisInitialized(_this), "referenceNode", void 0);
|
|
|
|
defineProperty(assertThisInitialized(_this), "setReferenceNode", function (newReferenceNode) {
|
|
if (newReferenceNode && _this.referenceNode !== newReferenceNode) {
|
|
_this.referenceNode = newReferenceNode;
|
|
|
|
_this.forceUpdate();
|
|
}
|
|
});
|
|
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Manager.prototype;
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
this.referenceNode = null;
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return /*#__PURE__*/React.createElement(ManagerReferenceNodeContext.Provider, {
|
|
value: this.referenceNode
|
|
}, /*#__PURE__*/React.createElement(ManagerReferenceNodeSetterContext.Provider, {
|
|
value: this.setReferenceNode
|
|
}, this.props.children));
|
|
};
|
|
|
|
return Manager;
|
|
}(React.Component);
|
|
|
|
/**
|
|
* Takes an argument and if it's an array, returns the first item in the array,
|
|
* otherwise returns the argument. Used for Preact compatibility.
|
|
*/
|
|
var unwrapArray = function unwrapArray(arg) {
|
|
return Array.isArray(arg) ? arg[0] : arg;
|
|
};
|
|
/**
|
|
* Takes a maybe-undefined function and arbitrary args and invokes the function
|
|
* only if it is defined.
|
|
*/
|
|
|
|
var safeInvoke = function safeInvoke(fn) {
|
|
if (typeof fn === "function") {
|
|
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
args[_key - 1] = arguments[_key];
|
|
}
|
|
|
|
return fn.apply(void 0, args);
|
|
}
|
|
};
|
|
/**
|
|
* Sets a ref using either a ref callback or a ref object
|
|
*/
|
|
|
|
var setRef = function setRef(ref, node) {
|
|
// if its a function call it
|
|
if (typeof ref === "function") {
|
|
return safeInvoke(ref, node);
|
|
} // otherwise we should treat it as a ref object
|
|
else if (ref != null) {
|
|
ref.current = node;
|
|
}
|
|
};
|
|
|
|
var initialStyle = {
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
opacity: 0,
|
|
pointerEvents: 'none'
|
|
};
|
|
var initialArrowStyle = {};
|
|
var InnerPopper = /*#__PURE__*/function (_React$Component) {
|
|
inheritsLoose(InnerPopper, _React$Component);
|
|
|
|
function InnerPopper() {
|
|
var _this;
|
|
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
|
|
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
|
|
|
defineProperty(assertThisInitialized(_this), "state", {
|
|
data: undefined,
|
|
placement: undefined
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "popperInstance", void 0);
|
|
|
|
defineProperty(assertThisInitialized(_this), "popperNode", null);
|
|
|
|
defineProperty(assertThisInitialized(_this), "arrowNode", null);
|
|
|
|
defineProperty(assertThisInitialized(_this), "setPopperNode", function (popperNode) {
|
|
if (!popperNode || _this.popperNode === popperNode) return;
|
|
setRef(_this.props.innerRef, popperNode);
|
|
_this.popperNode = popperNode;
|
|
|
|
_this.updatePopperInstance();
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "setArrowNode", function (arrowNode) {
|
|
_this.arrowNode = arrowNode;
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "updateStateModifier", {
|
|
enabled: true,
|
|
order: 900,
|
|
fn: function fn(data) {
|
|
var placement = data.placement;
|
|
|
|
_this.setState({
|
|
data: data,
|
|
placement: placement
|
|
});
|
|
|
|
return data;
|
|
}
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "getOptions", function () {
|
|
return {
|
|
placement: _this.props.placement,
|
|
eventsEnabled: _this.props.eventsEnabled,
|
|
positionFixed: _this.props.positionFixed,
|
|
modifiers: _extends_1({}, _this.props.modifiers, {
|
|
arrow: _extends_1({}, _this.props.modifiers && _this.props.modifiers.arrow, {
|
|
enabled: !!_this.arrowNode,
|
|
element: _this.arrowNode
|
|
}),
|
|
applyStyle: {
|
|
enabled: false
|
|
},
|
|
updateStateModifier: _this.updateStateModifier
|
|
})
|
|
};
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "getPopperStyle", function () {
|
|
return !_this.popperNode || !_this.state.data ? initialStyle : _extends_1({
|
|
position: _this.state.data.offsets.popper.position
|
|
}, _this.state.data.styles);
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "getPopperPlacement", function () {
|
|
return !_this.state.data ? undefined : _this.state.placement;
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "getArrowStyle", function () {
|
|
return !_this.arrowNode || !_this.state.data ? initialArrowStyle : _this.state.data.arrowStyles;
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "getOutOfBoundariesState", function () {
|
|
return _this.state.data ? _this.state.data.hide : undefined;
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "destroyPopperInstance", function () {
|
|
if (!_this.popperInstance) return;
|
|
|
|
_this.popperInstance.destroy();
|
|
|
|
_this.popperInstance = null;
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "updatePopperInstance", function () {
|
|
_this.destroyPopperInstance();
|
|
|
|
var _assertThisInitialize = assertThisInitialized(_this),
|
|
popperNode = _assertThisInitialize.popperNode;
|
|
|
|
var referenceElement = _this.props.referenceElement;
|
|
if (!referenceElement || !popperNode) return;
|
|
_this.popperInstance = new Popper(referenceElement, popperNode, _this.getOptions());
|
|
});
|
|
|
|
defineProperty(assertThisInitialized(_this), "scheduleUpdate", function () {
|
|
if (_this.popperInstance) {
|
|
_this.popperInstance.scheduleUpdate();
|
|
}
|
|
});
|
|
|
|
return _this;
|
|
}
|
|
|
|
var _proto = InnerPopper.prototype;
|
|
|
|
_proto.componentDidUpdate = function componentDidUpdate(prevProps, prevState) {
|
|
// If the Popper.js options have changed, update the instance (destroy + create)
|
|
if (this.props.placement !== prevProps.placement || this.props.referenceElement !== prevProps.referenceElement || this.props.positionFixed !== prevProps.positionFixed || !deepEqual_1(this.props.modifiers, prevProps.modifiers, {
|
|
strict: true
|
|
})) {
|
|
|
|
this.updatePopperInstance();
|
|
} else if (this.props.eventsEnabled !== prevProps.eventsEnabled && this.popperInstance) {
|
|
this.props.eventsEnabled ? this.popperInstance.enableEventListeners() : this.popperInstance.disableEventListeners();
|
|
} // A placement difference in state means popper determined a new placement
|
|
// apart from the props value. By the time the popper element is rendered with
|
|
// the new position Popper has already measured it, if the place change triggers
|
|
// a size change it will result in a misaligned popper. So we schedule an update to be sure.
|
|
|
|
|
|
if (prevState.placement !== this.state.placement) {
|
|
this.scheduleUpdate();
|
|
}
|
|
};
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
setRef(this.props.innerRef, null);
|
|
this.destroyPopperInstance();
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return unwrapArray(this.props.children)({
|
|
ref: this.setPopperNode,
|
|
style: this.getPopperStyle(),
|
|
placement: this.getPopperPlacement(),
|
|
outOfBoundaries: this.getOutOfBoundariesState(),
|
|
scheduleUpdate: this.scheduleUpdate,
|
|
arrowProps: {
|
|
ref: this.setArrowNode,
|
|
style: this.getArrowStyle()
|
|
}
|
|
});
|
|
};
|
|
|
|
return InnerPopper;
|
|
}(React.Component);
|
|
|
|
defineProperty(InnerPopper, "defaultProps", {
|
|
placement: 'bottom',
|
|
eventsEnabled: true,
|
|
referenceElement: undefined,
|
|
positionFixed: false
|
|
});
|
|
function Popper$1(_ref) {
|
|
var referenceElement = _ref.referenceElement,
|
|
props = objectWithoutPropertiesLoose(_ref, ["referenceElement"]);
|
|
|
|
return /*#__PURE__*/React.createElement(ManagerReferenceNodeContext.Consumer, null, function (referenceNode) {
|
|
return /*#__PURE__*/React.createElement(InnerPopper, _extends_1({
|
|
referenceElement: referenceElement !== undefined ? referenceElement : referenceNode
|
|
}, props));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
var warning$1 = function warning() {};
|
|
|
|
var warning_1$1 = warning$1;
|
|
|
|
var InnerReference = /*#__PURE__*/function (_React$Component) {
|
|
inheritsLoose(InnerReference, _React$Component);
|
|
|
|
function InnerReference() {
|
|
var _this;
|
|
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
|
|
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
|
|
|
defineProperty(assertThisInitialized(_this), "refHandler", function (node) {
|
|
setRef(_this.props.innerRef, node);
|
|
safeInvoke(_this.props.setReferenceNode, node);
|
|
});
|
|
|
|
return _this;
|
|
}
|
|
|
|
var _proto = InnerReference.prototype;
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
setRef(this.props.innerRef, null);
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
warning_1$1(Boolean(this.props.setReferenceNode));
|
|
return unwrapArray(this.props.children)({
|
|
ref: this.refHandler
|
|
});
|
|
};
|
|
|
|
return InnerReference;
|
|
}(React.Component);
|
|
|
|
function Reference(props) {
|
|
return /*#__PURE__*/React.createElement(ManagerReferenceNodeSetterContext.Consumer, null, function (setReferenceNode) {
|
|
return /*#__PURE__*/React.createElement(InnerReference, _extends_1({
|
|
setReferenceNode: setReferenceNode
|
|
}, props));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* DropdownContext
|
|
* {
|
|
* toggle: PropTypes.func.isRequired,
|
|
* isOpen: PropTypes.bool.isRequired,
|
|
* direction: PropTypes.oneOf(['up', 'down', 'left', 'right']).isRequired,
|
|
* inNavbar: PropTypes.bool.isRequired,
|
|
* disabled: PropTypes.bool
|
|
* }
|
|
*/
|
|
|
|
var DropdownContext = /*#__PURE__*/React__default.createContext({});
|
|
|
|
var propTypes$f = {
|
|
a11y: propTypes.bool,
|
|
disabled: propTypes.bool,
|
|
direction: propTypes.oneOf(['up', 'down', 'left', 'right']),
|
|
group: propTypes.bool,
|
|
isOpen: propTypes.bool,
|
|
nav: propTypes.bool,
|
|
active: propTypes.bool,
|
|
addonType: propTypes.oneOfType([propTypes.bool, propTypes.oneOf(['prepend', 'append'])]),
|
|
size: propTypes.string,
|
|
tag: tagPropType,
|
|
toggle: propTypes.func,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
inNavbar: propTypes.bool,
|
|
setActiveFromChild: propTypes.bool
|
|
};
|
|
var defaultProps$e = {
|
|
a11y: true,
|
|
isOpen: false,
|
|
direction: 'down',
|
|
nav: false,
|
|
active: false,
|
|
addonType: false,
|
|
inNavbar: false,
|
|
setActiveFromChild: false
|
|
};
|
|
var preventDefaultKeys = [keyCodes.space, keyCodes.enter, keyCodes.up, keyCodes.down, keyCodes.end, keyCodes.home];
|
|
|
|
var Dropdown = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(Dropdown, _React$Component);
|
|
|
|
function Dropdown(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.addEvents = _this.addEvents.bind(_assertThisInitialized(_this));
|
|
_this.handleDocumentClick = _this.handleDocumentClick.bind(_assertThisInitialized(_this));
|
|
_this.handleKeyDown = _this.handleKeyDown.bind(_assertThisInitialized(_this));
|
|
_this.removeEvents = _this.removeEvents.bind(_assertThisInitialized(_this));
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
_this.handleMenuRef = _this.handleMenuRef.bind(_assertThisInitialized(_this));
|
|
_this.containerRef = /*#__PURE__*/React__default.createRef();
|
|
_this.menuRef = /*#__PURE__*/React__default.createRef();
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Dropdown.prototype;
|
|
|
|
_proto.handleMenuRef = function handleMenuRef(menuRef) {
|
|
this.menuRef.current = menuRef;
|
|
};
|
|
|
|
_proto.getContextValue = function getContextValue() {
|
|
return {
|
|
toggle: this.toggle,
|
|
isOpen: this.props.isOpen,
|
|
direction: this.props.direction === 'down' && this.props.dropup ? 'up' : this.props.direction,
|
|
inNavbar: this.props.inNavbar,
|
|
disabled: this.props.disabled,
|
|
// Callback that should be called by DropdownMenu to provide a ref to
|
|
// a HTML tag that's used for the DropdownMenu
|
|
onMenuRef: this.handleMenuRef
|
|
};
|
|
};
|
|
|
|
_proto.componentDidMount = function componentDidMount() {
|
|
this.handleProps();
|
|
};
|
|
|
|
_proto.componentDidUpdate = function componentDidUpdate(prevProps) {
|
|
if (this.props.isOpen !== prevProps.isOpen) {
|
|
this.handleProps();
|
|
}
|
|
};
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
this.removeEvents();
|
|
};
|
|
|
|
_proto.getContainer = function getContainer() {
|
|
return this.containerRef.current;
|
|
};
|
|
|
|
_proto.getMenu = function getMenu() {
|
|
return this.menuRef.current;
|
|
};
|
|
|
|
_proto.getMenuCtrl = function getMenuCtrl() {
|
|
if (this._$menuCtrl) return this._$menuCtrl;
|
|
this._$menuCtrl = this.getContainer().querySelector('[aria-expanded]');
|
|
return this._$menuCtrl;
|
|
};
|
|
|
|
_proto.getMenuItems = function getMenuItems() {
|
|
// In a real menu with a child DropdownMenu, `this.getMenu()` should never
|
|
// be null, but it is sometimes null in tests. To mitigate that, we just
|
|
// use `this.getContainer()` as the fallback `menuContainer`.
|
|
var menuContainer = this.getMenu() || this.getContainer();
|
|
return [].slice.call(menuContainer.querySelectorAll('[role="menuitem"]'));
|
|
};
|
|
|
|
_proto.addEvents = function addEvents() {
|
|
var _this2 = this;
|
|
|
|
['click', 'touchstart', 'keyup'].forEach(function (event) {
|
|
return document.addEventListener(event, _this2.handleDocumentClick, true);
|
|
});
|
|
};
|
|
|
|
_proto.removeEvents = function removeEvents() {
|
|
var _this3 = this;
|
|
|
|
['click', 'touchstart', 'keyup'].forEach(function (event) {
|
|
return document.removeEventListener(event, _this3.handleDocumentClick, true);
|
|
});
|
|
};
|
|
|
|
_proto.handleDocumentClick = function handleDocumentClick(e) {
|
|
if (e && (e.which === 3 || e.type === 'keyup' && e.which !== keyCodes.tab)) return;
|
|
var container = this.getContainer();
|
|
var menu = this.getMenu();
|
|
var clickIsInContainer = container.contains(e.target) && container !== e.target;
|
|
var clickIsInMenu = menu && menu.contains(e.target) && menu !== e.target;
|
|
|
|
if ((clickIsInContainer || clickIsInMenu) && (e.type !== 'keyup' || e.which === keyCodes.tab)) {
|
|
return;
|
|
}
|
|
|
|
this.toggle(e);
|
|
};
|
|
|
|
_proto.handleKeyDown = function handleKeyDown(e) {
|
|
var _this4 = this;
|
|
|
|
var isTargetMenuItem = e.target.getAttribute('role') === 'menuitem';
|
|
var isTargetMenuCtrl = this.getMenuCtrl() === e.target;
|
|
var isTab = keyCodes.tab === e.which;
|
|
|
|
if (/input|textarea/i.test(e.target.tagName) || isTab && !this.props.a11y || isTab && !(isTargetMenuItem || isTargetMenuCtrl)) {
|
|
return;
|
|
}
|
|
|
|
if (preventDefaultKeys.indexOf(e.which) !== -1 || e.which >= 48 && e.which <= 90) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
if (this.props.disabled) return;
|
|
|
|
if (isTargetMenuCtrl) {
|
|
if ([keyCodes.space, keyCodes.enter, keyCodes.up, keyCodes.down].indexOf(e.which) > -1) {
|
|
// Open the menu (if not open) and focus the first menu item
|
|
if (!this.props.isOpen) {
|
|
this.toggle(e);
|
|
}
|
|
|
|
setTimeout(function () {
|
|
return _this4.getMenuItems()[0].focus();
|
|
});
|
|
} else if (this.props.isOpen && isTab) {
|
|
// Focus the first menu item if tabbing from an open menu. We need this
|
|
// for cases where the DropdownMenu sets a custom container, which may
|
|
// not be the natural next item to tab to from the DropdownToggle.
|
|
e.preventDefault();
|
|
this.getMenuItems()[0].focus();
|
|
} else if (this.props.isOpen && e.which === keyCodes.esc) {
|
|
this.toggle(e);
|
|
}
|
|
}
|
|
|
|
if (this.props.isOpen && e.target.getAttribute('role') === 'menuitem') {
|
|
if ([keyCodes.tab, keyCodes.esc].indexOf(e.which) > -1) {
|
|
this.toggle(e);
|
|
this.getMenuCtrl().focus();
|
|
} else if ([keyCodes.space, keyCodes.enter].indexOf(e.which) > -1) {
|
|
e.target.click();
|
|
this.getMenuCtrl().focus();
|
|
} else if ([keyCodes.down, keyCodes.up].indexOf(e.which) > -1 || [keyCodes.n, keyCodes.p].indexOf(e.which) > -1 && e.ctrlKey) {
|
|
var $menuitems = this.getMenuItems();
|
|
var index = $menuitems.indexOf(e.target);
|
|
|
|
if (keyCodes.up === e.which || keyCodes.p === e.which && e.ctrlKey) {
|
|
index = index !== 0 ? index - 1 : $menuitems.length - 1;
|
|
} else if (keyCodes.down === e.which || keyCodes.n === e.which && e.ctrlKey) {
|
|
index = index === $menuitems.length - 1 ? 0 : index + 1;
|
|
}
|
|
|
|
$menuitems[index].focus();
|
|
} else if (keyCodes.end === e.which) {
|
|
var _$menuitems = this.getMenuItems();
|
|
|
|
_$menuitems[_$menuitems.length - 1].focus();
|
|
} else if (keyCodes.home === e.which) {
|
|
var _$menuitems2 = this.getMenuItems();
|
|
|
|
_$menuitems2[0].focus();
|
|
} else if (e.which >= 48 && e.which <= 90) {
|
|
var _$menuitems3 = this.getMenuItems();
|
|
|
|
var charPressed = String.fromCharCode(e.which).toLowerCase();
|
|
|
|
for (var i = 0; i < _$menuitems3.length; i += 1) {
|
|
var firstLetter = _$menuitems3[i].textContent && _$menuitems3[i].textContent[0].toLowerCase();
|
|
|
|
if (firstLetter === charPressed) {
|
|
_$menuitems3[i].focus();
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
_proto.handleProps = function handleProps() {
|
|
if (this.props.isOpen) {
|
|
this.addEvents();
|
|
} else {
|
|
this.removeEvents();
|
|
}
|
|
};
|
|
|
|
_proto.toggle = function toggle(e) {
|
|
if (this.props.disabled) {
|
|
return e && e.preventDefault();
|
|
}
|
|
|
|
return this.props.toggle(e);
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _classNames, _ref;
|
|
|
|
var _omit = omit(this.props, ['toggle', 'disabled', 'inNavbar', 'a11y']),
|
|
className = _omit.className,
|
|
cssModule = _omit.cssModule,
|
|
direction = _omit.direction,
|
|
isOpen = _omit.isOpen,
|
|
group = _omit.group,
|
|
size = _omit.size,
|
|
nav = _omit.nav,
|
|
setActiveFromChild = _omit.setActiveFromChild,
|
|
active = _omit.active,
|
|
addonType = _omit.addonType,
|
|
tag = _omit.tag,
|
|
attrs = _objectWithoutPropertiesLoose(_omit, ["className", "cssModule", "direction", "isOpen", "group", "size", "nav", "setActiveFromChild", "active", "addonType", "tag"]);
|
|
|
|
var Tag = tag || (nav ? 'li' : 'div');
|
|
var subItemIsActive = false;
|
|
|
|
if (setActiveFromChild) {
|
|
React__default.Children.map(this.props.children[1].props.children, function (dropdownItem) {
|
|
if (dropdownItem && dropdownItem.props.active) subItemIsActive = true;
|
|
});
|
|
}
|
|
|
|
var classes = mapToCssModules(classnames(className, direction !== 'down' && "drop" + direction, nav && active ? 'active' : false, setActiveFromChild && subItemIsActive ? 'active' : false, (_classNames = {}, _classNames["input-group-" + addonType] = addonType, _classNames['btn-group'] = group, _classNames["btn-group-" + size] = !!size, _classNames.dropdown = !group && !addonType, _classNames.show = isOpen, _classNames['nav-item'] = nav, _classNames)), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(DropdownContext.Provider, {
|
|
value: this.getContextValue()
|
|
}, /*#__PURE__*/React__default.createElement(Manager, null, /*#__PURE__*/React__default.createElement(Tag, _extends({}, attrs, (_ref = {}, _ref[typeof Tag === 'string' ? 'ref' : 'innerRef'] = this.containerRef, _ref), {
|
|
onKeyDown: this.handleKeyDown,
|
|
className: classes
|
|
}))));
|
|
};
|
|
|
|
return Dropdown;
|
|
}(React__default.Component);
|
|
|
|
Dropdown.propTypes = propTypes$f;
|
|
Dropdown.defaultProps = defaultProps$e;
|
|
|
|
var propTypes$g = {
|
|
children: propTypes.node
|
|
};
|
|
|
|
var ButtonDropdown = function ButtonDropdown(props) {
|
|
return /*#__PURE__*/React__default.createElement(Dropdown, _extends({
|
|
group: true
|
|
}, props));
|
|
};
|
|
|
|
ButtonDropdown.propTypes = propTypes$g;
|
|
|
|
var propTypes$h = {
|
|
tag: tagPropType,
|
|
'aria-label': propTypes.string,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
role: propTypes.string,
|
|
size: propTypes.string,
|
|
vertical: propTypes.bool
|
|
};
|
|
var defaultProps$f = {
|
|
tag: 'div',
|
|
role: 'group'
|
|
};
|
|
|
|
var ButtonGroup = function ButtonGroup(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
size = props.size,
|
|
vertical = props.vertical,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "size", "vertical", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, size ? 'btn-group-' + size : false, vertical ? 'btn-group-vertical' : 'btn-group'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ButtonGroup.propTypes = propTypes$h;
|
|
ButtonGroup.defaultProps = defaultProps$f;
|
|
|
|
var propTypes$i = {
|
|
tag: tagPropType,
|
|
'aria-label': propTypes.string,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
role: propTypes.string
|
|
};
|
|
var defaultProps$g = {
|
|
tag: 'div',
|
|
role: 'toolbar'
|
|
};
|
|
|
|
var ButtonToolbar = function ButtonToolbar(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'btn-toolbar'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ButtonToolbar.propTypes = propTypes$i;
|
|
ButtonToolbar.defaultProps = defaultProps$g;
|
|
|
|
var propTypes$j = {
|
|
children: propTypes.node,
|
|
active: propTypes.bool,
|
|
disabled: propTypes.bool,
|
|
divider: propTypes.bool,
|
|
tag: tagPropType,
|
|
header: propTypes.bool,
|
|
onClick: propTypes.func,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
toggle: propTypes.bool,
|
|
text: propTypes.bool
|
|
};
|
|
var defaultProps$h = {
|
|
tag: 'button',
|
|
toggle: true
|
|
};
|
|
|
|
var DropdownItem = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(DropdownItem, _React$Component);
|
|
|
|
function DropdownItem(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.onClick = _this.onClick.bind(_assertThisInitialized(_this));
|
|
_this.getTabIndex = _this.getTabIndex.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = DropdownItem.prototype;
|
|
|
|
_proto.onClick = function onClick(e) {
|
|
var _this$props = this.props,
|
|
disabled = _this$props.disabled,
|
|
header = _this$props.header,
|
|
divider = _this$props.divider,
|
|
text = _this$props.text;
|
|
|
|
if (disabled || header || divider || text) {
|
|
e.preventDefault();
|
|
return;
|
|
}
|
|
|
|
if (this.props.onClick) {
|
|
this.props.onClick(e);
|
|
}
|
|
|
|
if (this.props.toggle) {
|
|
this.context.toggle(e);
|
|
}
|
|
};
|
|
|
|
_proto.getTabIndex = function getTabIndex() {
|
|
var _this$props2 = this.props,
|
|
disabled = _this$props2.disabled,
|
|
header = _this$props2.header,
|
|
divider = _this$props2.divider,
|
|
text = _this$props2.text;
|
|
|
|
if (disabled || header || divider || text) {
|
|
return '-1';
|
|
}
|
|
|
|
return '0';
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var tabIndex = this.getTabIndex();
|
|
var role = tabIndex > -1 ? 'menuitem' : undefined;
|
|
|
|
var _omit = omit(this.props, ['toggle']),
|
|
className = _omit.className,
|
|
cssModule = _omit.cssModule,
|
|
divider = _omit.divider,
|
|
Tag = _omit.tag,
|
|
header = _omit.header,
|
|
active = _omit.active,
|
|
text = _omit.text,
|
|
props = _objectWithoutPropertiesLoose(_omit, ["className", "cssModule", "divider", "tag", "header", "active", "text"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, {
|
|
disabled: props.disabled,
|
|
'dropdown-item': !divider && !header && !text,
|
|
active: active,
|
|
'dropdown-header': header,
|
|
'dropdown-divider': divider,
|
|
'dropdown-item-text': text
|
|
}), cssModule);
|
|
|
|
if (Tag === 'button') {
|
|
if (header) {
|
|
Tag = 'h6';
|
|
} else if (divider) {
|
|
Tag = 'div';
|
|
} else if (props.href) {
|
|
Tag = 'a';
|
|
} else if (text) {
|
|
Tag = 'span';
|
|
}
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
type: Tag === 'button' && (props.onClick || this.props.toggle) ? 'button' : undefined
|
|
}, props, {
|
|
tabIndex: tabIndex,
|
|
role: role,
|
|
className: classes,
|
|
onClick: this.onClick
|
|
}));
|
|
};
|
|
|
|
return DropdownItem;
|
|
}(React__default.Component);
|
|
|
|
DropdownItem.propTypes = propTypes$j;
|
|
DropdownItem.defaultProps = defaultProps$h;
|
|
DropdownItem.contextType = DropdownContext;
|
|
|
|
var propTypes$k = {
|
|
tag: tagPropType,
|
|
children: propTypes.node.isRequired,
|
|
right: propTypes.bool,
|
|
flip: propTypes.bool,
|
|
modifiers: propTypes.object,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
persist: propTypes.bool,
|
|
positionFixed: propTypes.bool,
|
|
container: targetPropType
|
|
};
|
|
var defaultProps$i = {
|
|
tag: 'div',
|
|
flip: true
|
|
};
|
|
var noFlipModifier = {
|
|
flip: {
|
|
enabled: false
|
|
}
|
|
};
|
|
var directionPositionMap = {
|
|
up: 'top',
|
|
left: 'left',
|
|
right: 'right',
|
|
down: 'bottom'
|
|
};
|
|
|
|
var DropdownMenu = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(DropdownMenu, _React$Component);
|
|
|
|
function DropdownMenu() {
|
|
return _React$Component.apply(this, arguments) || this;
|
|
}
|
|
|
|
var _proto = DropdownMenu.prototype;
|
|
|
|
_proto.render = function render() {
|
|
var _this = this;
|
|
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
cssModule = _this$props.cssModule,
|
|
right = _this$props.right,
|
|
tag = _this$props.tag,
|
|
flip = _this$props.flip,
|
|
modifiers = _this$props.modifiers,
|
|
persist = _this$props.persist,
|
|
positionFixed = _this$props.positionFixed,
|
|
container = _this$props.container,
|
|
attrs = _objectWithoutPropertiesLoose(_this$props, ["className", "cssModule", "right", "tag", "flip", "modifiers", "persist", "positionFixed", "container"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'dropdown-menu', {
|
|
'dropdown-menu-right': right,
|
|
show: this.context.isOpen
|
|
}), cssModule);
|
|
var Tag = tag;
|
|
|
|
if (persist || this.context.isOpen && !this.context.inNavbar) {
|
|
var position1 = directionPositionMap[this.context.direction] || 'bottom';
|
|
var position2 = right ? 'end' : 'start';
|
|
var poperPlacement = position1 + "-" + position2;
|
|
var poperModifiers = !flip ? _extends({}, modifiers, noFlipModifier) : modifiers;
|
|
var popperPositionFixed = !!positionFixed;
|
|
var popper = /*#__PURE__*/React__default.createElement(Popper$1, {
|
|
placement: poperPlacement,
|
|
modifiers: poperModifiers,
|
|
positionFixed: popperPositionFixed
|
|
}, function (_ref) {
|
|
var ref = _ref.ref,
|
|
style = _ref.style,
|
|
placement = _ref.placement;
|
|
|
|
var combinedStyle = _extends({}, _this.props.style, style);
|
|
|
|
var handleRef = function handleRef(tagRef) {
|
|
// Send the ref to `react-popper`
|
|
ref(tagRef); // Send the ref to the parent Dropdown so that clicks outside
|
|
// it will cause it to close
|
|
|
|
var onMenuRef = _this.context.onMenuRef;
|
|
if (onMenuRef) onMenuRef(tagRef);
|
|
};
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
tabIndex: "-1",
|
|
role: "menu",
|
|
ref: handleRef
|
|
}, attrs, {
|
|
style: combinedStyle,
|
|
"aria-hidden": !_this.context.isOpen,
|
|
className: classes,
|
|
"x-placement": placement
|
|
}));
|
|
});
|
|
|
|
if (container) {
|
|
return /*#__PURE__*/ReactDOM.createPortal(popper, getTarget(container));
|
|
} else {
|
|
return popper;
|
|
}
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
tabIndex: "-1",
|
|
role: "menu"
|
|
}, attrs, {
|
|
"aria-hidden": !this.context.isOpen,
|
|
className: classes,
|
|
"x-placement": attrs.placement
|
|
}));
|
|
};
|
|
|
|
return DropdownMenu;
|
|
}(React__default.Component);
|
|
DropdownMenu.propTypes = propTypes$k;
|
|
DropdownMenu.defaultProps = defaultProps$i;
|
|
DropdownMenu.contextType = DropdownContext;
|
|
|
|
var propTypes$l = {
|
|
caret: propTypes.bool,
|
|
color: propTypes.string,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
disabled: propTypes.bool,
|
|
onClick: propTypes.func,
|
|
'aria-haspopup': propTypes.bool,
|
|
split: propTypes.bool,
|
|
tag: tagPropType,
|
|
nav: propTypes.bool
|
|
};
|
|
var defaultProps$j = {
|
|
'aria-haspopup': true,
|
|
color: 'secondary'
|
|
};
|
|
|
|
var DropdownToggle = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(DropdownToggle, _React$Component);
|
|
|
|
function DropdownToggle(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.onClick = _this.onClick.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = DropdownToggle.prototype;
|
|
|
|
_proto.onClick = function onClick(e) {
|
|
if (this.props.disabled || this.context.disabled) {
|
|
e.preventDefault();
|
|
return;
|
|
}
|
|
|
|
if (this.props.nav && !this.props.tag) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
if (this.props.onClick) {
|
|
this.props.onClick(e);
|
|
}
|
|
|
|
this.context.toggle(e);
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this2 = this;
|
|
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
color = _this$props.color,
|
|
cssModule = _this$props.cssModule,
|
|
caret = _this$props.caret,
|
|
split = _this$props.split,
|
|
nav = _this$props.nav,
|
|
tag = _this$props.tag,
|
|
innerRef = _this$props.innerRef,
|
|
props = _objectWithoutPropertiesLoose(_this$props, ["className", "color", "cssModule", "caret", "split", "nav", "tag", "innerRef"]);
|
|
|
|
var ariaLabel = props['aria-label'] || 'Toggle Dropdown';
|
|
var classes = mapToCssModules(classnames(className, {
|
|
'dropdown-toggle': caret || split,
|
|
'dropdown-toggle-split': split,
|
|
'nav-link': nav
|
|
}), cssModule);
|
|
var children = typeof props.children !== 'undefined' ? props.children : /*#__PURE__*/React__default.createElement("span", {
|
|
className: "sr-only"
|
|
}, ariaLabel);
|
|
var Tag;
|
|
|
|
if (nav && !tag) {
|
|
Tag = 'a';
|
|
props.href = '#';
|
|
} else if (!tag) {
|
|
Tag = Button;
|
|
props.color = color;
|
|
props.cssModule = cssModule;
|
|
} else {
|
|
Tag = tag;
|
|
}
|
|
|
|
if (this.context.inNavbar) {
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, props, {
|
|
className: classes,
|
|
onClick: this.onClick,
|
|
"aria-expanded": this.context.isOpen,
|
|
children: children
|
|
}));
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Reference, {
|
|
innerRef: innerRef
|
|
}, function (_ref) {
|
|
var _ref2;
|
|
|
|
var ref = _ref.ref;
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, props, (_ref2 = {}, _ref2[typeof Tag === 'string' ? 'ref' : 'innerRef'] = ref, _ref2), {
|
|
className: classes,
|
|
onClick: _this2.onClick,
|
|
"aria-expanded": _this2.context.isOpen,
|
|
children: children
|
|
}));
|
|
});
|
|
};
|
|
|
|
return DropdownToggle;
|
|
}(React__default.Component);
|
|
|
|
DropdownToggle.propTypes = propTypes$l;
|
|
DropdownToggle.defaultProps = defaultProps$j;
|
|
DropdownToggle.contextType = DropdownContext;
|
|
|
|
var interopRequireDefault = createCommonjsModule(function (module) {
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
"default": obj
|
|
};
|
|
}
|
|
|
|
module.exports = _interopRequireDefault;
|
|
});
|
|
unwrapExports(interopRequireDefault);
|
|
|
|
var hasClass_1 = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.default = hasClass;
|
|
|
|
function hasClass(element, className) {
|
|
if (element.classList) return !!className && element.classList.contains(className);else return (" " + (element.className.baseVal || element.className) + " ").indexOf(" " + className + " ") !== -1;
|
|
}
|
|
|
|
module.exports = exports["default"];
|
|
});
|
|
unwrapExports(hasClass_1);
|
|
|
|
var addClass_1 = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.default = addClass;
|
|
|
|
var _hasClass = interopRequireDefault(hasClass_1);
|
|
|
|
function addClass(element, className) {
|
|
if (element.classList) element.classList.add(className);else if (!(0, _hasClass.default)(element, className)) if (typeof element.className === 'string') element.className = element.className + ' ' + className;else element.setAttribute('class', (element.className && element.className.baseVal || '') + ' ' + className);
|
|
}
|
|
|
|
module.exports = exports["default"];
|
|
});
|
|
unwrapExports(addClass_1);
|
|
|
|
function replaceClassName(origClass, classToRemove) {
|
|
return origClass.replace(new RegExp('(^|\\s)' + classToRemove + '(?:\\s|$)', 'g'), '$1').replace(/\s+/g, ' ').replace(/^\s*|\s*$/g, '');
|
|
}
|
|
|
|
var removeClass = function removeClass(element, className) {
|
|
if (element.classList) element.classList.remove(className);else if (typeof element.className === 'string') element.className = replaceClassName(element.className, className);else element.setAttribute('class', replaceClassName(element.className && element.className.baseVal || '', className));
|
|
};
|
|
|
|
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
function componentWillMount() {
|
|
// Call this.constructor.gDSFP to support sub-classes.
|
|
var state = this.constructor.getDerivedStateFromProps(this.props, this.state);
|
|
|
|
if (state !== null && state !== undefined) {
|
|
this.setState(state);
|
|
}
|
|
}
|
|
|
|
function componentWillReceiveProps(nextProps) {
|
|
// Call this.constructor.gDSFP to support sub-classes.
|
|
// Use the setState() updater to ensure state isn't stale in certain edge cases.
|
|
function updater(prevState) {
|
|
var state = this.constructor.getDerivedStateFromProps(nextProps, prevState);
|
|
return state !== null && state !== undefined ? state : null;
|
|
} // Binding "this" is important for shallow renderer support.
|
|
|
|
|
|
this.setState(updater.bind(this));
|
|
}
|
|
|
|
function componentWillUpdate(nextProps, nextState) {
|
|
try {
|
|
var prevProps = this.props;
|
|
var prevState = this.state;
|
|
this.props = nextProps;
|
|
this.state = nextState;
|
|
this.__reactInternalSnapshotFlag = true;
|
|
this.__reactInternalSnapshot = this.getSnapshotBeforeUpdate(prevProps, prevState);
|
|
} finally {
|
|
this.props = prevProps;
|
|
this.state = prevState;
|
|
}
|
|
} // React may warn about cWM/cWRP/cWU methods being deprecated.
|
|
// Add a flag to suppress these warnings for this special case.
|
|
|
|
|
|
componentWillMount.__suppressDeprecationWarning = true;
|
|
componentWillReceiveProps.__suppressDeprecationWarning = true;
|
|
componentWillUpdate.__suppressDeprecationWarning = true;
|
|
|
|
function polyfill$3(Component) {
|
|
var prototype = Component.prototype;
|
|
|
|
if (!prototype || !prototype.isReactComponent) {
|
|
throw new Error('Can only polyfill class components');
|
|
}
|
|
|
|
if (typeof Component.getDerivedStateFromProps !== 'function' && typeof prototype.getSnapshotBeforeUpdate !== 'function') {
|
|
return Component;
|
|
} // If new component APIs are defined, "unsafe" lifecycles won't be called.
|
|
// Error if any of these lifecycles are present,
|
|
// Because they would work differently between older and newer (16.3+) versions of React.
|
|
|
|
|
|
var foundWillMountName = null;
|
|
var foundWillReceivePropsName = null;
|
|
var foundWillUpdateName = null;
|
|
|
|
if (typeof prototype.componentWillMount === 'function') {
|
|
foundWillMountName = 'componentWillMount';
|
|
} else if (typeof prototype.UNSAFE_componentWillMount === 'function') {
|
|
foundWillMountName = 'UNSAFE_componentWillMount';
|
|
}
|
|
|
|
if (typeof prototype.componentWillReceiveProps === 'function') {
|
|
foundWillReceivePropsName = 'componentWillReceiveProps';
|
|
} else if (typeof prototype.UNSAFE_componentWillReceiveProps === 'function') {
|
|
foundWillReceivePropsName = 'UNSAFE_componentWillReceiveProps';
|
|
}
|
|
|
|
if (typeof prototype.componentWillUpdate === 'function') {
|
|
foundWillUpdateName = 'componentWillUpdate';
|
|
} else if (typeof prototype.UNSAFE_componentWillUpdate === 'function') {
|
|
foundWillUpdateName = 'UNSAFE_componentWillUpdate';
|
|
}
|
|
|
|
if (foundWillMountName !== null || foundWillReceivePropsName !== null || foundWillUpdateName !== null) {
|
|
var componentName = Component.displayName || Component.name;
|
|
var newApiName = typeof Component.getDerivedStateFromProps === 'function' ? 'getDerivedStateFromProps()' : 'getSnapshotBeforeUpdate()';
|
|
throw Error('Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n' + componentName + ' uses ' + newApiName + ' but also contains the following legacy lifecycles:' + (foundWillMountName !== null ? '\n ' + foundWillMountName : '') + (foundWillReceivePropsName !== null ? '\n ' + foundWillReceivePropsName : '') + (foundWillUpdateName !== null ? '\n ' + foundWillUpdateName : '') + '\n\nThe above lifecycles should be removed. Learn more about this warning here:\n' + 'https://fb.me/react-async-component-lifecycle-hooks');
|
|
} // React <= 16.2 does not support static getDerivedStateFromProps.
|
|
// As a workaround, use cWM and cWRP to invoke the new static lifecycle.
|
|
// Newer versions of React will ignore these lifecycles if gDSFP exists.
|
|
|
|
|
|
if (typeof Component.getDerivedStateFromProps === 'function') {
|
|
prototype.componentWillMount = componentWillMount;
|
|
prototype.componentWillReceiveProps = componentWillReceiveProps;
|
|
} // React <= 16.2 does not support getSnapshotBeforeUpdate.
|
|
// As a workaround, use cWU to invoke the new lifecycle.
|
|
// Newer versions of React will ignore that lifecycle if gSBU exists.
|
|
|
|
|
|
if (typeof prototype.getSnapshotBeforeUpdate === 'function') {
|
|
if (typeof prototype.componentDidUpdate !== 'function') {
|
|
throw new Error('Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype');
|
|
}
|
|
|
|
prototype.componentWillUpdate = componentWillUpdate;
|
|
var componentDidUpdate = prototype.componentDidUpdate;
|
|
|
|
prototype.componentDidUpdate = function componentDidUpdatePolyfill(prevProps, prevState, maybeSnapshot) {
|
|
// 16.3+ will not execute our will-update method;
|
|
// It will pass a snapshot value to did-update though.
|
|
// Older versions will require our polyfilled will-update value.
|
|
// We need to handle both cases, but can't just check for the presence of "maybeSnapshot",
|
|
// Because for <= 15.x versions this might be a "prevContext" object.
|
|
// We also can't just check "__reactInternalSnapshot",
|
|
// Because get-snapshot might return a falsy value.
|
|
// So check for the explicit __reactInternalSnapshotFlag flag to determine behavior.
|
|
var snapshot = this.__reactInternalSnapshotFlag ? this.__reactInternalSnapshot : maybeSnapshot;
|
|
componentDidUpdate.call(this, prevProps, prevState, snapshot);
|
|
};
|
|
}
|
|
|
|
return Component;
|
|
}
|
|
|
|
var reactLifecyclesCompat_es = /*#__PURE__*/Object.freeze({
|
|
__proto__: null,
|
|
polyfill: polyfill$3
|
|
});
|
|
|
|
var PropTypes = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.classNamesShape = exports.timeoutsShape = void 0;
|
|
|
|
var _propTypes = _interopRequireDefault(propTypes);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
var timeoutsShape = null;
|
|
exports.timeoutsShape = timeoutsShape;
|
|
var classNamesShape = null;
|
|
exports.classNamesShape = classNamesShape;
|
|
});
|
|
unwrapExports(PropTypes);
|
|
var PropTypes_1 = PropTypes.classNamesShape;
|
|
var PropTypes_2 = PropTypes.timeoutsShape;
|
|
|
|
var Transition_1 = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.default = exports.EXITING = exports.ENTERED = exports.ENTERING = exports.EXITED = exports.UNMOUNTED = void 0;
|
|
|
|
var PropTypes = _interopRequireWildcard(propTypes);
|
|
|
|
var _react = _interopRequireDefault(React__default);
|
|
|
|
var _reactDom = _interopRequireDefault(ReactDOM);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
function _interopRequireWildcard(obj) {
|
|
if (obj && obj.__esModule) {
|
|
return obj;
|
|
} else {
|
|
var newObj = {};
|
|
|
|
if (obj != null) {
|
|
for (var key in obj) {
|
|
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};
|
|
|
|
if (desc.get || desc.set) {
|
|
Object.defineProperty(newObj, key, desc);
|
|
} else {
|
|
newObj[key] = obj[key];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
newObj.default = obj;
|
|
return newObj;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
function _inheritsLoose(subClass, superClass) {
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
subClass.prototype.constructor = subClass;
|
|
subClass.__proto__ = superClass;
|
|
}
|
|
|
|
var UNMOUNTED = 'unmounted';
|
|
exports.UNMOUNTED = UNMOUNTED;
|
|
var EXITED = 'exited';
|
|
exports.EXITED = EXITED;
|
|
var ENTERING = 'entering';
|
|
exports.ENTERING = ENTERING;
|
|
var ENTERED = 'entered';
|
|
exports.ENTERED = ENTERED;
|
|
var EXITING = 'exiting';
|
|
/**
|
|
* The Transition component lets you describe a transition from one component
|
|
* state to another _over time_ with a simple declarative API. Most commonly
|
|
* it's used to animate the mounting and unmounting of a component, but can also
|
|
* be used to describe in-place transition states as well.
|
|
*
|
|
* ---
|
|
*
|
|
* **Note**: `Transition` is a platform-agnostic base component. If you're using
|
|
* transitions in CSS, you'll probably want to use
|
|
* [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)
|
|
* instead. It inherits all the features of `Transition`, but contains
|
|
* additional features necessary to play nice with CSS transitions (hence the
|
|
* name of the component).
|
|
*
|
|
* ---
|
|
*
|
|
* By default the `Transition` component does not alter the behavior of the
|
|
* component it renders, it only tracks "enter" and "exit" states for the
|
|
* components. It's up to you to give meaning and effect to those states. For
|
|
* example we can add styles to a component when it enters or exits:
|
|
*
|
|
* ```jsx
|
|
* import { Transition } from 'react-transition-group';
|
|
*
|
|
* const duration = 300;
|
|
*
|
|
* const defaultStyle = {
|
|
* transition: `opacity ${duration}ms ease-in-out`,
|
|
* opacity: 0,
|
|
* }
|
|
*
|
|
* const transitionStyles = {
|
|
* entering: { opacity: 0 },
|
|
* entered: { opacity: 1 },
|
|
* };
|
|
*
|
|
* const Fade = ({ in: inProp }) => (
|
|
* <Transition in={inProp} timeout={duration}>
|
|
* {state => (
|
|
* <div style={{
|
|
* ...defaultStyle,
|
|
* ...transitionStyles[state]
|
|
* }}>
|
|
* I'm a fade Transition!
|
|
* </div>
|
|
* )}
|
|
* </Transition>
|
|
* );
|
|
* ```
|
|
*
|
|
* There are 4 main states a Transition can be in:
|
|
* - `'entering'`
|
|
* - `'entered'`
|
|
* - `'exiting'`
|
|
* - `'exited'`
|
|
*
|
|
* Transition state is toggled via the `in` prop. When `true` the component
|
|
* begins the "Enter" stage. During this stage, the component will shift from
|
|
* its current transition state, to `'entering'` for the duration of the
|
|
* transition and then to the `'entered'` stage once it's complete. Let's take
|
|
* the following example (we'll use the
|
|
* [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):
|
|
*
|
|
* ```jsx
|
|
* function App() {
|
|
* const [inProp, setInProp] = useState(false);
|
|
* return (
|
|
* <div>
|
|
* <Transition in={inProp} timeout={500}>
|
|
* {state => (
|
|
* // ...
|
|
* )}
|
|
* </Transition>
|
|
* <button onClick={() => setInProp(true)}>
|
|
* Click to Enter
|
|
* </button>
|
|
* </div>
|
|
* );
|
|
* }
|
|
* ```
|
|
*
|
|
* When the button is clicked the component will shift to the `'entering'` state
|
|
* and stay there for 500ms (the value of `timeout`) before it finally switches
|
|
* to `'entered'`.
|
|
*
|
|
* When `in` is `false` the same thing happens except the state moves from
|
|
* `'exiting'` to `'exited'`.
|
|
*/
|
|
|
|
exports.EXITING = EXITING;
|
|
|
|
var Transition = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(Transition, _React$Component);
|
|
|
|
function Transition(props, context) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props, context) || this;
|
|
var parentGroup = context.transitionGroup; // In the context of a TransitionGroup all enters are really appears
|
|
|
|
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;
|
|
}
|
|
|
|
var _proto = Transition.prototype;
|
|
|
|
_proto.getChildContext = function getChildContext() {
|
|
return {
|
|
transitionGroup: null // allows for nested Transitions
|
|
|
|
};
|
|
};
|
|
|
|
Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {
|
|
var nextIn = _ref.in;
|
|
|
|
if (nextIn && prevState.status === UNMOUNTED) {
|
|
return {
|
|
status: EXITED
|
|
};
|
|
}
|
|
|
|
return null;
|
|
}; // getSnapshotBeforeUpdate(prevProps) {
|
|
// let nextStatus = null
|
|
// if (prevProps !== this.props) {
|
|
// const { status } = this.state
|
|
// if (this.props.in) {
|
|
// if (status !== ENTERING && status !== ENTERED) {
|
|
// nextStatus = ENTERING
|
|
// }
|
|
// } else {
|
|
// if (status === ENTERING || status === ENTERED) {
|
|
// nextStatus = EXITING
|
|
// }
|
|
// }
|
|
// }
|
|
// return { nextStatus }
|
|
// }
|
|
|
|
|
|
_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 timeout = this.props.timeout;
|
|
var exit, enter, appear;
|
|
exit = enter = appear = timeout;
|
|
|
|
if (timeout != null && typeof timeout !== 'number') {
|
|
exit = timeout.exit;
|
|
enter = timeout.enter; // TODO: remove fallback for next major
|
|
|
|
appear = timeout.appear !== undefined ? timeout.appear : enter;
|
|
}
|
|
|
|
return {
|
|
exit: exit,
|
|
enter: enter,
|
|
appear: appear
|
|
};
|
|
};
|
|
|
|
_proto.updateStatus = function updateStatus(mounting, nextStatus) {
|
|
if (mounting === void 0) {
|
|
mounting = false;
|
|
}
|
|
|
|
if (nextStatus !== null) {
|
|
// nextStatus will always be ENTERING or EXITING.
|
|
this.cancelNextCallback();
|
|
|
|
var node = _reactDom.default.findDOMNode(this);
|
|
|
|
if (nextStatus === ENTERING) {
|
|
this.performEnter(node, mounting);
|
|
} else {
|
|
this.performExit(node);
|
|
}
|
|
} else if (this.props.unmountOnExit && this.state.status === EXITED) {
|
|
this.setState({
|
|
status: UNMOUNTED
|
|
});
|
|
}
|
|
};
|
|
|
|
_proto.performEnter = function performEnter(node, mounting) {
|
|
var _this2 = this;
|
|
|
|
var enter = this.props.enter;
|
|
var appearing = this.context.transitionGroup ? this.context.transitionGroup.isMounting : mounting;
|
|
var timeouts = this.getTimeouts();
|
|
var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED
|
|
// if we are mounting and running this it means appear _must_ be set
|
|
|
|
if (!mounting && !enter) {
|
|
this.safeSetState({
|
|
status: ENTERED
|
|
}, function () {
|
|
_this2.props.onEntered(node);
|
|
});
|
|
return;
|
|
}
|
|
|
|
this.props.onEnter(node, appearing);
|
|
this.safeSetState({
|
|
status: ENTERING
|
|
}, function () {
|
|
_this2.props.onEntering(node, appearing);
|
|
|
|
_this2.onTransitionEnd(node, enterTimeout, function () {
|
|
_this2.safeSetState({
|
|
status: ENTERED
|
|
}, function () {
|
|
_this2.props.onEntered(node, appearing);
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
_proto.performExit = function performExit(node) {
|
|
var _this3 = this;
|
|
|
|
var exit = this.props.exit;
|
|
var timeouts = this.getTimeouts(); // no exit animation skip right to EXITED
|
|
|
|
if (!exit) {
|
|
this.safeSetState({
|
|
status: EXITED
|
|
}, function () {
|
|
_this3.props.onExited(node);
|
|
});
|
|
return;
|
|
}
|
|
|
|
this.props.onExit(node);
|
|
this.safeSetState({
|
|
status: EXITING
|
|
}, function () {
|
|
_this3.props.onExiting(node);
|
|
|
|
_this3.onTransitionEnd(node, timeouts.exit, function () {
|
|
_this3.safeSetState({
|
|
status: EXITED
|
|
}, function () {
|
|
_this3.props.onExited(node);
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
_proto.cancelNextCallback = function cancelNextCallback() {
|
|
if (this.nextCallback !== null) {
|
|
this.nextCallback.cancel();
|
|
this.nextCallback = null;
|
|
}
|
|
};
|
|
|
|
_proto.safeSetState = function safeSetState(nextState, callback) {
|
|
// This shouldn't be necessary, but there are weird race conditions with
|
|
// setState callbacks and unmounting in testing, so always make sure that
|
|
// we can cancel any pending setState callbacks after we unmount.
|
|
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(node, timeout, handler) {
|
|
this.setNextCallback(handler);
|
|
var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;
|
|
|
|
if (!node || doesNotHaveTimeoutOrListener) {
|
|
setTimeout(this.nextCallback, 0);
|
|
return;
|
|
}
|
|
|
|
if (this.props.addEndListener) {
|
|
this.props.addEndListener(node, this.nextCallback);
|
|
}
|
|
|
|
if (timeout != null) {
|
|
setTimeout(this.nextCallback, timeout);
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var status = this.state.status;
|
|
|
|
if (status === UNMOUNTED) {
|
|
return null;
|
|
}
|
|
|
|
var _this$props = this.props,
|
|
children = _this$props.children,
|
|
childProps = _objectWithoutPropertiesLoose(_this$props, ["children"]); // filter props for Transtition
|
|
|
|
|
|
delete childProps.in;
|
|
delete childProps.mountOnEnter;
|
|
delete childProps.unmountOnExit;
|
|
delete childProps.appear;
|
|
delete childProps.enter;
|
|
delete childProps.exit;
|
|
delete childProps.timeout;
|
|
delete childProps.addEndListener;
|
|
delete childProps.onEnter;
|
|
delete childProps.onEntering;
|
|
delete childProps.onEntered;
|
|
delete childProps.onExit;
|
|
delete childProps.onExiting;
|
|
delete childProps.onExited;
|
|
|
|
if (typeof children === 'function') {
|
|
return children(status, childProps);
|
|
}
|
|
|
|
var child = _react.default.Children.only(children);
|
|
|
|
return _react.default.cloneElement(child, childProps);
|
|
};
|
|
|
|
return Transition;
|
|
}(_react.default.Component);
|
|
|
|
Transition.contextTypes = {
|
|
transitionGroup: PropTypes.object
|
|
};
|
|
Transition.childContextTypes = {
|
|
transitionGroup: function transitionGroup() {}
|
|
};
|
|
Transition.propTypes = {};
|
|
|
|
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 = 0;
|
|
Transition.EXITED = 1;
|
|
Transition.ENTERING = 2;
|
|
Transition.ENTERED = 3;
|
|
Transition.EXITING = 4;
|
|
|
|
var _default = (0, reactLifecyclesCompat_es.polyfill)(Transition);
|
|
|
|
exports.default = _default;
|
|
});
|
|
unwrapExports(Transition_1);
|
|
var Transition_2 = Transition_1.EXITING;
|
|
var Transition_3 = Transition_1.ENTERED;
|
|
var Transition_4 = Transition_1.ENTERING;
|
|
var Transition_5 = Transition_1.EXITED;
|
|
var Transition_6 = Transition_1.UNMOUNTED;
|
|
|
|
var CSSTransition_1 = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.default = void 0;
|
|
|
|
var PropTypes = _interopRequireWildcard(propTypes);
|
|
|
|
var _addClass = _interopRequireDefault(addClass_1);
|
|
|
|
var _removeClass = _interopRequireDefault(removeClass);
|
|
|
|
var _react = _interopRequireDefault(React__default);
|
|
|
|
var _Transition = _interopRequireDefault(Transition_1);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
function _interopRequireWildcard(obj) {
|
|
if (obj && obj.__esModule) {
|
|
return obj;
|
|
} else {
|
|
var newObj = {};
|
|
|
|
if (obj != null) {
|
|
for (var key in obj) {
|
|
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};
|
|
|
|
if (desc.get || desc.set) {
|
|
Object.defineProperty(newObj, key, desc);
|
|
} else {
|
|
newObj[key] = obj[key];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
newObj.default = obj;
|
|
return newObj;
|
|
}
|
|
}
|
|
|
|
function _extends() {
|
|
_extends = Object.assign || function (target) {
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
|
|
for (var key in source) {
|
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
target[key] = source[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
return target;
|
|
};
|
|
|
|
return _extends.apply(this, arguments);
|
|
}
|
|
|
|
function _inheritsLoose(subClass, superClass) {
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
subClass.prototype.constructor = subClass;
|
|
subClass.__proto__ = superClass;
|
|
}
|
|
|
|
var addClass = function addClass(node, classes) {
|
|
return node && classes && classes.split(' ').forEach(function (c) {
|
|
return (0, _addClass.default)(node, c);
|
|
});
|
|
};
|
|
|
|
var removeClass$1 = function removeClass(node, classes) {
|
|
return node && classes && classes.split(' ').forEach(function (c) {
|
|
return (0, _removeClass.default)(node, c);
|
|
});
|
|
};
|
|
/**
|
|
* A transition component inspired by the excellent
|
|
* [ng-animate](http://www.nganimate.org/) library, you should use it if you're
|
|
* using CSS transitions or animations. It's built upon the
|
|
* [`Transition`](https://reactcommunity.org/react-transition-group/transition)
|
|
* component, so it inherits all of its props.
|
|
*
|
|
* `CSSTransition` applies a pair of class names during the `appear`, `enter`,
|
|
* and `exit` states of the transition. The first class is applied and then a
|
|
* second `*-active` class in order to activate the CSSS transition. After the
|
|
* transition, matching `*-done` class names are applied to persist the
|
|
* transition state.
|
|
*
|
|
* ```jsx
|
|
* function App() {
|
|
* const [inProp, setInProp] = useState(false);
|
|
* return (
|
|
* <div>
|
|
* <CSSTransition in={inProp} timeout={200} classNames="my-node">
|
|
* <div>
|
|
* {"I'll receive my-node-* classes"}
|
|
* </div>
|
|
* </CSSTransition>
|
|
* <button type="button" onClick={() => setInProp(true)}>
|
|
* Click to Enter
|
|
* </button>
|
|
* </div>
|
|
* );
|
|
* }
|
|
* ```
|
|
*
|
|
* When the `in` prop is set to `true`, the child component will first receive
|
|
* the class `example-enter`, then the `example-enter-active` will be added in
|
|
* the next tick. `CSSTransition` [forces a
|
|
* reflow](https://github.com/reactjs/react-transition-group/blob/5007303e729a74be66a21c3e2205e4916821524b/src/CSSTransition.js#L208-L215)
|
|
* between before adding the `example-enter-active`. This is an important trick
|
|
* because it allows us to transition between `example-enter` and
|
|
* `example-enter-active` even though they were added immediately one after
|
|
* another. Most notably, this is what makes it possible for us to animate
|
|
* _appearance_.
|
|
*
|
|
* ```css
|
|
* .my-node-enter {
|
|
* opacity: 0;
|
|
* }
|
|
* .my-node-enter-active {
|
|
* opacity: 1;
|
|
* transition: opacity 200ms;
|
|
* }
|
|
* .my-node-exit {
|
|
* opacity: 1;
|
|
* }
|
|
* .my-node-exit-active {
|
|
* opacity: 0;
|
|
* transition: opacity: 200ms;
|
|
* }
|
|
* ```
|
|
*
|
|
* `*-active` classes represent which styles you want to animate **to**.
|
|
*/
|
|
|
|
|
|
var CSSTransition = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(CSSTransition, _React$Component);
|
|
|
|
function CSSTransition() {
|
|
var _this;
|
|
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
|
|
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
|
|
|
_this.onEnter = function (node, appearing) {
|
|
var _this$getClassNames = _this.getClassNames(appearing ? 'appear' : 'enter'),
|
|
className = _this$getClassNames.className;
|
|
|
|
_this.removeClasses(node, 'exit');
|
|
|
|
addClass(node, className);
|
|
|
|
if (_this.props.onEnter) {
|
|
_this.props.onEnter(node, appearing);
|
|
}
|
|
};
|
|
|
|
_this.onEntering = function (node, appearing) {
|
|
var _this$getClassNames2 = _this.getClassNames(appearing ? 'appear' : 'enter'),
|
|
activeClassName = _this$getClassNames2.activeClassName;
|
|
|
|
_this.reflowAndAddClass(node, activeClassName);
|
|
|
|
if (_this.props.onEntering) {
|
|
_this.props.onEntering(node, appearing);
|
|
}
|
|
};
|
|
|
|
_this.onEntered = function (node, appearing) {
|
|
var appearClassName = _this.getClassNames('appear').doneClassName;
|
|
|
|
var enterClassName = _this.getClassNames('enter').doneClassName;
|
|
|
|
var doneClassName = appearing ? appearClassName + " " + enterClassName : enterClassName;
|
|
|
|
_this.removeClasses(node, appearing ? 'appear' : 'enter');
|
|
|
|
addClass(node, doneClassName);
|
|
|
|
if (_this.props.onEntered) {
|
|
_this.props.onEntered(node, appearing);
|
|
}
|
|
};
|
|
|
|
_this.onExit = function (node) {
|
|
var _this$getClassNames3 = _this.getClassNames('exit'),
|
|
className = _this$getClassNames3.className;
|
|
|
|
_this.removeClasses(node, 'appear');
|
|
|
|
_this.removeClasses(node, 'enter');
|
|
|
|
addClass(node, className);
|
|
|
|
if (_this.props.onExit) {
|
|
_this.props.onExit(node);
|
|
}
|
|
};
|
|
|
|
_this.onExiting = function (node) {
|
|
var _this$getClassNames4 = _this.getClassNames('exit'),
|
|
activeClassName = _this$getClassNames4.activeClassName;
|
|
|
|
_this.reflowAndAddClass(node, activeClassName);
|
|
|
|
if (_this.props.onExiting) {
|
|
_this.props.onExiting(node);
|
|
}
|
|
};
|
|
|
|
_this.onExited = function (node) {
|
|
var _this$getClassNames5 = _this.getClassNames('exit'),
|
|
doneClassName = _this$getClassNames5.doneClassName;
|
|
|
|
_this.removeClasses(node, 'exit');
|
|
|
|
addClass(node, doneClassName);
|
|
|
|
if (_this.props.onExited) {
|
|
_this.props.onExited(node);
|
|
}
|
|
};
|
|
|
|
_this.getClassNames = function (type) {
|
|
var classNames = _this.props.classNames;
|
|
var isStringClassNames = typeof classNames === 'string';
|
|
var prefix = isStringClassNames && classNames ? classNames + '-' : '';
|
|
var className = isStringClassNames ? prefix + type : classNames[type];
|
|
var activeClassName = isStringClassNames ? className + '-active' : classNames[type + 'Active'];
|
|
var doneClassName = isStringClassNames ? className + '-done' : classNames[type + 'Done'];
|
|
return {
|
|
className: className,
|
|
activeClassName: activeClassName,
|
|
doneClassName: doneClassName
|
|
};
|
|
};
|
|
|
|
return _this;
|
|
}
|
|
|
|
var _proto = CSSTransition.prototype;
|
|
|
|
_proto.removeClasses = function removeClasses(node, type) {
|
|
var _this$getClassNames6 = this.getClassNames(type),
|
|
className = _this$getClassNames6.className,
|
|
activeClassName = _this$getClassNames6.activeClassName,
|
|
doneClassName = _this$getClassNames6.doneClassName;
|
|
|
|
className && removeClass$1(node, className);
|
|
activeClassName && removeClass$1(node, activeClassName);
|
|
doneClassName && removeClass$1(node, doneClassName);
|
|
};
|
|
|
|
_proto.reflowAndAddClass = function reflowAndAddClass(node, className) {
|
|
// This is for to force a repaint,
|
|
// which is necessary in order to transition styles when adding a class name.
|
|
if (className) {
|
|
/* eslint-disable no-unused-expressions */
|
|
node && node.scrollTop;
|
|
/* eslint-enable no-unused-expressions */
|
|
|
|
addClass(node, className);
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var props = _extends({}, this.props);
|
|
|
|
delete props.classNames;
|
|
return _react.default.createElement(_Transition.default, _extends({}, props, {
|
|
onEnter: this.onEnter,
|
|
onEntered: this.onEntered,
|
|
onEntering: this.onEntering,
|
|
onExit: this.onExit,
|
|
onExiting: this.onExiting,
|
|
onExited: this.onExited
|
|
}));
|
|
};
|
|
|
|
return CSSTransition;
|
|
}(_react.default.Component);
|
|
|
|
CSSTransition.defaultProps = {
|
|
classNames: ''
|
|
};
|
|
CSSTransition.propTypes = {};
|
|
var _default = CSSTransition;
|
|
exports.default = _default;
|
|
module.exports = exports["default"];
|
|
});
|
|
unwrapExports(CSSTransition_1);
|
|
|
|
var ChildMapping = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.getChildMapping = getChildMapping;
|
|
exports.mergeChildMappings = mergeChildMappings;
|
|
exports.getInitialChildMapping = getInitialChildMapping;
|
|
exports.getNextChildMapping = getNextChildMapping;
|
|
/**
|
|
* Given `this.props.children`, return an object mapping key to child.
|
|
*
|
|
* @param {*} children `this.props.children`
|
|
* @return {object} Mapping of key to child
|
|
*/
|
|
|
|
function getChildMapping(children, mapFn) {
|
|
var mapper = function mapper(child) {
|
|
return mapFn && (0, React__default.isValidElement)(child) ? mapFn(child) : child;
|
|
};
|
|
|
|
var result = Object.create(null);
|
|
if (children) React__default.Children.map(children, function (c) {
|
|
return c;
|
|
}).forEach(function (child) {
|
|
// run the map function here instead so that the key is the computed one
|
|
result[child.key] = mapper(child);
|
|
});
|
|
return result;
|
|
}
|
|
/**
|
|
* When you're adding or removing children some may be added or removed in the
|
|
* same render pass. We want to show *both* since we want to simultaneously
|
|
* animate elements in and out. This function takes a previous set of keys
|
|
* and a new set of keys and merges them with its best guess of the correct
|
|
* ordering. In the future we may expose some of the utilities in
|
|
* ReactMultiChild to make this easy, but for now React itself does not
|
|
* directly have this concept of the union of prevChildren and nextChildren
|
|
* so we implement it here.
|
|
*
|
|
* @param {object} prev prev children as returned from
|
|
* `ReactTransitionChildMapping.getChildMapping()`.
|
|
* @param {object} next next children as returned from
|
|
* `ReactTransitionChildMapping.getChildMapping()`.
|
|
* @return {object} a key set that contains all keys in `prev` and all keys
|
|
* in `next` in a reasonable order.
|
|
*/
|
|
|
|
|
|
function mergeChildMappings(prev, next) {
|
|
prev = prev || {};
|
|
next = next || {};
|
|
|
|
function getValueForKey(key) {
|
|
return key in next ? next[key] : prev[key];
|
|
} // For each key of `next`, the list of keys to insert before that key in
|
|
// the combined list
|
|
|
|
|
|
var nextKeysPending = Object.create(null);
|
|
var pendingKeys = [];
|
|
|
|
for (var prevKey in prev) {
|
|
if (prevKey in next) {
|
|
if (pendingKeys.length) {
|
|
nextKeysPending[prevKey] = pendingKeys;
|
|
pendingKeys = [];
|
|
}
|
|
} else {
|
|
pendingKeys.push(prevKey);
|
|
}
|
|
}
|
|
|
|
var i;
|
|
var childMapping = {};
|
|
|
|
for (var nextKey in next) {
|
|
if (nextKeysPending[nextKey]) {
|
|
for (i = 0; i < nextKeysPending[nextKey].length; i++) {
|
|
var pendingNextKey = nextKeysPending[nextKey][i];
|
|
childMapping[nextKeysPending[nextKey][i]] = getValueForKey(pendingNextKey);
|
|
}
|
|
}
|
|
|
|
childMapping[nextKey] = getValueForKey(nextKey);
|
|
} // Finally, add the keys which didn't appear before any key in `next`
|
|
|
|
|
|
for (i = 0; i < pendingKeys.length; i++) {
|
|
childMapping[pendingKeys[i]] = getValueForKey(pendingKeys[i]);
|
|
}
|
|
|
|
return childMapping;
|
|
}
|
|
|
|
function getProp(child, prop, props) {
|
|
return props[prop] != null ? props[prop] : child.props[prop];
|
|
}
|
|
|
|
function getInitialChildMapping(props, onExited) {
|
|
return getChildMapping(props.children, function (child) {
|
|
return (0, React__default.cloneElement)(child, {
|
|
onExited: onExited.bind(null, child),
|
|
in: true,
|
|
appear: getProp(child, 'appear', props),
|
|
enter: getProp(child, 'enter', props),
|
|
exit: getProp(child, 'exit', props)
|
|
});
|
|
});
|
|
}
|
|
|
|
function getNextChildMapping(nextProps, prevChildMapping, onExited) {
|
|
var nextChildMapping = getChildMapping(nextProps.children);
|
|
var children = mergeChildMappings(prevChildMapping, nextChildMapping);
|
|
Object.keys(children).forEach(function (key) {
|
|
var child = children[key];
|
|
if (!(0, React__default.isValidElement)(child)) return;
|
|
var hasPrev = (key in prevChildMapping);
|
|
var hasNext = (key in nextChildMapping);
|
|
var prevChild = prevChildMapping[key];
|
|
var isLeaving = (0, React__default.isValidElement)(prevChild) && !prevChild.props.in; // item is new (entering)
|
|
|
|
if (hasNext && (!hasPrev || isLeaving)) {
|
|
// console.log('entering', key)
|
|
children[key] = (0, React__default.cloneElement)(child, {
|
|
onExited: onExited.bind(null, child),
|
|
in: true,
|
|
exit: getProp(child, 'exit', nextProps),
|
|
enter: getProp(child, 'enter', nextProps)
|
|
});
|
|
} else if (!hasNext && hasPrev && !isLeaving) {
|
|
// item is old (exiting)
|
|
// console.log('leaving', key)
|
|
children[key] = (0, React__default.cloneElement)(child, {
|
|
in: false
|
|
});
|
|
} else if (hasNext && hasPrev && (0, React__default.isValidElement)(prevChild)) {
|
|
// item hasn't changed transition states
|
|
// copy over the last transition props;
|
|
// console.log('unchanged', key)
|
|
children[key] = (0, React__default.cloneElement)(child, {
|
|
onExited: onExited.bind(null, child),
|
|
in: prevChild.props.in,
|
|
exit: getProp(child, 'exit', nextProps),
|
|
enter: getProp(child, 'enter', nextProps)
|
|
});
|
|
}
|
|
});
|
|
return children;
|
|
}
|
|
});
|
|
unwrapExports(ChildMapping);
|
|
var ChildMapping_1 = ChildMapping.getChildMapping;
|
|
var ChildMapping_2 = ChildMapping.mergeChildMappings;
|
|
var ChildMapping_3 = ChildMapping.getInitialChildMapping;
|
|
var ChildMapping_4 = ChildMapping.getNextChildMapping;
|
|
|
|
var TransitionGroup_1 = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.default = void 0;
|
|
|
|
var _propTypes = _interopRequireDefault(propTypes);
|
|
|
|
var _react = _interopRequireDefault(React__default);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
function _extends() {
|
|
_extends = Object.assign || function (target) {
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
|
|
for (var key in source) {
|
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
target[key] = source[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
return target;
|
|
};
|
|
|
|
return _extends.apply(this, arguments);
|
|
}
|
|
|
|
function _inheritsLoose(subClass, superClass) {
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
subClass.prototype.constructor = subClass;
|
|
subClass.__proto__ = superClass;
|
|
}
|
|
|
|
function _assertThisInitialized(self) {
|
|
if (self === void 0) {
|
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
var values = Object.values || function (obj) {
|
|
return Object.keys(obj).map(function (k) {
|
|
return obj[k];
|
|
});
|
|
};
|
|
|
|
var defaultProps = {
|
|
component: 'div',
|
|
childFactory: function childFactory(child) {
|
|
return child;
|
|
}
|
|
/**
|
|
* The `<TransitionGroup>` component manages a set of transition components
|
|
* (`<Transition>` and `<CSSTransition>`) in a list. Like with the transition
|
|
* components, `<TransitionGroup>` is a state machine for managing the mounting
|
|
* and unmounting of components over time.
|
|
*
|
|
* Consider the example below. As items are removed or added to the TodoList the
|
|
* `in` prop is toggled automatically by the `<TransitionGroup>`.
|
|
*
|
|
* Note that `<TransitionGroup>` does not define any animation behavior!
|
|
* Exactly _how_ a list item animates is up to the individual transition
|
|
* component. This means you can mix and match animations across different list
|
|
* items.
|
|
*/
|
|
|
|
};
|
|
|
|
var TransitionGroup = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(TransitionGroup, _React$Component);
|
|
|
|
function TransitionGroup(props, context) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props, context) || this;
|
|
|
|
var handleExited = _this.handleExited.bind(_assertThisInitialized(_assertThisInitialized(_this))); // Initial children should all be entering, dependent on appear
|
|
|
|
|
|
_this.state = {
|
|
handleExited: handleExited,
|
|
firstRender: true
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
var _proto = TransitionGroup.prototype;
|
|
|
|
_proto.getChildContext = function getChildContext() {
|
|
return {
|
|
transitionGroup: {
|
|
isMounting: !this.appeared
|
|
}
|
|
};
|
|
};
|
|
|
|
_proto.componentDidMount = function componentDidMount() {
|
|
this.appeared = true;
|
|
this.mounted = true;
|
|
};
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
this.mounted = false;
|
|
};
|
|
|
|
TransitionGroup.getDerivedStateFromProps = function getDerivedStateFromProps(nextProps, _ref) {
|
|
var prevChildMapping = _ref.children,
|
|
handleExited = _ref.handleExited,
|
|
firstRender = _ref.firstRender;
|
|
return {
|
|
children: firstRender ? (0, ChildMapping.getInitialChildMapping)(nextProps, handleExited) : (0, ChildMapping.getNextChildMapping)(nextProps, prevChildMapping, handleExited),
|
|
firstRender: false
|
|
};
|
|
};
|
|
|
|
_proto.handleExited = function handleExited(child, node) {
|
|
var currentChildMapping = (0, ChildMapping.getChildMapping)(this.props.children);
|
|
if (child.key in currentChildMapping) return;
|
|
|
|
if (child.props.onExited) {
|
|
child.props.onExited(node);
|
|
}
|
|
|
|
if (this.mounted) {
|
|
this.setState(function (state) {
|
|
var children = _extends({}, state.children);
|
|
|
|
delete children[child.key];
|
|
return {
|
|
children: children
|
|
};
|
|
});
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
Component = _this$props.component,
|
|
childFactory = _this$props.childFactory,
|
|
props = _objectWithoutPropertiesLoose(_this$props, ["component", "childFactory"]);
|
|
|
|
var children = values(this.state.children).map(childFactory);
|
|
delete props.appear;
|
|
delete props.enter;
|
|
delete props.exit;
|
|
|
|
if (Component === null) {
|
|
return children;
|
|
}
|
|
|
|
return _react.default.createElement(Component, props, children);
|
|
};
|
|
|
|
return TransitionGroup;
|
|
}(_react.default.Component);
|
|
|
|
TransitionGroup.childContextTypes = {
|
|
transitionGroup: _propTypes.default.object.isRequired
|
|
};
|
|
TransitionGroup.propTypes = {};
|
|
TransitionGroup.defaultProps = defaultProps;
|
|
|
|
var _default = (0, reactLifecyclesCompat_es.polyfill)(TransitionGroup);
|
|
|
|
exports.default = _default;
|
|
module.exports = exports["default"];
|
|
});
|
|
unwrapExports(TransitionGroup_1);
|
|
|
|
var ReplaceTransition_1 = createCommonjsModule(function (module, exports) {
|
|
|
|
exports.__esModule = true;
|
|
exports.default = void 0;
|
|
|
|
var _propTypes = _interopRequireDefault(propTypes);
|
|
|
|
var _react = _interopRequireDefault(React__default);
|
|
|
|
var _TransitionGroup = _interopRequireDefault(TransitionGroup_1);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
function _inheritsLoose(subClass, superClass) {
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
subClass.prototype.constructor = subClass;
|
|
subClass.__proto__ = superClass;
|
|
}
|
|
/**
|
|
* The `<ReplaceTransition>` component is a specialized `Transition` component
|
|
* that animates between two children.
|
|
*
|
|
* ```jsx
|
|
* <ReplaceTransition in>
|
|
* <Fade><div>I appear first</div></Fade>
|
|
* <Fade><div>I replace the above</div></Fade>
|
|
* </ReplaceTransition>
|
|
* ```
|
|
*/
|
|
|
|
|
|
var ReplaceTransition = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(ReplaceTransition, _React$Component);
|
|
|
|
function ReplaceTransition() {
|
|
var _this;
|
|
|
|
for (var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
_args[_key] = arguments[_key];
|
|
}
|
|
|
|
_this = _React$Component.call.apply(_React$Component, [this].concat(_args)) || this;
|
|
|
|
_this.handleEnter = function () {
|
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
args[_key2] = arguments[_key2];
|
|
}
|
|
|
|
return _this.handleLifecycle('onEnter', 0, args);
|
|
};
|
|
|
|
_this.handleEntering = function () {
|
|
for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
|
args[_key3] = arguments[_key3];
|
|
}
|
|
|
|
return _this.handleLifecycle('onEntering', 0, args);
|
|
};
|
|
|
|
_this.handleEntered = function () {
|
|
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
|
args[_key4] = arguments[_key4];
|
|
}
|
|
|
|
return _this.handleLifecycle('onEntered', 0, args);
|
|
};
|
|
|
|
_this.handleExit = function () {
|
|
for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
|
|
args[_key5] = arguments[_key5];
|
|
}
|
|
|
|
return _this.handleLifecycle('onExit', 1, args);
|
|
};
|
|
|
|
_this.handleExiting = function () {
|
|
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
|
|
args[_key6] = arguments[_key6];
|
|
}
|
|
|
|
return _this.handleLifecycle('onExiting', 1, args);
|
|
};
|
|
|
|
_this.handleExited = function () {
|
|
for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {
|
|
args[_key7] = arguments[_key7];
|
|
}
|
|
|
|
return _this.handleLifecycle('onExited', 1, args);
|
|
};
|
|
|
|
return _this;
|
|
}
|
|
|
|
var _proto = ReplaceTransition.prototype;
|
|
|
|
_proto.handleLifecycle = function handleLifecycle(handler, idx, originalArgs) {
|
|
var _child$props;
|
|
|
|
var children = this.props.children;
|
|
|
|
var child = _react.default.Children.toArray(children)[idx];
|
|
|
|
if (child.props[handler]) (_child$props = child.props)[handler].apply(_child$props, originalArgs);
|
|
if (this.props[handler]) this.props[handler]((0, ReactDOM.findDOMNode)(this));
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
children = _this$props.children,
|
|
inProp = _this$props.in,
|
|
props = _objectWithoutPropertiesLoose(_this$props, ["children", "in"]);
|
|
|
|
var _React$Children$toArr = _react.default.Children.toArray(children),
|
|
first = _React$Children$toArr[0],
|
|
second = _React$Children$toArr[1];
|
|
|
|
delete props.onEnter;
|
|
delete props.onEntering;
|
|
delete props.onEntered;
|
|
delete props.onExit;
|
|
delete props.onExiting;
|
|
delete props.onExited;
|
|
return _react.default.createElement(_TransitionGroup.default, props, inProp ? _react.default.cloneElement(first, {
|
|
key: 'first',
|
|
onEnter: this.handleEnter,
|
|
onEntering: this.handleEntering,
|
|
onEntered: this.handleEntered
|
|
}) : _react.default.cloneElement(second, {
|
|
key: 'second',
|
|
onEnter: this.handleExit,
|
|
onEntering: this.handleExiting,
|
|
onEntered: this.handleExited
|
|
}));
|
|
};
|
|
|
|
return ReplaceTransition;
|
|
}(_react.default.Component);
|
|
|
|
ReplaceTransition.propTypes = {};
|
|
var _default = ReplaceTransition;
|
|
exports.default = _default;
|
|
module.exports = exports["default"];
|
|
});
|
|
unwrapExports(ReplaceTransition_1);
|
|
|
|
var reactTransitionGroup = createCommonjsModule(function (module) {
|
|
|
|
var _CSSTransition = _interopRequireDefault(CSSTransition_1);
|
|
|
|
var _ReplaceTransition = _interopRequireDefault(ReplaceTransition_1);
|
|
|
|
var _TransitionGroup = _interopRequireDefault(TransitionGroup_1);
|
|
|
|
var _Transition = _interopRequireDefault(Transition_1);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
module.exports = {
|
|
Transition: _Transition.default,
|
|
TransitionGroup: _TransitionGroup.default,
|
|
ReplaceTransition: _ReplaceTransition.default,
|
|
CSSTransition: _CSSTransition.default
|
|
};
|
|
});
|
|
unwrapExports(reactTransitionGroup);
|
|
var reactTransitionGroup_1 = reactTransitionGroup.Transition;
|
|
var reactTransitionGroup_2 = reactTransitionGroup.TransitionGroup;
|
|
var reactTransitionGroup_3 = reactTransitionGroup.ReplaceTransition;
|
|
var reactTransitionGroup_4 = reactTransitionGroup.CSSTransition;
|
|
|
|
var propTypes$m = _extends({}, reactTransitionGroup_1.propTypes, {
|
|
children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]),
|
|
tag: tagPropType,
|
|
baseClass: propTypes.string,
|
|
baseClassActive: propTypes.string,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
});
|
|
|
|
var defaultProps$k = _extends({}, reactTransitionGroup_1.defaultProps, {
|
|
tag: 'div',
|
|
baseClass: 'fade',
|
|
baseClassActive: 'show',
|
|
timeout: TransitionTimeouts.Fade,
|
|
appear: true,
|
|
enter: true,
|
|
exit: true,
|
|
in: true
|
|
});
|
|
|
|
function Fade(props) {
|
|
var Tag = props.tag,
|
|
baseClass = props.baseClass,
|
|
baseClassActive = props.baseClassActive,
|
|
className = props.className,
|
|
cssModule = props.cssModule,
|
|
children = props.children,
|
|
innerRef = props.innerRef,
|
|
otherProps = _objectWithoutPropertiesLoose(props, ["tag", "baseClass", "baseClassActive", "className", "cssModule", "children", "innerRef"]);
|
|
|
|
var transitionProps = pick(otherProps, TransitionPropTypeKeys);
|
|
var childProps = omit(otherProps, TransitionPropTypeKeys);
|
|
return /*#__PURE__*/React__default.createElement(reactTransitionGroup_1, transitionProps, function (status) {
|
|
var isActive = status === 'entered';
|
|
var classes = mapToCssModules(classnames(className, baseClass, isActive && baseClassActive), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
className: classes
|
|
}, childProps, {
|
|
ref: innerRef
|
|
}), children);
|
|
});
|
|
}
|
|
|
|
Fade.propTypes = propTypes$m;
|
|
Fade.defaultProps = defaultProps$k;
|
|
|
|
var propTypes$n = {
|
|
color: propTypes.string,
|
|
pill: propTypes.bool,
|
|
tag: tagPropType,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.func, propTypes.string]),
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$l = {
|
|
color: 'secondary',
|
|
pill: false,
|
|
tag: 'span'
|
|
};
|
|
|
|
var Badge = function Badge(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
color = props.color,
|
|
innerRef = props.innerRef,
|
|
pill = props.pill,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "color", "innerRef", "pill", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'badge', 'badge-' + color, pill ? 'badge-pill' : false), cssModule);
|
|
|
|
if (attributes.href && Tag === 'span') {
|
|
Tag = 'a';
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
ref: innerRef
|
|
}));
|
|
};
|
|
|
|
Badge.propTypes = propTypes$n;
|
|
Badge.defaultProps = defaultProps$l;
|
|
|
|
var propTypes$o = {
|
|
tag: tagPropType,
|
|
inverse: propTypes.bool,
|
|
color: propTypes.string,
|
|
body: propTypes.bool,
|
|
outline: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
};
|
|
var defaultProps$m = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var Card = function Card(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
color = props.color,
|
|
body = props.body,
|
|
inverse = props.inverse,
|
|
outline = props.outline,
|
|
Tag = props.tag,
|
|
innerRef = props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "color", "body", "inverse", "outline", "tag", "innerRef"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card', inverse ? 'text-white' : false, body ? 'card-body' : false, color ? (outline ? 'border' : 'bg') + "-" + color : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
ref: innerRef
|
|
}));
|
|
};
|
|
|
|
Card.propTypes = propTypes$o;
|
|
Card.defaultProps = defaultProps$m;
|
|
|
|
var propTypes$p = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$n = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardGroup = function CardGroup(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-group'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardGroup.propTypes = propTypes$p;
|
|
CardGroup.defaultProps = defaultProps$n;
|
|
|
|
var propTypes$q = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$o = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardDeck = function CardDeck(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-deck'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardDeck.propTypes = propTypes$q;
|
|
CardDeck.defaultProps = defaultProps$o;
|
|
|
|
var propTypes$r = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$p = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardColumns = function CardColumns(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-columns'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardColumns.propTypes = propTypes$r;
|
|
CardColumns.defaultProps = defaultProps$p;
|
|
|
|
var propTypes$s = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
};
|
|
var defaultProps$q = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardBody = function CardBody(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
innerRef = props.innerRef,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "innerRef", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-body'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
ref: innerRef
|
|
}));
|
|
};
|
|
|
|
CardBody.propTypes = propTypes$s;
|
|
CardBody.defaultProps = defaultProps$q;
|
|
|
|
var propTypes$t = {
|
|
tag: tagPropType,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.func, propTypes.string]),
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$r = {
|
|
tag: 'a'
|
|
};
|
|
|
|
var CardLink = function CardLink(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
innerRef = props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "innerRef"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-link'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
ref: innerRef,
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardLink.propTypes = propTypes$t;
|
|
CardLink.defaultProps = defaultProps$r;
|
|
|
|
var propTypes$u = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$s = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardFooter = function CardFooter(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-footer'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardFooter.propTypes = propTypes$u;
|
|
CardFooter.defaultProps = defaultProps$s;
|
|
|
|
var propTypes$v = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$t = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardHeader = function CardHeader(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-header'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardHeader.propTypes = propTypes$v;
|
|
CardHeader.defaultProps = defaultProps$t;
|
|
|
|
var propTypes$w = {
|
|
tag: tagPropType,
|
|
top: propTypes.bool,
|
|
bottom: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$u = {
|
|
tag: 'img'
|
|
};
|
|
|
|
var CardImg = function CardImg(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
top = props.top,
|
|
bottom = props.bottom,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "top", "bottom", "tag"]);
|
|
|
|
var cardImgClassName = 'card-img';
|
|
|
|
if (top) {
|
|
cardImgClassName = 'card-img-top';
|
|
}
|
|
|
|
if (bottom) {
|
|
cardImgClassName = 'card-img-bottom';
|
|
}
|
|
|
|
var classes = mapToCssModules(classnames(className, cardImgClassName), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardImg.propTypes = propTypes$w;
|
|
CardImg.defaultProps = defaultProps$u;
|
|
|
|
var propTypes$x = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$v = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardImgOverlay = function CardImgOverlay(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-img-overlay'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardImgOverlay.propTypes = propTypes$x;
|
|
CardImgOverlay.defaultProps = defaultProps$v;
|
|
|
|
var CarouselItem = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(CarouselItem, _React$Component);
|
|
|
|
function CarouselItem(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.state = {
|
|
startAnimation: false
|
|
};
|
|
_this.onEnter = _this.onEnter.bind(_assertThisInitialized(_this));
|
|
_this.onEntering = _this.onEntering.bind(_assertThisInitialized(_this));
|
|
_this.onExit = _this.onExit.bind(_assertThisInitialized(_this));
|
|
_this.onExiting = _this.onExiting.bind(_assertThisInitialized(_this));
|
|
_this.onExited = _this.onExited.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = CarouselItem.prototype;
|
|
|
|
_proto.onEnter = function onEnter(node, isAppearing) {
|
|
this.setState({
|
|
startAnimation: false
|
|
});
|
|
this.props.onEnter(node, isAppearing);
|
|
};
|
|
|
|
_proto.onEntering = function onEntering(node, isAppearing) {
|
|
// getting this variable triggers a reflow
|
|
var offsetHeight = node.offsetHeight;
|
|
this.setState({
|
|
startAnimation: true
|
|
});
|
|
this.props.onEntering(node, isAppearing);
|
|
return offsetHeight;
|
|
};
|
|
|
|
_proto.onExit = function onExit(node) {
|
|
this.setState({
|
|
startAnimation: false
|
|
});
|
|
this.props.onExit(node);
|
|
};
|
|
|
|
_proto.onExiting = function onExiting(node) {
|
|
this.setState({
|
|
startAnimation: true
|
|
});
|
|
node.dispatchEvent(new CustomEvent('slide.bs.carousel'));
|
|
this.props.onExiting(node);
|
|
};
|
|
|
|
_proto.onExited = function onExited(node) {
|
|
node.dispatchEvent(new CustomEvent('slid.bs.carousel'));
|
|
this.props.onExited(node);
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this2 = this;
|
|
|
|
var _this$props = this.props,
|
|
isIn = _this$props.in,
|
|
children = _this$props.children,
|
|
cssModule = _this$props.cssModule,
|
|
slide = _this$props.slide,
|
|
Tag = _this$props.tag,
|
|
className = _this$props.className,
|
|
transitionProps = _objectWithoutPropertiesLoose(_this$props, ["in", "children", "cssModule", "slide", "tag", "className"]);
|
|
|
|
return /*#__PURE__*/React__default.createElement(reactTransitionGroup_1, _extends({}, transitionProps, {
|
|
enter: slide,
|
|
exit: slide,
|
|
in: isIn,
|
|
onEnter: this.onEnter,
|
|
onEntering: this.onEntering,
|
|
onExit: this.onExit,
|
|
onExiting: this.onExiting,
|
|
onExited: this.onExited
|
|
}), function (status) {
|
|
var direction = _this2.context.direction;
|
|
var isActive = status === TransitionStatuses.ENTERED || status === TransitionStatuses.EXITING;
|
|
var directionClassName = (status === TransitionStatuses.ENTERING || status === TransitionStatuses.EXITING) && _this2.state.startAnimation && (direction === 'right' ? 'carousel-item-left' : 'carousel-item-right');
|
|
var orderClassName = status === TransitionStatuses.ENTERING && (direction === 'right' ? 'carousel-item-next' : 'carousel-item-prev');
|
|
var itemClasses = mapToCssModules(classnames(className, 'carousel-item', isActive && 'active', directionClassName, orderClassName), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, {
|
|
className: itemClasses
|
|
}, children);
|
|
});
|
|
};
|
|
|
|
return CarouselItem;
|
|
}(React__default.Component);
|
|
|
|
CarouselItem.propTypes = _extends({}, reactTransitionGroup_1.propTypes, {
|
|
tag: tagPropType,
|
|
in: propTypes.bool,
|
|
cssModule: propTypes.object,
|
|
children: propTypes.node,
|
|
slide: propTypes.bool,
|
|
className: propTypes.string
|
|
});
|
|
CarouselItem.defaultProps = _extends({}, reactTransitionGroup_1.defaultProps, {
|
|
tag: 'div',
|
|
timeout: TransitionTimeouts.Carousel,
|
|
slide: true
|
|
});
|
|
CarouselItem.contextTypes = {
|
|
direction: propTypes.string
|
|
};
|
|
|
|
var SWIPE_THRESHOLD = 40;
|
|
|
|
var Carousel = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(Carousel, _React$Component);
|
|
|
|
function Carousel(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.handleKeyPress = _this.handleKeyPress.bind(_assertThisInitialized(_this));
|
|
_this.renderItems = _this.renderItems.bind(_assertThisInitialized(_this));
|
|
_this.hoverStart = _this.hoverStart.bind(_assertThisInitialized(_this));
|
|
_this.hoverEnd = _this.hoverEnd.bind(_assertThisInitialized(_this));
|
|
_this.handleTouchStart = _this.handleTouchStart.bind(_assertThisInitialized(_this));
|
|
_this.handleTouchEnd = _this.handleTouchEnd.bind(_assertThisInitialized(_this));
|
|
_this.touchStartX = 0;
|
|
_this.touchStartY = 0;
|
|
_this.state = {
|
|
activeIndex: _this.props.activeIndex,
|
|
direction: 'right',
|
|
indicatorClicked: false
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Carousel.prototype;
|
|
|
|
_proto.getChildContext = function getChildContext() {
|
|
return {
|
|
direction: this.state.direction
|
|
};
|
|
};
|
|
|
|
_proto.componentDidMount = function componentDidMount() {
|
|
// Set up the cycle
|
|
if (this.props.ride === 'carousel') {
|
|
this.setInterval();
|
|
} // TODO: move this to the specific carousel like bootstrap. Currently it will trigger ALL carousels on the page.
|
|
|
|
|
|
document.addEventListener('keyup', this.handleKeyPress);
|
|
};
|
|
|
|
Carousel.getDerivedStateFromProps = function getDerivedStateFromProps(nextProps, prevState) {
|
|
var newState = null;
|
|
var activeIndex = prevState.activeIndex,
|
|
direction = prevState.direction,
|
|
indicatorClicked = prevState.indicatorClicked;
|
|
|
|
if (nextProps.activeIndex !== activeIndex) {
|
|
// Calculate the direction to turn
|
|
if (nextProps.activeIndex === activeIndex + 1) {
|
|
direction = 'right';
|
|
} else if (nextProps.activeIndex === activeIndex - 1) {
|
|
direction = 'left';
|
|
} else if (nextProps.activeIndex < activeIndex) {
|
|
direction = indicatorClicked ? 'left' : 'right';
|
|
} else if (nextProps.activeIndex !== activeIndex) {
|
|
direction = indicatorClicked ? 'right' : 'left';
|
|
}
|
|
|
|
newState = {
|
|
activeIndex: nextProps.activeIndex,
|
|
direction: direction,
|
|
indicatorClicked: false
|
|
};
|
|
}
|
|
|
|
return newState;
|
|
};
|
|
|
|
_proto.componentDidUpdate = function componentDidUpdate(prevProps, prevState) {
|
|
if (prevState.activeIndex === this.state.activeIndex) return;
|
|
this.setInterval(this.props);
|
|
};
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
this.clearInterval();
|
|
document.removeEventListener('keyup', this.handleKeyPress);
|
|
};
|
|
|
|
_proto.setInterval = function (_setInterval) {
|
|
function setInterval() {
|
|
return _setInterval.apply(this, arguments);
|
|
}
|
|
|
|
setInterval.toString = function () {
|
|
return _setInterval.toString();
|
|
};
|
|
|
|
return setInterval;
|
|
}(function (props) {
|
|
if (props === void 0) {
|
|
props = this.props;
|
|
}
|
|
|
|
// make sure not to have multiple intervals going...
|
|
this.clearInterval();
|
|
|
|
if (props.interval) {
|
|
this.cycleInterval = setInterval(function () {
|
|
props.next();
|
|
}, parseInt(props.interval, 10));
|
|
}
|
|
});
|
|
|
|
_proto.clearInterval = function (_clearInterval) {
|
|
function clearInterval() {
|
|
return _clearInterval.apply(this, arguments);
|
|
}
|
|
|
|
clearInterval.toString = function () {
|
|
return _clearInterval.toString();
|
|
};
|
|
|
|
return clearInterval;
|
|
}(function () {
|
|
clearInterval(this.cycleInterval);
|
|
});
|
|
|
|
_proto.hoverStart = function hoverStart() {
|
|
if (this.props.pause === 'hover') {
|
|
this.clearInterval();
|
|
}
|
|
|
|
if (this.props.mouseEnter) {
|
|
var _this$props;
|
|
|
|
(_this$props = this.props).mouseEnter.apply(_this$props, arguments);
|
|
}
|
|
};
|
|
|
|
_proto.hoverEnd = function hoverEnd() {
|
|
if (this.props.pause === 'hover') {
|
|
this.setInterval();
|
|
}
|
|
|
|
if (this.props.mouseLeave) {
|
|
var _this$props2;
|
|
|
|
(_this$props2 = this.props).mouseLeave.apply(_this$props2, arguments);
|
|
}
|
|
};
|
|
|
|
_proto.handleKeyPress = function handleKeyPress(evt) {
|
|
if (this.props.keyboard) {
|
|
if (evt.keyCode === 37) {
|
|
this.props.previous();
|
|
} else if (evt.keyCode === 39) {
|
|
this.props.next();
|
|
}
|
|
}
|
|
};
|
|
|
|
_proto.handleTouchStart = function handleTouchStart(e) {
|
|
if (!this.props.enableTouch) {
|
|
return;
|
|
}
|
|
|
|
this.touchStartX = e.changedTouches[0].screenX;
|
|
this.touchStartY = e.changedTouches[0].screenY;
|
|
};
|
|
|
|
_proto.handleTouchEnd = function handleTouchEnd(e) {
|
|
if (!this.props.enableTouch) {
|
|
return;
|
|
}
|
|
|
|
var currentX = e.changedTouches[0].screenX;
|
|
var currentY = e.changedTouches[0].screenY;
|
|
var diffX = Math.abs(this.touchStartX - currentX);
|
|
var diffY = Math.abs(this.touchStartY - currentY); // Don't swipe if Y-movement is bigger than X-movement
|
|
|
|
if (diffX < diffY) {
|
|
return;
|
|
}
|
|
|
|
if (diffX < SWIPE_THRESHOLD) {
|
|
return;
|
|
}
|
|
|
|
if (currentX < this.touchStartX) {
|
|
this.props.next();
|
|
} else {
|
|
this.props.previous();
|
|
}
|
|
};
|
|
|
|
_proto.renderItems = function renderItems(carouselItems, className) {
|
|
var _this2 = this;
|
|
|
|
var slide = this.props.slide;
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
className: className
|
|
}, carouselItems.map(function (item, index) {
|
|
var isIn = index === _this2.state.activeIndex;
|
|
return /*#__PURE__*/React__default.cloneElement(item, {
|
|
in: isIn,
|
|
slide: slide
|
|
});
|
|
}));
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this3 = this;
|
|
|
|
var _this$props3 = this.props,
|
|
cssModule = _this$props3.cssModule,
|
|
slide = _this$props3.slide,
|
|
className = _this$props3.className;
|
|
var outerClasses = mapToCssModules(classnames(className, 'carousel', slide && 'slide'), cssModule);
|
|
var innerClasses = mapToCssModules(classnames('carousel-inner'), cssModule); // filter out booleans, null, or undefined
|
|
|
|
var children = this.props.children.filter(function (child) {
|
|
return child !== null && child !== undefined && typeof child !== 'boolean';
|
|
});
|
|
var slidesOnly = children.every(function (child) {
|
|
return child.type === CarouselItem;
|
|
}); // Rendering only slides
|
|
|
|
if (slidesOnly) {
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
className: outerClasses,
|
|
onMouseEnter: this.hoverStart,
|
|
onMouseLeave: this.hoverEnd
|
|
}, this.renderItems(children, innerClasses));
|
|
} // Rendering slides and controls
|
|
|
|
|
|
if (children[0] instanceof Array) {
|
|
var _carouselItems = children[0];
|
|
var _controlLeft = children[1];
|
|
var _controlRight = children[2];
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
className: outerClasses,
|
|
onMouseEnter: this.hoverStart,
|
|
onMouseLeave: this.hoverEnd
|
|
}, this.renderItems(_carouselItems, innerClasses), _controlLeft, _controlRight);
|
|
} // Rendering indicators, slides and controls
|
|
|
|
|
|
var indicators = children[0];
|
|
|
|
var wrappedOnClick = function wrappedOnClick(e) {
|
|
if (typeof indicators.props.onClickHandler === 'function') {
|
|
_this3.setState({
|
|
indicatorClicked: true
|
|
}, function () {
|
|
return indicators.props.onClickHandler(e);
|
|
});
|
|
}
|
|
};
|
|
|
|
var wrappedIndicators = /*#__PURE__*/React__default.cloneElement(indicators, {
|
|
onClickHandler: wrappedOnClick
|
|
});
|
|
var carouselItems = children[1];
|
|
var controlLeft = children[2];
|
|
var controlRight = children[3];
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
className: outerClasses,
|
|
onMouseEnter: this.hoverStart,
|
|
onMouseLeave: this.hoverEnd,
|
|
onTouchStart: this.handleTouchStart,
|
|
onTouchEnd: this.handleTouchEnd
|
|
}, wrappedIndicators, this.renderItems(carouselItems, innerClasses), controlLeft, controlRight);
|
|
};
|
|
|
|
return Carousel;
|
|
}(React__default.Component);
|
|
|
|
Carousel.propTypes = {
|
|
// the current active slide of the carousel
|
|
activeIndex: propTypes.number,
|
|
// a function which should advance the carousel to the next slide (via activeIndex)
|
|
next: propTypes.func.isRequired,
|
|
// a function which should advance the carousel to the previous slide (via activeIndex)
|
|
previous: propTypes.func.isRequired,
|
|
// controls if the left and right arrow keys should control the carousel
|
|
keyboard: propTypes.bool,
|
|
|
|
/* If set to "hover", pauses the cycling of the carousel on mouseenter and resumes the cycling of the carousel on
|
|
* mouseleave. If set to false, hovering over the carousel won't pause it. (default: "hover")
|
|
*/
|
|
pause: propTypes.oneOf(['hover', false]),
|
|
// Autoplays the carousel after the user manually cycles the first item. If "carousel", autoplays the carousel on load.
|
|
// This is how bootstrap defines it... I would prefer a bool named autoplay or something...
|
|
ride: propTypes.oneOf(['carousel']),
|
|
// the interval at which the carousel automatically cycles (default: 5000)
|
|
// eslint-disable-next-line react/no-unused-prop-types
|
|
interval: propTypes.oneOfType([propTypes.number, propTypes.string, propTypes.bool]),
|
|
children: propTypes.array,
|
|
// called when the mouse enters the Carousel
|
|
mouseEnter: propTypes.func,
|
|
// called when the mouse exits the Carousel
|
|
mouseLeave: propTypes.func,
|
|
// controls whether the slide animation on the Carousel works or not
|
|
slide: propTypes.bool,
|
|
cssModule: propTypes.object,
|
|
className: propTypes.string,
|
|
enableTouch: propTypes.bool
|
|
};
|
|
Carousel.defaultProps = {
|
|
interval: 5000,
|
|
pause: 'hover',
|
|
keyboard: true,
|
|
slide: true,
|
|
enableTouch: true
|
|
};
|
|
Carousel.childContextTypes = {
|
|
direction: propTypes.string
|
|
};
|
|
|
|
var CarouselControl = function CarouselControl(props) {
|
|
var direction = props.direction,
|
|
onClickHandler = props.onClickHandler,
|
|
cssModule = props.cssModule,
|
|
directionText = props.directionText,
|
|
className = props.className;
|
|
var anchorClasses = mapToCssModules(classnames(className, "carousel-control-" + direction), cssModule);
|
|
var iconClasses = mapToCssModules(classnames("carousel-control-" + direction + "-icon"), cssModule);
|
|
var screenReaderClasses = mapToCssModules(classnames('sr-only'), cssModule);
|
|
return (
|
|
/*#__PURE__*/
|
|
// We need to disable this linting rule to use an `<a>` instead of
|
|
// `<button>` because that's what the Bootstrap examples require:
|
|
// https://getbootstrap.com/docs/4.5/components/carousel/#with-controls
|
|
// eslint-disable-next-line jsx-a11y/anchor-is-valid
|
|
React__default.createElement("a", {
|
|
className: anchorClasses,
|
|
style: {
|
|
cursor: "pointer"
|
|
},
|
|
role: "button",
|
|
tabIndex: "0",
|
|
onClick: function onClick(e) {
|
|
e.preventDefault();
|
|
onClickHandler();
|
|
}
|
|
}, /*#__PURE__*/React__default.createElement("span", {
|
|
className: iconClasses,
|
|
"aria-hidden": "true"
|
|
}), /*#__PURE__*/React__default.createElement("span", {
|
|
className: screenReaderClasses
|
|
}, directionText || direction))
|
|
);
|
|
};
|
|
|
|
CarouselControl.propTypes = {
|
|
direction: propTypes.oneOf(['prev', 'next']).isRequired,
|
|
onClickHandler: propTypes.func.isRequired,
|
|
cssModule: propTypes.object,
|
|
directionText: propTypes.string,
|
|
className: propTypes.string
|
|
};
|
|
|
|
var CarouselIndicators = function CarouselIndicators(props) {
|
|
var items = props.items,
|
|
activeIndex = props.activeIndex,
|
|
cssModule = props.cssModule,
|
|
onClickHandler = props.onClickHandler,
|
|
className = props.className;
|
|
var listClasses = mapToCssModules(classnames(className, 'carousel-indicators'), cssModule);
|
|
var indicators = items.map(function (item, idx) {
|
|
var indicatorClasses = mapToCssModules(classnames({
|
|
active: activeIndex === idx
|
|
}), cssModule);
|
|
return /*#__PURE__*/React__default.createElement("li", {
|
|
key: "" + (item.key || Object.values(item).join('')),
|
|
onClick: function onClick(e) {
|
|
e.preventDefault();
|
|
onClickHandler(idx);
|
|
},
|
|
className: indicatorClasses
|
|
});
|
|
});
|
|
return /*#__PURE__*/React__default.createElement("ol", {
|
|
className: listClasses
|
|
}, indicators);
|
|
};
|
|
|
|
CarouselIndicators.propTypes = {
|
|
items: propTypes.array.isRequired,
|
|
activeIndex: propTypes.number.isRequired,
|
|
cssModule: propTypes.object,
|
|
onClickHandler: propTypes.func.isRequired,
|
|
className: propTypes.string
|
|
};
|
|
|
|
var CarouselCaption = function CarouselCaption(props) {
|
|
var captionHeader = props.captionHeader,
|
|
captionText = props.captionText,
|
|
cssModule = props.cssModule,
|
|
className = props.className;
|
|
var classes = mapToCssModules(classnames(className, 'carousel-caption', 'd-none', 'd-md-block'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
className: classes
|
|
}, /*#__PURE__*/React__default.createElement("h3", null, captionHeader), /*#__PURE__*/React__default.createElement("p", null, captionText));
|
|
};
|
|
|
|
CarouselCaption.propTypes = {
|
|
captionHeader: propTypes.node,
|
|
captionText: propTypes.node.isRequired,
|
|
cssModule: propTypes.object,
|
|
className: propTypes.string
|
|
};
|
|
|
|
var propTypes$y = {
|
|
items: propTypes.array.isRequired,
|
|
indicators: propTypes.bool,
|
|
controls: propTypes.bool,
|
|
autoPlay: propTypes.bool,
|
|
defaultActiveIndex: propTypes.number,
|
|
activeIndex: propTypes.number,
|
|
next: propTypes.func,
|
|
previous: propTypes.func,
|
|
goToIndex: propTypes.func
|
|
};
|
|
|
|
var UncontrolledCarousel = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(UncontrolledCarousel, _Component);
|
|
|
|
function UncontrolledCarousel(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.animating = false;
|
|
_this.state = {
|
|
activeIndex: props.defaultActiveIndex || 0
|
|
};
|
|
_this.next = _this.next.bind(_assertThisInitialized(_this));
|
|
_this.previous = _this.previous.bind(_assertThisInitialized(_this));
|
|
_this.goToIndex = _this.goToIndex.bind(_assertThisInitialized(_this));
|
|
_this.onExiting = _this.onExiting.bind(_assertThisInitialized(_this));
|
|
_this.onExited = _this.onExited.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = UncontrolledCarousel.prototype;
|
|
|
|
_proto.onExiting = function onExiting() {
|
|
this.animating = true;
|
|
};
|
|
|
|
_proto.onExited = function onExited() {
|
|
this.animating = false;
|
|
};
|
|
|
|
_proto.next = function next() {
|
|
if (this.animating) return;
|
|
var nextIndex = this.state.activeIndex === this.props.items.length - 1 ? 0 : this.state.activeIndex + 1;
|
|
this.setState({
|
|
activeIndex: nextIndex
|
|
});
|
|
};
|
|
|
|
_proto.previous = function previous() {
|
|
if (this.animating) return;
|
|
var nextIndex = this.state.activeIndex === 0 ? this.props.items.length - 1 : this.state.activeIndex - 1;
|
|
this.setState({
|
|
activeIndex: nextIndex
|
|
});
|
|
};
|
|
|
|
_proto.goToIndex = function goToIndex(newIndex) {
|
|
if (this.animating) return;
|
|
this.setState({
|
|
activeIndex: newIndex
|
|
});
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this2 = this;
|
|
|
|
var _this$props = this.props,
|
|
defaultActiveIndex = _this$props.defaultActiveIndex,
|
|
autoPlay = _this$props.autoPlay,
|
|
indicators = _this$props.indicators,
|
|
controls = _this$props.controls,
|
|
items = _this$props.items,
|
|
goToIndex = _this$props.goToIndex,
|
|
props = _objectWithoutPropertiesLoose(_this$props, ["defaultActiveIndex", "autoPlay", "indicators", "controls", "items", "goToIndex"]);
|
|
|
|
var activeIndex = this.state.activeIndex;
|
|
var slides = items.map(function (item) {
|
|
var key = item.key || item.src;
|
|
return /*#__PURE__*/React__default.createElement(CarouselItem, {
|
|
onExiting: _this2.onExiting,
|
|
onExited: _this2.onExited,
|
|
key: key
|
|
}, /*#__PURE__*/React__default.createElement("img", {
|
|
className: "d-block w-100",
|
|
src: item.src,
|
|
alt: item.altText
|
|
}), /*#__PURE__*/React__default.createElement(CarouselCaption, {
|
|
captionText: item.caption,
|
|
captionHeader: item.header || item.caption
|
|
}));
|
|
});
|
|
return /*#__PURE__*/React__default.createElement(Carousel, _extends({
|
|
activeIndex: activeIndex,
|
|
next: this.next,
|
|
previous: this.previous,
|
|
ride: autoPlay ? 'carousel' : undefined
|
|
}, props), indicators && /*#__PURE__*/React__default.createElement(CarouselIndicators, {
|
|
items: items,
|
|
activeIndex: props.activeIndex || activeIndex,
|
|
onClickHandler: goToIndex || this.goToIndex
|
|
}), slides, controls && /*#__PURE__*/React__default.createElement(CarouselControl, {
|
|
direction: "prev",
|
|
directionText: "Previous",
|
|
onClickHandler: props.previous || this.previous
|
|
}), controls && /*#__PURE__*/React__default.createElement(CarouselControl, {
|
|
direction: "next",
|
|
directionText: "Next",
|
|
onClickHandler: props.next || this.next
|
|
}));
|
|
};
|
|
|
|
return UncontrolledCarousel;
|
|
}(React.Component);
|
|
|
|
UncontrolledCarousel.propTypes = propTypes$y;
|
|
UncontrolledCarousel.defaultProps = {
|
|
controls: true,
|
|
indicators: true,
|
|
autoPlay: true
|
|
};
|
|
|
|
var propTypes$z = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$w = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardSubtitle = function CardSubtitle(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-subtitle'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardSubtitle.propTypes = propTypes$z;
|
|
CardSubtitle.defaultProps = defaultProps$w;
|
|
|
|
var propTypes$A = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$x = {
|
|
tag: 'p'
|
|
};
|
|
|
|
var CardText = function CardText(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-text'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardText.propTypes = propTypes$A;
|
|
CardText.defaultProps = defaultProps$x;
|
|
|
|
var propTypes$B = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$y = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var CardTitle = function CardTitle(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'card-title'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
CardTitle.propTypes = propTypes$B;
|
|
CardTitle.defaultProps = defaultProps$y;
|
|
|
|
var propTypes$C = {
|
|
className: propTypes.string,
|
|
id: propTypes.oneOfType([propTypes.string, propTypes.number]).isRequired,
|
|
label: propTypes.node,
|
|
valid: propTypes.bool,
|
|
invalid: propTypes.bool,
|
|
bsSize: propTypes.string,
|
|
htmlFor: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
onChange: propTypes.func,
|
|
children: propTypes.oneOfType([propTypes.node, propTypes.array, propTypes.func]),
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
};
|
|
|
|
var CustomFileInput = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(CustomFileInput, _React$Component);
|
|
|
|
function CustomFileInput(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.state = {
|
|
files: null
|
|
};
|
|
_this.onChange = _this.onChange.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = CustomFileInput.prototype;
|
|
|
|
_proto.onChange = function onChange(e) {
|
|
var input = e.target;
|
|
var onChange = this.props.onChange;
|
|
var files = this.getSelectedFiles(input);
|
|
|
|
if (typeof onChange === "function") {
|
|
onChange.apply(void 0, arguments);
|
|
}
|
|
|
|
this.setState({
|
|
files: files
|
|
});
|
|
};
|
|
|
|
_proto.getSelectedFiles = function getSelectedFiles(input) {
|
|
var multiple = this.props.multiple;
|
|
|
|
if (multiple && input.files) {
|
|
var files = [].slice.call(input.files);
|
|
return files.map(function (file) {
|
|
return file.name;
|
|
}).join(", ");
|
|
}
|
|
|
|
if (input.value.indexOf("fakepath") !== -1) {
|
|
var parts = input.value.split("\\");
|
|
return parts[parts.length - 1];
|
|
}
|
|
|
|
return input.value;
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
label = _this$props.label,
|
|
valid = _this$props.valid,
|
|
invalid = _this$props.invalid,
|
|
cssModule = _this$props.cssModule,
|
|
children = _this$props.children,
|
|
bsSize = _this$props.bsSize,
|
|
innerRef = _this$props.innerRef,
|
|
htmlFor = _this$props.htmlFor,
|
|
type = _this$props.type,
|
|
onChange = _this$props.onChange,
|
|
dataBrowse = _this$props.dataBrowse,
|
|
hidden = _this$props.hidden,
|
|
attributes = _objectWithoutPropertiesLoose(_this$props, ["className", "label", "valid", "invalid", "cssModule", "children", "bsSize", "innerRef", "htmlFor", "type", "onChange", "dataBrowse", "hidden"]);
|
|
|
|
var customClass = mapToCssModules(classnames(className, "custom-file"), cssModule);
|
|
var validationClassNames = mapToCssModules(classnames(invalid && "is-invalid", valid && "is-valid"), cssModule);
|
|
var labelHtmlFor = htmlFor || attributes.id;
|
|
var files = this.state.files;
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
className: customClass,
|
|
hidden: hidden || false
|
|
}, /*#__PURE__*/React__default.createElement("input", _extends({
|
|
type: "file"
|
|
}, attributes, {
|
|
ref: innerRef,
|
|
"aria-invalid": invalid,
|
|
className: classnames(validationClassNames, mapToCssModules("custom-file-input", cssModule)),
|
|
onChange: this.onChange
|
|
})), /*#__PURE__*/React__default.createElement("label", {
|
|
className: mapToCssModules("custom-file-label", cssModule),
|
|
htmlFor: labelHtmlFor,
|
|
"data-browse": dataBrowse
|
|
}, files || label || "Choose file"), children);
|
|
};
|
|
|
|
return CustomFileInput;
|
|
}(React__default.Component);
|
|
|
|
CustomFileInput.propTypes = propTypes$C;
|
|
|
|
var propTypes$D = {
|
|
className: propTypes.string,
|
|
id: propTypes.oneOfType([propTypes.string, propTypes.number]).isRequired,
|
|
type: propTypes.string.isRequired,
|
|
label: propTypes.node,
|
|
inline: propTypes.bool,
|
|
valid: propTypes.bool,
|
|
invalid: propTypes.bool,
|
|
bsSize: propTypes.string,
|
|
htmlFor: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
children: propTypes.oneOfType([propTypes.node, propTypes.array, propTypes.func]),
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
};
|
|
|
|
function CustomInput(props) {
|
|
var className = props.className,
|
|
label = props.label,
|
|
inline = props.inline,
|
|
valid = props.valid,
|
|
invalid = props.invalid,
|
|
cssModule = props.cssModule,
|
|
children = props.children,
|
|
bsSize = props.bsSize,
|
|
innerRef = props.innerRef,
|
|
htmlFor = props.htmlFor,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "label", "inline", "valid", "invalid", "cssModule", "children", "bsSize", "innerRef", "htmlFor"]);
|
|
|
|
var type = attributes.type;
|
|
var customClass = mapToCssModules(classnames(className, "custom-" + type, bsSize ? "custom-" + type + "-" + bsSize : false), cssModule);
|
|
var validationClassNames = mapToCssModules(classnames(invalid && "is-invalid", valid && "is-valid"), cssModule);
|
|
var labelHtmlFor = htmlFor || attributes.id;
|
|
|
|
if (type === "select") {
|
|
var _type = attributes.type,
|
|
_rest = _objectWithoutPropertiesLoose(attributes, ["type"]);
|
|
|
|
return /*#__PURE__*/React__default.createElement("select", _extends({}, _rest, {
|
|
ref: innerRef,
|
|
className: classnames(validationClassNames, customClass),
|
|
"aria-invalid": invalid
|
|
}), children);
|
|
}
|
|
|
|
if (type === "file") {
|
|
return /*#__PURE__*/React__default.createElement(CustomFileInput, props);
|
|
}
|
|
|
|
if (type !== "checkbox" && type !== "radio" && type !== "switch") {
|
|
return /*#__PURE__*/React__default.createElement("input", _extends({}, attributes, {
|
|
ref: innerRef,
|
|
"aria-invalid": invalid,
|
|
className: classnames(validationClassNames, customClass)
|
|
}));
|
|
}
|
|
|
|
var wrapperClasses = classnames(customClass, mapToCssModules(classnames("custom-control", {
|
|
"custom-control-inline": inline
|
|
}), cssModule));
|
|
|
|
var hidden = attributes.hidden,
|
|
rest = _objectWithoutPropertiesLoose(attributes, ["hidden"]);
|
|
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
className: wrapperClasses,
|
|
hidden: hidden || false
|
|
}, /*#__PURE__*/React__default.createElement("input", _extends({}, rest, {
|
|
type: type === "switch" ? "checkbox" : type,
|
|
ref: innerRef,
|
|
"aria-invalid": invalid,
|
|
className: classnames(validationClassNames, mapToCssModules("custom-control-input", cssModule))
|
|
})), /*#__PURE__*/React__default.createElement("label", {
|
|
className: mapToCssModules("custom-control-label", cssModule),
|
|
htmlFor: labelHtmlFor
|
|
}, label), children);
|
|
}
|
|
|
|
CustomInput.propTypes = propTypes$D;
|
|
|
|
function noop() {}
|
|
|
|
var propTypes$E = {
|
|
children: propTypes.oneOfType([propTypes.node, propTypes.func]).isRequired,
|
|
popperClassName: propTypes.string,
|
|
placement: propTypes.string,
|
|
placementPrefix: propTypes.string,
|
|
arrowClassName: propTypes.string,
|
|
hideArrow: propTypes.bool,
|
|
tag: tagPropType,
|
|
isOpen: propTypes.bool.isRequired,
|
|
cssModule: propTypes.object,
|
|
offset: propTypes.oneOfType([propTypes.string, propTypes.number]),
|
|
fallbackPlacement: propTypes.oneOfType([propTypes.string, propTypes.array]),
|
|
flip: propTypes.bool,
|
|
container: targetPropType,
|
|
target: targetPropType.isRequired,
|
|
modifiers: propTypes.object,
|
|
positionFixed: propTypes.bool,
|
|
boundariesElement: propTypes.oneOfType([propTypes.string, DOMElement]),
|
|
onClosed: propTypes.func,
|
|
fade: propTypes.bool,
|
|
transition: propTypes.shape(Fade.propTypes)
|
|
};
|
|
var defaultProps$z = {
|
|
boundariesElement: 'scrollParent',
|
|
placement: 'auto',
|
|
hideArrow: false,
|
|
isOpen: false,
|
|
offset: 0,
|
|
fallbackPlacement: 'flip',
|
|
flip: true,
|
|
container: 'body',
|
|
modifiers: {},
|
|
onClosed: noop,
|
|
fade: true,
|
|
transition: _extends({}, Fade.defaultProps)
|
|
};
|
|
|
|
var PopperContent = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(PopperContent, _React$Component);
|
|
|
|
function PopperContent(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.setTargetNode = _this.setTargetNode.bind(_assertThisInitialized(_this));
|
|
_this.getTargetNode = _this.getTargetNode.bind(_assertThisInitialized(_this));
|
|
_this.getRef = _this.getRef.bind(_assertThisInitialized(_this));
|
|
_this.onClosed = _this.onClosed.bind(_assertThisInitialized(_this));
|
|
_this.state = {
|
|
isOpen: props.isOpen
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
PopperContent.getDerivedStateFromProps = function getDerivedStateFromProps(props, state) {
|
|
if (props.isOpen && !state.isOpen) {
|
|
return {
|
|
isOpen: props.isOpen
|
|
};
|
|
} else return null;
|
|
};
|
|
|
|
var _proto = PopperContent.prototype;
|
|
|
|
_proto.componentDidUpdate = function componentDidUpdate() {
|
|
if (this._element && this._element.childNodes && this._element.childNodes[0] && this._element.childNodes[0].focus) {
|
|
this._element.childNodes[0].focus();
|
|
}
|
|
};
|
|
|
|
_proto.setTargetNode = function setTargetNode(node) {
|
|
this.targetNode = typeof node === 'string' ? getTarget(node) : node;
|
|
};
|
|
|
|
_proto.getTargetNode = function getTargetNode() {
|
|
return this.targetNode;
|
|
};
|
|
|
|
_proto.getContainerNode = function getContainerNode() {
|
|
return getTarget(this.props.container);
|
|
};
|
|
|
|
_proto.getRef = function getRef(ref) {
|
|
this._element = ref;
|
|
};
|
|
|
|
_proto.onClosed = function onClosed() {
|
|
this.props.onClosed();
|
|
this.setState({
|
|
isOpen: false
|
|
});
|
|
};
|
|
|
|
_proto.renderChildren = function renderChildren() {
|
|
var _this$props = this.props,
|
|
cssModule = _this$props.cssModule,
|
|
children = _this$props.children,
|
|
isOpen = _this$props.isOpen,
|
|
flip = _this$props.flip,
|
|
target = _this$props.target,
|
|
offset = _this$props.offset,
|
|
fallbackPlacement = _this$props.fallbackPlacement,
|
|
placementPrefix = _this$props.placementPrefix,
|
|
_arrowClassName = _this$props.arrowClassName,
|
|
hideArrow = _this$props.hideArrow,
|
|
_popperClassName = _this$props.popperClassName,
|
|
tag = _this$props.tag,
|
|
container = _this$props.container,
|
|
modifiers = _this$props.modifiers,
|
|
positionFixed = _this$props.positionFixed,
|
|
boundariesElement = _this$props.boundariesElement,
|
|
onClosed = _this$props.onClosed,
|
|
fade = _this$props.fade,
|
|
transition = _this$props.transition,
|
|
placement = _this$props.placement,
|
|
attrs = _objectWithoutPropertiesLoose(_this$props, ["cssModule", "children", "isOpen", "flip", "target", "offset", "fallbackPlacement", "placementPrefix", "arrowClassName", "hideArrow", "popperClassName", "tag", "container", "modifiers", "positionFixed", "boundariesElement", "onClosed", "fade", "transition", "placement"]);
|
|
|
|
var arrowClassName = mapToCssModules(classnames('arrow', _arrowClassName), cssModule);
|
|
var popperClassName = mapToCssModules(classnames(_popperClassName, placementPrefix ? placementPrefix + "-auto" : ''), this.props.cssModule);
|
|
|
|
var extendedModifiers = _extends({
|
|
offset: {
|
|
offset: offset
|
|
},
|
|
flip: {
|
|
enabled: flip,
|
|
behavior: fallbackPlacement
|
|
},
|
|
preventOverflow: {
|
|
boundariesElement: boundariesElement
|
|
}
|
|
}, modifiers);
|
|
|
|
var popperTransition = _extends({}, Fade.defaultProps, transition, {
|
|
baseClass: fade ? transition.baseClass : '',
|
|
timeout: fade ? transition.timeout : 0
|
|
});
|
|
|
|
return /*#__PURE__*/React__default.createElement(Fade, _extends({}, popperTransition, attrs, {
|
|
in: isOpen,
|
|
onExited: this.onClosed,
|
|
tag: tag
|
|
}), /*#__PURE__*/React__default.createElement(Popper$1, {
|
|
referenceElement: this.targetNode,
|
|
modifiers: extendedModifiers,
|
|
placement: placement,
|
|
positionFixed: positionFixed
|
|
}, function (_ref) {
|
|
var ref = _ref.ref,
|
|
style = _ref.style,
|
|
placement = _ref.placement,
|
|
outOfBoundaries = _ref.outOfBoundaries,
|
|
arrowProps = _ref.arrowProps,
|
|
scheduleUpdate = _ref.scheduleUpdate;
|
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
ref: ref,
|
|
style: style,
|
|
className: popperClassName,
|
|
"x-placement": placement,
|
|
"x-out-of-boundaries": outOfBoundaries ? 'true' : undefined
|
|
}, typeof children === 'function' ? children({
|
|
scheduleUpdate: scheduleUpdate
|
|
}) : children, !hideArrow && /*#__PURE__*/React__default.createElement("span", {
|
|
ref: arrowProps.ref,
|
|
className: arrowClassName,
|
|
style: arrowProps.style
|
|
}));
|
|
}));
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
this.setTargetNode(this.props.target);
|
|
|
|
if (this.state.isOpen) {
|
|
return this.props.container === 'inline' ? this.renderChildren() : /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/React__default.createElement("div", {
|
|
ref: this.getRef
|
|
}, this.renderChildren()), this.getContainerNode());
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
return PopperContent;
|
|
}(React__default.Component);
|
|
|
|
PopperContent.propTypes = propTypes$E;
|
|
PopperContent.defaultProps = defaultProps$z;
|
|
|
|
var PopperTargetHelper = function PopperTargetHelper(props, context) {
|
|
context.popperManager.setTargetNode(getTarget(props.target));
|
|
return null;
|
|
};
|
|
|
|
PopperTargetHelper.contextTypes = {
|
|
popperManager: propTypes.object.isRequired
|
|
};
|
|
PopperTargetHelper.propTypes = {
|
|
target: targetPropType.isRequired
|
|
};
|
|
|
|
var propTypes$F = {
|
|
children: propTypes.oneOfType([propTypes.node, propTypes.func]),
|
|
placement: propTypes.oneOf(PopperPlacements),
|
|
target: targetPropType.isRequired,
|
|
container: targetPropType,
|
|
isOpen: propTypes.bool,
|
|
disabled: propTypes.bool,
|
|
hideArrow: propTypes.bool,
|
|
boundariesElement: propTypes.oneOfType([propTypes.string, DOMElement]),
|
|
className: propTypes.string,
|
|
innerClassName: propTypes.string,
|
|
arrowClassName: propTypes.string,
|
|
popperClassName: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
toggle: propTypes.func,
|
|
autohide: propTypes.bool,
|
|
placementPrefix: propTypes.string,
|
|
delay: propTypes.oneOfType([propTypes.shape({
|
|
show: propTypes.number,
|
|
hide: propTypes.number
|
|
}), propTypes.number]),
|
|
modifiers: propTypes.object,
|
|
positionFixed: propTypes.bool,
|
|
offset: propTypes.oneOfType([propTypes.string, propTypes.number]),
|
|
innerRef: propTypes.oneOfType([propTypes.func, propTypes.string, propTypes.object]),
|
|
trigger: propTypes.string,
|
|
fade: propTypes.bool,
|
|
flip: propTypes.bool
|
|
};
|
|
var DEFAULT_DELAYS = {
|
|
show: 0,
|
|
hide: 50
|
|
};
|
|
var defaultProps$A = {
|
|
isOpen: false,
|
|
hideArrow: false,
|
|
autohide: false,
|
|
delay: DEFAULT_DELAYS,
|
|
toggle: function toggle() {},
|
|
trigger: 'click',
|
|
fade: true
|
|
};
|
|
|
|
function isInDOMSubtree(element, subtreeRoot) {
|
|
return subtreeRoot && (element === subtreeRoot || subtreeRoot.contains(element));
|
|
}
|
|
|
|
function isInDOMSubtrees(element, subtreeRoots) {
|
|
if (subtreeRoots === void 0) {
|
|
subtreeRoots = [];
|
|
}
|
|
|
|
return subtreeRoots && subtreeRoots.length && subtreeRoots.filter(function (subTreeRoot) {
|
|
return isInDOMSubtree(element, subTreeRoot);
|
|
})[0];
|
|
}
|
|
|
|
var TooltipPopoverWrapper = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(TooltipPopoverWrapper, _React$Component);
|
|
|
|
function TooltipPopoverWrapper(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this._targets = [];
|
|
_this.currentTargetElement = null;
|
|
_this.addTargetEvents = _this.addTargetEvents.bind(_assertThisInitialized(_this));
|
|
_this.handleDocumentClick = _this.handleDocumentClick.bind(_assertThisInitialized(_this));
|
|
_this.removeTargetEvents = _this.removeTargetEvents.bind(_assertThisInitialized(_this));
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
_this.showWithDelay = _this.showWithDelay.bind(_assertThisInitialized(_this));
|
|
_this.hideWithDelay = _this.hideWithDelay.bind(_assertThisInitialized(_this));
|
|
_this.onMouseOverTooltipContent = _this.onMouseOverTooltipContent.bind(_assertThisInitialized(_this));
|
|
_this.onMouseLeaveTooltipContent = _this.onMouseLeaveTooltipContent.bind(_assertThisInitialized(_this));
|
|
_this.show = _this.show.bind(_assertThisInitialized(_this));
|
|
_this.hide = _this.hide.bind(_assertThisInitialized(_this));
|
|
_this.onEscKeyDown = _this.onEscKeyDown.bind(_assertThisInitialized(_this));
|
|
_this.getRef = _this.getRef.bind(_assertThisInitialized(_this));
|
|
_this.state = {
|
|
isOpen: props.isOpen
|
|
};
|
|
_this._isMounted = false;
|
|
return _this;
|
|
}
|
|
|
|
var _proto = TooltipPopoverWrapper.prototype;
|
|
|
|
_proto.componentDidMount = function componentDidMount() {
|
|
this._isMounted = true;
|
|
this.updateTarget();
|
|
};
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
this._isMounted = false;
|
|
this.removeTargetEvents();
|
|
this._targets = null;
|
|
this.clearShowTimeout();
|
|
this.clearHideTimeout();
|
|
};
|
|
|
|
TooltipPopoverWrapper.getDerivedStateFromProps = function getDerivedStateFromProps(props, state) {
|
|
if (props.isOpen && !state.isOpen) {
|
|
return {
|
|
isOpen: props.isOpen
|
|
};
|
|
} else return null;
|
|
};
|
|
|
|
_proto.onMouseOverTooltipContent = function onMouseOverTooltipContent() {
|
|
if (this.props.trigger.indexOf('hover') > -1 && !this.props.autohide) {
|
|
if (this._hideTimeout) {
|
|
this.clearHideTimeout();
|
|
}
|
|
|
|
if (this.state.isOpen && !this.props.isOpen) {
|
|
this.toggle();
|
|
}
|
|
}
|
|
};
|
|
|
|
_proto.onMouseLeaveTooltipContent = function onMouseLeaveTooltipContent(e) {
|
|
if (this.props.trigger.indexOf('hover') > -1 && !this.props.autohide) {
|
|
if (this._showTimeout) {
|
|
this.clearShowTimeout();
|
|
}
|
|
|
|
e.persist();
|
|
this._hideTimeout = setTimeout(this.hide.bind(this, e), this.getDelay('hide'));
|
|
}
|
|
};
|
|
|
|
_proto.onEscKeyDown = function onEscKeyDown(e) {
|
|
if (e.key === 'Escape') {
|
|
this.hide(e);
|
|
}
|
|
};
|
|
|
|
_proto.getRef = function getRef(ref) {
|
|
var innerRef = this.props.innerRef;
|
|
|
|
if (innerRef) {
|
|
if (typeof innerRef === 'function') {
|
|
innerRef(ref);
|
|
} else if (typeof innerRef === 'object') {
|
|
innerRef.current = ref;
|
|
}
|
|
}
|
|
|
|
this._popover = ref;
|
|
};
|
|
|
|
_proto.getDelay = function getDelay(key) {
|
|
var delay = this.props.delay;
|
|
|
|
if (typeof delay === 'object') {
|
|
return isNaN(delay[key]) ? DEFAULT_DELAYS[key] : delay[key];
|
|
}
|
|
|
|
return delay;
|
|
};
|
|
|
|
_proto.getCurrentTarget = function getCurrentTarget(target) {
|
|
if (!target) return null;
|
|
|
|
var index = this._targets.indexOf(target);
|
|
|
|
if (index >= 0) return this._targets[index];
|
|
return this.getCurrentTarget(target.parentElement);
|
|
};
|
|
|
|
_proto.show = function show(e) {
|
|
if (!this.props.isOpen) {
|
|
this.clearShowTimeout();
|
|
this.currentTargetElement = e ? e.currentTarget || this.getCurrentTarget(e.target) : null;
|
|
|
|
if (e && e.composedPath && typeof e.composedPath === 'function') {
|
|
var path = e.composedPath();
|
|
this.currentTargetElement = path && path[0] || this.currentTargetElement;
|
|
}
|
|
|
|
this.toggle(e);
|
|
}
|
|
};
|
|
|
|
_proto.showWithDelay = function showWithDelay(e) {
|
|
if (this._hideTimeout) {
|
|
this.clearHideTimeout();
|
|
}
|
|
|
|
this._showTimeout = setTimeout(this.show.bind(this, e), this.getDelay('show'));
|
|
};
|
|
|
|
_proto.hide = function hide(e) {
|
|
if (this.props.isOpen) {
|
|
this.clearHideTimeout();
|
|
this.currentTargetElement = null;
|
|
this.toggle(e);
|
|
}
|
|
};
|
|
|
|
_proto.hideWithDelay = function hideWithDelay(e) {
|
|
if (this._showTimeout) {
|
|
this.clearShowTimeout();
|
|
}
|
|
|
|
this._hideTimeout = setTimeout(this.hide.bind(this, e), this.getDelay('hide'));
|
|
};
|
|
|
|
_proto.clearShowTimeout = function clearShowTimeout() {
|
|
clearTimeout(this._showTimeout);
|
|
this._showTimeout = undefined;
|
|
};
|
|
|
|
_proto.clearHideTimeout = function clearHideTimeout() {
|
|
clearTimeout(this._hideTimeout);
|
|
this._hideTimeout = undefined;
|
|
};
|
|
|
|
_proto.handleDocumentClick = function handleDocumentClick(e) {
|
|
var triggers = this.props.trigger.split(' ');
|
|
|
|
if (triggers.indexOf('legacy') > -1 && (this.props.isOpen || isInDOMSubtrees(e.target, this._targets))) {
|
|
if (this._hideTimeout) {
|
|
this.clearHideTimeout();
|
|
}
|
|
|
|
if (this.props.isOpen && !isInDOMSubtree(e.target, this._popover)) {
|
|
this.hideWithDelay(e);
|
|
} else if (!this.props.isOpen) {
|
|
this.showWithDelay(e);
|
|
}
|
|
} else if (triggers.indexOf('click') > -1 && isInDOMSubtrees(e.target, this._targets)) {
|
|
if (this._hideTimeout) {
|
|
this.clearHideTimeout();
|
|
}
|
|
|
|
if (!this.props.isOpen) {
|
|
this.showWithDelay(e);
|
|
} else {
|
|
this.hideWithDelay(e);
|
|
}
|
|
}
|
|
};
|
|
|
|
_proto.addEventOnTargets = function addEventOnTargets(type, handler, isBubble) {
|
|
this._targets.forEach(function (target) {
|
|
target.addEventListener(type, handler, isBubble);
|
|
});
|
|
};
|
|
|
|
_proto.removeEventOnTargets = function removeEventOnTargets(type, handler, isBubble) {
|
|
this._targets.forEach(function (target) {
|
|
target.removeEventListener(type, handler, isBubble);
|
|
});
|
|
};
|
|
|
|
_proto.addTargetEvents = function addTargetEvents() {
|
|
if (this.props.trigger) {
|
|
var triggers = this.props.trigger.split(' ');
|
|
|
|
if (triggers.indexOf('manual') === -1) {
|
|
if (triggers.indexOf('click') > -1 || triggers.indexOf('legacy') > -1) {
|
|
document.addEventListener('click', this.handleDocumentClick, true);
|
|
}
|
|
|
|
if (this._targets && this._targets.length) {
|
|
if (triggers.indexOf('hover') > -1) {
|
|
this.addEventOnTargets('mouseover', this.showWithDelay, true);
|
|
this.addEventOnTargets('mouseout', this.hideWithDelay, true);
|
|
}
|
|
|
|
if (triggers.indexOf('focus') > -1) {
|
|
this.addEventOnTargets('focusin', this.show, true);
|
|
this.addEventOnTargets('focusout', this.hide, true);
|
|
}
|
|
|
|
this.addEventOnTargets('keydown', this.onEscKeyDown, true);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
_proto.removeTargetEvents = function removeTargetEvents() {
|
|
if (this._targets) {
|
|
this.removeEventOnTargets('mouseover', this.showWithDelay, true);
|
|
this.removeEventOnTargets('mouseout', this.hideWithDelay, true);
|
|
this.removeEventOnTargets('keydown', this.onEscKeyDown, true);
|
|
this.removeEventOnTargets('focusin', this.show, true);
|
|
this.removeEventOnTargets('focusout', this.hide, true);
|
|
}
|
|
|
|
document.removeEventListener('click', this.handleDocumentClick, true);
|
|
};
|
|
|
|
_proto.updateTarget = function updateTarget() {
|
|
var newTarget = getTarget(this.props.target, true);
|
|
|
|
if (newTarget !== this._targets) {
|
|
this.removeTargetEvents();
|
|
this._targets = newTarget ? Array.from(newTarget) : [];
|
|
this.currentTargetElement = this.currentTargetElement || this._targets[0];
|
|
this.addTargetEvents();
|
|
}
|
|
};
|
|
|
|
_proto.toggle = function toggle(e) {
|
|
if (this.props.disabled || !this._isMounted) {
|
|
return e && e.preventDefault();
|
|
}
|
|
|
|
return this.props.toggle(e);
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this2 = this;
|
|
|
|
if (this.props.isOpen) {
|
|
this.updateTarget();
|
|
}
|
|
|
|
var target = this.currentTargetElement || this._targets[0];
|
|
|
|
if (!target) {
|
|
return null;
|
|
}
|
|
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
cssModule = _this$props.cssModule,
|
|
innerClassName = _this$props.innerClassName,
|
|
isOpen = _this$props.isOpen,
|
|
hideArrow = _this$props.hideArrow,
|
|
boundariesElement = _this$props.boundariesElement,
|
|
placement = _this$props.placement,
|
|
placementPrefix = _this$props.placementPrefix,
|
|
arrowClassName = _this$props.arrowClassName,
|
|
popperClassName = _this$props.popperClassName,
|
|
container = _this$props.container,
|
|
modifiers = _this$props.modifiers,
|
|
positionFixed = _this$props.positionFixed,
|
|
offset = _this$props.offset,
|
|
fade = _this$props.fade,
|
|
flip = _this$props.flip,
|
|
children = _this$props.children;
|
|
var attributes = omit(this.props, Object.keys(propTypes$F));
|
|
var popperClasses = mapToCssModules(popperClassName, cssModule);
|
|
var classes = mapToCssModules(innerClassName, cssModule);
|
|
return /*#__PURE__*/React__default.createElement(PopperContent, {
|
|
className: className,
|
|
target: target,
|
|
isOpen: isOpen,
|
|
hideArrow: hideArrow,
|
|
boundariesElement: boundariesElement,
|
|
placement: placement,
|
|
placementPrefix: placementPrefix,
|
|
arrowClassName: arrowClassName,
|
|
popperClassName: popperClasses,
|
|
container: container,
|
|
modifiers: modifiers,
|
|
positionFixed: positionFixed,
|
|
offset: offset,
|
|
cssModule: cssModule,
|
|
fade: fade,
|
|
flip: flip
|
|
}, function (_ref) {
|
|
var scheduleUpdate = _ref.scheduleUpdate;
|
|
return /*#__PURE__*/React__default.createElement("div", _extends({}, attributes, {
|
|
ref: _this2.getRef,
|
|
className: classes,
|
|
role: "tooltip",
|
|
onMouseOver: _this2.onMouseOverTooltipContent,
|
|
onMouseLeave: _this2.onMouseLeaveTooltipContent,
|
|
onKeyDown: _this2.onEscKeyDown
|
|
}), typeof children === 'function' ? children({
|
|
scheduleUpdate: scheduleUpdate
|
|
}) : children);
|
|
});
|
|
};
|
|
|
|
return TooltipPopoverWrapper;
|
|
}(React__default.Component);
|
|
|
|
TooltipPopoverWrapper.propTypes = propTypes$F;
|
|
TooltipPopoverWrapper.defaultProps = defaultProps$A;
|
|
|
|
var defaultProps$B = {
|
|
placement: 'right',
|
|
placementPrefix: 'bs-popover',
|
|
trigger: 'click'
|
|
};
|
|
|
|
var Popover = function Popover(props) {
|
|
var popperClasses = classnames('popover', 'show', props.popperClassName);
|
|
var classes = classnames('popover-inner', props.innerClassName);
|
|
return /*#__PURE__*/React__default.createElement(TooltipPopoverWrapper, _extends({}, props, {
|
|
popperClassName: popperClasses,
|
|
innerClassName: classes
|
|
}));
|
|
};
|
|
|
|
Popover.propTypes = propTypes$F;
|
|
Popover.defaultProps = defaultProps$B;
|
|
|
|
var omitKeys = ['defaultOpen'];
|
|
|
|
var UncontrolledPopover = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(UncontrolledPopover, _Component);
|
|
|
|
function UncontrolledPopover(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.state = {
|
|
isOpen: props.defaultOpen || false
|
|
};
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = UncontrolledPopover.prototype;
|
|
|
|
_proto.toggle = function toggle() {
|
|
this.setState({
|
|
isOpen: !this.state.isOpen
|
|
});
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return /*#__PURE__*/React__default.createElement(Popover, _extends({
|
|
isOpen: this.state.isOpen,
|
|
toggle: this.toggle
|
|
}, omit(this.props, omitKeys)));
|
|
};
|
|
|
|
return UncontrolledPopover;
|
|
}(React.Component);
|
|
UncontrolledPopover.propTypes = _extends({
|
|
defaultOpen: propTypes.bool
|
|
}, Popover.propTypes);
|
|
|
|
var propTypes$G = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$C = {
|
|
tag: 'h3'
|
|
};
|
|
|
|
var PopoverHeader = function PopoverHeader(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'popover-header'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
PopoverHeader.propTypes = propTypes$G;
|
|
PopoverHeader.defaultProps = defaultProps$C;
|
|
|
|
var propTypes$H = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$D = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var PopoverBody = function PopoverBody(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'popover-body'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
PopoverBody.propTypes = propTypes$H;
|
|
PopoverBody.defaultProps = defaultProps$D;
|
|
|
|
var propTypes$I = {
|
|
children: propTypes.node,
|
|
bar: propTypes.bool,
|
|
multi: propTypes.bool,
|
|
tag: tagPropType,
|
|
value: propTypes.oneOfType([propTypes.string, propTypes.number]),
|
|
min: propTypes.oneOfType([propTypes.string, propTypes.number]),
|
|
max: propTypes.oneOfType([propTypes.string, propTypes.number]),
|
|
animated: propTypes.bool,
|
|
striped: propTypes.bool,
|
|
color: propTypes.string,
|
|
className: propTypes.string,
|
|
barClassName: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
style: propTypes.object,
|
|
barStyle: propTypes.object,
|
|
barAriaValueText: propTypes.string,
|
|
barAriaLabelledBy: propTypes.string
|
|
};
|
|
var defaultProps$E = {
|
|
tag: 'div',
|
|
value: 0,
|
|
min: 0,
|
|
max: 100,
|
|
style: {},
|
|
barStyle: {}
|
|
};
|
|
|
|
var Progress = function Progress(props) {
|
|
var children = props.children,
|
|
className = props.className,
|
|
barClassName = props.barClassName,
|
|
cssModule = props.cssModule,
|
|
value = props.value,
|
|
min = props.min,
|
|
max = props.max,
|
|
animated = props.animated,
|
|
striped = props.striped,
|
|
color = props.color,
|
|
bar = props.bar,
|
|
multi = props.multi,
|
|
Tag = props.tag,
|
|
style = props.style,
|
|
barStyle = props.barStyle,
|
|
barAriaValueText = props.barAriaValueText,
|
|
barAriaLabelledBy = props.barAriaLabelledBy,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["children", "className", "barClassName", "cssModule", "value", "min", "max", "animated", "striped", "color", "bar", "multi", "tag", "style", "barStyle", "barAriaValueText", "barAriaLabelledBy"]);
|
|
|
|
var percent = toNumber(value) / toNumber(max) * 100;
|
|
var progressClasses = mapToCssModules(classnames(className, 'progress'), cssModule);
|
|
var progressBarClasses = mapToCssModules(classnames('progress-bar', bar ? className || barClassName : barClassName, animated ? 'progress-bar-animated' : null, color ? "bg-" + color : null, striped || animated ? 'progress-bar-striped' : null), cssModule);
|
|
var progressBarProps = {
|
|
className: progressBarClasses,
|
|
style: _extends({}, bar ? style : {}, barStyle, {
|
|
width: percent + "%"
|
|
}),
|
|
role: 'progressbar',
|
|
'aria-valuenow': value,
|
|
'aria-valuemin': min,
|
|
'aria-valuemax': max,
|
|
'aria-valuetext': barAriaValueText,
|
|
'aria-labelledby': barAriaLabelledBy,
|
|
children: children
|
|
};
|
|
|
|
if (bar) {
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, progressBarProps));
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
style: style,
|
|
className: progressClasses
|
|
}), multi ? children : /*#__PURE__*/React__default.createElement("div", progressBarProps));
|
|
};
|
|
|
|
Progress.propTypes = propTypes$I;
|
|
Progress.defaultProps = defaultProps$E;
|
|
|
|
var propTypes$J = {
|
|
children: propTypes.node.isRequired,
|
|
node: propTypes.any
|
|
};
|
|
|
|
var Portal$1 = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(Portal, _React$Component);
|
|
|
|
function Portal() {
|
|
return _React$Component.apply(this, arguments) || this;
|
|
}
|
|
|
|
var _proto = Portal.prototype;
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
if (this.defaultNode) {
|
|
document.body.removeChild(this.defaultNode);
|
|
}
|
|
|
|
this.defaultNode = null;
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
if (!canUseDOM) {
|
|
return null;
|
|
}
|
|
|
|
if (!this.props.node && !this.defaultNode) {
|
|
this.defaultNode = document.createElement('div');
|
|
document.body.appendChild(this.defaultNode);
|
|
}
|
|
|
|
return /*#__PURE__*/ReactDOM.createPortal(this.props.children, this.props.node || this.defaultNode);
|
|
};
|
|
|
|
return Portal;
|
|
}(React__default.Component);
|
|
|
|
Portal$1.propTypes = propTypes$J;
|
|
|
|
function noop$1() {}
|
|
|
|
var FadePropTypes = propTypes.shape(Fade.propTypes);
|
|
var propTypes$K = {
|
|
isOpen: propTypes.bool,
|
|
autoFocus: propTypes.bool,
|
|
centered: propTypes.bool,
|
|
scrollable: propTypes.bool,
|
|
size: propTypes.string,
|
|
toggle: propTypes.func,
|
|
keyboard: propTypes.bool,
|
|
role: propTypes.string,
|
|
labelledBy: propTypes.string,
|
|
backdrop: propTypes.oneOfType([propTypes.bool, propTypes.oneOf(['static'])]),
|
|
onEnter: propTypes.func,
|
|
onExit: propTypes.func,
|
|
onOpened: propTypes.func,
|
|
onClosed: propTypes.func,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
wrapClassName: propTypes.string,
|
|
modalClassName: propTypes.string,
|
|
backdropClassName: propTypes.string,
|
|
contentClassName: propTypes.string,
|
|
external: propTypes.node,
|
|
fade: propTypes.bool,
|
|
cssModule: propTypes.object,
|
|
zIndex: propTypes.oneOfType([propTypes.number, propTypes.string]),
|
|
backdropTransition: FadePropTypes,
|
|
modalTransition: FadePropTypes,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func]),
|
|
unmountOnClose: propTypes.bool,
|
|
returnFocusAfterClose: propTypes.bool,
|
|
container: targetPropType,
|
|
trapFocus: propTypes.bool
|
|
};
|
|
var propsToOmit = Object.keys(propTypes$K);
|
|
var defaultProps$F = {
|
|
isOpen: false,
|
|
autoFocus: true,
|
|
centered: false,
|
|
scrollable: false,
|
|
role: 'dialog',
|
|
backdrop: true,
|
|
keyboard: true,
|
|
zIndex: 1050,
|
|
fade: true,
|
|
onOpened: noop$1,
|
|
onClosed: noop$1,
|
|
modalTransition: {
|
|
timeout: TransitionTimeouts.Modal
|
|
},
|
|
backdropTransition: {
|
|
mountOnEnter: true,
|
|
timeout: TransitionTimeouts.Fade // uses standard fade transition
|
|
|
|
},
|
|
unmountOnClose: true,
|
|
returnFocusAfterClose: true,
|
|
container: 'body',
|
|
trapFocus: false
|
|
};
|
|
|
|
var Modal = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(Modal, _React$Component);
|
|
|
|
function Modal(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this._element = null;
|
|
_this._originalBodyPadding = null;
|
|
_this.getFocusableChildren = _this.getFocusableChildren.bind(_assertThisInitialized(_this));
|
|
_this.handleBackdropClick = _this.handleBackdropClick.bind(_assertThisInitialized(_this));
|
|
_this.handleBackdropMouseDown = _this.handleBackdropMouseDown.bind(_assertThisInitialized(_this));
|
|
_this.handleEscape = _this.handleEscape.bind(_assertThisInitialized(_this));
|
|
_this.handleStaticBackdropAnimation = _this.handleStaticBackdropAnimation.bind(_assertThisInitialized(_this));
|
|
_this.handleTab = _this.handleTab.bind(_assertThisInitialized(_this));
|
|
_this.onOpened = _this.onOpened.bind(_assertThisInitialized(_this));
|
|
_this.onClosed = _this.onClosed.bind(_assertThisInitialized(_this));
|
|
_this.manageFocusAfterClose = _this.manageFocusAfterClose.bind(_assertThisInitialized(_this));
|
|
_this.clearBackdropAnimationTimeout = _this.clearBackdropAnimationTimeout.bind(_assertThisInitialized(_this));
|
|
_this.trapFocus = _this.trapFocus.bind(_assertThisInitialized(_this));
|
|
_this.state = {
|
|
isOpen: false,
|
|
showStaticBackdropAnimation: false
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Modal.prototype;
|
|
|
|
_proto.componentDidMount = function componentDidMount() {
|
|
var _this$props = this.props,
|
|
isOpen = _this$props.isOpen,
|
|
autoFocus = _this$props.autoFocus,
|
|
onEnter = _this$props.onEnter;
|
|
|
|
if (isOpen) {
|
|
this.init();
|
|
this.setState({
|
|
isOpen: true
|
|
});
|
|
|
|
if (autoFocus) {
|
|
this.setFocus();
|
|
}
|
|
}
|
|
|
|
if (onEnter) {
|
|
onEnter();
|
|
} // traps focus inside the Modal, even if the browser address bar is focused
|
|
|
|
|
|
document.addEventListener('focus', this.trapFocus, true);
|
|
this._isMounted = true;
|
|
};
|
|
|
|
_proto.componentDidUpdate = function componentDidUpdate(prevProps, prevState) {
|
|
if (this.props.isOpen && !prevProps.isOpen) {
|
|
this.init();
|
|
this.setState({
|
|
isOpen: true
|
|
}); // let render() renders Modal Dialog first
|
|
|
|
return;
|
|
} // now Modal Dialog is rendered and we can refer this._element and this._dialog
|
|
|
|
|
|
if (this.props.autoFocus && this.state.isOpen && !prevState.isOpen) {
|
|
this.setFocus();
|
|
}
|
|
|
|
if (this._element && prevProps.zIndex !== this.props.zIndex) {
|
|
this._element.style.zIndex = this.props.zIndex;
|
|
}
|
|
};
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
this.clearBackdropAnimationTimeout();
|
|
|
|
if (this.props.onExit) {
|
|
this.props.onExit();
|
|
}
|
|
|
|
if (this._element) {
|
|
this.destroy();
|
|
|
|
if (this.props.isOpen || this.state.isOpen) {
|
|
this.close();
|
|
}
|
|
}
|
|
|
|
document.removeEventListener('focus', this.trapFocus, true);
|
|
this._isMounted = false;
|
|
};
|
|
|
|
_proto.trapFocus = function trapFocus(ev) {
|
|
if (!this.props.trapFocus) {
|
|
return;
|
|
}
|
|
|
|
if (!this._element) //element is not attached
|
|
return;
|
|
if (this._dialog && this._dialog.parentNode === ev.target) // initial focus when the Modal is opened
|
|
return;
|
|
if (this.modalIndex < Modal.openCount - 1) // last opened modal
|
|
return;
|
|
var children = this.getFocusableChildren();
|
|
|
|
for (var i = 0; i < children.length; i++) {
|
|
// focus is already inside the Modal
|
|
if (children[i] === ev.target) return;
|
|
}
|
|
|
|
if (children.length > 0) {
|
|
// otherwise focus the first focusable element in the Modal
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
children[0].focus();
|
|
}
|
|
};
|
|
|
|
_proto.onOpened = function onOpened(node, isAppearing) {
|
|
this.props.onOpened();
|
|
(this.props.modalTransition.onEntered || noop$1)(node, isAppearing);
|
|
};
|
|
|
|
_proto.onClosed = function onClosed(node) {
|
|
var unmountOnClose = this.props.unmountOnClose; // so all methods get called before it is unmounted
|
|
|
|
this.props.onClosed();
|
|
(this.props.modalTransition.onExited || noop$1)(node);
|
|
|
|
if (unmountOnClose) {
|
|
this.destroy();
|
|
}
|
|
|
|
this.close();
|
|
|
|
if (this._isMounted) {
|
|
this.setState({
|
|
isOpen: false
|
|
});
|
|
}
|
|
};
|
|
|
|
_proto.setFocus = function setFocus() {
|
|
if (this._dialog && this._dialog.parentNode && typeof this._dialog.parentNode.focus === 'function') {
|
|
this._dialog.parentNode.focus();
|
|
}
|
|
};
|
|
|
|
_proto.getFocusableChildren = function getFocusableChildren() {
|
|
return this._element.querySelectorAll(focusableElements.join(', '));
|
|
};
|
|
|
|
_proto.getFocusedChild = function getFocusedChild() {
|
|
var currentFocus;
|
|
var focusableChildren = this.getFocusableChildren();
|
|
|
|
try {
|
|
currentFocus = document.activeElement;
|
|
} catch (err) {
|
|
currentFocus = focusableChildren[0];
|
|
}
|
|
|
|
return currentFocus;
|
|
} // not mouseUp because scrollbar fires it, shouldn't close when user scrolls
|
|
;
|
|
|
|
_proto.handleBackdropClick = function handleBackdropClick(e) {
|
|
if (e.target === this._mouseDownElement) {
|
|
e.stopPropagation();
|
|
var backdrop = this._dialog ? this._dialog.parentNode : null;
|
|
|
|
if (backdrop && e.target === backdrop && this.props.backdrop === 'static') {
|
|
this.handleStaticBackdropAnimation();
|
|
}
|
|
|
|
if (!this.props.isOpen || this.props.backdrop !== true) return;
|
|
|
|
if (backdrop && e.target === backdrop && this.props.toggle) {
|
|
this.props.toggle(e);
|
|
}
|
|
}
|
|
};
|
|
|
|
_proto.handleTab = function handleTab(e) {
|
|
if (e.which !== 9) return;
|
|
if (this.modalIndex < Modal.openCount - 1) return; // last opened modal
|
|
|
|
var focusableChildren = this.getFocusableChildren();
|
|
var totalFocusable = focusableChildren.length;
|
|
if (totalFocusable === 0) return;
|
|
var currentFocus = this.getFocusedChild();
|
|
var focusedIndex = 0;
|
|
|
|
for (var i = 0; i < totalFocusable; i += 1) {
|
|
if (focusableChildren[i] === currentFocus) {
|
|
focusedIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (e.shiftKey && focusedIndex === 0) {
|
|
e.preventDefault();
|
|
focusableChildren[totalFocusable - 1].focus();
|
|
} else if (!e.shiftKey && focusedIndex === totalFocusable - 1) {
|
|
e.preventDefault();
|
|
focusableChildren[0].focus();
|
|
}
|
|
};
|
|
|
|
_proto.handleBackdropMouseDown = function handleBackdropMouseDown(e) {
|
|
this._mouseDownElement = e.target;
|
|
};
|
|
|
|
_proto.handleEscape = function handleEscape(e) {
|
|
if (this.props.isOpen && e.keyCode === keyCodes.esc && this.props.toggle) {
|
|
if (this.props.keyboard) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
this.props.toggle(e);
|
|
} else if (this.props.backdrop === 'static') {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
this.handleStaticBackdropAnimation();
|
|
}
|
|
}
|
|
};
|
|
|
|
_proto.handleStaticBackdropAnimation = function handleStaticBackdropAnimation() {
|
|
var _this2 = this;
|
|
|
|
this.clearBackdropAnimationTimeout();
|
|
this.setState({
|
|
showStaticBackdropAnimation: true
|
|
});
|
|
this._backdropAnimationTimeout = setTimeout(function () {
|
|
_this2.setState({
|
|
showStaticBackdropAnimation: false
|
|
});
|
|
}, 100);
|
|
};
|
|
|
|
_proto.init = function init() {
|
|
try {
|
|
this._triggeringElement = document.activeElement;
|
|
} catch (err) {
|
|
this._triggeringElement = null;
|
|
}
|
|
|
|
if (!this._element) {
|
|
this._element = document.createElement('div');
|
|
|
|
this._element.setAttribute('tabindex', '-1');
|
|
|
|
this._element.style.position = 'relative';
|
|
this._element.style.zIndex = this.props.zIndex;
|
|
this._mountContainer = getTarget(this.props.container);
|
|
|
|
this._mountContainer.appendChild(this._element);
|
|
}
|
|
|
|
this._originalBodyPadding = getOriginalBodyPadding();
|
|
conditionallyUpdateScrollbar();
|
|
|
|
if (Modal.openCount === 0) {
|
|
document.body.className = classnames(document.body.className, mapToCssModules('modal-open', this.props.cssModule));
|
|
}
|
|
|
|
this.modalIndex = Modal.openCount;
|
|
Modal.openCount += 1;
|
|
};
|
|
|
|
_proto.destroy = function destroy() {
|
|
if (this._element) {
|
|
this._mountContainer.removeChild(this._element);
|
|
|
|
this._element = null;
|
|
}
|
|
|
|
this.manageFocusAfterClose();
|
|
};
|
|
|
|
_proto.manageFocusAfterClose = function manageFocusAfterClose() {
|
|
if (this._triggeringElement) {
|
|
var returnFocusAfterClose = this.props.returnFocusAfterClose;
|
|
if (this._triggeringElement.focus && returnFocusAfterClose) this._triggeringElement.focus();
|
|
this._triggeringElement = null;
|
|
}
|
|
};
|
|
|
|
_proto.close = function close() {
|
|
if (Modal.openCount <= 1) {
|
|
var modalOpenClassName = mapToCssModules('modal-open', this.props.cssModule); // Use regex to prevent matching `modal-open` as part of a different class, e.g. `my-modal-opened`
|
|
|
|
var modalOpenClassNameRegex = new RegExp("(^| )" + modalOpenClassName + "( |$)");
|
|
document.body.className = document.body.className.replace(modalOpenClassNameRegex, ' ').trim();
|
|
}
|
|
|
|
this.manageFocusAfterClose();
|
|
Modal.openCount = Math.max(0, Modal.openCount - 1);
|
|
setScrollbarWidth(this._originalBodyPadding);
|
|
};
|
|
|
|
_proto.renderModalDialog = function renderModalDialog() {
|
|
var _classNames,
|
|
_this3 = this;
|
|
|
|
var attributes = omit(this.props, propsToOmit);
|
|
var dialogBaseClass = 'modal-dialog';
|
|
return /*#__PURE__*/React__default.createElement("div", _extends({}, attributes, {
|
|
className: mapToCssModules(classnames(dialogBaseClass, this.props.className, (_classNames = {}, _classNames["modal-" + this.props.size] = this.props.size, _classNames[dialogBaseClass + "-centered"] = this.props.centered, _classNames[dialogBaseClass + "-scrollable"] = this.props.scrollable, _classNames)), this.props.cssModule),
|
|
role: "document",
|
|
ref: function ref(c) {
|
|
_this3._dialog = c;
|
|
}
|
|
}), /*#__PURE__*/React__default.createElement("div", {
|
|
className: mapToCssModules(classnames('modal-content', this.props.contentClassName), this.props.cssModule)
|
|
}, this.props.children));
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var unmountOnClose = this.props.unmountOnClose;
|
|
|
|
if (!!this._element && (this.state.isOpen || !unmountOnClose)) {
|
|
var isModalHidden = !!this._element && !this.state.isOpen && !unmountOnClose;
|
|
this._element.style.display = isModalHidden ? 'none' : 'block';
|
|
var _this$props2 = this.props,
|
|
wrapClassName = _this$props2.wrapClassName,
|
|
modalClassName = _this$props2.modalClassName,
|
|
backdropClassName = _this$props2.backdropClassName,
|
|
cssModule = _this$props2.cssModule,
|
|
isOpen = _this$props2.isOpen,
|
|
backdrop = _this$props2.backdrop,
|
|
role = _this$props2.role,
|
|
labelledBy = _this$props2.labelledBy,
|
|
external = _this$props2.external,
|
|
innerRef = _this$props2.innerRef;
|
|
var modalAttributes = {
|
|
onClick: this.handleBackdropClick,
|
|
onMouseDown: this.handleBackdropMouseDown,
|
|
onKeyUp: this.handleEscape,
|
|
onKeyDown: this.handleTab,
|
|
style: {
|
|
display: 'block'
|
|
},
|
|
'aria-labelledby': labelledBy,
|
|
role: role,
|
|
tabIndex: '-1'
|
|
};
|
|
var hasTransition = this.props.fade;
|
|
|
|
var modalTransition = _extends({}, Fade.defaultProps, this.props.modalTransition, {
|
|
baseClass: hasTransition ? this.props.modalTransition.baseClass : '',
|
|
timeout: hasTransition ? this.props.modalTransition.timeout : 0
|
|
});
|
|
|
|
var backdropTransition = _extends({}, Fade.defaultProps, this.props.backdropTransition, {
|
|
baseClass: hasTransition ? this.props.backdropTransition.baseClass : '',
|
|
timeout: hasTransition ? this.props.backdropTransition.timeout : 0
|
|
});
|
|
|
|
var Backdrop = backdrop && (hasTransition ? /*#__PURE__*/React__default.createElement(Fade, _extends({}, backdropTransition, {
|
|
in: isOpen && !!backdrop,
|
|
cssModule: cssModule,
|
|
className: mapToCssModules(classnames('modal-backdrop', backdropClassName), cssModule)
|
|
})) : /*#__PURE__*/React__default.createElement("div", {
|
|
className: mapToCssModules(classnames('modal-backdrop', 'show', backdropClassName), cssModule)
|
|
}));
|
|
return /*#__PURE__*/React__default.createElement(Portal$1, {
|
|
node: this._element
|
|
}, /*#__PURE__*/React__default.createElement("div", {
|
|
className: mapToCssModules(wrapClassName)
|
|
}, /*#__PURE__*/React__default.createElement(Fade, _extends({}, modalAttributes, modalTransition, {
|
|
in: isOpen,
|
|
onEntered: this.onOpened,
|
|
onExited: this.onClosed,
|
|
cssModule: cssModule,
|
|
className: mapToCssModules(classnames('modal', modalClassName, this.state.showStaticBackdropAnimation && 'modal-static'), cssModule),
|
|
innerRef: innerRef
|
|
}), external, this.renderModalDialog()), Backdrop));
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
_proto.clearBackdropAnimationTimeout = function clearBackdropAnimationTimeout() {
|
|
if (this._backdropAnimationTimeout) {
|
|
clearTimeout(this._backdropAnimationTimeout);
|
|
this._backdropAnimationTimeout = undefined;
|
|
}
|
|
};
|
|
|
|
return Modal;
|
|
}(React__default.Component);
|
|
|
|
Modal.propTypes = propTypes$K;
|
|
Modal.defaultProps = defaultProps$F;
|
|
Modal.openCount = 0;
|
|
|
|
var propTypes$L = {
|
|
tag: tagPropType,
|
|
wrapTag: tagPropType,
|
|
toggle: propTypes.func,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
children: propTypes.node,
|
|
closeAriaLabel: propTypes.string,
|
|
charCode: propTypes.oneOfType([propTypes.string, propTypes.number]),
|
|
close: propTypes.object
|
|
};
|
|
var defaultProps$G = {
|
|
tag: 'h5',
|
|
wrapTag: 'div',
|
|
closeAriaLabel: 'Close',
|
|
charCode: 215
|
|
};
|
|
|
|
var ModalHeader = function ModalHeader(props) {
|
|
var closeButton;
|
|
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
children = props.children,
|
|
toggle = props.toggle,
|
|
Tag = props.tag,
|
|
WrapTag = props.wrapTag,
|
|
closeAriaLabel = props.closeAriaLabel,
|
|
charCode = props.charCode,
|
|
close = props.close,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "children", "toggle", "tag", "wrapTag", "closeAriaLabel", "charCode", "close"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'modal-header'), cssModule);
|
|
|
|
if (!close && toggle) {
|
|
var closeIcon = typeof charCode === 'number' ? String.fromCharCode(charCode) : charCode;
|
|
closeButton = /*#__PURE__*/React__default.createElement("button", {
|
|
type: "button",
|
|
onClick: toggle,
|
|
className: mapToCssModules('close', cssModule),
|
|
"aria-label": closeAriaLabel
|
|
}, /*#__PURE__*/React__default.createElement("span", {
|
|
"aria-hidden": "true"
|
|
}, closeIcon));
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(WrapTag, _extends({}, attributes, {
|
|
className: classes
|
|
}), /*#__PURE__*/React__default.createElement(Tag, {
|
|
className: mapToCssModules('modal-title', cssModule)
|
|
}, children), close || closeButton);
|
|
};
|
|
|
|
ModalHeader.propTypes = propTypes$L;
|
|
ModalHeader.defaultProps = defaultProps$G;
|
|
|
|
var propTypes$M = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$H = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var ModalBody = function ModalBody(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'modal-body'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ModalBody.propTypes = propTypes$M;
|
|
ModalBody.defaultProps = defaultProps$H;
|
|
|
|
var propTypes$N = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$I = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var ModalFooter = function ModalFooter(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'modal-footer'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ModalFooter.propTypes = propTypes$N;
|
|
ModalFooter.defaultProps = defaultProps$I;
|
|
|
|
var defaultProps$J = {
|
|
placement: 'top',
|
|
autohide: true,
|
|
placementPrefix: 'bs-tooltip',
|
|
trigger: 'hover focus'
|
|
};
|
|
|
|
var Tooltip = function Tooltip(props) {
|
|
var popperClasses = classnames('tooltip', 'show', props.popperClassName);
|
|
var classes = classnames('tooltip-inner', props.innerClassName);
|
|
return /*#__PURE__*/React__default.createElement(TooltipPopoverWrapper, _extends({}, props, {
|
|
popperClassName: popperClasses,
|
|
innerClassName: classes
|
|
}));
|
|
};
|
|
|
|
Tooltip.propTypes = propTypes$F;
|
|
Tooltip.defaultProps = defaultProps$J;
|
|
|
|
var propTypes$O = {
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
size: propTypes.string,
|
|
bordered: propTypes.bool,
|
|
borderless: propTypes.bool,
|
|
striped: propTypes.bool,
|
|
dark: propTypes.bool,
|
|
hover: propTypes.bool,
|
|
responsive: propTypes.oneOfType([propTypes.bool, propTypes.string]),
|
|
tag: tagPropType,
|
|
responsiveTag: tagPropType,
|
|
innerRef: propTypes.oneOfType([propTypes.func, propTypes.string, propTypes.object])
|
|
};
|
|
var defaultProps$K = {
|
|
tag: 'table',
|
|
responsiveTag: 'div'
|
|
};
|
|
|
|
var Table = function Table(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
size = props.size,
|
|
bordered = props.bordered,
|
|
borderless = props.borderless,
|
|
striped = props.striped,
|
|
dark = props.dark,
|
|
hover = props.hover,
|
|
responsive = props.responsive,
|
|
Tag = props.tag,
|
|
ResponsiveTag = props.responsiveTag,
|
|
innerRef = props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "size", "bordered", "borderless", "striped", "dark", "hover", "responsive", "tag", "responsiveTag", "innerRef"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'table', size ? 'table-' + size : false, bordered ? 'table-bordered' : false, borderless ? 'table-borderless' : false, striped ? 'table-striped' : false, dark ? 'table-dark' : false, hover ? 'table-hover' : false), cssModule);
|
|
var table = /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
ref: innerRef,
|
|
className: classes
|
|
}));
|
|
|
|
if (responsive) {
|
|
var responsiveClassName = mapToCssModules(responsive === true ? 'table-responsive' : "table-responsive-" + responsive, cssModule);
|
|
return /*#__PURE__*/React__default.createElement(ResponsiveTag, {
|
|
className: responsiveClassName
|
|
}, table);
|
|
}
|
|
|
|
return table;
|
|
};
|
|
|
|
Table.propTypes = propTypes$O;
|
|
Table.defaultProps = defaultProps$K;
|
|
|
|
var propTypes$P = {
|
|
tag: tagPropType,
|
|
flush: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
horizontal: propTypes.oneOfType([propTypes.bool, propTypes.string])
|
|
};
|
|
var defaultProps$L = {
|
|
tag: 'ul',
|
|
horizontal: false
|
|
};
|
|
|
|
var getHorizontalClass = function getHorizontalClass(horizontal) {
|
|
if (horizontal === false) {
|
|
return false;
|
|
} else if (horizontal === true || horizontal === "xs") {
|
|
return "list-group-horizontal";
|
|
}
|
|
|
|
return "list-group-horizontal-" + horizontal;
|
|
};
|
|
|
|
var ListGroup = function ListGroup(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
flush = props.flush,
|
|
horizontal = props.horizontal,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "flush", "horizontal"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'list-group', // list-group-horizontal cannot currently be mixed with list-group-flush
|
|
// we only try to apply horizontal classes if flush is false
|
|
flush ? 'list-group-flush' : getHorizontalClass(horizontal)), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ListGroup.propTypes = propTypes$P;
|
|
ListGroup.defaultProps = defaultProps$L;
|
|
|
|
var propTypes$Q = {
|
|
children: propTypes.node,
|
|
inline: propTypes.bool,
|
|
tag: tagPropType,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.func, propTypes.string]),
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$M = {
|
|
tag: 'form'
|
|
};
|
|
|
|
var Form = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(Form, _Component);
|
|
|
|
function Form(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.getRef = _this.getRef.bind(_assertThisInitialized(_this));
|
|
_this.submit = _this.submit.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Form.prototype;
|
|
|
|
_proto.getRef = function getRef(ref) {
|
|
if (this.props.innerRef) {
|
|
this.props.innerRef(ref);
|
|
}
|
|
|
|
this.ref = ref;
|
|
};
|
|
|
|
_proto.submit = function submit() {
|
|
if (this.ref) {
|
|
this.ref.submit();
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
cssModule = _this$props.cssModule,
|
|
inline = _this$props.inline,
|
|
Tag = _this$props.tag,
|
|
innerRef = _this$props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(_this$props, ["className", "cssModule", "inline", "tag", "innerRef"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, inline ? 'form-inline' : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
ref: innerRef,
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
return Form;
|
|
}(React.Component);
|
|
|
|
Form.propTypes = propTypes$Q;
|
|
Form.defaultProps = defaultProps$M;
|
|
|
|
var propTypes$R = {
|
|
children: propTypes.node,
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
valid: propTypes.bool,
|
|
tooltip: propTypes.bool
|
|
};
|
|
var defaultProps$N = {
|
|
tag: 'div',
|
|
valid: undefined
|
|
};
|
|
|
|
var FormFeedback = function FormFeedback(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
valid = props.valid,
|
|
tooltip = props.tooltip,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "valid", "tooltip", "tag"]);
|
|
|
|
var validMode = tooltip ? 'tooltip' : 'feedback';
|
|
var classes = mapToCssModules(classnames(className, valid ? "valid-" + validMode : "invalid-" + validMode), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
FormFeedback.propTypes = propTypes$R;
|
|
FormFeedback.defaultProps = defaultProps$N;
|
|
|
|
var propTypes$S = {
|
|
children: propTypes.node,
|
|
row: propTypes.bool,
|
|
check: propTypes.bool,
|
|
inline: propTypes.bool,
|
|
disabled: propTypes.bool,
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$O = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var FormGroup = function FormGroup(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
row = props.row,
|
|
disabled = props.disabled,
|
|
check = props.check,
|
|
inline = props.inline,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "row", "disabled", "check", "inline", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, row ? 'row' : false, check ? 'form-check' : 'form-group', check && inline ? 'form-check-inline' : false, check && disabled ? 'disabled' : false), cssModule);
|
|
|
|
if (Tag === 'fieldset') {
|
|
attributes.disabled = disabled;
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
FormGroup.propTypes = propTypes$S;
|
|
FormGroup.defaultProps = defaultProps$O;
|
|
|
|
var propTypes$T = {
|
|
children: propTypes.node,
|
|
inline: propTypes.bool,
|
|
tag: tagPropType,
|
|
color: propTypes.string,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$P = {
|
|
tag: 'small',
|
|
color: 'muted'
|
|
};
|
|
|
|
var FormText = function FormText(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
inline = props.inline,
|
|
color = props.color,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "inline", "color", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, !inline ? 'form-text' : false, color ? "text-" + color : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
FormText.propTypes = propTypes$T;
|
|
FormText.defaultProps = defaultProps$P;
|
|
|
|
var propTypes$U = {
|
|
children: propTypes.node,
|
|
type: propTypes.string,
|
|
size: propTypes.oneOfType([propTypes.number, propTypes.string]),
|
|
bsSize: propTypes.string,
|
|
valid: propTypes.bool,
|
|
invalid: propTypes.bool,
|
|
tag: tagPropType,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.func, propTypes.string]),
|
|
plaintext: propTypes.bool,
|
|
addon: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$Q = {
|
|
type: 'text'
|
|
};
|
|
|
|
var Input = /*#__PURE__*/function (_React$Component) {
|
|
_inheritsLoose(Input, _React$Component);
|
|
|
|
function Input(props) {
|
|
var _this;
|
|
|
|
_this = _React$Component.call(this, props) || this;
|
|
_this.getRef = _this.getRef.bind(_assertThisInitialized(_this));
|
|
_this.focus = _this.focus.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Input.prototype;
|
|
|
|
_proto.getRef = function getRef(ref) {
|
|
if (this.props.innerRef) {
|
|
this.props.innerRef(ref);
|
|
}
|
|
|
|
this.ref = ref;
|
|
};
|
|
|
|
_proto.focus = function focus() {
|
|
if (this.ref) {
|
|
this.ref.focus();
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
cssModule = _this$props.cssModule,
|
|
type = _this$props.type,
|
|
bsSize = _this$props.bsSize,
|
|
valid = _this$props.valid,
|
|
invalid = _this$props.invalid,
|
|
tag = _this$props.tag,
|
|
addon = _this$props.addon,
|
|
plaintext = _this$props.plaintext,
|
|
innerRef = _this$props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(_this$props, ["className", "cssModule", "type", "bsSize", "valid", "invalid", "tag", "addon", "plaintext", "innerRef"]);
|
|
|
|
var checkInput = ['radio', 'checkbox'].indexOf(type) > -1;
|
|
var isNotaNumber = new RegExp('\\D', 'g');
|
|
var fileInput = type === 'file';
|
|
var textareaInput = type === 'textarea';
|
|
var selectInput = type === 'select';
|
|
var rangeInput = type === 'range';
|
|
var Tag = tag || (selectInput || textareaInput ? type : 'input');
|
|
var formControlClass = 'form-control';
|
|
|
|
if (plaintext) {
|
|
formControlClass = formControlClass + "-plaintext";
|
|
Tag = tag || 'input';
|
|
} else if (fileInput) {
|
|
formControlClass = formControlClass + "-file";
|
|
} else if (rangeInput) {
|
|
formControlClass = formControlClass + "-range";
|
|
} else if (checkInput) {
|
|
if (addon) {
|
|
formControlClass = null;
|
|
} else {
|
|
formControlClass = 'form-check-input';
|
|
}
|
|
}
|
|
|
|
if (attributes.size && isNotaNumber.test(attributes.size)) {
|
|
warnOnce('Please use the prop "bsSize" instead of the "size" to bootstrap\'s input sizing.');
|
|
bsSize = attributes.size;
|
|
delete attributes.size;
|
|
}
|
|
|
|
var classes = mapToCssModules(classnames(className, invalid && 'is-invalid', valid && 'is-valid', bsSize ? "form-control-" + bsSize : false, formControlClass), cssModule);
|
|
|
|
if (Tag === 'input' || tag && typeof tag === 'function') {
|
|
attributes.type = type;
|
|
}
|
|
|
|
if (attributes.children && !(plaintext || type === 'select' || typeof Tag !== 'string' || Tag === 'select')) {
|
|
warnOnce("Input with a type of \"" + type + "\" cannot have children. Please use \"value\"/\"defaultValue\" instead.");
|
|
delete attributes.children;
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
ref: innerRef,
|
|
className: classes,
|
|
"aria-invalid": invalid
|
|
}));
|
|
};
|
|
|
|
return Input;
|
|
}(React__default.Component);
|
|
|
|
Input.propTypes = propTypes$U;
|
|
Input.defaultProps = defaultProps$Q;
|
|
|
|
var propTypes$V = {
|
|
tag: tagPropType,
|
|
size: propTypes.string,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$R = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var InputGroup = function InputGroup(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
size = props.size,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "size"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'input-group', size ? "input-group-" + size : null), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
InputGroup.propTypes = propTypes$V;
|
|
InputGroup.defaultProps = defaultProps$R;
|
|
|
|
var propTypes$W = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$S = {
|
|
tag: 'span'
|
|
};
|
|
|
|
var InputGroupText = function InputGroupText(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'input-group-text'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
InputGroupText.propTypes = propTypes$W;
|
|
InputGroupText.defaultProps = defaultProps$S;
|
|
|
|
var propTypes$X = {
|
|
tag: tagPropType,
|
|
addonType: propTypes.oneOf(['prepend', 'append']).isRequired,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$T = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var InputGroupAddon = function InputGroupAddon(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
addonType = props.addonType,
|
|
children = props.children,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "addonType", "children"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'input-group-' + addonType), cssModule); // Convenience to assist with transition
|
|
|
|
if (typeof children === 'string') {
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}), /*#__PURE__*/React__default.createElement(InputGroupText, {
|
|
children: children
|
|
}));
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
children: children
|
|
}));
|
|
};
|
|
|
|
InputGroupAddon.propTypes = propTypes$X;
|
|
InputGroupAddon.defaultProps = defaultProps$T;
|
|
|
|
var propTypes$Y = {
|
|
addonType: propTypes.oneOf(['prepend', 'append']).isRequired,
|
|
children: propTypes.node
|
|
};
|
|
|
|
var InputGroupButtonDropdown = function InputGroupButtonDropdown(props) {
|
|
return /*#__PURE__*/React__default.createElement(Dropdown, props);
|
|
};
|
|
|
|
InputGroupButtonDropdown.propTypes = propTypes$Y;
|
|
|
|
var colWidths$1 = ['xs', 'sm', 'md', 'lg', 'xl'];
|
|
var stringOrNumberProp$1 = propTypes.oneOfType([propTypes.number, propTypes.string]);
|
|
var columnProps$1 = propTypes.oneOfType([propTypes.bool, propTypes.string, propTypes.number, propTypes.shape({
|
|
size: stringOrNumberProp$1,
|
|
order: stringOrNumberProp$1,
|
|
offset: stringOrNumberProp$1
|
|
})]);
|
|
var propTypes$Z = {
|
|
children: propTypes.node,
|
|
hidden: propTypes.bool,
|
|
check: propTypes.bool,
|
|
size: propTypes.string,
|
|
for: propTypes.string,
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
xs: columnProps$1,
|
|
sm: columnProps$1,
|
|
md: columnProps$1,
|
|
lg: columnProps$1,
|
|
xl: columnProps$1,
|
|
widths: propTypes.array
|
|
};
|
|
var defaultProps$U = {
|
|
tag: 'label',
|
|
widths: colWidths$1
|
|
};
|
|
|
|
var getColumnSizeClass$1 = function getColumnSizeClass(isXs, colWidth, colSize) {
|
|
if (colSize === true || colSize === '') {
|
|
return isXs ? 'col' : "col-" + colWidth;
|
|
} else if (colSize === 'auto') {
|
|
return isXs ? 'col-auto' : "col-" + colWidth + "-auto";
|
|
}
|
|
|
|
return isXs ? "col-" + colSize : "col-" + colWidth + "-" + colSize;
|
|
};
|
|
|
|
var Label = function Label(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
hidden = props.hidden,
|
|
widths = props.widths,
|
|
Tag = props.tag,
|
|
check = props.check,
|
|
size = props.size,
|
|
htmlFor = props.for,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "hidden", "widths", "tag", "check", "size", "for"]);
|
|
|
|
var colClasses = [];
|
|
widths.forEach(function (colWidth, i) {
|
|
var columnProp = props[colWidth];
|
|
delete attributes[colWidth];
|
|
|
|
if (!columnProp && columnProp !== '') {
|
|
return;
|
|
}
|
|
|
|
var isXs = !i;
|
|
var colClass;
|
|
|
|
if (isObject(columnProp)) {
|
|
var _classNames;
|
|
|
|
var colSizeInterfix = isXs ? '-' : "-" + colWidth + "-";
|
|
colClass = getColumnSizeClass$1(isXs, colWidth, columnProp.size);
|
|
colClasses.push(mapToCssModules(classnames((_classNames = {}, _classNames[colClass] = columnProp.size || columnProp.size === '', _classNames["order" + colSizeInterfix + columnProp.order] = columnProp.order || columnProp.order === 0, _classNames["offset" + colSizeInterfix + columnProp.offset] = columnProp.offset || columnProp.offset === 0, _classNames))), cssModule);
|
|
} else {
|
|
colClass = getColumnSizeClass$1(isXs, colWidth, columnProp);
|
|
colClasses.push(colClass);
|
|
}
|
|
});
|
|
var classes = mapToCssModules(classnames(className, hidden ? 'sr-only' : false, check ? 'form-check-label' : false, size ? "col-form-label-" + size : false, colClasses, colClasses.length ? 'col-form-label' : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
htmlFor: htmlFor
|
|
}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Label.propTypes = propTypes$Z;
|
|
Label.defaultProps = defaultProps$U;
|
|
|
|
var propTypes$_ = {
|
|
body: propTypes.bool,
|
|
bottom: propTypes.bool,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
heading: propTypes.bool,
|
|
left: propTypes.bool,
|
|
list: propTypes.bool,
|
|
middle: propTypes.bool,
|
|
object: propTypes.bool,
|
|
right: propTypes.bool,
|
|
tag: tagPropType,
|
|
top: propTypes.bool
|
|
};
|
|
|
|
var Media = function Media(props) {
|
|
var body = props.body,
|
|
bottom = props.bottom,
|
|
className = props.className,
|
|
cssModule = props.cssModule,
|
|
heading = props.heading,
|
|
left = props.left,
|
|
list = props.list,
|
|
middle = props.middle,
|
|
object = props.object,
|
|
right = props.right,
|
|
tag = props.tag,
|
|
top = props.top,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["body", "bottom", "className", "cssModule", "heading", "left", "list", "middle", "object", "right", "tag", "top"]);
|
|
|
|
var defaultTag;
|
|
|
|
if (heading) {
|
|
defaultTag = 'h4';
|
|
} else if (attributes.href) {
|
|
defaultTag = 'a';
|
|
} else if (attributes.src || object) {
|
|
defaultTag = 'img';
|
|
} else if (list) {
|
|
defaultTag = 'ul';
|
|
} else {
|
|
defaultTag = 'div';
|
|
}
|
|
|
|
var Tag = tag || defaultTag;
|
|
var classes = mapToCssModules(classnames(className, {
|
|
'media-body': body,
|
|
'media-heading': heading,
|
|
'media-left': left,
|
|
'media-right': right,
|
|
'media-top': top,
|
|
'media-bottom': bottom,
|
|
'media-middle': middle,
|
|
'media-object': object,
|
|
'media-list': list,
|
|
media: !body && !heading && !left && !right && !top && !bottom && !middle && !object && !list
|
|
}), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Media.propTypes = propTypes$_;
|
|
|
|
var propTypes$$ = {
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
listClassName: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
size: propTypes.string,
|
|
tag: tagPropType,
|
|
listTag: tagPropType,
|
|
'aria-label': propTypes.string
|
|
};
|
|
var defaultProps$V = {
|
|
tag: 'nav',
|
|
listTag: 'ul',
|
|
'aria-label': 'pagination'
|
|
};
|
|
|
|
var Pagination = function Pagination(props) {
|
|
var _classNames;
|
|
|
|
var className = props.className,
|
|
listClassName = props.listClassName,
|
|
cssModule = props.cssModule,
|
|
size = props.size,
|
|
Tag = props.tag,
|
|
ListTag = props.listTag,
|
|
label = props['aria-label'],
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "listClassName", "cssModule", "size", "tag", "listTag", "aria-label"]);
|
|
|
|
var classes = mapToCssModules(classnames(className), cssModule);
|
|
var listClasses = mapToCssModules(classnames(listClassName, 'pagination', (_classNames = {}, _classNames["pagination-" + size] = !!size, _classNames)), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, {
|
|
className: classes,
|
|
"aria-label": label
|
|
}, /*#__PURE__*/React__default.createElement(ListTag, _extends({}, attributes, {
|
|
className: listClasses
|
|
})));
|
|
};
|
|
|
|
Pagination.propTypes = propTypes$$;
|
|
Pagination.defaultProps = defaultProps$V;
|
|
|
|
var propTypes$10 = {
|
|
active: propTypes.bool,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
disabled: propTypes.bool,
|
|
tag: tagPropType
|
|
};
|
|
var defaultProps$W = {
|
|
tag: 'li'
|
|
};
|
|
|
|
var PaginationItem = function PaginationItem(props) {
|
|
var active = props.active,
|
|
className = props.className,
|
|
cssModule = props.cssModule,
|
|
disabled = props.disabled,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["active", "className", "cssModule", "disabled", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'page-item', {
|
|
active: active,
|
|
disabled: disabled
|
|
}), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
PaginationItem.propTypes = propTypes$10;
|
|
PaginationItem.defaultProps = defaultProps$W;
|
|
|
|
var propTypes$11 = {
|
|
'aria-label': propTypes.string,
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
next: propTypes.bool,
|
|
previous: propTypes.bool,
|
|
first: propTypes.bool,
|
|
last: propTypes.bool,
|
|
tag: tagPropType
|
|
};
|
|
var defaultProps$X = {
|
|
tag: 'a'
|
|
};
|
|
|
|
var PaginationLink = function PaginationLink(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
next = props.next,
|
|
previous = props.previous,
|
|
first = props.first,
|
|
last = props.last,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "next", "previous", "first", "last", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'page-link'), cssModule);
|
|
var defaultAriaLabel;
|
|
|
|
if (previous) {
|
|
defaultAriaLabel = 'Previous';
|
|
} else if (next) {
|
|
defaultAriaLabel = 'Next';
|
|
} else if (first) {
|
|
defaultAriaLabel = 'First';
|
|
} else if (last) {
|
|
defaultAriaLabel = 'Last';
|
|
}
|
|
|
|
var ariaLabel = props['aria-label'] || defaultAriaLabel;
|
|
var defaultCaret;
|
|
|
|
if (previous) {
|
|
defaultCaret = "\u2039";
|
|
} else if (next) {
|
|
defaultCaret = "\u203A";
|
|
} else if (first) {
|
|
defaultCaret = "\xAB";
|
|
} else if (last) {
|
|
defaultCaret = "\xBB";
|
|
}
|
|
|
|
var children = props.children;
|
|
|
|
if (children && Array.isArray(children) && children.length === 0) {
|
|
children = null;
|
|
}
|
|
|
|
if (!attributes.href && Tag === 'a') {
|
|
Tag = 'button';
|
|
}
|
|
|
|
if (previous || next || first || last) {
|
|
children = [/*#__PURE__*/React__default.createElement("span", {
|
|
"aria-hidden": "true",
|
|
key: "caret"
|
|
}, children || defaultCaret), /*#__PURE__*/React__default.createElement("span", {
|
|
className: "sr-only",
|
|
key: "sr"
|
|
}, ariaLabel)];
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
"aria-label": ariaLabel
|
|
}), children);
|
|
};
|
|
|
|
PaginationLink.propTypes = propTypes$11;
|
|
PaginationLink.defaultProps = defaultProps$X;
|
|
|
|
/**
|
|
* TabContext
|
|
* {
|
|
* activeTabId: PropTypes.any
|
|
* }
|
|
*/
|
|
|
|
var TabContext = /*#__PURE__*/React__default.createContext({});
|
|
|
|
var propTypes$12 = {
|
|
tag: tagPropType,
|
|
activeTab: propTypes.any,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$Y = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var TabContent = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(TabContent, _Component);
|
|
|
|
TabContent.getDerivedStateFromProps = function getDerivedStateFromProps(nextProps, prevState) {
|
|
if (prevState.activeTab !== nextProps.activeTab) {
|
|
return {
|
|
activeTab: nextProps.activeTab
|
|
};
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
function TabContent(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.state = {
|
|
activeTab: _this.props.activeTab
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
var _proto = TabContent.prototype;
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
className = _this$props.className,
|
|
cssModule = _this$props.cssModule,
|
|
Tag = _this$props.tag;
|
|
var attributes = omit(this.props, Object.keys(propTypes$12));
|
|
var classes = mapToCssModules(classnames('tab-content', className), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(TabContext.Provider, {
|
|
value: {
|
|
activeTabId: this.state.activeTab
|
|
}
|
|
}, /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
})));
|
|
};
|
|
|
|
return TabContent;
|
|
}(React.Component);
|
|
TabContent.propTypes = propTypes$12;
|
|
TabContent.defaultProps = defaultProps$Y;
|
|
|
|
var propTypes$13 = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
tabId: propTypes.any
|
|
};
|
|
var defaultProps$Z = {
|
|
tag: 'div'
|
|
};
|
|
function TabPane(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
tabId = props.tabId,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tabId", "tag"]);
|
|
|
|
var getClasses = function getClasses(activeTabId) {
|
|
return mapToCssModules(classnames('tab-pane', className, {
|
|
active: tabId === activeTabId
|
|
}), cssModule);
|
|
};
|
|
|
|
return /*#__PURE__*/React__default.createElement(TabContext.Consumer, null, function (_ref) {
|
|
var activeTabId = _ref.activeTabId;
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: getClasses(activeTabId)
|
|
}));
|
|
});
|
|
}
|
|
TabPane.propTypes = propTypes$13;
|
|
TabPane.defaultProps = defaultProps$Z;
|
|
|
|
var propTypes$14 = {
|
|
tag: tagPropType,
|
|
fluid: propTypes.bool,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$_ = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var Jumbotron = function Jumbotron(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
fluid = props.fluid,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "fluid"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'jumbotron', fluid ? 'jumbotron-fluid' : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
Jumbotron.propTypes = propTypes$14;
|
|
Jumbotron.defaultProps = defaultProps$_;
|
|
|
|
var propTypes$15 = {
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
closeClassName: propTypes.string,
|
|
closeAriaLabel: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
color: propTypes.string,
|
|
fade: propTypes.bool,
|
|
isOpen: propTypes.bool,
|
|
toggle: propTypes.func,
|
|
tag: tagPropType,
|
|
transition: propTypes.shape(Fade.propTypes),
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
};
|
|
var defaultProps$$ = {
|
|
color: 'success',
|
|
isOpen: true,
|
|
tag: 'div',
|
|
closeAriaLabel: 'Close',
|
|
fade: true,
|
|
transition: _extends({}, Fade.defaultProps, {
|
|
unmountOnExit: true
|
|
})
|
|
};
|
|
|
|
function Alert(props) {
|
|
var className = props.className,
|
|
closeClassName = props.closeClassName,
|
|
closeAriaLabel = props.closeAriaLabel,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
color = props.color,
|
|
isOpen = props.isOpen,
|
|
toggle = props.toggle,
|
|
children = props.children,
|
|
transition = props.transition,
|
|
fade = props.fade,
|
|
innerRef = props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "closeClassName", "closeAriaLabel", "cssModule", "tag", "color", "isOpen", "toggle", "children", "transition", "fade", "innerRef"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'alert', "alert-" + color, {
|
|
'alert-dismissible': toggle
|
|
}), cssModule);
|
|
var closeClasses = mapToCssModules(classnames('close', closeClassName), cssModule);
|
|
|
|
var alertTransition = _extends({}, Fade.defaultProps, transition, {
|
|
baseClass: fade ? transition.baseClass : '',
|
|
timeout: fade ? transition.timeout : 0
|
|
});
|
|
|
|
return /*#__PURE__*/React__default.createElement(Fade, _extends({}, attributes, alertTransition, {
|
|
tag: Tag,
|
|
className: classes,
|
|
in: isOpen,
|
|
role: "alert",
|
|
innerRef: innerRef
|
|
}), toggle ? /*#__PURE__*/React__default.createElement("button", {
|
|
type: "button",
|
|
className: closeClasses,
|
|
"aria-label": closeAriaLabel,
|
|
onClick: toggle
|
|
}, /*#__PURE__*/React__default.createElement("span", {
|
|
"aria-hidden": "true"
|
|
}, "\xD7")) : null, children);
|
|
}
|
|
|
|
Alert.propTypes = propTypes$15;
|
|
Alert.defaultProps = defaultProps$$;
|
|
|
|
var propTypes$16 = {
|
|
children: propTypes.node,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
fade: propTypes.bool,
|
|
isOpen: propTypes.bool,
|
|
tag: tagPropType,
|
|
transition: propTypes.shape(Fade.propTypes),
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
};
|
|
var defaultProps$10 = {
|
|
isOpen: true,
|
|
tag: 'div',
|
|
fade: true,
|
|
transition: _extends({}, Fade.defaultProps, {
|
|
unmountOnExit: true
|
|
})
|
|
};
|
|
|
|
function Toast(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
isOpen = props.isOpen,
|
|
children = props.children,
|
|
transition = props.transition,
|
|
fade = props.fade,
|
|
innerRef = props.innerRef,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "isOpen", "children", "transition", "fade", "innerRef"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'toast'), cssModule);
|
|
|
|
var toastTransition = _extends({}, Fade.defaultProps, transition, {
|
|
baseClass: fade ? transition.baseClass : '',
|
|
timeout: fade ? transition.timeout : 0
|
|
});
|
|
|
|
return /*#__PURE__*/React__default.createElement(Fade, _extends({}, attributes, toastTransition, {
|
|
tag: Tag,
|
|
className: classes,
|
|
in: isOpen,
|
|
role: "alert",
|
|
innerRef: innerRef
|
|
}), children);
|
|
}
|
|
|
|
Toast.propTypes = propTypes$16;
|
|
Toast.defaultProps = defaultProps$10;
|
|
|
|
var propTypes$17 = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
innerRef: propTypes.oneOfType([propTypes.object, propTypes.string, propTypes.func])
|
|
};
|
|
var defaultProps$11 = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var ToastBody = function ToastBody(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
innerRef = props.innerRef,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "innerRef", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'toast-body'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
ref: innerRef
|
|
}));
|
|
};
|
|
|
|
ToastBody.propTypes = propTypes$17;
|
|
ToastBody.defaultProps = defaultProps$11;
|
|
|
|
var propTypes$18 = {
|
|
tag: tagPropType,
|
|
icon: propTypes.oneOfType([propTypes.string, propTypes.node]),
|
|
wrapTag: tagPropType,
|
|
toggle: propTypes.func,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
children: propTypes.node,
|
|
closeAriaLabel: propTypes.string,
|
|
charCode: propTypes.oneOfType([propTypes.string, propTypes.number]),
|
|
close: propTypes.object
|
|
};
|
|
var defaultProps$12 = {
|
|
tag: 'strong',
|
|
wrapTag: 'div',
|
|
tagClassName: 'mr-auto',
|
|
closeAriaLabel: 'Close',
|
|
charCode: 215
|
|
};
|
|
|
|
var ToastHeader = function ToastHeader(props) {
|
|
var closeButton;
|
|
var icon;
|
|
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
children = props.children,
|
|
toggle = props.toggle,
|
|
Tag = props.tag,
|
|
WrapTag = props.wrapTag,
|
|
closeAriaLabel = props.closeAriaLabel,
|
|
charCode = props.charCode,
|
|
close = props.close,
|
|
tagClassName = props.tagClassName,
|
|
iconProp = props.icon,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "children", "toggle", "tag", "wrapTag", "closeAriaLabel", "charCode", "close", "tagClassName", "icon"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'toast-header'), cssModule);
|
|
|
|
if (!close && toggle) {
|
|
var closeIcon = typeof charCode === 'number' ? String.fromCharCode(charCode) : charCode;
|
|
closeButton = /*#__PURE__*/React__default.createElement("button", {
|
|
type: "button",
|
|
onClick: toggle,
|
|
className: mapToCssModules('close', cssModule),
|
|
"aria-label": closeAriaLabel
|
|
}, /*#__PURE__*/React__default.createElement("span", {
|
|
"aria-hidden": "true"
|
|
}, closeIcon));
|
|
}
|
|
|
|
if (typeof iconProp === "string") {
|
|
icon = /*#__PURE__*/React__default.createElement("svg", {
|
|
className: mapToCssModules("rounded text-" + iconProp),
|
|
width: "20",
|
|
height: "20",
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
preserveAspectRatio: "xMidYMid slice",
|
|
focusable: "false",
|
|
role: "img"
|
|
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
fill: "currentColor",
|
|
width: "100%",
|
|
height: "100%"
|
|
}));
|
|
} else if (iconProp) {
|
|
icon = iconProp;
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(WrapTag, _extends({}, attributes, {
|
|
className: classes
|
|
}), icon, /*#__PURE__*/React__default.createElement(Tag, {
|
|
className: mapToCssModules(classnames(tagClassName, {
|
|
"ml-2": icon != null
|
|
}), cssModule)
|
|
}, children), close || closeButton);
|
|
};
|
|
|
|
ToastHeader.propTypes = propTypes$18;
|
|
ToastHeader.defaultProps = defaultProps$12;
|
|
|
|
var _transitionStatusToCl;
|
|
|
|
var propTypes$19 = _extends({}, reactTransitionGroup_1.propTypes, {
|
|
isOpen: propTypes.bool,
|
|
children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]),
|
|
tag: tagPropType,
|
|
className: propTypes.node,
|
|
navbar: propTypes.bool,
|
|
cssModule: propTypes.object,
|
|
innerRef: propTypes.oneOfType([propTypes.func, propTypes.string, propTypes.object])
|
|
});
|
|
|
|
var defaultProps$13 = _extends({}, reactTransitionGroup_1.defaultProps, {
|
|
isOpen: false,
|
|
appear: false,
|
|
enter: true,
|
|
exit: true,
|
|
tag: 'div',
|
|
timeout: TransitionTimeouts.Collapse
|
|
});
|
|
|
|
var transitionStatusToClassHash = (_transitionStatusToCl = {}, _transitionStatusToCl[TransitionStatuses.ENTERING] = 'collapsing', _transitionStatusToCl[TransitionStatuses.ENTERED] = 'collapse show', _transitionStatusToCl[TransitionStatuses.EXITING] = 'collapsing', _transitionStatusToCl[TransitionStatuses.EXITED] = 'collapse', _transitionStatusToCl);
|
|
|
|
function getTransitionClass(status) {
|
|
return transitionStatusToClassHash[status] || 'collapse';
|
|
}
|
|
|
|
function getHeight(node) {
|
|
return node.scrollHeight;
|
|
}
|
|
|
|
var Collapse = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(Collapse, _Component);
|
|
|
|
function Collapse(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.state = {
|
|
height: null
|
|
};
|
|
['onEntering', 'onEntered', 'onExit', 'onExiting', 'onExited'].forEach(function (name) {
|
|
_this[name] = _this[name].bind(_assertThisInitialized(_this));
|
|
});
|
|
return _this;
|
|
}
|
|
|
|
var _proto = Collapse.prototype;
|
|
|
|
_proto.onEntering = function onEntering(node, isAppearing) {
|
|
this.setState({
|
|
height: getHeight(node)
|
|
});
|
|
this.props.onEntering(node, isAppearing);
|
|
};
|
|
|
|
_proto.onEntered = function onEntered(node, isAppearing) {
|
|
this.setState({
|
|
height: null
|
|
});
|
|
this.props.onEntered(node, isAppearing);
|
|
};
|
|
|
|
_proto.onExit = function onExit(node) {
|
|
this.setState({
|
|
height: getHeight(node)
|
|
});
|
|
this.props.onExit(node);
|
|
};
|
|
|
|
_proto.onExiting = function onExiting(node) {
|
|
// getting this variable triggers a reflow
|
|
var _unused = node.offsetHeight; // eslint-disable-line no-unused-vars
|
|
|
|
this.setState({
|
|
height: 0
|
|
});
|
|
this.props.onExiting(node);
|
|
};
|
|
|
|
_proto.onExited = function onExited(node) {
|
|
this.setState({
|
|
height: null
|
|
});
|
|
this.props.onExited(node);
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
var _this2 = this;
|
|
|
|
var _this$props = this.props,
|
|
Tag = _this$props.tag,
|
|
isOpen = _this$props.isOpen,
|
|
className = _this$props.className,
|
|
navbar = _this$props.navbar,
|
|
cssModule = _this$props.cssModule,
|
|
children = _this$props.children,
|
|
innerRef = _this$props.innerRef,
|
|
otherProps = _objectWithoutPropertiesLoose(_this$props, ["tag", "isOpen", "className", "navbar", "cssModule", "children", "innerRef"]);
|
|
|
|
var height = this.state.height;
|
|
var transitionProps = pick(otherProps, TransitionPropTypeKeys);
|
|
var childProps = omit(otherProps, TransitionPropTypeKeys);
|
|
return /*#__PURE__*/React__default.createElement(reactTransitionGroup_1, _extends({}, transitionProps, {
|
|
in: isOpen,
|
|
onEntering: this.onEntering,
|
|
onEntered: this.onEntered,
|
|
onExit: this.onExit,
|
|
onExiting: this.onExiting,
|
|
onExited: this.onExited
|
|
}), function (status) {
|
|
var collapseClass = getTransitionClass(status);
|
|
var classes = mapToCssModules(classnames(className, collapseClass, navbar && 'navbar-collapse'), cssModule);
|
|
var style = height === null ? null : {
|
|
height: height
|
|
};
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, childProps, {
|
|
style: _extends({}, childProps.style, style),
|
|
className: classes,
|
|
ref: _this2.props.innerRef
|
|
}), children);
|
|
});
|
|
};
|
|
|
|
return Collapse;
|
|
}(React.Component);
|
|
|
|
Collapse.propTypes = propTypes$19;
|
|
Collapse.defaultProps = defaultProps$13;
|
|
|
|
var propTypes$1a = {
|
|
tag: tagPropType,
|
|
active: propTypes.bool,
|
|
disabled: propTypes.bool,
|
|
color: propTypes.string,
|
|
action: propTypes.bool,
|
|
className: propTypes.any,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$14 = {
|
|
tag: 'li'
|
|
};
|
|
|
|
var handleDisabledOnClick = function handleDisabledOnClick(e) {
|
|
e.preventDefault();
|
|
};
|
|
|
|
var ListGroupItem = function ListGroupItem(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
active = props.active,
|
|
disabled = props.disabled,
|
|
action = props.action,
|
|
color = props.color,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "active", "disabled", "action", "color"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, active ? 'active' : false, disabled ? 'disabled' : false, action ? 'list-group-item-action' : false, color ? "list-group-item-" + color : false, 'list-group-item'), cssModule); // Prevent click event when disabled.
|
|
|
|
if (disabled) {
|
|
attributes.onClick = handleDisabledOnClick;
|
|
}
|
|
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ListGroupItem.propTypes = propTypes$1a;
|
|
ListGroupItem.defaultProps = defaultProps$14;
|
|
|
|
var propTypes$1b = {
|
|
tag: tagPropType,
|
|
className: propTypes.any,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$15 = {
|
|
tag: 'h5'
|
|
};
|
|
|
|
var ListGroupItemHeading = function ListGroupItemHeading(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'list-group-item-heading'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ListGroupItemHeading.propTypes = propTypes$1b;
|
|
ListGroupItemHeading.defaultProps = defaultProps$15;
|
|
|
|
var propTypes$1c = {
|
|
tag: tagPropType,
|
|
className: propTypes.any,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$16 = {
|
|
tag: 'p'
|
|
};
|
|
|
|
var ListGroupItemText = function ListGroupItemText(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'list-group-item-text'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
ListGroupItemText.propTypes = propTypes$1c;
|
|
ListGroupItemText.defaultProps = defaultProps$16;
|
|
|
|
var propTypes$1d = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
type: propTypes.string
|
|
};
|
|
var defaultProps$17 = {
|
|
tag: 'ul'
|
|
};
|
|
var List = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
type = props.type,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag", "type"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, type ? "list-" + type : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
ref: ref
|
|
}));
|
|
});
|
|
List.propTypes = propTypes$1d;
|
|
List.defaultProps = defaultProps$17;
|
|
|
|
var propTypes$1e = {
|
|
tag: tagPropType,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object
|
|
};
|
|
var defaultProps$18 = {
|
|
tag: 'li'
|
|
};
|
|
var ListInlineItem = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, 'list-inline-item'), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({}, attributes, {
|
|
className: classes,
|
|
ref: ref
|
|
}));
|
|
});
|
|
ListInlineItem.propTypes = propTypes$1e;
|
|
ListInlineItem.defaultProps = defaultProps$18;
|
|
|
|
var UncontrolledAlert = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(UncontrolledAlert, _Component);
|
|
|
|
function UncontrolledAlert(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.state = {
|
|
isOpen: true
|
|
};
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = UncontrolledAlert.prototype;
|
|
|
|
_proto.toggle = function toggle() {
|
|
this.setState({
|
|
isOpen: !this.state.isOpen
|
|
});
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return /*#__PURE__*/React__default.createElement(Alert, _extends({
|
|
isOpen: this.state.isOpen,
|
|
toggle: this.toggle
|
|
}, this.props));
|
|
};
|
|
|
|
return UncontrolledAlert;
|
|
}(React.Component);
|
|
|
|
var omitKeys$1 = ['defaultOpen'];
|
|
|
|
var UncontrolledButtonDropdown = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(UncontrolledButtonDropdown, _Component);
|
|
|
|
function UncontrolledButtonDropdown(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.state = {
|
|
isOpen: props.defaultOpen || false
|
|
};
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = UncontrolledButtonDropdown.prototype;
|
|
|
|
_proto.toggle = function toggle() {
|
|
this.setState({
|
|
isOpen: !this.state.isOpen
|
|
});
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return /*#__PURE__*/React__default.createElement(ButtonDropdown, _extends({
|
|
isOpen: this.state.isOpen,
|
|
toggle: this.toggle
|
|
}, omit(this.props, omitKeys$1)));
|
|
};
|
|
|
|
return UncontrolledButtonDropdown;
|
|
}(React.Component);
|
|
UncontrolledButtonDropdown.propTypes = _extends({
|
|
defaultOpen: propTypes.bool
|
|
}, ButtonDropdown.propTypes);
|
|
|
|
var omitKeys$2 = ['toggleEvents', 'defaultOpen'];
|
|
var propTypes$1f = {
|
|
defaultOpen: propTypes.bool,
|
|
toggler: propTypes.string.isRequired,
|
|
toggleEvents: propTypes.arrayOf(propTypes.string)
|
|
};
|
|
var defaultProps$19 = {
|
|
toggleEvents: defaultToggleEvents
|
|
};
|
|
|
|
var UncontrolledCollapse = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(UncontrolledCollapse, _Component);
|
|
|
|
function UncontrolledCollapse(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.togglers = null;
|
|
_this.removeEventListeners = null;
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
_this.state = {
|
|
isOpen: props.defaultOpen || false
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
var _proto = UncontrolledCollapse.prototype;
|
|
|
|
_proto.componentDidMount = function componentDidMount() {
|
|
this.togglers = findDOMElements(this.props.toggler);
|
|
|
|
if (this.togglers.length) {
|
|
this.removeEventListeners = addMultipleEventListeners(this.togglers, this.toggle, this.props.toggleEvents);
|
|
}
|
|
};
|
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
if (this.togglers.length && this.removeEventListeners) {
|
|
this.removeEventListeners();
|
|
}
|
|
};
|
|
|
|
_proto.toggle = function toggle(e) {
|
|
this.setState(function (_ref) {
|
|
var isOpen = _ref.isOpen;
|
|
return {
|
|
isOpen: !isOpen
|
|
};
|
|
});
|
|
e.preventDefault();
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return /*#__PURE__*/React__default.createElement(Collapse, _extends({
|
|
isOpen: this.state.isOpen
|
|
}, omit(this.props, omitKeys$2)));
|
|
};
|
|
|
|
return UncontrolledCollapse;
|
|
}(React.Component);
|
|
|
|
UncontrolledCollapse.propTypes = propTypes$1f;
|
|
UncontrolledCollapse.defaultProps = defaultProps$19;
|
|
|
|
var omitKeys$3 = ['defaultOpen'];
|
|
|
|
var UncontrolledDropdown = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(UncontrolledDropdown, _Component);
|
|
|
|
function UncontrolledDropdown(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.state = {
|
|
isOpen: props.defaultOpen || false
|
|
};
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = UncontrolledDropdown.prototype;
|
|
|
|
_proto.toggle = function toggle(e) {
|
|
this.setState({
|
|
isOpen: !this.state.isOpen
|
|
});
|
|
|
|
if (this.props.onToggle) {
|
|
this.props.onToggle(e, !this.state.isOpen);
|
|
}
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return /*#__PURE__*/React__default.createElement(Dropdown, _extends({
|
|
isOpen: this.state.isOpen,
|
|
toggle: this.toggle
|
|
}, omit(this.props, omitKeys$3)));
|
|
};
|
|
|
|
return UncontrolledDropdown;
|
|
}(React.Component);
|
|
UncontrolledDropdown.propTypes = _extends({
|
|
defaultOpen: propTypes.bool,
|
|
onToggle: propTypes.func
|
|
}, Dropdown.propTypes);
|
|
|
|
var omitKeys$4 = ['defaultOpen'];
|
|
|
|
var UncontrolledTooltip = /*#__PURE__*/function (_Component) {
|
|
_inheritsLoose(UncontrolledTooltip, _Component);
|
|
|
|
function UncontrolledTooltip(props) {
|
|
var _this;
|
|
|
|
_this = _Component.call(this, props) || this;
|
|
_this.state = {
|
|
isOpen: props.defaultOpen || false
|
|
};
|
|
_this.toggle = _this.toggle.bind(_assertThisInitialized(_this));
|
|
return _this;
|
|
}
|
|
|
|
var _proto = UncontrolledTooltip.prototype;
|
|
|
|
_proto.toggle = function toggle() {
|
|
this.setState({
|
|
isOpen: !this.state.isOpen
|
|
});
|
|
};
|
|
|
|
_proto.render = function render() {
|
|
return /*#__PURE__*/React__default.createElement(Tooltip, _extends({
|
|
isOpen: this.state.isOpen,
|
|
toggle: this.toggle
|
|
}, omit(this.props, omitKeys$4)));
|
|
};
|
|
|
|
return UncontrolledTooltip;
|
|
}(React.Component);
|
|
UncontrolledTooltip.propTypes = _extends({
|
|
defaultOpen: propTypes.bool
|
|
}, Tooltip.propTypes);
|
|
|
|
var propTypes$1g = {
|
|
tag: tagPropType,
|
|
type: propTypes.string,
|
|
size: propTypes.string,
|
|
color: propTypes.string,
|
|
className: propTypes.string,
|
|
cssModule: propTypes.object,
|
|
children: propTypes.string
|
|
};
|
|
var defaultProps$1a = {
|
|
tag: 'div',
|
|
type: 'border',
|
|
children: 'Loading...'
|
|
};
|
|
|
|
var Spinner = function Spinner(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
type = props.type,
|
|
size = props.size,
|
|
color = props.color,
|
|
children = props.children,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "type", "size", "color", "children", "tag"]);
|
|
|
|
var classes = mapToCssModules(classnames(className, size ? "spinner-" + type + "-" + size : false, "spinner-" + type, color ? "text-" + color : false), cssModule);
|
|
return /*#__PURE__*/React__default.createElement(Tag, _extends({
|
|
role: "status"
|
|
}, attributes, {
|
|
className: classes
|
|
}), children && /*#__PURE__*/React__default.createElement("span", {
|
|
className: mapToCssModules('sr-only', cssModule)
|
|
}, children));
|
|
};
|
|
|
|
Spinner.propTypes = propTypes$1g;
|
|
Spinner.defaultProps = defaultProps$1a;
|
|
|
|
(function () {
|
|
if (typeof window !== 'object' || typeof window.CustomEvent === 'function') return;
|
|
|
|
var CustomEvent = function CustomEvent(event, params) {
|
|
params = params || {
|
|
bubbles: false,
|
|
cancelable: false,
|
|
detail: null
|
|
};
|
|
var evt = document.createEvent('CustomEvent');
|
|
evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
|
|
return evt;
|
|
};
|
|
|
|
window.CustomEvent = CustomEvent;
|
|
})();
|
|
|
|
(function () {
|
|
if (typeof Object.values === 'function') return;
|
|
|
|
var values = function values(O) {
|
|
return Object.keys(O).map(function (key) {
|
|
return O[key];
|
|
});
|
|
};
|
|
|
|
Object.values = values;
|
|
})();
|
|
|
|
var polyfill$4 = /*#__PURE__*/Object.freeze({
|
|
__proto__: null
|
|
});
|
|
|
|
exports.Alert = Alert;
|
|
exports.Badge = Badge;
|
|
exports.Breadcrumb = Breadcrumb;
|
|
exports.BreadcrumbItem = BreadcrumbItem;
|
|
exports.Button = Button;
|
|
exports.ButtonDropdown = ButtonDropdown;
|
|
exports.ButtonGroup = ButtonGroup;
|
|
exports.ButtonToggle = ButtonToggle;
|
|
exports.ButtonToolbar = ButtonToolbar;
|
|
exports.Card = Card;
|
|
exports.CardBody = CardBody;
|
|
exports.CardColumns = CardColumns;
|
|
exports.CardDeck = CardDeck;
|
|
exports.CardFooter = CardFooter;
|
|
exports.CardGroup = CardGroup;
|
|
exports.CardHeader = CardHeader;
|
|
exports.CardImg = CardImg;
|
|
exports.CardImgOverlay = CardImgOverlay;
|
|
exports.CardLink = CardLink;
|
|
exports.CardSubtitle = CardSubtitle;
|
|
exports.CardText = CardText;
|
|
exports.CardTitle = CardTitle;
|
|
exports.Carousel = Carousel;
|
|
exports.CarouselCaption = CarouselCaption;
|
|
exports.CarouselControl = CarouselControl;
|
|
exports.CarouselIndicators = CarouselIndicators;
|
|
exports.CarouselItem = CarouselItem;
|
|
exports.Col = Col;
|
|
exports.Collapse = Collapse;
|
|
exports.Container = Container;
|
|
exports.CustomFileInput = CustomFileInput;
|
|
exports.CustomInput = CustomInput;
|
|
exports.Dropdown = Dropdown;
|
|
exports.DropdownContext = DropdownContext;
|
|
exports.DropdownItem = DropdownItem;
|
|
exports.DropdownMenu = DropdownMenu;
|
|
exports.DropdownToggle = DropdownToggle;
|
|
exports.Fade = Fade;
|
|
exports.Form = Form;
|
|
exports.FormFeedback = FormFeedback;
|
|
exports.FormGroup = FormGroup;
|
|
exports.FormText = FormText;
|
|
exports.Input = Input;
|
|
exports.InputGroup = InputGroup;
|
|
exports.InputGroupAddon = InputGroupAddon;
|
|
exports.InputGroupButtonDropdown = InputGroupButtonDropdown;
|
|
exports.InputGroupText = InputGroupText;
|
|
exports.Jumbotron = Jumbotron;
|
|
exports.Label = Label;
|
|
exports.List = List;
|
|
exports.ListGroup = ListGroup;
|
|
exports.ListGroupItem = ListGroupItem;
|
|
exports.ListGroupItemHeading = ListGroupItemHeading;
|
|
exports.ListGroupItemText = ListGroupItemText;
|
|
exports.ListInlineItem = ListInlineItem;
|
|
exports.Media = Media;
|
|
exports.Modal = Modal;
|
|
exports.ModalBody = ModalBody;
|
|
exports.ModalFooter = ModalFooter;
|
|
exports.ModalHeader = ModalHeader;
|
|
exports.Nav = Nav;
|
|
exports.NavItem = NavItem;
|
|
exports.NavLink = NavLink;
|
|
exports.Navbar = Navbar;
|
|
exports.NavbarBrand = NavbarBrand;
|
|
exports.NavbarText = NavbarText;
|
|
exports.NavbarToggler = NavbarToggler;
|
|
exports.Pagination = Pagination;
|
|
exports.PaginationItem = PaginationItem;
|
|
exports.PaginationLink = PaginationLink;
|
|
exports.Polyfill = polyfill$4;
|
|
exports.Popover = Popover;
|
|
exports.PopoverBody = PopoverBody;
|
|
exports.PopoverHeader = PopoverHeader;
|
|
exports.PopperContent = PopperContent;
|
|
exports.PopperTargetHelper = PopperTargetHelper;
|
|
exports.Progress = Progress;
|
|
exports.Row = Row;
|
|
exports.Spinner = Spinner;
|
|
exports.TabContent = TabContent;
|
|
exports.TabPane = TabPane;
|
|
exports.Table = Table;
|
|
exports.Toast = Toast;
|
|
exports.ToastBody = ToastBody;
|
|
exports.ToastHeader = ToastHeader;
|
|
exports.Tooltip = Tooltip;
|
|
exports.UncontrolledAlert = UncontrolledAlert;
|
|
exports.UncontrolledButtonDropdown = UncontrolledButtonDropdown;
|
|
exports.UncontrolledCarousel = UncontrolledCarousel;
|
|
exports.UncontrolledCollapse = UncontrolledCollapse;
|
|
exports.UncontrolledDropdown = UncontrolledDropdown;
|
|
exports.UncontrolledPopover = UncontrolledPopover;
|
|
exports.UncontrolledTooltip = UncontrolledTooltip;
|
|
exports.Util = utils;
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
})));
|
|
//# sourceMappingURL=reactstrap.full.js.map
|