React-Move
Beautiful, data-driven animations for React.
Features
- Built-in support for interpolating:
- Strings
- Numbers
- Colors
- SVG paths
- SVG transforms
- Animate HTML, SVG & React-Native
- Fine-grained control of delay, duration and easing
- Animation lifecycle events: start, interrupt, end
- Custom tweening functions
- Awesome documentation and lots of examples
- Supported in React, React-Native & React-VR
- Supports TypeScript
Demos
React-Move vs React-Motion
-
React-move allows you to define your animations using durations, delays and ease functions.
In react-motion you use spring configurations to define your animations.
-
React-move has built-in support for interpolating strings, numbers, colors, SVG paths and SVG transforms.
With react-motion you can only interpolate numbers so you have to do a bit more work or include another library to work with colors, paths, etc.
-
In react-move you can define different animations for entering, updating and leaving with the ability to specify delay, duration and ease on each individual key.
React-motion allows you to define a spring configuration for each key in the "style" object.
-
React-move has lifecycle events on its transitions.
You can pass a function to be called on transition start, interrupt or end.
React-motion has an "onRest" prop that fires a callback when the animation stops (just the Motion
component not TransitionMotion
or StaggeredMotion
).
-
React-move also allows you to pass your own custom interpolators. It's all springs in react-motion.
-
React-move is also smaller. An unminified UMD build of react-motion is 62kb while react-move is 51kb.
Minified and gzipped react-move (including all its dependencies) is just 9.15kb!
Installation
$ yarn add react-move
$ npm install react-move
Documentation
The docs below are for version 2.x.x of React-Move.
Older versions:
< NodeGroup />
The NodeGroup component allows you to create complex animated transitions. You pass it an array of objects and a key accessor function and it will run your enter, update and leave transitions as the data updates.
The idea is similar to transition components like react-transition-group or react-motion's TransitionMotion but you use objects to express how you want your state to transition.
Not only can you can have independent duration, delay and easing for entering, updating and leaving but each individual key in your state can define its own timing!
Component Props
Name | Type | Default | Description |
---|
data * | Array | | An array of data objects. The data prop is treated as immutable so the nodes will only update if prev.data !== next.data. |
keyAccessor * | function | | Function that returns a string key given a data object and its index. Used to track which nodes are entering, updating and leaving. |
start * | function | | A function that returns the starting state. The function is passed the data and index and must return an object. |
enter | function | () => {} | A function that returns an object or array of objects describing how the state should transform on enter. The function is passed the data and index. |
update | function | () => {} | A function that returns an object or array of objects describing how the state should transform on update. The function is passed the data and index. |
leave | function | () => {} | A function that returns an object or array of objects describing how the state should transform on leave. The function is passed the data and index. |
children * | function | | A function that renders the nodes. It should accept an array of nodes as its only argument. Each node is an object with the key, data, state and a type of 'ENTER', 'UPDATE' or 'LEAVE'. |
Usage
Go to live examples, code and docs!
A typical usage of NodeGroup looks like this...
<NodeGroup
data={this.state.data}
keyAccessor={(d) => d.name}
start={(data, index) => ({
...
})}
enter={(data, index) => ({
...
})}
update={(data, index) => ({
...
})}
leave={(data, index) => ({
...
})}
>
{(nodes) => (
...
{nodes.map(({ key, data, state }) => {
...
})}
...
)}
</NodeGroup>
Transitions
Go to live examples, code and docs!
<NodeGroup
data={this.state.data}
keyAccessor={(d) => d.name}
start={(data, index) => ({
opacity: 1e-6,
x: 1e-6,
fill: 'green',
width: scale.bandwidth(),
})}
enter={(data, index) => ({
opacity: [0.5],
x: [scale(data.name)],
timing: { duration: 1500 },
})}
update={(data) => ({
...
})}
leave={() => ({
...
})}
>
{(nodes) => (
...
)}
</NodeGroup>
You return an object or an array of objects in your enter, update and leave functions.
Instead of simply returning the next state these objects describe how to transform the state.
This is far more powerful than just returning a state object. By approaching it this way, you can describe really complex transformations and handle interrupts easily.
If you're familiar with D3, this approach mimics selection/transition behavior. In D3 your are really describing how the state should look on enter, update and exit and how to get there: set the value immediately or transition to it.
D3 deals with the fact that transitions might be in-flight or the key is already at that value in the background without you having to worry about that.
The NodeGroup takes the same approach but it's done in idiomatic React.
Each object returned from your enter, update and leave functions can specify its own duration, delay, easing and events independently.
To support that, inside your object there are two special keys you can use: timing and events. Both are optional.
Timing and events are covered in more detail below.
The rest of the keys in each object are assumed to be keys in your state.
If you aren't transitioning anything then it wouldn't make sense to be using NodeGroup.
That said, like in D3, it's also convenient to be able to set a key to value when a node enters, updates or leaves without transitioning.
To support this you can return four different types of values to specify how you want to transform the state.
-
string or number
: Set the key to the value immediately with no transition.
-
array [value]
: Transition from the key's current value to the specified value. Value is a string or number.
-
array [value, value]
: Transition from the first value to the second value. Each value is a string or number.
-
function
: Function will be used as a custom tween function.
In all cases above a "string" can be a color, path, transform (the key must be called "transform" see below), etc and it will be interpolated using the correct interpolator.
See the interpolators section below.
Timing
Go to live examples, code and docs!
If there's no timing key in your object you'll get the timing defaults.
You can specify just the things you want to override on your timing key.
Here's the timing defaults...
const defaultTiming = {
delay: 0,
duration: 250,
ease: easeLinear,
};
For the ease key, just provide the function. You can use any easing function, like those from d3-ease...
List of ease functions exported from d3-ease
Passing an array of objects
Go to live examples, code and docs!
Each object can define its own timing and it will be applied to any transitions in the object.
import { easeQuadInOut } from 'd3-ease';
...
<NodeGroup
data={this.state.data}
keyAccessor={(d) => d.name}
start={(data, index) => ({
opacity: 1e-6,
x: 1e-6,
fill: 'green',
width: scale.bandwidth(),
})}
enter={(data, index) => ([
{
opacity: [0.5],
timing: { duration: 1000 },
},
{
x: [scale(data.name)],
timing: { delay: 750, duration: 1500, ease: easeQuadInOut },
},
])}
update={(data) => ({
...
})}
leave={() => ({
...
})}
>
{(nodes) => (
...
)}
</NodeGroup>
Contributing
We love contributions from the community! Read the contributing info here.
Run the repo locally
- Fork this repo
npm install
cd docs
npm install
npm start
Scripts
Run these from the root of the repo
npm run lint
Lints all files in src and docsnpm run test
Runs the test suite locallynpm run test:coverage
Get a coverage report in the consolenpm run test:coverage:html
Get an HTML coverage report in coverage folder
Go to live examples, code and docs!