2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-05-20 15:31:47 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class ColumnHeader extends React.PureComponent {
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
icon: PropTypes.string,
|
|
|
|
type: PropTypes.string,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
hideOnMobile: PropTypes.bool,
|
2017-05-20 15:31:47 +00:00
|
|
|
columnHeaderId: PropTypes.string,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
2016-09-05 22:44:28 +00:00
|
|
|
this.props.onClick();
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-05 22:44:28 +00:00
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
render () {
|
2017-04-22 15:30:35 +00:00
|
|
|
const { type, active, hideOnMobile, columnHeaderId } = this.props;
|
2017-02-20 23:10:49 +00:00
|
|
|
|
2016-09-05 22:44:28 +00:00
|
|
|
let icon = '';
|
|
|
|
|
|
|
|
if (this.props.icon) {
|
2017-04-23 02:26:55 +00:00
|
|
|
icon = <i className={`fa fa-fw fa-${this.props.icon} column-header__icon`} />;
|
2016-09-05 22:44:28 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
return (
|
2017-04-22 15:30:35 +00:00
|
|
|
<div role='button heading' tabIndex='0' className={`column-header ${active ? 'active' : ''} ${hideOnMobile ? 'hidden-on-mobile' : ''}`} onClick={this.handleClick} id={columnHeaderId || null}>
|
2016-09-05 22:44:28 +00:00
|
|
|
{icon}
|
2017-02-20 23:10:49 +00:00
|
|
|
{type}
|
2016-08-24 15:56:44 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|