about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/collapsable.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/components/collapsable.js')
-rw-r--r--app/javascript/mastodon/components/collapsable.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/javascript/mastodon/components/collapsable.js b/app/javascript/mastodon/components/collapsable.js
new file mode 100644
index 000000000..a61f67d8e
--- /dev/null
+++ b/app/javascript/mastodon/components/collapsable.js
@@ -0,0 +1,21 @@
+import React from 'react';
+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;