@alicloud/console-components
Version:
Alibaba Cloud React Components
96 lines (95 loc) • 5.26 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = __importStar(require("react"));
var hoist_non_react_statics_1 = __importDefault(require("hoist-non-react-statics"));
var classnames_1 = __importDefault(require("classnames"));
var next_1 = require("@alifd/next");
var enum_1 = require("../../../enum");
var utils_1 = require("../../../utils");
var hook_1 = require("../../../hook");
var hoc_1 = require("../../../hoc");
var util_1 = require("./util");
var Button = (0, hoc_1.hocWithThemeClass)((0, react_1.forwardRef)(function (props, ref) {
var _a, _b;
var className = props.className, iconSize = props.iconSize, _c = props.size, size = _c === void 0 ? 'medium' : _c;
var children = props.children;
var count = react_1.Children.count(children);
var theme = (0, hook_1.useCssTheme)();
if ((0, utils_1.isReactFragment)(children) && theme !== enum_1.ETheme.WIND && !theme.startsWith(enum_1.ETheme.XCONSOLE)) {
children = react_1.default.createElement("span", { className: "next-btn-helper" }, children);
}
// 判断是否是 2-3 个汉字
// xconsole 相关主题不需要该功能
if (theme !== enum_1.ETheme.WIND && !theme.startsWith(enum_1.ETheme.XCONSOLE) && typeof children === 'string' && (0, utils_1.isCnChars2Or3)(children)) {
return react_1.default.createElement(next_1.Button, __assign({}, __assign(__assign({}, props), { className: (0, classnames_1.default)('isTwoToThreeCNCharBtn', className), ref: ref })), children);
}
// 判断是否是 4 个汉字
// xconsole 相关主题不需要该功能
if (theme !== enum_1.ETheme.WIND && !theme.startsWith(enum_1.ETheme.XCONSOLE) && typeof children === 'string' && (0, utils_1.isCnChars4)(children)) {
return react_1.default.createElement(next_1.Button, __assign({}, __assign(__assign({}, props), { className: (0, classnames_1.default)('isFourCNCharBtn', className), ref: ref })), children);
}
if ((count === 1 && ((_a = children === null || children === void 0 ? void 0 : children.type) === null || _a === void 0 ? void 0 : _a.displayName) === 'Config(Icon)') || ((_b = children === null || children === void 0 ? void 0 : children.type) === null || _b === void 0 ? void 0 : _b.displayName) === 'TeamixIcon') {
return react_1.default.createElement(next_1.Button, __assign({}, __assign(__assign({}, props), { className: (0, classnames_1.default)('isOnlyIcon', className), ref: ref })), children);
}
var clonedChildren = react_1.Children.map(children, function (child, index) {
var _a;
var _b;
// 针对 teamix-icon 进行处理
if (child && ['function', 'object'].includes(typeof child.type) && ((_b = child.type) === null || _b === void 0 ? void 0 : _b.displayName) === 'TeamixIcon') {
var iconCls = (0, classnames_1.default)((_a = {
'teamix-icon-first': count > 1 && index === 0,
'teamix-icon-last': count > 1 && index === count - 1
},
_a[child.props.className] = !!child.props.className,
_a));
return (0, react_1.cloneElement)(child, {
className: iconCls,
size: iconSize || (0, util_1.mapTeamixIconSize)(size)
});
}
return child;
});
return react_1.default.createElement(next_1.Button, __assign({}, __assign(__assign({}, props), { className: className, ref: ref })), clonedChildren);
}));
(0, hoist_non_react_statics_1.default)(Button, next_1.Button);
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
Button.displayName = next_1.Button.displayName;
exports.default = Button;