ant-design/components/button/button.tsx

115 lines
3.2 KiB
TypeScript
Raw Normal View History

2015-09-27 16:30:35 +08:00
import React from 'react';
import classNames from 'classnames';
import { findDOMNode } from 'react-dom';
2016-03-25 18:13:51 +08:00
import Icon from '../icon';
2016-06-22 13:18:43 +08:00
import splitObject from '../_util/splitObject';
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) {
return typeof str === 'string';
}
// Insert one space between two chinese characters automatically.
function insertSpace(child) {
if (isString(child.type) && isTwoCNChar(child.props.children)) {
return React.cloneElement(child, {},
child.props.children.split('').join(' '));
}
2016-04-12 11:56:14 +08:00
if (isString(child)) {
if (isTwoCNChar(child)) {
child = child.split('').join(' ');
}
return <span>{child}</span>;
}
2015-09-27 16:30:35 +08:00
return child;
}
export default class Button extends React.Component {
static defaultProps = {
2016-04-06 15:50:58 +08:00
prefixCls: 'ant-btn',
onClick() {},
2016-04-12 12:17:03 +08:00
loading: false,
}
static propTypes = {
type: React.PropTypes.string,
shape: React.PropTypes.oneOf(['circle', 'circle-outline']),
2016-04-06 15:52:38 +08:00
size: React.PropTypes.oneOf(['large', 'default', 'small']),
htmlType: React.PropTypes.oneOf(['submit', 'button', 'reset']),
onClick: React.PropTypes.func,
loading: React.PropTypes.bool,
className: React.PropTypes.string,
icon: React.PropTypes.string,
}
2016-05-28 15:31:39 +08:00
componentWillUnmount() {
if (this.clickedTimeout) {
clearTimeout(this.clickedTimeout);
}
if (this.timeout) {
clearTimeout(this.timeout);
}
}
2016-04-06 15:50:58 +08:00
clearButton = (button) => {
2016-04-18 17:24:51 +08:00
button.className = button.className.replace(` ${this.props.prefixCls}-clicked`, '');
2016-04-06 15:50:58 +08:00
}
handleClick = (...args) => {
2016-03-03 21:33:02 +08:00
// Add click effect
const buttonNode = findDOMNode(this);
2016-04-06 15:50:58 +08:00
this.clearButton(buttonNode);
2016-05-28 15:31:39 +08:00
this.clickedTimeout = setTimeout(() => buttonNode.className += ` ${this.props.prefixCls}-clicked`, 10);
2016-03-03 21:33:02 +08:00
clearTimeout(this.timeout);
2016-04-06 15:50:58 +08:00
this.timeout = setTimeout(() => this.clearButton(buttonNode), 500);
2016-03-03 21:33:02 +08:00
2016-02-23 00:05:26 +08:00
this.props.onClick(...args);
}
// Handle auto focus when click button in Chrome
2016-04-20 12:18:59 +08:00
handleMouseUp = (e) => {
findDOMNode(this).blur();
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 props = this.props;
2016-06-22 13:18:43 +08:00
const [{type, shape, size, className, htmlType, children, icon, loading, prefixCls}, others] = splitObject(props,
['type', 'shape','size', 'className','htmlType', 'children','icon','loading','prefixCls']);
2015-09-27 16:30:35 +08:00
// large => lg
// small => sm
const sizeCls = ({
2016-01-05 14:42:06 +08:00
large: 'lg',
small: 'sm',
})[size] || '';
const classes = classNames({
2016-04-06 15:50:58 +08:00
[prefixCls]: true,
[`${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,
2016-03-03 21:33:02 +08:00
[className]: className,
});
2015-09-27 16:30:35 +08:00
2016-04-12 12:17:03 +08:00
const iconType = loading ? 'loading' : icon;
2015-09-27 16:30:35 +08:00
const kids = React.Children.map(children, insertSpace);
return (
2016-03-03 21:33:02 +08:00
<button {...others}
type={htmlType || 'button'}
className={classes}
2016-04-20 12:18:59 +08:00
onMouseUp={this.handleMouseUp}
onClick={this.handleClick}
>
2016-04-12 12:17:03 +08:00
{iconType ? <Icon type={iconType} /> : null}{kids}
</button>
);
2015-09-27 16:30:35 +08:00
}
}