
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@nkbt/react-collapse
Advanced tools
Component-wrapper for collapse animation for elements with variable (and dynamic) height
Component-wrapper for collapse animation for elements with variable (and dynamic) height

npm install --save react-collapse
<script src="https://unpkg.com/react/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-collapse/build/react-collapse.min.js"></script>
(Module exposed as `ReactCollapse`)
http://nkbt.github.io/react-collapse
http://codepen.io/nkbt/pen/MarzEg
Default behaviour, never unmounts content
import {Collapse} from 'react-collapse';
// ...
<Collapse isOpened={true || false}>
<div>Random content</div>
</Collapse>
If you want to unmount collapsed content, use Unmount component provided as:
import {UnmountClosed} from 'react-collapse';
// ...
<UnmountClosed isOpened={true || false}>
<div>Random content</div>
</UnmountClosed>
isOpened: PropTypes.boolean.isRequiredExpands or collapses content.
children: PropTypes.node.isRequiredOne or multiple children with static, variable or dynamic height.
<Collapse isOpened={true}>
<p>Paragraph of text</p>
<p>Another paragraph is also OK</p>
<p>Images and any other content are ok too</p>
<img src="nyancat.gif" />
</Collapse>
hasNestedCollapse: PropTypes.bool (default: false)If Collapse component has more Collapse components inside, it needs hasNestedCollapse to be set
to avoid delayed animations. See https://github.com/nkbt/react-collapse/issues/76 for tech details.
<Collapse isOpened={true} hasNestedCollapse={true}>
<Collapse isOpened={true}>
<div>Nested collapse</div>
</Collapse>
<Collapse isOpened={true}>
<div>Nested collapse</div>
</Collapse>
</Collapse>
fixedHeight: PropTypes.numberIf content's height is known ahead it is possible pass optional fixedHeight prop with number of pixels.
<Collapse isOpened={true} fixedHeight={100}>
<div>Animated container will always expand to 100px height</div>
</Collapse>
springConfig: PropTypes.objectOf(PropTypes.number)Custom config {stiffness, damping, precision} passed to the spring function (see https://github.com/chenglou/react-motion#--spring-val-number-config-springhelperconfig--opaqueconfig)
import {presets} from 'react-motion';
<Collapse isOpened={true} springConfig={presets.wobbly}>
<div>Wobbly animated container</div>
</Collapse>
<Collapse isOpened={true} springConfig={{stiffness: 100, damping: 20}}>
<div>Customly animated container</div>
</Collapse>
forceInitialAnimation: PropTypes.booleanWhen initially opened, by default collapse content will be opened without animation, instantly. With this option set to true you can enforce initial rendering to be smoothly expanded from 0.
It is used internally in Unmount component implementation.
theme: PropTypes.objectOf(PropTypes.string)It is possible to set className for extra div elements that ReactCollapse creates.
Example:
<Collapse theme={{collapse: 'foo', content: 'bar'}}>
<div>Customly animated container</div>
</Collapse>
Default values:
const theme = {
collapse: 'ReactCollapse--collapse',
content: 'ReactCollapse--content'
}
Which ends up in the following markup:
<div class="ReactCollapse--collapse">
<div class="ReactCollapse--content">
{children}
</div>
</div>
NOTE: these are not style objects, but class names!
onRest: PropTypes.funcCallback function for animation finished from react-motion. It can be used to trigger any function after animation is done.
<Collapse onRest={() => console.log(123)}>
<div>Container text</div>
</Collapse>
onMeasure: PropTypes.funcCallback function for changes in height. Also passes measured width. As an example it can be used to implement auto-scroll if content expand below the fold.
<Collapse onMeasure={({height, width}) => this.setState({height, width})}>
<div>Container text</div>
</Collapse>
onRender: PropTypes.funcCallback function for every re-render while animating.
Passes current height, as well as from/to heights.
DANGEROUS use with caution, may have huge performance impact if used improperly. Never do setState with it, since it is running while rendering and React will shoot Warning.
Possible usage: synchronous scrolling of some other component
<Collapse onRender={({current, from, to}) => (this.anotherComponent.scrollTop = current)}>
<div>Container text</div>
</Collapse>
All other props are applied to a container that is being resized. So it is possible to pass style or className, for example.
<Collapse isOpened={true}
style={{width: 200, border: '1px solid red'}}
className="collapse">
<div>
Animated container has red border, 200px width
and has `class="collapse"`
</div>
</Collapse>
overflow and height styles for Collapse (see #16), and ReactCollapse may behave unexpectedly. Do it only when you definitely know you need it, otherwise, never override overflow and height styles.V2:
import Collapse from 'react-collapse';
V3
import {Collapse} from 'react-collapse';
UnmountCollapsedV2:
import Collapse from 'react-collapse';
<Collapse isOpened={true || false}>
<div>Random content</div>
</Collapse>
V3:
import {UnmountClosed as Collapse} from 'react-collapse';
<Collapse isOpened={true || false}>
<div>Random content</div>
</Collapse>
onHeightReady renamed to onMeasure which now takes object of shape {width, height}V2:
<Collapse onHeightReady={height => console.log(height)}>
<div>Random content</div>
</Collapse>
V3:
<Collapse onMeasure={({height, width}) => console.log(height, width)}>
<div>Random content</div>
</Collapse>
hasNestedCollapse, forceInitialAnimation, onRender, etcCurrently is being developed and tested with the latest stable Node on OSX.
To run example covering all ReactCollapse features, use yarn start, which will compile example/Example.js
git clone git@github.com:nkbt/react-collapse.git
cd react-collapse
yarn install
yarn start
# then
open http://localhost:8080
# to run ESLint check
yarn lint
# to run tests
yarn test
MIT
FAQs
Component-wrapper for collapse animation for elements with variable (and dynamic) height
We found that @nkbt/react-collapse demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.