2019-12-20 22:41:07 +01:00
|
|
|
import React from "react";
|
|
|
|
import ReactDom from "react-dom";
|
|
|
|
import Velocity from "velocity-animate";
|
2017-12-26 02:03:18 +01:00
|
|
|
import PropTypes from 'prop-types';
|
2015-11-27 16:37:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The Velociraptor contains components and animates transitions with velocity.
|
|
|
|
* It will only pick up direct changes to properties ('left', currently), and so
|
|
|
|
* will not work for animating positional changes where the position is implicit
|
|
|
|
* from DOM order. This makes it a lot simpler and lighter: if you need fully
|
|
|
|
* automatic positional animation, look at react-shuffle or similar libraries.
|
|
|
|
*/
|
2019-11-29 03:13:55 +01:00
|
|
|
export default class Velociraptor extends React.Component {
|
|
|
|
static propTypes = {
|
2016-04-20 23:21:07 +02:00
|
|
|
// either a list of child nodes, or a single child.
|
2017-12-26 02:03:18 +01:00
|
|
|
children: PropTypes.any,
|
2016-04-20 23:21:07 +02:00
|
|
|
|
|
|
|
// optional transition information for changing existing children
|
2017-12-26 02:03:18 +01:00
|
|
|
transition: PropTypes.object,
|
2016-08-01 17:56:25 +02:00
|
|
|
|
|
|
|
// a list of state objects to apply to each child node in turn
|
2017-12-26 02:03:18 +01:00
|
|
|
startStyles: PropTypes.array,
|
2016-08-01 17:56:25 +02:00
|
|
|
|
|
|
|
// a list of transition options from the corresponding startStyle
|
2017-12-26 02:03:18 +01:00
|
|
|
enterTransitionOpts: PropTypes.array,
|
2019-11-29 03:13:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
startStyles: [],
|
|
|
|
enterTransitionOpts: [],
|
|
|
|
};
|
2016-08-01 17:56:25 +02:00
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2015-11-27 16:37:40 +01:00
|
|
|
|
|
|
|
this.nodes = {};
|
2016-04-21 15:14:08 +02:00
|
|
|
this._updateChildren(this.props.children);
|
2019-11-29 03:13:55 +01:00
|
|
|
}
|
2015-11-27 16:37:40 +01:00
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
componentDidUpdate() {
|
|
|
|
this._updateChildren(this.props.children);
|
|
|
|
}
|
2016-04-21 15:14:08 +02:00
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
_updateChildren(newChildren) {
|
2017-10-11 18:56:17 +02:00
|
|
|
const oldChildren = this.children || {};
|
2015-11-27 16:37:40 +01:00
|
|
|
this.children = {};
|
2019-11-29 03:13:55 +01:00
|
|
|
React.Children.toArray(newChildren).forEach((c) => {
|
2015-11-27 16:37:40 +01:00
|
|
|
if (oldChildren[c.key]) {
|
2017-10-11 18:56:17 +02:00
|
|
|
const old = oldChildren[c.key];
|
2019-11-29 03:13:55 +01:00
|
|
|
const oldNode = ReactDom.findDOMNode(this.nodes[old.key]);
|
2015-11-27 16:37:40 +01:00
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
if (oldNode && oldNode.style.left !== c.props.style.left) {
|
|
|
|
Velocity(oldNode, { left: c.props.style.left }, this.props.transition).then(() => {
|
2015-11-27 16:37:40 +01:00
|
|
|
// special case visibility because it's nonsensical to animate an invisible element
|
|
|
|
// so we always hidden->visible pre-transition and visible->hidden after
|
2019-11-29 03:13:55 +01:00
|
|
|
if (oldNode.style.visibility === 'visible' && c.props.style.visibility === 'hidden') {
|
2015-11-27 16:37:40 +01:00
|
|
|
oldNode.style.visibility = c.props.style.visibility;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
//console.log("translation: "+oldNode.style.left+" -> "+c.props.style.left);
|
|
|
|
}
|
2019-11-29 03:13:55 +01:00
|
|
|
if (oldNode && oldNode.style.visibility === 'hidden' && c.props.style.visibility === 'visible') {
|
2017-02-02 19:21:53 +01:00
|
|
|
oldNode.style.visibility = c.props.style.visibility;
|
|
|
|
}
|
2018-10-10 16:15:50 +02:00
|
|
|
// clone the old element with the props (and children) of the new element
|
|
|
|
// so prop updates are still received by the children.
|
2019-11-29 03:13:55 +01:00
|
|
|
this.children[c.key] = React.cloneElement(old, c.props, c.props.children);
|
2015-11-27 16:37:40 +01:00
|
|
|
} else {
|
2016-08-01 17:56:25 +02:00
|
|
|
// new element. If we have a startStyle, use that as the style and go through
|
2015-11-27 16:37:40 +01:00
|
|
|
// the enter animations
|
2017-10-11 18:56:17 +02:00
|
|
|
const newProps = {};
|
|
|
|
const restingStyle = c.props.style;
|
2016-08-01 17:56:25 +02:00
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
const startStyles = this.props.startStyles;
|
2016-08-01 17:56:25 +02:00
|
|
|
if (startStyles.length > 0) {
|
2017-10-11 18:56:17 +02:00
|
|
|
const startStyle = startStyles[0];
|
2015-11-27 16:37:40 +01:00
|
|
|
newProps.style = startStyle;
|
2016-08-01 17:56:25 +02:00
|
|
|
// console.log("mounted@startstyle0: "+JSON.stringify(startStyle));
|
2015-11-27 16:37:40 +01:00
|
|
|
}
|
2016-08-01 17:56:25 +02:00
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
newProps.ref = ((n) => this._collectNode(
|
2017-10-11 18:56:17 +02:00
|
|
|
c.key, n, restingStyle,
|
2016-08-01 17:56:25 +02:00
|
|
|
));
|
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
this.children[c.key] = React.cloneElement(c, newProps);
|
2015-11-27 16:37:40 +01:00
|
|
|
}
|
|
|
|
});
|
2019-11-29 03:13:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_collectNode(k, node, restingStyle) {
|
2015-11-27 16:37:40 +01:00
|
|
|
if (
|
2016-01-08 17:43:25 +01:00
|
|
|
node &&
|
2015-11-27 16:37:40 +01:00
|
|
|
this.nodes[k] === undefined &&
|
2016-08-01 17:56:25 +02:00
|
|
|
this.props.startStyles.length > 0
|
2015-11-27 16:37:40 +01:00
|
|
|
) {
|
2017-10-11 18:56:17 +02:00
|
|
|
const startStyles = this.props.startStyles;
|
|
|
|
const transitionOpts = this.props.enterTransitionOpts;
|
2017-01-20 15:22:27 +01:00
|
|
|
const domNode = ReactDom.findDOMNode(node);
|
2015-11-27 16:37:40 +01:00
|
|
|
// start from startStyle 1: 0 is the one we gave it
|
|
|
|
// to start with, so now we animate 1 etc.
|
|
|
|
for (var i = 1; i < startStyles.length; ++i) {
|
|
|
|
Velocity(domNode, startStyles[i], transitionOpts[i-1]);
|
2016-08-01 17:56:25 +02:00
|
|
|
/*
|
|
|
|
console.log("start:",
|
|
|
|
JSON.stringify(transitionOpts[i-1]),
|
|
|
|
"->",
|
|
|
|
JSON.stringify(startStyles[i]),
|
|
|
|
);
|
|
|
|
*/
|
2015-11-27 16:37:40 +01:00
|
|
|
}
|
2016-08-01 17:56:25 +02:00
|
|
|
|
2015-11-27 16:37:40 +01:00
|
|
|
// and then we animate to the resting state
|
2016-08-01 17:56:25 +02:00
|
|
|
Velocity(domNode, restingStyle,
|
2019-11-29 03:13:55 +01:00
|
|
|
transitionOpts[i-1])
|
|
|
|
.then(() => {
|
|
|
|
// once we've reached the resting state, hide the element if
|
|
|
|
// appropriate
|
|
|
|
domNode.style.visibility = restingStyle.visibility;
|
|
|
|
});
|
2016-04-20 23:21:07 +02:00
|
|
|
|
2016-08-01 17:56:25 +02:00
|
|
|
/*
|
|
|
|
console.log("enter:",
|
|
|
|
JSON.stringify(transitionOpts[i-1]),
|
|
|
|
"->",
|
|
|
|
JSON.stringify(restingStyle));
|
|
|
|
*/
|
2016-05-26 14:51:51 +02:00
|
|
|
} else if (node === null) {
|
2016-05-26 17:30:04 +02:00
|
|
|
// Velocity stores data on elements using the jQuery .data()
|
|
|
|
// method, and assumes you'll be using jQuery's .remove() to
|
|
|
|
// remove the element, but we don't use jQuery, so we need to
|
|
|
|
// blow away the element's data explicitly otherwise it will leak.
|
|
|
|
// This uses Velocity's internal jQuery compatible wrapper.
|
|
|
|
// See the bug at
|
2016-05-26 14:51:51 +02:00
|
|
|
// https://github.com/julianshapiro/velocity/issues/300
|
2016-05-26 17:30:04 +02:00
|
|
|
// and the FAQ entry, "Preventing memory leaks when
|
|
|
|
// creating/destroying large numbers of elements"
|
|
|
|
// (https://github.com/julianshapiro/velocity/issues/47)
|
2017-01-20 15:22:27 +01:00
|
|
|
const domNode = ReactDom.findDOMNode(this.nodes[k]);
|
2018-04-13 11:44:37 +02:00
|
|
|
if (domNode) Velocity.Utilities.removeData(domNode);
|
2015-11-27 16:37:40 +01:00
|
|
|
}
|
|
|
|
this.nodes[k] = node;
|
2019-11-29 03:13:55 +01:00
|
|
|
}
|
2015-11-27 16:37:40 +01:00
|
|
|
|
2019-11-29 03:13:55 +01:00
|
|
|
render() {
|
2015-11-27 16:37:40 +01:00
|
|
|
return (
|
|
|
|
<span>
|
2017-10-11 18:56:17 +02:00
|
|
|
{ Object.values(this.children) }
|
2015-11-27 16:37:40 +01:00
|
|
|
</span>
|
|
|
|
);
|
2019-11-29 03:13:55 +01:00
|
|
|
}
|
|
|
|
}
|