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.
166 lines
4.2 KiB
166 lines
4.2 KiB
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import Icon from '../icon';
|
|
import omit from 'omit.js';
|
|
|
|
const rxTwoCNChar = /^[\u4e00-\u9fa5]{2}$/;
|
|
const isTwoCNChar = rxTwoCNChar.test.bind(rxTwoCNChar);
|
|
function isString(str) {
|
|
return typeof str === 'string';
|
|
}
|
|
|
|
// Insert one space between two chinese characters automatically.
|
|
function insertSpace(child) {
|
|
// Check the child if is undefined or null.
|
|
if (child == null) {
|
|
return;
|
|
}
|
|
if (isString(child.type) && isTwoCNChar(child.props.children)) {
|
|
return React.cloneElement(child, {},
|
|
child.props.children.split('').join(' '));
|
|
}
|
|
if (isString(child)) {
|
|
if (isTwoCNChar(child)) {
|
|
child = child.split('').join(' ');
|
|
}
|
|
return <span>{child}</span>;
|
|
}
|
|
return child;
|
|
}
|
|
|
|
export type ButtonType = 'primary' | 'ghost' | 'dashed' | 'danger';
|
|
export type ButtonShape = 'circle' | 'circle-outline';
|
|
export type ButtonSize = 'small' | 'large';
|
|
|
|
export interface ButtonProps {
|
|
type?: ButtonType;
|
|
htmlType?: string;
|
|
icon?: string;
|
|
shape?: ButtonShape;
|
|
size?: ButtonSize;
|
|
onClick?: React.FormEventHandler<any>;
|
|
onMouseUp?: React.FormEventHandler<any>;
|
|
loading?: boolean | { delay?: number };
|
|
disabled?: boolean;
|
|
style?: React.CSSProperties;
|
|
prefixCls?: string;
|
|
className?: string;
|
|
ghost?: boolean;
|
|
}
|
|
|
|
export default class Button extends React.Component<ButtonProps, any> {
|
|
static Group: any;
|
|
static __ANT_BUTTON = true;
|
|
|
|
static defaultProps = {
|
|
prefixCls: 'ant-btn',
|
|
loading: false,
|
|
clicked: false,
|
|
ghost: false,
|
|
};
|
|
|
|
static propTypes = {
|
|
type: PropTypes.string,
|
|
shape: PropTypes.oneOf(['circle', 'circle-outline']),
|
|
size: PropTypes.oneOf(['large', 'default', 'small']),
|
|
htmlType: PropTypes.oneOf(['submit', 'button', 'reset']),
|
|
onClick: PropTypes.func,
|
|
loading: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]),
|
|
className: PropTypes.string,
|
|
icon: PropTypes.string,
|
|
};
|
|
|
|
timeout: number;
|
|
delayTimeout: number;
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
loading: props.loading,
|
|
};
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
const currentLoading = this.props.loading;
|
|
const loading = nextProps.loading;
|
|
|
|
if (currentLoading) {
|
|
clearTimeout(this.delayTimeout);
|
|
}
|
|
|
|
if (loading && loading.delay) {
|
|
this.delayTimeout = setTimeout(() => this.setState({ loading }), loading.delay);
|
|
} else {
|
|
this.setState({ loading });
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.timeout) {
|
|
clearTimeout(this.timeout);
|
|
}
|
|
if (this.delayTimeout) {
|
|
clearTimeout(this.delayTimeout);
|
|
}
|
|
}
|
|
|
|
handleClick = (e) => {
|
|
// Add click effect
|
|
this.setState({ clicked: true });
|
|
clearTimeout(this.timeout);
|
|
this.timeout = setTimeout(() => this.setState({ clicked: false }), 500);
|
|
|
|
const onClick = this.props.onClick;
|
|
if (onClick) {
|
|
onClick(e);
|
|
}
|
|
}
|
|
|
|
// Handle auto focus when click button in Chrome
|
|
handleMouseUp = (e) => {
|
|
if (this.props.onMouseUp) {
|
|
this.props.onMouseUp(e);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
type, shape, size = '', className, htmlType, children, icon, prefixCls, ghost, ...others,
|
|
} = this.props;
|
|
|
|
const { loading, clicked } = this.state;
|
|
// large => lg
|
|
// small => sm
|
|
const sizeCls = ({
|
|
large: 'lg',
|
|
small: 'sm',
|
|
})[size] || '';
|
|
|
|
const classes = classNames(prefixCls, {
|
|
[`${prefixCls}-${type}`]: type,
|
|
[`${prefixCls}-${shape}`]: shape,
|
|
[`${prefixCls}-${sizeCls}`]: sizeCls,
|
|
[`${prefixCls}-icon-only`]: !children && icon,
|
|
[`${prefixCls}-loading`]: loading,
|
|
[`${prefixCls}-clicked`]: clicked,
|
|
[`${prefixCls}-background-ghost`]: ghost,
|
|
}, className);
|
|
|
|
const iconType = loading ? 'loading' : icon;
|
|
const iconNode = iconType ? <Icon type={iconType} /> : null;
|
|
const kids = React.Children.map(children, insertSpace);
|
|
|
|
return (
|
|
<button
|
|
{...omit(others, ['loading', 'clicked'])}
|
|
type={htmlType || 'button'}
|
|
className={classes}
|
|
onMouseUp={this.handleMouseUp}
|
|
onClick={this.handleClick}
|
|
>
|
|
{iconNode}{kids}
|
|
</button>
|
|
);
|
|
}
|
|
}
|
|
|