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.
73 lines
1.8 KiB
73 lines
1.8 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;
|
|
}
|
|
|
|
export default class Button extends React.Component {
|
|
componentDidMount() {
|
|
if (window && window.PIE) {
|
|
window.PIE.attach(findDOMNode(this));
|
|
}
|
|
}
|
|
render() {
|
|
const props = this.props;
|
|
const {type, shape, size, onClick, 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={onClick}>
|
|
{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() {},
|
|
};
|
|
|