Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EuiDatePicker] Fix year dropdown when using minDate or maxDate #5069

Merged
merged 12 commits into from
Aug 26, 2021
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- Fixed location of default value of `EuiToolTip`'s `display` prop ([#5066](https://github.com/elastic/eui/pull/5066))
- Fixed default value of `EuiPagination`'s `activePage` to target first page ([#5053](https://github.com/elastic/eui/pull/5053))
- Fixed `EuiDatePicker` year dropdown when configured with `minDate` and/or `maxDate ([#5069](https://github.com/elastic/eui/pull/5069))
cchaos marked this conversation as resolved.
Show resolved Hide resolved

**Theme: Amsterdam**

Expand Down
172 changes: 86 additions & 86 deletions packages/react-datepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,6 @@ UntouchabilityChecker.prototype.isUntouchable = function isUntouchable(node) {

var tabbable_1 = tabbable;

var tabbable$1 = /*#__PURE__*/Object.freeze({
default: tabbable_1,
__moduleExports: tabbable_1
});

var immutable = extend;

var hasOwnProperty = Object.prototype.hasOwnProperty;
Expand All @@ -242,8 +237,6 @@ var immutable$1 = /*#__PURE__*/Object.freeze({
__moduleExports: immutable
});

var tabbable$2 = ( tabbable$1 && tabbable_1 ) || tabbable$1;

var xtend = ( immutable$1 && immutable ) || immutable$1;

var listeningFocusTrap = null;
Expand Down Expand Up @@ -425,7 +418,7 @@ function focusTrap(element, userOptions) {
if (container.contains(e.target)) return;
if (config.clickOutsideDeactivates) {
deactivate({
returnFocus: !tabbable$2.isFocusable(e.target)
returnFocus: !tabbable_1.isFocusable(e.target)
});
} else {
e.preventDefault();
Expand Down Expand Up @@ -480,7 +473,7 @@ function focusTrap(element, userOptions) {
}

function updateTabbableNodes() {
var tabbableNodes = tabbable$2(container);
var tabbableNodes = tabbable_1(container);
state.firstTabbableNode = tabbableNodes[0] || getInitialFocusNode();
state.lastTabbableNode =
tabbableNodes[tabbableNodes.length - 1] || getInitialFocusNode();
Expand Down Expand Up @@ -789,35 +782,35 @@ var YearDropdownOptions = function (_React$Component) {
var minYear = _this.props.minDate ? _this.props.minDate.year() : null;
var maxYear = _this.props.maxDate ? _this.props.maxDate.year() : null;

if (!maxYear || !_this.state.yearsList.find(function (year) {
return year === maxYear;
})) {
options.unshift(React__default.createElement(
"div",
{
className: "react-datepicker__year-option",
ref: "upcoming",
key: "upcoming",
onClick: _this.incrementYears
},
React__default.createElement("a", { className: "react-datepicker__navigation react-datepicker__navigation--years react-datepicker__navigation--years-upcoming" })
));
}

if (!minYear || !_this.state.yearsList.find(function (year) {
return year === minYear;
})) {
options.push(React__default.createElement(
"div",
{
className: "react-datepicker__year-option",
ref: "previous",
key: "previous",
onClick: _this.decrementYears
},
React__default.createElement("a", { className: "react-datepicker__navigation react-datepicker__navigation--years react-datepicker__navigation--years-previous" })
));
}
// These elements were hidden with `display: none;` by custom EUI styles,
// which caused problems when `minDate` or `maxDate` were configured: https://github.com/elastic/eui/issues/5058
// Keeping a reference for now, but we may opt for removing these
// elements entirely during https://github.com/elastic/eui/issues/3901
// if (!maxYear || !this.state.yearsList.find(year => year === maxYear)) {
// options.unshift(
// <div
// className="react-datepicker__year-option"
// ref={"upcoming"}
// key={"upcoming"}
// onClick={this.incrementYears}
// >
// <a className="react-datepicker__navigation react-datepicker__navigation--years react-datepicker__navigation--years-upcoming" />
// </div>
// );
// }

// if (!minYear || !this.state.yearsList.find(year => year === minYear)) {
// options.push(
// <div
// className="react-datepicker__year-option"
// ref={"previous"}
// key={"previous"}
// onClick={this.decrementYears}
// >
// <a className="react-datepicker__navigation react-datepicker__navigation--years react-datepicker__navigation--years-previous" />
// </div>
// );
// }

return options;
};
Expand Down Expand Up @@ -4554,18 +4547,11 @@ if (!Object.keys) {
}
var implementation = keysShim;

var implementation$1 = /*#__PURE__*/Object.freeze({
default: implementation,
__moduleExports: implementation
});

var require$$0 = ( implementation$1 && implementation ) || implementation$1;

var slice = Array.prototype.slice;


var origKeys = Object.keys;
var keysShim$1 = origKeys ? function keys(o) { return origKeys(o); } : require$$0;
var keysShim$1 = origKeys ? function keys(o) { return origKeys(o); } : implementation;

var originalKeys = Object.keys;

Expand Down Expand Up @@ -4633,6 +4619,13 @@ var shams = function hasSymbols() {
return true;
};

var shams$1 = /*#__PURE__*/Object.freeze({
default: shams,
__moduleExports: shams
});

var hasSymbolSham = ( shams$1 && shams ) || shams$1;

var origSymbol = typeof Symbol !== 'undefined' && Symbol;


Expand All @@ -4642,17 +4635,22 @@ var hasSymbols = function hasNativeSymbols() {
if (typeof origSymbol('foo') !== 'symbol') { return false; }
if (typeof Symbol('bar') !== 'symbol') { return false; }

return shams();
return hasSymbolSham();
};

var hasSymbols$1 = /*#__PURE__*/Object.freeze({
default: hasSymbols,
__moduleExports: hasSymbols
});

/* eslint no-invalid-this: 1 */

var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
var slice$1 = Array.prototype.slice;
var toStr$2 = Object.prototype.toString;
var funcType = '[object Function]';

var implementation$2 = function bind(that) {
var implementation$1 = function bind(that) {
var target = this;
if (typeof target !== 'function' || toStr$2.call(target) !== funcType) {
throw new TypeError(ERROR_MESSAGE + target);
Expand Down Expand Up @@ -4696,10 +4694,19 @@ var implementation$2 = function bind(that) {
return bound;
};

var functionBind = Function.prototype.bind || implementation$2;
var implementation$2 = /*#__PURE__*/Object.freeze({
default: implementation$1,
__moduleExports: implementation$1
});

var implementation$3 = ( implementation$2 && implementation$1 ) || implementation$2;

var functionBind = Function.prototype.bind || implementation$3;

var src = functionBind.call(Function.call, Object.prototype.hasOwnProperty);

var require$$0 = ( hasSymbols$1 && hasSymbols ) || hasSymbols$1;

var undefined$1;

var $SyntaxError = SyntaxError;
Expand Down Expand Up @@ -4740,7 +4747,7 @@ var ThrowTypeError = $gOPD
}())
: throwTypeError;

var hasSymbols$1 = hasSymbols();
var hasSymbols$2 = require$$0();

var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto

Expand All @@ -4752,7 +4759,7 @@ var INTRINSICS = {
'%AggregateError%': typeof AggregateError === 'undefined' ? undefined$1 : AggregateError,
'%Array%': Array,
'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined$1 : ArrayBuffer,
'%ArrayIteratorPrototype%': hasSymbols$1 ? getProto([][Symbol.iterator]()) : undefined$1,
'%ArrayIteratorPrototype%': hasSymbols$2 ? getProto([][Symbol.iterator]()) : undefined$1,
'%AsyncFromSyncIteratorPrototype%': undefined$1,
'%AsyncFunction%': needsEval,
'%AsyncGenerator%': needsEval,
Expand Down Expand Up @@ -4780,10 +4787,10 @@ var INTRINSICS = {
'%Int32Array%': typeof Int32Array === 'undefined' ? undefined$1 : Int32Array,
'%isFinite%': isFinite,
'%isNaN%': isNaN,
'%IteratorPrototype%': hasSymbols$1 ? getProto(getProto([][Symbol.iterator]())) : undefined$1,
'%IteratorPrototype%': hasSymbols$2 ? getProto(getProto([][Symbol.iterator]())) : undefined$1,
'%JSON%': typeof JSON === 'object' ? JSON : undefined$1,
'%Map%': typeof Map === 'undefined' ? undefined$1 : Map,
'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols$1 ? undefined$1 : getProto(new Map()[Symbol.iterator]()),
'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols$2 ? undefined$1 : getProto(new Map()[Symbol.iterator]()),
'%Math%': Math,
'%Number%': Number,
'%Object%': Object,
Expand All @@ -4796,11 +4803,11 @@ var INTRINSICS = {
'%Reflect%': typeof Reflect === 'undefined' ? undefined$1 : Reflect,
'%RegExp%': RegExp,
'%Set%': typeof Set === 'undefined' ? undefined$1 : Set,
'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols$1 ? undefined$1 : getProto(new Set()[Symbol.iterator]()),
'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols$2 ? undefined$1 : getProto(new Set()[Symbol.iterator]()),
'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined$1 : SharedArrayBuffer,
'%String%': String,
'%StringIteratorPrototype%': hasSymbols$1 ? getProto(''[Symbol.iterator]()) : undefined$1,
'%Symbol%': hasSymbols$1 ? Symbol : undefined$1,
'%StringIteratorPrototype%': hasSymbols$2 ? getProto(''[Symbol.iterator]()) : undefined$1,
'%Symbol%': hasSymbols$2 ? Symbol : undefined$1,
'%SyntaxError%': $SyntaxError,
'%ThrowTypeError%': ThrowTypeError,
'%TypedArray%': TypedArray,
Expand Down Expand Up @@ -5095,10 +5102,17 @@ var callBound = function callBoundIntrinsic(name, allowMissing) {
return intrinsic;
};

var callBound$1 = /*#__PURE__*/Object.freeze({
default: callBound,
__moduleExports: callBound
});

var callBound$2 = ( callBound$1 && callBound ) || callBound$1;

var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';


var $toString = callBound('Object.prototype.toString');
var $toString = callBound$2('Object.prototype.toString');

var isStandardArguments = function isArguments(value) {
if (hasToStringTag && value && typeof value === 'object' && Symbol.toStringTag in value) {
Expand Down Expand Up @@ -5144,20 +5158,8 @@ var objectIs = function is(a, b) {
return false;
};

var objectIs$1 = /*#__PURE__*/Object.freeze({
default: objectIs,
__moduleExports: objectIs
});

var src$1 = functionBind.call(Function.call, Object.prototype.hasOwnProperty);

var src$2 = /*#__PURE__*/Object.freeze({
default: src$1,
__moduleExports: src$1
});

var has$1 = ( src$2 && src$1 ) || src$2;

var regexExec = RegExp.prototype.exec;
var gOPD = Object.getOwnPropertyDescriptor;

Expand Down Expand Up @@ -5187,15 +5189,15 @@ var isRegex = function isRegex(value) {
}

var descriptor = gOPD(value, 'lastIndex');
var hasLastIndexDataProperty = descriptor && has$1(descriptor, 'value');
var hasLastIndexDataProperty = descriptor && src$1(descriptor, 'value');
if (!hasLastIndexDataProperty) {
return false;
}

return tryRegexExecCall(value);
};

var hasSymbols$2 = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';
var hasSymbols$3 = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';

var toStr$4 = Object.prototype.toString;
var concat = Array.prototype.concat;
Expand Down Expand Up @@ -5239,7 +5241,7 @@ var defineProperty$2 = function (object, name, value, predicate) {
var defineProperties = function (object, map) {
var predicates = arguments.length > 2 ? arguments[2] : {};
var props = objectKeys(map);
if (hasSymbols$2) {
if (hasSymbols$3) {
props = concat.call(props, Object.getOwnPropertySymbols(map));
}
for (var i = 0; i < props.length; i += 1) {
Expand All @@ -5254,7 +5256,7 @@ var defineProperties_1 = defineProperties;
var $Object = Object;
var $TypeError$1 = TypeError;

var implementation$3 = function flags() {
var implementation$4 = function flags() {
if (this != null && this !== $Object(this)) {
throw new $TypeError$1('RegExp.prototype.flags getter called on non-object');
}
Expand Down Expand Up @@ -5294,7 +5296,7 @@ var polyfill = function getPolyfill() {
return descriptor.get;
}
}
return implementation$3;
return implementation$4;
};

var supportsDescriptors$2 = defineProperties_1.supportsDescriptors;
Expand Down Expand Up @@ -5322,11 +5324,11 @@ var shim = function shimFlags() {
return polyfill$$1;
};

var flagsBound = callBind$2(implementation$3);
var flagsBound = callBind$2(implementation$4);

defineProperties_1(flagsBound, {
getPolyfill: polyfill,
implementation: implementation$3,
implementation: implementation$4,
shim: shim
});

Expand All @@ -5351,21 +5353,19 @@ var isDateObject = function isDateObject(value) {
return hasToStringTag$2 ? tryDateObject(value) : toStr$5.call(value) === dateClass;
};

var is = ( objectIs$1 && objectIs ) || objectIs$1;

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 ? is(actual, expected) : actual === expected) {
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 ? is(actual, expected) : actual == expected;
return opts.strict ? objectIs(actual, expected) : actual == expected;
}

/*
Expand Down Expand Up @@ -8140,7 +8140,7 @@ if (__DEV__) {

var warning_1 = warning;

var implementation$4 = createCommonjsModule(function (module, exports) {
var implementation$5 = createCommonjsModule(function (module, exports) {

exports.__esModule = true;

Expand Down Expand Up @@ -8338,14 +8338,14 @@ exports.default = createReactContext;
module.exports = exports['default'];
});

var implementation$5 = unwrapExports(implementation$4);
var implementation$6 = unwrapExports(implementation$5);

var implementation$6 = /*#__PURE__*/Object.freeze({
default: implementation$5,
__moduleExports: implementation$4
var implementation$7 = /*#__PURE__*/Object.freeze({
default: implementation$6,
__moduleExports: implementation$5
});

var _implementation = ( implementation$6 && implementation$5 ) || implementation$6;
var _implementation = ( implementation$7 && implementation$6 ) || implementation$7;

var lib = createCommonjsModule(function (module, exports) {

Expand Down
Loading