You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.3 KiB
80 lines
3.3 KiB
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
|
|
var __rest = this && this.__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;
|
|
};
|
|
|
|
import * as React from 'react';
|
|
import RcTabs, { TabPane } from 'rc-tabs';
|
|
import classNames from 'classnames';
|
|
import EllipsisOutlined from "@ant-design/icons/es/icons/EllipsisOutlined";
|
|
import PlusOutlined from "@ant-design/icons/es/icons/PlusOutlined";
|
|
import CloseOutlined from "@ant-design/icons/es/icons/CloseOutlined";
|
|
import devWarning from '../_util/devWarning';
|
|
import { ConfigContext } from '../config-provider';
|
|
import SizeContext from '../config-provider/SizeContext';
|
|
|
|
function Tabs(_a) {
|
|
var type = _a.type,
|
|
className = _a.className,
|
|
propSize = _a.size,
|
|
_onEdit = _a.onEdit,
|
|
hideAdd = _a.hideAdd,
|
|
centered = _a.centered,
|
|
addIcon = _a.addIcon,
|
|
props = __rest(_a, ["type", "className", "size", "onEdit", "hideAdd", "centered", "addIcon"]);
|
|
|
|
var customizePrefixCls = props.prefixCls,
|
|
_props$moreIcon = props.moreIcon,
|
|
moreIcon = _props$moreIcon === void 0 ? /*#__PURE__*/React.createElement(EllipsisOutlined, null) : _props$moreIcon;
|
|
|
|
var _React$useContext = React.useContext(ConfigContext),
|
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
direction = _React$useContext.direction;
|
|
|
|
var prefixCls = getPrefixCls('tabs', customizePrefixCls);
|
|
var editable;
|
|
|
|
if (type === 'editable-card') {
|
|
editable = {
|
|
onEdit: function onEdit(editType, _ref) {
|
|
var key = _ref.key,
|
|
event = _ref.event;
|
|
_onEdit === null || _onEdit === void 0 ? void 0 : _onEdit(editType === 'add' ? event : key, editType);
|
|
},
|
|
removeIcon: /*#__PURE__*/React.createElement(CloseOutlined, null),
|
|
addIcon: addIcon || /*#__PURE__*/React.createElement(PlusOutlined, null),
|
|
showAdd: hideAdd !== true
|
|
};
|
|
}
|
|
|
|
var rootPrefixCls = getPrefixCls();
|
|
devWarning(!('onPrevClick' in props) && !('onNextClick' in props), 'Tabs', '`onPrevClick` and `onNextClick` has been removed. Please use `onTabScroll` instead.');
|
|
return /*#__PURE__*/React.createElement(SizeContext.Consumer, null, function (contextSize) {
|
|
var _classNames;
|
|
|
|
var size = propSize !== undefined ? propSize : contextSize;
|
|
return /*#__PURE__*/React.createElement(RcTabs, _extends({
|
|
direction: direction,
|
|
moreTransitionName: "".concat(rootPrefixCls, "-slide-up")
|
|
}, props, {
|
|
className: classNames((_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-").concat(size), size), _defineProperty(_classNames, "".concat(prefixCls, "-card"), ['card', 'editable-card'].includes(type)), _defineProperty(_classNames, "".concat(prefixCls, "-editable-card"), type === 'editable-card'), _defineProperty(_classNames, "".concat(prefixCls, "-centered"), centered), _classNames), className),
|
|
editable: editable,
|
|
moreIcon: moreIcon,
|
|
prefixCls: prefixCls
|
|
}));
|
|
});
|
|
}
|
|
|
|
Tabs.TabPane = TabPane;
|
|
export default Tabs; |