2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-01-10 16:25:10 +00:00
|
|
|
import { Motion, spring } from 'react-motion';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-10 16:25:10 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class ColumnCollapsable extends React.PureComponent {
|
2017-01-10 16:25:10 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
icon: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string,
|
|
|
|
fullHeight: PropTypes.number.isRequired,
|
|
|
|
children: PropTypes.node,
|
|
|
|
onCollapse: PropTypes.func
|
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
collapsed: true
|
|
|
|
};
|
|
|
|
|
|
|
|
handleToggleCollapsed = () => {
|
2017-01-10 16:25:10 +00:00
|
|
|
const currentState = this.state.collapsed;
|
|
|
|
|
|
|
|
this.setState({ collapsed: !currentState });
|
|
|
|
|
|
|
|
if (!currentState && this.props.onCollapse) {
|
|
|
|
this.props.onCollapse();
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-01-10 16:25:10 +00:00
|
|
|
|
|
|
|
render () {
|
2017-04-08 11:07:55 +00:00
|
|
|
const { icon, title, fullHeight, children } = this.props;
|
2017-01-10 16:25:10 +00:00
|
|
|
const { collapsed } = this.state;
|
2017-02-10 15:35:19 +00:00
|
|
|
const collapsedClassName = collapsed ? 'collapsable-collapsed' : 'collapsable';
|
2017-02-23 01:14:35 +00:00
|
|
|
|
2017-01-10 16:25:10 +00:00
|
|
|
return (
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='column-collapsable'>
|
|
|
|
<div role='button' tabIndex='0' title={`${title}`} className={`column-icon ${collapsedClassName}`} onClick={this.handleToggleCollapsed}>
|
2017-04-15 11:27:27 +00:00
|
|
|
<i className={`fa fa-${icon}`} />
|
|
|
|
</div>
|
2017-01-10 16:25:10 +00:00
|
|
|
|
2017-01-17 19:09:03 +00:00
|
|
|
<Motion defaultStyle={{ opacity: 0, height: 0 }} style={{ opacity: spring(collapsed ? 0 : 100), height: spring(collapsed ? 0 : fullHeight, collapsed ? undefined : { stiffness: 150, damping: 9 }) }}>
|
2017-01-10 16:25:10 +00:00
|
|
|
{({ opacity, height }) =>
|
2017-02-05 00:27:31 +00:00
|
|
|
<div style={{ overflow: height === fullHeight ? 'auto' : 'hidden', height: `${height}px`, opacity: opacity / 100, maxHeight: '70vh' }}>
|
2017-01-10 16:25:10 +00:00
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</Motion>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 16:25:10 +00:00
|
|
|
export default ColumnCollapsable;
|