mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
1948f9e767
* Remove deprecated features at React v15.5
- [x] React.PropTypes
- [x] react-addons-pure-render-mixin
- [x] react-addons-test-utils
* Uncommented out & Add browserify_rails options
* re-add react-addons-shallow
* Fix syntax error from resolve conflicts
* follow up 59a77923b3
21 lines
746 B
JavaScript
21 lines
746 B
JavaScript
import { Motion, spring } from 'react-motion';
|
|
import PropTypes from 'prop-types';
|
|
|
|
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: PropTypes.number.isRequired,
|
|
isVisible: PropTypes.bool.isRequired,
|
|
children: PropTypes.node.isRequired
|
|
};
|
|
|
|
export default Collapsable;
|