@nutui/nutui-react-taro
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
148 lines (147 loc) • 6.58 kB
JavaScript
import { _ as _define_property } from "@swc/helpers/_/_define_property";
import { _ as _object_spread } from "@swc/helpers/_/_object_spread";
import { _ as _object_spread_props } from "@swc/helpers/_/_object_spread_props";
import { _ as _object_without_properties } from "@swc/helpers/_/_object_without_properties";
import React, { useCallback, useMemo } from "react";
import classNames from "classnames";
import { View } from "@tarojs/components";
import { Loading } from "@nutui/icons-react-taro";
import { ComponentDefaults } from "../../utils/typings";
import { harmony } from "../../utils/taro/platform";
var prefixCls = 'nut-button';
var defaultProps = _object_spread_props(_object_spread({}, ComponentDefaults), {
color: '',
type: 'default',
size: 'normal',
shape: 'round',
fill: 'outline',
loading: false,
disabled: false,
block: false,
icon: null,
rightIcon: null,
onClick: function onClick(e) {}
});
export var Button = /*#__PURE__*/ React.forwardRef(function(props, ref) {
var _$_object_spread = _object_spread({}, defaultProps, props), color = _$_object_spread.color, shape = _$_object_spread.shape, fill = _$_object_spread.fill, loading = _$_object_spread.loading, disabled = _$_object_spread.disabled, type = _$_object_spread.type, size = _$_object_spread.size, block = _$_object_spread.block, icon = _$_object_spread.icon, rightIcon = _$_object_spread.rightIcon, children = _$_object_spread.children, className = _$_object_spread.className, style = _$_object_spread.style, // formType,
nativeType = _$_object_spread.nativeType, description = _$_object_spread.description, onClick = _$_object_spread.onClick, rest = _object_without_properties(_$_object_spread, [
"color",
"shape",
"fill",
"loading",
"disabled",
"type",
"size",
"block",
"icon",
"rightIcon",
"children",
"className",
"style",
"nativeType",
"description",
"onClick"
]);
var mappedSize = useMemo(function() {
if (!size) return 'normal';
var sizeMap = {
'48': 'xlarge',
'40': 'large',
'32': 'normal',
'28': 'small',
'24': 'mini'
};
return sizeMap[size] || size;
}, [
size
]);
var getStyle = useMemo(function() {
var style = {};
if (color) {
if (props.fill === 'outline' || props.fill === 'dashed') {
style.color = color;
if (!(color === null || color === void 0 ? void 0 : color.includes('gradient'))) {
style.borderColor = color;
}
} else {
style.color = 'var(--nutui-color-primary-text, #fff)';
if (harmony()) {
style.backgroundColor = color;
}
style.background = color;
style.borderColor = 'transparent';
}
}
return style;
}, [
color,
props.fill
]);
var getContStyle = useMemo(function() {
var style = {};
if (props.color) {
if (props.fill === 'outline' || props.fill === 'dashed') {
style.color = color;
} else {
style.color = 'var(--nutui-color-primary-text, #fff)';
style.background = 'transparent';
style.borderColor = 'transparent';
}
}
return style;
}, [
color,
props.fill,
props.color
]);
var handleClick = useCallback(function(e) {
if (!loading && !disabled && onClick) {
onClick(e);
}
}, [
loading,
disabled,
onClick
]);
var _obj;
var buttonClassNames = classNames(prefixCls, "".concat(prefixCls, "-").concat(type), (_obj = {}, _define_property(_obj, "".concat(prefixCls, "-").concat(type, "-solid"), type === 'primary' && !props.fill), _define_property(_obj, "".concat(prefixCls, "-").concat(fill), props.fill), _define_property(_obj, "".concat(prefixCls, "-").concat(type, "-").concat(fill), props.fill), _define_property(_obj, "".concat(prefixCls, "-").concat(mappedSize), mappedSize), _define_property(_obj, "".concat(prefixCls, "-has-desc"), !!description), _define_property(_obj, "".concat(prefixCls, "-").concat(shape), shape), _define_property(_obj, "".concat(prefixCls, "-block"), block), _define_property(_obj, "".concat(prefixCls, "-disabled"), disabled || loading), _define_property(_obj, "".concat(prefixCls, "-").concat(type).concat(props.fill ? "-".concat(fill) : '', "-disabled"), disabled || loading), _define_property(_obj, "".concat(prefixCls, "-loading"), loading), _define_property(_obj, "".concat(prefixCls, "-icononly"), !children), _obj), className);
// if (getEnv() === 'WEB') {
// ;(rest as any).type = formType
// }
return (
// <TaroButton>
// @ts-ignore
/*#__PURE__*/ (React.createElement(View, _object_spread_props(_object_spread({}, rest), {
ref: ref,
// formType={formType || nativeType}
className: buttonClassNames,
style: _object_spread({}, getStyle, style),
ariaRole: "button",
role: "button",
ariaDisabled: disabled || loading,
"aria-disabled": disabled || loading,
ariaBusy: loading,
"aria-busy": loading,
onClick: function onClick(e) {
return handleClick(e);
}
}), /*#__PURE__*/ React.createElement(View, {
className: "nut-button-wrap"
}, loading && /*#__PURE__*/ React.createElement(Loading, {
className: "nut-icon-loading",
ariaHidden: true,
"aria-hidden": true
}), !loading && icon, children && /*#__PURE__*/ React.createElement(View, {
className: classNames('nut-button-children', "nut-button-".concat(mappedSize, "-children"), "nut-button-".concat(type, "-children"), {
'nut-button-text': icon || loading,
'nut-button-text-right': rightIcon
}),
style: harmony() ? getContStyle : {}
}, description ? /*#__PURE__*/ React.createElement(View, {
className: "nut-button-title"
}, children) : children, description && /*#__PURE__*/ React.createElement(View, {
className: "nut-button-desc"
}, description)), rightIcon)))
);
});
Button.displayName = 'NutButton';