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
|
|
|
|
2019-08-03 17:10:50 +00:00
|
|
|
const iconStyle = {
|
|
|
|
height: null,
|
|
|
|
lineHeight: '27px',
|
|
|
|
width: `${18 * 1.28571429}px`,
|
|
|
|
};
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class TextIconButton extends React.PureComponent {
|
2017-03-24 23:01:43 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
label: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onClick: PropTypes.func.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
ariaControls: PropTypes.string,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2017-03-24 23:01:43 +00:00
|
|
|
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 (
|
2019-08-03 17:10:50 +00:00
|
|
|
<button
|
|
|
|
title={title}
|
|
|
|
aria-label={title}
|
|
|
|
className={`text-icon-button ${active ? 'active' : ''}`}
|
|
|
|
aria-expanded={active}
|
|
|
|
onClick={this.handleClick}
|
|
|
|
aria-controls={ariaControls} style={iconStyle}
|
|
|
|
>
|
2017-03-24 23:01:43 +00:00
|
|
|
{label}
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|