2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
class ColumnCollapsable extends React.PureComponent {
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
icon: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string,
|
|
|
|
fullHeight: PropTypes.number.isRequired,
|
|
|
|
children: PropTypes.node,
|
2017-05-20 11:31:47 -04:00
|
|
|
onCollapse: PropTypes.func,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2017-05-20 11:31:47 -04:00
|
|
|
collapsed: true,
|
2017-05-22 09:01:27 -04:00
|
|
|
animating: false,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleToggleCollapsed = () => {
|
2017-01-10 11:25:10 -05:00
|
|
|
const currentState = this.state.collapsed;
|
|
|
|
|
2017-05-22 09:01:27 -04:00
|
|
|
this.setState({ collapsed: !currentState, animating: true });
|
2017-01-10 11:25:10 -05:00
|
|
|
|
|
|
|
if (!currentState && this.props.onCollapse) {
|
|
|
|
this.props.onCollapse();
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-05-22 09:01:27 -04:00
|
|
|
handleTransitionEnd = () => {
|
|
|
|
this.setState({ animating: false });
|
|
|
|
}
|
|
|
|
|
2017-01-10 11:25:10 -05:00
|
|
|
render () {
|
2017-04-08 07:07:55 -04:00
|
|
|
const { icon, title, fullHeight, children } = this.props;
|
2017-05-22 09:01:27 -04:00
|
|
|
const { collapsed, animating } = this.state;
|
2017-02-22 20:14:35 -05:00
|
|
|
|
2017-01-10 11:25:10 -05:00
|
|
|
return (
|
2017-05-22 09:01:27 -04:00
|
|
|
<div className={`column-collapsable ${collapsed ? 'collapsed' : ''}`} onTransitionEnd={this.handleTransitionEnd}>
|
2017-05-16 18:24:46 -04:00
|
|
|
<div role='button' tabIndex='0' title={`${title}`} className='column-collapsable__button column-icon' onClick={this.handleToggleCollapsed}>
|
2017-04-15 07:27:27 -04:00
|
|
|
<i className={`fa fa-${icon}`} />
|
|
|
|
</div>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-05-19 05:42:54 -04:00
|
|
|
<div className='column-collapsable__content' style={{ height: `${fullHeight}px` }}>
|
2017-05-22 09:01:27 -04:00
|
|
|
{(!collapsed || animating) && children}
|
2017-05-16 18:24:46 -04:00
|
|
|
</div>
|
2017-01-10 11:25:10 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 11:31:47 -04:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
|
|
|
|
2017-01-10 11:25:10 -05:00
|
|
|
export default ColumnCollapsable;
|