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