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.
87 lines
2.2 KiB
87 lines
2.2 KiB
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import { findDOMNode } from 'react-dom';
|
|
|
|
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;
|
|
}
|
|
|
|
function clearButton(button) {
|
|
button.className = button.className.replace(`${prefix}clicked`, '');
|
|
}
|
|
|
|
export default class Button extends React.Component {
|
|
handleClick(...args) {
|
|
// Add click effect
|
|
const buttonNode = findDOMNode(this);
|
|
clearButton(buttonNode);
|
|
setTimeout(() => buttonNode.className += ` ${prefix}clicked`, 10);
|
|
clearTimeout(this.timeout);
|
|
this.timeout = setTimeout(() => clearButton(buttonNode), 500);
|
|
|
|
this.props.onClick(...args);
|
|
}
|
|
render() {
|
|
const props = this.props;
|
|
const { type, shape, size, className, htmlType, children, ...others } = props;
|
|
|
|
// large => lg
|
|
// small => sm
|
|
const sizeCls = ({
|
|
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),
|
|
[className]: className,
|
|
});
|
|
|
|
const kids = React.Children.map(children, insertSpace);
|
|
|
|
return (
|
|
<button {...others}
|
|
type={htmlType || 'button'}
|
|
className={classes}
|
|
onClick={this.handleClick.bind(this)}>
|
|
{kids}
|
|
</button>
|
|
);
|
|
}
|
|
}
|
|
|
|
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,
|
|
};
|
|
|
|
Button.defaultProps = {
|
|
onClick() {},
|
|
};
|
|
|