74 lines
3.2 KiB
JavaScript
74 lines
3.2 KiB
JavaScript
"use strict";
|
|
|
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = LoadingIcon;
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var _CSSMotion = _interopRequireDefault(require("rc-animate/lib/CSSMotion"));
|
|
|
|
var _LoadingOutlined = _interopRequireDefault(require("@ant-design/icons/LoadingOutlined"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
var getCollapsedWidth = function getCollapsedWidth() {
|
|
return {
|
|
width: 0,
|
|
opacity: 0,
|
|
transform: 'scale(0)'
|
|
};
|
|
};
|
|
|
|
var getRealWidth = function getRealWidth(node) {
|
|
return {
|
|
width: node.scrollWidth,
|
|
opacity: 1,
|
|
transform: 'scale(1)'
|
|
};
|
|
};
|
|
|
|
function LoadingIcon(_ref) {
|
|
var prefixCls = _ref.prefixCls,
|
|
loading = _ref.loading,
|
|
existIcon = _ref.existIcon;
|
|
var visible = !!loading;
|
|
|
|
if (existIcon) {
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
className: "".concat(prefixCls, "-loading-icon")
|
|
}, /*#__PURE__*/React.createElement(_LoadingOutlined["default"], null));
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement(_CSSMotion["default"], {
|
|
visible: visible // We do not really use this motionName
|
|
,
|
|
motionName: "".concat(prefixCls, "-loading-icon-motion"),
|
|
removeOnLeave: true,
|
|
onAppearStart: getCollapsedWidth,
|
|
onAppearActive: getRealWidth,
|
|
onEnterStart: getCollapsedWidth,
|
|
onEnterActive: getRealWidth,
|
|
onLeaveStart: getRealWidth,
|
|
onLeaveActive: getCollapsedWidth
|
|
}, function (_ref2, ref) {
|
|
var className = _ref2.className,
|
|
style = _ref2.style;
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
className: "".concat(prefixCls, "-loading-icon"),
|
|
style: style,
|
|
ref: ref
|
|
}, /*#__PURE__*/React.createElement(_LoadingOutlined["default"], {
|
|
className: (0, _classnames["default"])(className)
|
|
}));
|
|
});
|
|
} |