302 lines
14 KiB
JavaScript
302 lines
14 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = void 0;
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var _rcAnimate = _interopRequireDefault(require("rc-animate"));
|
|
|
|
var _omit = _interopRequireDefault(require("omit.js"));
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var _ScrollNumber = _interopRequireDefault(require("./ScrollNumber"));
|
|
|
|
var _colors = require("../_util/colors");
|
|
|
|
var _configProvider = require("../config-provider");
|
|
|
|
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; }
|
|
|
|
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); }
|
|
|
|
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 _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; }
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
|
|
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
|
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
|
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
var __rest = void 0 && (void 0).__rest || function (s, e) {
|
|
var t = {};
|
|
|
|
for (var p in s) {
|
|
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
}
|
|
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
|
|
function isPresetColor(color) {
|
|
return _colors.PresetColorTypes.indexOf(color) !== -1;
|
|
}
|
|
|
|
var Badge = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(Badge, _React$Component);
|
|
|
|
var _super = _createSuper(Badge);
|
|
|
|
function Badge() {
|
|
var _this;
|
|
|
|
_classCallCheck(this, Badge);
|
|
|
|
_this = _super.apply(this, arguments);
|
|
|
|
_this.renderBadge = function (_ref) {
|
|
var _classNames;
|
|
|
|
var getPrefixCls = _ref.getPrefixCls,
|
|
direction = _ref.direction;
|
|
|
|
var _a = _this.props,
|
|
customizePrefixCls = _a.prefixCls,
|
|
customizeScrollNumberPrefixCls = _a.scrollNumberPrefixCls,
|
|
children = _a.children,
|
|
status = _a.status,
|
|
text = _a.text,
|
|
color = _a.color,
|
|
restProps = __rest(_a, ["prefixCls", "scrollNumberPrefixCls", "children", "status", "text", "color"]);
|
|
|
|
var omitArr = ['count', 'showZero', 'overflowCount', 'className', 'style', 'dot', 'offset', 'title'];
|
|
var prefixCls = getPrefixCls('badge', customizePrefixCls);
|
|
var scrollNumberPrefixCls = getPrefixCls('scroll-number', customizeScrollNumberPrefixCls);
|
|
|
|
var scrollNumber = _this.renderBadgeNumber(prefixCls, scrollNumberPrefixCls);
|
|
|
|
var statusText = _this.renderStatusText(prefixCls);
|
|
|
|
var statusCls = (0, _classnames["default"])((_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-status-dot"), _this.hasStatus()), _defineProperty(_classNames, "".concat(prefixCls, "-status-").concat(status), !!status), _defineProperty(_classNames, "".concat(prefixCls, "-status-").concat(color), isPresetColor(color)), _classNames));
|
|
var statusStyle = {};
|
|
|
|
if (color && !isPresetColor(color)) {
|
|
statusStyle.background = color;
|
|
} // <Badge status="success" />
|
|
|
|
|
|
if (!children && _this.hasStatus()) {
|
|
var styleWithOffset = _this.getStyleWithOffset();
|
|
|
|
var statusTextColor = styleWithOffset && styleWithOffset.color;
|
|
return /*#__PURE__*/React.createElement("span", _extends({}, (0, _omit["default"])(restProps, omitArr), {
|
|
className: _this.getBadgeClassName(prefixCls, direction),
|
|
style: styleWithOffset
|
|
}), /*#__PURE__*/React.createElement("span", {
|
|
className: statusCls,
|
|
style: statusStyle
|
|
}), /*#__PURE__*/React.createElement("span", {
|
|
style: {
|
|
color: statusTextColor
|
|
},
|
|
className: "".concat(prefixCls, "-status-text")
|
|
}, text));
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement("span", _extends({}, (0, _omit["default"])(restProps, omitArr), {
|
|
className: _this.getBadgeClassName(prefixCls, direction)
|
|
}), children, /*#__PURE__*/React.createElement(_rcAnimate["default"], {
|
|
component: "",
|
|
showProp: "data-show",
|
|
transitionName: children ? "".concat(prefixCls, "-zoom") : '',
|
|
transitionAppear: true
|
|
}, scrollNumber), statusText);
|
|
};
|
|
|
|
return _this;
|
|
}
|
|
|
|
_createClass(Badge, [{
|
|
key: "getNumberedDisplayCount",
|
|
value: function getNumberedDisplayCount() {
|
|
var _this$props = this.props,
|
|
count = _this$props.count,
|
|
overflowCount = _this$props.overflowCount;
|
|
var displayCount = count > overflowCount ? "".concat(overflowCount, "+") : count;
|
|
return displayCount;
|
|
}
|
|
}, {
|
|
key: "getDisplayCount",
|
|
value: function getDisplayCount() {
|
|
var isDot = this.isDot(); // dot mode don't need count
|
|
|
|
if (isDot) {
|
|
return '';
|
|
}
|
|
|
|
return this.getNumberedDisplayCount();
|
|
}
|
|
}, {
|
|
key: "getScrollNumberTitle",
|
|
value: function getScrollNumberTitle() {
|
|
var _this$props2 = this.props,
|
|
title = _this$props2.title,
|
|
count = _this$props2.count;
|
|
|
|
if (title) {
|
|
return title;
|
|
}
|
|
|
|
return typeof count === 'string' || typeof count === 'number' ? count : undefined;
|
|
}
|
|
}, {
|
|
key: "getStyleWithOffset",
|
|
value: function getStyleWithOffset() {
|
|
var _this$props3 = this.props,
|
|
offset = _this$props3.offset,
|
|
style = _this$props3.style;
|
|
return offset ? _extends({
|
|
right: -parseInt(offset[0], 10),
|
|
marginTop: offset[1]
|
|
}, style) : style;
|
|
}
|
|
}, {
|
|
key: "getBadgeClassName",
|
|
value: function getBadgeClassName(prefixCls) {
|
|
var _classNames2;
|
|
|
|
var direction = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'ltr';
|
|
var _this$props4 = this.props,
|
|
className = _this$props4.className,
|
|
children = _this$props4.children;
|
|
return (0, _classnames["default"])(className, prefixCls, (_classNames2 = {}, _defineProperty(_classNames2, "".concat(prefixCls, "-status"), this.hasStatus()), _defineProperty(_classNames2, "".concat(prefixCls, "-not-a-wrapper"), !children), _defineProperty(_classNames2, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames2));
|
|
}
|
|
}, {
|
|
key: "hasStatus",
|
|
value: function hasStatus() {
|
|
var _this$props5 = this.props,
|
|
status = _this$props5.status,
|
|
color = _this$props5.color;
|
|
return !!status || !!color;
|
|
}
|
|
}, {
|
|
key: "isZero",
|
|
value: function isZero() {
|
|
var numberedDisplayCount = this.getNumberedDisplayCount();
|
|
return numberedDisplayCount === '0' || numberedDisplayCount === 0;
|
|
}
|
|
}, {
|
|
key: "isDot",
|
|
value: function isDot() {
|
|
var dot = this.props.dot;
|
|
var isZero = this.isZero();
|
|
return dot && !isZero || this.hasStatus();
|
|
}
|
|
}, {
|
|
key: "isHidden",
|
|
value: function isHidden() {
|
|
var showZero = this.props.showZero;
|
|
var displayCount = this.getDisplayCount();
|
|
var isZero = this.isZero();
|
|
var isDot = this.isDot();
|
|
var isEmpty = displayCount === null || displayCount === undefined || displayCount === '';
|
|
return (isEmpty || isZero && !showZero) && !isDot;
|
|
}
|
|
}, {
|
|
key: "renderStatusText",
|
|
value: function renderStatusText(prefixCls) {
|
|
var text = this.props.text;
|
|
var hidden = this.isHidden();
|
|
return hidden || !text ? null : /*#__PURE__*/React.createElement("span", {
|
|
className: "".concat(prefixCls, "-status-text")
|
|
}, text);
|
|
}
|
|
}, {
|
|
key: "renderDisplayComponent",
|
|
value: function renderDisplayComponent() {
|
|
var count = this.props.count;
|
|
var customNode = count;
|
|
|
|
if (!customNode || _typeof(customNode) !== 'object') {
|
|
return undefined;
|
|
}
|
|
|
|
return React.cloneElement(customNode, {
|
|
style: _extends(_extends({}, this.getStyleWithOffset()), customNode.props && customNode.props.style)
|
|
});
|
|
}
|
|
}, {
|
|
key: "renderBadgeNumber",
|
|
value: function renderBadgeNumber(prefixCls, scrollNumberPrefixCls) {
|
|
var _classNames3;
|
|
|
|
var _this$props6 = this.props,
|
|
status = _this$props6.status,
|
|
count = _this$props6.count,
|
|
color = _this$props6.color;
|
|
var displayCount = this.getDisplayCount();
|
|
var isDot = this.isDot();
|
|
var hidden = this.isHidden();
|
|
var scrollNumberCls = (0, _classnames["default"])((_classNames3 = {}, _defineProperty(_classNames3, "".concat(prefixCls, "-dot"), isDot), _defineProperty(_classNames3, "".concat(prefixCls, "-count"), !isDot), _defineProperty(_classNames3, "".concat(prefixCls, "-multiple-words"), !isDot && count && count.toString && count.toString().length > 1), _defineProperty(_classNames3, "".concat(prefixCls, "-status-").concat(status), !!status), _defineProperty(_classNames3, "".concat(prefixCls, "-status-").concat(color), isPresetColor(color)), _classNames3));
|
|
var statusStyle = this.getStyleWithOffset();
|
|
|
|
if (color && !isPresetColor(color)) {
|
|
statusStyle = statusStyle || {};
|
|
statusStyle.background = color;
|
|
}
|
|
|
|
return hidden ? null : /*#__PURE__*/React.createElement(_ScrollNumber["default"], {
|
|
prefixCls: scrollNumberPrefixCls,
|
|
"data-show": !hidden,
|
|
className: scrollNumberCls,
|
|
count: displayCount,
|
|
displayComponent: this.renderDisplayComponent() // <Badge status="success" count={<Icon type="xxx" />}></Badge>
|
|
,
|
|
title: this.getScrollNumberTitle(),
|
|
style: statusStyle,
|
|
key: "scrollNumber"
|
|
});
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
return /*#__PURE__*/React.createElement(_configProvider.ConfigConsumer, null, this.renderBadge);
|
|
}
|
|
}]);
|
|
|
|
return Badge;
|
|
}(React.Component);
|
|
|
|
exports["default"] = Badge;
|
|
Badge.defaultProps = {
|
|
count: null,
|
|
showZero: false,
|
|
dot: false,
|
|
overflowCount: 99
|
|
}; |