Coder Social home page Coder Social logo

Comments (4)

mars avatar mars commented on July 28, 2024 2

The key to animating React Router transitions is to add a unique key prop to the route's children, so that the transition group recognizes that the components are changing.

Example of a Route component that animates its children's transitions:

class AppView extends React.Component {
  render() {
    const { pathname } = this.props.location;
    const key = pathname.split('/')[1] || 'root';
    const element = this.props.children || <div/>;
    const elementToAnimate = React.cloneElement(element, { key });

    return (
      <div id="app-view">
        <VelocityTransitionGroup 
          enter={{animation: "fadeIn"}}
          leave={{animation: "fadeOut"}}>

          {elementToAnimate}

        </VelocityTransitionGroup>
      </div>
    );
  }
}

(React 0.14, React Router 1.0.0-rc3, Velocity React 1.1.0)

from velocity-react.

fionawhim avatar fionawhim commented on July 28, 2024

I haven't much used react-router myself. Can anyone else chime in here?

The one I'm most familiar with is https://github.com/larrymyers/react-mini-router, which should work pretty trivially with VelocityTransitionGroup. Just call renderCurrentRoute as a child of VelocityTransitionGroup.

from velocity-react.

fionawhim avatar fionawhim commented on July 28, 2024

Thanks, @mars!

I'll also add that for stuff like this, where your VelocityTransitionGroup has single elements that are coming and going, you may need to use absolute positioning during the transition to get overlap right. Take a look at the LoadingCrossfadeComponent in the demo source code to see one way of doing this.

from velocity-react.

py-in-the-sky avatar py-in-the-sky commented on July 28, 2024

Here's an example from the react-router repo. It uses ReactCSSTransitionGroup instead of velocity-react, but the same design principles apply.

from velocity-react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.