2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-03-24 23:01:43 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class TextIconButton extends React.PureComponent {
|
2017-03-24 23:01:43 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
|
|
}
|
2017-03-24 23:01:43 +00:00
|
|
|
|
|
|
|
handleClick (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.onClick();
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-24 23:01:43 +00:00
|
|
|
|
|
|
|
render () {
|
2017-04-23 18:33:44 +00:00
|
|
|
const { label, title, active, ariaControls } = this.props;
|
2017-03-24 23:01:43 +00:00
|
|
|
|
|
|
|
return (
|
2017-04-23 18:33:44 +00:00
|
|
|
<button title={title} aria-label={title} className={`text-icon-button ${active ? 'active' : ''}`} aria-expanded={active} onClick={this.handleClick} aria-controls={ariaControls}>
|
2017-03-24 23:01:43 +00:00
|
|
|
{label}
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextIconButton.propTypes = {
|
|
|
|
label: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string,
|
|
|
|
active: PropTypes.bool,
|
2017-04-23 18:33:44 +00:00
|
|
|
onClick: PropTypes.func.isRequired,
|
|
|
|
ariaControls: PropTypes.string
|
2017-04-21 18:05:35 +00:00
|
|
|
};
|
2017-03-24 23:01:43 +00:00
|
|
|
|
|
|
|
export default TextIconButton;
|