ant-design/components/button/button.jsx

88 lines
2.2 KiB
React
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';
2015-09-27 16:30:35 +08:00
const rxTwoCNChar = /^[\u4e00-\u9fa5]{2,2}$/;
const isTwoCNChar = rxTwoCNChar.test.bind(rxTwoCNChar);
function isString(str) {
return typeof str === 'string';
}
const prefix = 'ant-btn-';
// Insert one space between two chinese characters automatically.
function insertSpace(child) {
if (isString(child) && isTwoCNChar(child)) {
return child.split('').join(' ');
}
if (isString(child.type) && isTwoCNChar(child.props.children)) {
return React.cloneElement(child, {},
child.props.children.split('').join(' '));
}
return child;
}
2016-03-03 21:33:02 +08:00
function clearButton(button) {
button.className = button.className.replace(`${prefix}clicked`, '');
}
2015-09-27 16:30:35 +08:00
export default class Button extends React.Component {
2016-02-23 00:05:26 +08:00
handleClick(...args) {
2016-03-03 21:33:02 +08:00
// Add click effect
const buttonNode = findDOMNode(this);
2016-03-03 21:33:02 +08:00
clearButton(buttonNode);
setTimeout(() => buttonNode.className += ` ${prefix}clicked`, 10);
clearTimeout(this.timeout);
this.timeout = setTimeout(() => clearButton(buttonNode), 500);
2016-02-23 00:05:26 +08:00
this.props.onClick(...args);
}
2015-09-27 16:30:35 +08:00
render() {
const props = this.props;
const { type, shape, size, className, htmlType, children, ...others } = props;
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({
'ant-btn': true,
[prefix + type]: type,
[prefix + shape]: shape,
[prefix + sizeCls]: sizeCls,
[`${prefix}loading`]: ('loading' in props && props.loading !== false),
2016-03-03 21:33:02 +08:00
[className]: className,
});
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}
onClick={this.handleClick.bind(this)}>
{kids}
</button>
);
2015-09-27 16:30:35 +08:00
}
}
2015-10-28 15:45:31 +08:00
Button.propTypes = {
type: React.PropTypes.string,
shape: React.PropTypes.string,
size: React.PropTypes.string,
htmlType: React.PropTypes.string,
onClick: React.PropTypes.func,
loading: React.PropTypes.bool,
className: React.PropTypes.string,
};
2015-09-27 16:30:35 +08:00
Button.defaultProps = {
onClick() {},
};