about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/collapsable.jsx
blob: aeebb4b0f21b74632a48d6c987b88f41f07c978d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Motion, spring } from 'react-motion';

const Collapsable = ({ fullHeight, isVisible, children }) => (
  <Motion defaultStyle={{ opacity: !isVisible ? 0 : 100, height: isVisible ? fullHeight : 0 }} style={{ opacity: spring(!isVisible ? 0 : 100), height: spring(!isVisible ? 0 : fullHeight) }}>
    {({ opacity, height }) =>
      <div style={{ height: `${height}px`, overflow: 'hidden', opacity: opacity / 100, display: Math.floor(opacity) === 0 ? 'none' : 'block' }}>
        {children}
      </div>
    }
  </Motion>
);

Collapsable.propTypes = {
  fullHeight: React.PropTypes.number.isRequired,
  isVisible: React.PropTypes.bool.isRequired,
  children: React.PropTypes.node.isRequired
};

export default Collapsable;