UNPKG

aurora-topu

Version:
51 lines (50 loc) 2.13 kB
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 __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 React, { memo } from 'react'; import classNames from 'classnames'; import './_style.scss'; var AuroraButton = function (props) { var _a; var btnType = props.btnType, disabled = props.disabled, size = props.size, children = props.children, href = props.href, className = props.className, restProps = __rest(props, ["btnType", "disabled", "size", "children", "href", "className"]); // 根据传过来的属性来生成类名 var classes = classNames('btn', className, (_a = {}, _a["btn-".concat(btnType)] = btnType, _a["btn-".concat(size)] = size, // 提供了disabled属性,且按钮属性为'Link' _a.disabled = disabled && btnType === 'link', _a)); // Link类型的按钮 if (btnType === 'link' && href) { return (React.createElement("a", __assign({ href: href, className: classes }, restProps), children)); } // 除Link以外的类型 else { return (React.createElement("button", __assign({ className: classes, disabled: disabled }, restProps), children)); } }; AuroraButton.defaultProps = { disabled: false, btnType: 'default', children: '按钮', }; export default memo(AuroraButton);