How should I handle a leave animation in componentWillUnmount in React?

前端 未结 2 1705
走了就别回头了
走了就别回头了 2020-12-12 15:00

I was wondering if anyone could provide some insight about how they handle leave animations in React.js. I have been using Greensock TweenMax and the enter animations work f

相关标签:
2条回答
  • 2020-12-12 15:45

    ReactTransitionGroup (upon which ReactCSSTransitionGroup is built) is the base component that allows asynchronous entering and leaving. It provides lifecycle hooks that you can use to hook into JS-based animations. The docs list the allowed hooks:

    ReactTransitionGroup is the basis for animations. When children are declaratively added or removed from it (as in the example above) special lifecycle hooks are called on them. There are 3 ways to get starting using ReactCSSTransitionGroups:

    import ReactCSSTransitionGroup from 'react-addons-css-transition-group' // ES6
    var ReactCSSTransitionGroup = require('react-addons-css-transition-group') // ES5 with npm
    var ReactCSSTransitionGroup = React.addons.CSSTransitionGroup; // ES5 with react-with-addons.js
    

    componentWillAppear(callback)

    This is called at the same time as componentDidMount() for components that are initially mounted in a TransitionGroup. It will block other animations from occurring until callback is called. It is only called on the initial render of a TransitionGroup.

    componentDidAppear()

    This is called after the callback function that was passed to componentWillAppear is called.

    componentWillEnter(callback)

    This is called at the same time as componentDidMount() for components added to an existing TransitionGroup. It will block other animations from occurring until callback is called. It will not be called on the initial render of a TransitionGroup.

    componentDidEnter()

    This is called after the callback function that was passed to componentWillEnter is called.

    componentWillLeave(callback)

    This is called when the child has been removed from the ReactTransitionGroup. Though the child has been removed, ReactTransitionGroup will keep it in the DOM until callback is called.

    componentDidLeave()

    This is called when the willLeave callback is called (at the same time as componentWillUnmount).

    Animation - Low-level API

    In order to animate a child out, you'd need to start your animation in componentWillLeave and call the provided callback when the animation is complete. As an example, here's a JSFiddle showing a component that stagger-animates its children in and out: http://jsfiddle.net/BinaryMuse/f51jbw2k/

    The relevant code for animating out is:

    componentWillLeave: function(callback) {
      this._animateOut(callback);
    },
    
    _animateOut(callback) {
      var el = ReactDOM.findDOMNode(this);
      setTimeout(function() {
        TweenLite.to(el, 1, {opacity: 0}).play().eventCallback("onComplete", callback);
      }, this.props.animateOutDelay);
    },
    
    0 讨论(0)
  • 2020-12-12 15:48

    Check out React-Motion

    https://www.youtube.com/watch?v=1tavDv5hXpo

    Cheng Lou is a developer on the React team.

    He talks about the issues with the current ReactCSSTransitionGroup.

    He has developed React-Motion for fixing this issue.

    Although it doesn't use css transitions , it seems to perform well and is very deterministic. Where as ReactCSSTransitionGroup seems to be finicky as you cannot interrupt transitions.

    0 讨论(0)
提交回复
热议问题