@elastic/eui
Version:
Elastic UI Component Library
98 lines (97 loc) • 4.23 kB
JavaScript
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
import _createClass from "@babel/runtime/helpers/createClass";
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
import _inherits from "@babel/runtime/helpers/inherits";
import _defineProperty from "@babel/runtime/helpers/defineProperty";
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import { Component } from 'react';
function isComponentBecomingVisible() {
var prevHide = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
var nextHide = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
return prevHide === true && nextHide === false;
}
export var EuiDelayHide = /*#__PURE__*/function (_Component) {
function EuiDelayHide() {
var _this;
_classCallCheck(this, EuiDelayHide);
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
_this = _callSuper(this, EuiDelayHide, [].concat(args));
_defineProperty(_this, "state", {
hide: _this.props.hide,
countdownExpired: _this.props.hide
});
_defineProperty(_this, "timeoutId", void 0);
_defineProperty(_this, "startCountdown", function () {
// only start the countdown if there is not one in progress
if (_this.timeoutId == null) {
_this.timeoutId = setTimeout(_this.finishCountdown,
// even though `minimumDuration` cannot be undefined, passing a strict number type to setTimeout makes TS interpret
// it as a NodeJS.Timer instead of a number. The DOM lib defines the setTimeout call as taking `number | undefined`
// so we cast minimumDuration to this type instead to force TS's cooperation
_this.props.minimumDuration);
}
});
_defineProperty(_this, "finishCountdown", function () {
_this.timeoutId = undefined;
_this.setState({
countdownExpired: true
});
});
return _this;
}
_inherits(EuiDelayHide, _Component);
return _createClass(EuiDelayHide, [{
key: "componentDidMount",
value: function componentDidMount() {
// if the component begins visible start counting
if (this.props.hide === false) {
this.startCountdown();
}
}
}, {
key: "componentDidUpdate",
value: function componentDidUpdate(prevProps) {
var isBecomingVisible = isComponentBecomingVisible(prevProps.hide, this.props.hide);
if (isBecomingVisible) {
this.startCountdown();
}
}
}, {
key: "componentWillUnmount",
value: function componentWillUnmount() {
if (this.timeoutId != null) {
clearTimeout(this.timeoutId);
}
}
}, {
key: "render",
value: function render() {
var shouldHideContent = this.props.hide === true && this.state.countdownExpired;
return shouldHideContent ? null : this.props.render();
}
}], [{
key: "getDerivedStateFromProps",
value: function getDerivedStateFromProps(nextProps, prevState) {
var isBecomingVisible = isComponentBecomingVisible(prevState.hide, nextProps.hide);
return {
hide: nextProps.hide,
countdownExpired: isBecomingVisible ? false : prevState.countdownExpired
};
}
}]);
}(Component);
_defineProperty(EuiDelayHide, "defaultProps", {
hide: false,
minimumDuration: 1000
});