2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2017-05-21 00:31:47 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2018-01-24 12:03:51 +09:00
|
|
|
import classNames from 'classnames';
|
2019-02-01 08:14:05 +09:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2016-08-31 23:15:12 +09:00
|
|
|
|
2017-06-24 02:36:54 +09:00
|
|
|
export default class ColumnHeader extends React.PureComponent {
|
2016-08-31 23:15:12 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
static propTypes = {
|
|
|
|
icon: PropTypes.string,
|
|
|
|
type: PropTypes.string,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onClick: PropTypes.func,
|
2017-05-21 00:31:47 +09:00
|
|
|
columnHeaderId: PropTypes.string,
|
2017-05-12 21:44:10 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
2016-09-06 07:44:28 +09:00
|
|
|
this.props.onClick();
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2016-09-06 07:44:28 +09:00
|
|
|
|
2016-08-31 23:15:12 +09:00
|
|
|
render () {
|
2018-01-24 12:03:51 +09:00
|
|
|
const { icon, type, active, columnHeaderId } = this.props;
|
|
|
|
let iconElement = '';
|
2017-02-21 08:10:49 +09:00
|
|
|
|
2018-01-24 12:03:51 +09:00
|
|
|
if (icon) {
|
2019-02-01 08:14:05 +09:00
|
|
|
iconElement = <Icon id={icon} fixedWidth className='column-header__icon' />;
|
2016-09-06 07:44:28 +09:00
|
|
|
}
|
|
|
|
|
2016-08-25 00:56:44 +09:00
|
|
|
return (
|
2018-01-24 12:03:51 +09:00
|
|
|
<h1 className={classNames('column-header', { active })} id={columnHeaderId || null}>
|
|
|
|
<button onClick={this.handleClick}>
|
|
|
|
{iconElement}
|
|
|
|
{type}
|
|
|
|
</button>
|
|
|
|
</h1>
|
2016-08-25 00:56:44 +09:00
|
|
|
);
|
|
|
|
}
|
2016-08-31 23:15:12 +09:00
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|