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

47 lines
1.1 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.isRequired,
size: React.PropTypes.number,
active: React.PropTypes.bool
2016-08-31 22:58:10 +02:00
},
getDefaultProps () {
return {
size: 18,
active: false
2016-08-31 22:58:10 +02:00
};
},
mixins: [PureRenderMixin],
handleClick (e) {
e.preventDefault();
this.props.onClick();
e.stopPropagation();
2016-08-31 22:58:10 +02:00
},
render () {
2016-09-30 00:00:45 +02:00
const style = {
display: 'inline-block',
fontSize: `${this.props.size}px`,
width: `${this.props.size}px`,
height: `${this.props.size}px`,
lineHeight: `${this.props.size}px`
};
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' : ''}`} onClick={this.handleClick} style={style}>
<i className={`fa fa-fw fa-${this.props.icon}`} aria-hidden='true'></i>
</button>
2016-08-31 22:58:10 +02:00
);
}
});
export default IconButton;