npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lane

v0.1.0

Published

This router is based on my [react-router-transition-example](https://github.com/Enome/react-router-transition-example). This router is mainly focussed on page transition although they are optional. The transition also respect `history.back` and `history.f

Downloads

2

Readme

Lane

This router is based on my react-router-transition-example. This router is mainly focussed on page transition although they are optional. The transition also respect history.back and history.forward.

Usage

var React = require('react');
var lane = require('lane');

var Page1 = React.createClass({});
var Page2 = ...
var Page3 = ...

var routes = [
  ['/', Page1, 'none'],
  ['/page2', Page2, 'overlay'],
  ['/page3', Page3, 'slidein' ],
];

React.renderComponent(<Lane routes={routes} debug={true}>, document.querySelector('body'));

Route

A route is an array with 2 or 3 elements.

  • route[0] = url
  • route[1] = react component
  • route[2] = transition name (optional)

Props

  • routes = array with routes
  • debug = boolean (if true it will show you the classNames it expects on page changes and which transition object it generates for CSSTransitionGroup)

How does it work?

Instead of having one transition for each new url/page this router generates a transitionName based on the previous and current page. So you use classes that describe going from one transition to an other. You can compare it to a finite state machine going from one state to an other and an event that gets fired depending on the previous and new state.

If we take the example from above and you visit / you go from transition name '' -> 'none'. The router will generate the transitionName: '.none'. Next it will check if '.none-enter' is defined in css. If it's not it will set transitionEnter: false same happens for '.none-leave.

The CSSTransitionGroup could have the following props:

{ 
  transitionName: '.none', 
  transitionEnter: true/false, // depending if you defined .none-enter
  transitionLeave: true/false  // depending if you defined .none-leave
}

If you go from / to /page2 transitionName: '.none-overlay' is used:

{ 
  transitionName: '.none-overlay', 
  transitionEnter: true/false, // depending if you defined .none-overlay-enter
  transitionLeave: true/false  // depending if you defined .none-overlay-leave
}

The css for going from none -> overlay and overlay -> none could be the following:

@-webkit-keyframes none {
  0% { opacity: 1; }
  100% { opacity: 1; }
}

@-webkit-keyframes overlay {
  from { -webkit-transform: translate(0, 100%); }
  to { -webkit-transform: translate(0, 0); }
}

/* none -> overlay */

/* old component */
.none-overlay-leave {
  -webkit-animation: none 300ms;
}

/* new component */
.none-overlay-enter {
  -webkit-animation: overlay 300ms;
  z-index: 1;
}


/* overlay -> none */

/* old component */
.overlay-none-leave {
  -webkit-animation: overlay 300ms reverse;
}

/* new component */
.overlay-none-enter {
  -webkit-animation: none 300ms;
}

You might notice that the none animation goes from opacity: 1 to opacity: 1. That because CSSTransitionGroup destroys the old component after transitionend or animationend event so we need to provide an animation that triggers it.