ant-design/components/button/button.tsx

180 lines
4.8 KiB
TypeScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import omit from 'omit.js';
import Icon from '../icon';
import Group from './button-group';
2016-12-19 15:19:15 +08:00
2016-03-15 14:10:25 +08:00
const rxTwoCNChar = /^[\u4e00-\u9fa5]{2}$/;
2015-09-27 16:30:35 +08:00
const isTwoCNChar = rxTwoCNChar.test.bind(rxTwoCNChar);
function isString(str: any) {
2015-09-27 16:30:35 +08:00
return typeof str === 'string';
}
// Insert one space between two chinese characters automatically.
function insertSpace(child: React.ReactChild, needInserted: boolean) {
// Check the child if is undefined or null.
if (child == null) {
return;
}
const SPACE = needInserted ? ' ' : '';
// strictNullChecks oops.
if (typeof child !== 'string' && typeof child !== 'number' &&
isString(child.type) && isTwoCNChar(child.props.children)) {
2015-09-27 16:30:35 +08:00
return React.cloneElement(child, {},
child.props.children.split('').join(SPACE));
2015-09-27 16:30:35 +08:00
}
if (typeof child === 'string') {
2016-04-12 11:56:14 +08:00
if (isTwoCNChar(child)) {
child = child.split('').join(SPACE);
2016-04-12 11:56:14 +08:00
}
return <span>{child}</span>;
}
2015-09-27 16:30:35 +08:00
return child;
}
export type ButtonType = 'primary' | 'ghost' | 'dashed' | 'danger';
export type ButtonShape = 'circle' | 'circle-outline';
export type ButtonSize = 'small' | 'large';
2016-07-14 13:29:50 +08:00
2016-09-13 15:31:29 +08:00
export interface ButtonProps {
2016-07-14 13:29:50 +08:00
type?: ButtonType;
htmlType?: string;
icon?: string;
shape?: ButtonShape;
size?: ButtonSize;
2016-10-19 17:51:33 +08:00
onClick?: React.FormEventHandler<any>;
onMouseUp?: React.FormEventHandler<any>;
onMouseDown?: React.FormEventHandler<any>;
loading?: boolean | { delay?: number };
2016-07-14 13:29:50 +08:00
disabled?: boolean;
style?: React.CSSProperties;
prefixCls?: string;
className?: string;
ghost?: boolean;
2016-07-14 13:29:50 +08:00
}
export default class Button extends React.Component<ButtonProps, any> {
static Group: typeof Group;
static __ANT_BUTTON = true;
2016-07-14 13:29:50 +08:00
static defaultProps = {
2016-04-06 15:50:58 +08:00
prefixCls: 'ant-btn',
2016-04-12 12:17:03 +08:00
loading: false,
clicked: false,
ghost: false,
2016-07-13 11:14:24 +08:00
};
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,
2016-07-13 11:14:24 +08:00
};
timeout: number;
delayTimeout: number;
constructor(props: ButtonProps) {
super(props);
this.state = {
loading: props.loading,
};
}
componentWillReceiveProps(nextProps: ButtonProps) {
const currentLoading = this.props.loading;
const loading = nextProps.loading;
if (currentLoading) {
clearTimeout(this.delayTimeout);
}
if (typeof loading !== 'boolean' && loading && loading.delay) {
this.delayTimeout = setTimeout(() => this.setState({ loading }), loading.delay);
} else {
this.setState({ loading });
}
}
2016-07-14 13:29:50 +08:00
2016-05-28 15:31:39 +08:00
componentWillUnmount() {
if (this.timeout) {
clearTimeout(this.timeout);
}
if (this.delayTimeout) {
clearTimeout(this.delayTimeout);
}
2016-05-28 15:31:39 +08:00
}
handleClick = (e: React.MouseEvent<HTMLButtonElement>) => {
2016-03-03 21:33:02 +08:00
// Add click effect
this.setState({ clicked: true });
2016-03-03 21:33:02 +08:00
clearTimeout(this.timeout);
this.timeout = setTimeout(() => this.setState({ clicked: false }), 500);
2016-03-03 21:33:02 +08:00
2016-10-24 12:04:26 +08:00
const onClick = this.props.onClick;
if (onClick) {
onClick(e);
}
}
// Handle auto focus when click button in Chrome
handleMouseUp = (e: React.MouseEvent<HTMLButtonElement>) => {
if (this.props.onMouseUp) {
this.props.onMouseUp(e);
}
}
2016-04-20 12:18:59 +08:00
2015-09-27 16:30:35 +08:00
render() {
const {
type, shape, size = '', className, htmlType, children, icon, prefixCls, ghost, ...others,
} = this.props;
2015-09-27 16:30:35 +08:00
const { loading, clicked } = this.state;
// large => lg
// small => sm
let sizeCls = '';
switch (size) {
case 'large':
sizeCls = 'lg';
break;
case 'small':
sizeCls = 'sm';
default:
break;
}
const classes = classNames(prefixCls, {
2016-04-06 15:50:58 +08:00
[`${prefixCls}-${type}`]: type,
[`${prefixCls}-${shape}`]: shape,
[`${prefixCls}-${sizeCls}`]: sizeCls,
[`${prefixCls}-icon-only`]: !children && icon,
2016-04-12 12:17:03 +08:00
[`${prefixCls}-loading`]: loading,
[`${prefixCls}-clicked`]: clicked,
[`${prefixCls}-background-ghost`]: ghost,
}, className);
2015-09-27 16:30:35 +08:00
2016-04-12 12:17:03 +08:00
const iconType = loading ? 'loading' : icon;
2016-12-26 19:46:01 +08:00
const iconNode = iconType ? <Icon type={iconType} /> : null;
const needInserted = React.Children.count(children) === 1 && !iconType;
const kids = React.Children.map(children, child => insertSpace(child, needInserted));
2015-09-27 16:30:35 +08:00
return (
<button
2017-02-27 11:18:48 +08:00
{...omit(others, ['loading', 'clicked'])}
2016-03-03 21:33:02 +08:00
type={htmlType || 'button'}
className={classes}
2016-04-20 12:18:59 +08:00
onMouseUp={this.handleMouseUp}
onClick={this.handleClick}
>
2016-12-26 19:46:01 +08:00
{iconNode}{kids}
</button>
);
2015-09-27 16:30:35 +08:00
}
}