mastodon/app/assets/javascripts/components/components/icon_button.jsx

61 lines
1.4 KiB
React
Raw Normal View History

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