2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-12-04 07:26:40 +00:00
|
|
|
import Motion from 'flavours/glitch/util/optional_motion';
|
2017-05-20 12:58:13 +00:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-02-13 16:20:18 +00:00
|
|
|
|
|
|
|
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 }) =>
|
2018-01-18 15:13:07 +00:00
|
|
|
(<div style={{ height: `${height}px`, overflow: 'hidden', opacity: opacity / 100, display: Math.floor(opacity) === 0 ? 'none' : 'block' }}>
|
2017-02-13 16:20:18 +00:00
|
|
|
{children}
|
2018-01-18 15:13:07 +00:00
|
|
|
</div>)
|
2017-02-13 16:20:18 +00:00
|
|
|
}
|
|
|
|
</Motion>
|
|
|
|
);
|
|
|
|
|
|
|
|
Collapsable.propTypes = {
|
2017-04-21 18:05:35 +00:00
|
|
|
fullHeight: PropTypes.number.isRequired,
|
|
|
|
isVisible: PropTypes.bool.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
children: PropTypes.node.isRequired,
|
2017-02-13 16:20:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Collapsable;
|