import React from 'react'; import PropTypes from 'prop-types'; export default class ColumnCollapsable extends React.PureComponent { static propTypes = { icon: PropTypes.string.isRequired, title: PropTypes.string, fullHeight: PropTypes.number.isRequired, children: PropTypes.node, onCollapse: PropTypes.func, }; state = { collapsed: true, animating: false, }; handleToggleCollapsed = () => { const currentState = this.state.collapsed; this.setState({ collapsed: !currentState, animating: true }); if (!currentState && this.props.onCollapse) { this.props.onCollapse(); } } handleTransitionEnd = () => { this.setState({ animating: false }); } render () { const { icon, title, fullHeight, children } = this.props; const { collapsed, animating } = this.state; return (
{(!collapsed || animating) && children}
); } }