2016-08-31 20:58:10 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
|
|
|
|
const IconButton = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
title: React.PropTypes.string.isRequired,
|
|
|
|
icon: React.PropTypes.string.isRequired,
|
2016-12-22 22:03:57 +00:00
|
|
|
onClick: React.PropTypes.func,
|
2016-09-01 11:21:48 +00:00
|
|
|
size: React.PropTypes.number,
|
2016-11-10 00:32:32 +00:00
|
|
|
active: React.PropTypes.bool,
|
|
|
|
style: React.PropTypes.object,
|
2016-12-22 22:03:57 +00:00
|
|
|
activeStyle: React.PropTypes.object,
|
|
|
|
disabled: React.PropTypes.bool
|
2016-08-31 20:58:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps () {
|
|
|
|
return {
|
2016-09-01 11:21:48 +00:00
|
|
|
size: 18,
|
2016-12-22 22:03:57 +00:00
|
|
|
active: false,
|
|
|
|
disabled: false
|
2016-08-31 20:58:10 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
handleClick (e) {
|
|
|
|
e.preventDefault();
|
2016-12-22 22:03:57 +00:00
|
|
|
|
|
|
|
if (!this.props.disabled) {
|
|
|
|
this.props.onClick();
|
|
|
|
}
|
2016-08-31 20:58:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
2016-11-10 00:32:32 +00:00
|
|
|
let style = {
|
2016-09-29 22:00:45 +00:00
|
|
|
display: 'inline-block',
|
2016-11-02 21:29:19 +00:00
|
|
|
border: 'none',
|
|
|
|
padding: '0',
|
|
|
|
background: 'transparent',
|
2016-09-29 22:00:45 +00:00
|
|
|
fontSize: `${this.props.size}px`,
|
2016-11-02 21:29:19 +00:00
|
|
|
width: `${this.props.size * 1.28571429}px`,
|
2016-09-29 22:00:45 +00:00
|
|
|
height: `${this.props.size}px`,
|
2016-11-02 21:29:19 +00:00
|
|
|
lineHeight: `${this.props.size}px`,
|
2016-11-07 17:23:36 +00:00
|
|
|
...this.props.style
|
2016-09-29 22:00:45 +00:00
|
|
|
};
|
|
|
|
|
2016-11-10 00:32:32 +00:00
|
|
|
if (this.props.active) {
|
|
|
|
style = { ...style, ...this.props.activeStyle };
|
|
|
|
}
|
|
|
|
|
2016-08-31 20:58:10 +00:00
|
|
|
return (
|
2016-12-22 22:03:57 +00:00
|
|
|
<button aria-label={this.props.title} title={this.props.title} className={`icon-button ${this.props.active ? 'active' : ''} ${this.props.disabled ? 'disabled' : ''}`} onClick={this.handleClick} style={style}>
|
2016-11-02 21:29:19 +00:00
|
|
|
<i className={`fa fa-fw fa-${this.props.icon}`} aria-hidden='true' />
|
2016-11-02 19:18:39 +00:00
|
|
|
</button>
|
2016-08-31 20:58:10 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default IconButton;
|