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

flight-with-pjax

v0.0.12

Published

Easily enable fast Ajax navigation on any FlightJS app

Downloads

10

Readme

Simple Pjax mixin-component for twitter flight

Easily enable fast Ajax navigation on any FlightJS app.

Usage example:

####Component with router

define('component_ui/route', [
        'flight/lib/component',
        'path/to/flight-pjax'
    ],

    function(defineComponent, withPjax) {

        return defineComponent(newComponent, withPjax);

        function newComponent() {

            this.after('initialize', function() {
                this.on('touchend click', this.nodeClicked);

                this.on('pjax:loading', this.loading);
                this.on('pjax:complete', this.complete);
                this.on('pjax:error', this.error);
            });

            this.loading = function() {
                // maybe show a loader
            };

            this.complete = function() {
                // hide loader
            };

            this.error = function() {
                // give the user a nice message
            };
        }
    }
);

####Initializing

require([
    'path/to/flight-component-with-pjax'
], function(component) {

    // Attach pjax to the body
    pjax.attachTo(document.body, {
        defaultAnimation: 'fade',
        container: '.content-wrapper',
        ignore: [
            'data-modal',             // Skip elements with the data attribute model
            'data-toggle:slidePanel'  // Skip elements with the data attribute toggle with the value slidePanel
        ],
        selectors: [
            '.flash-messages',
            '.nav-bar'
        ]
    });

});

Documentation

this.getCurrentURL();

Returns current page URL.

this.nodeClicked(ev);

Used to trigger the load page method.

  • ev event

this.navigate(URL, [boolean]);

  • URL is url like string. Must start from '/'.
  • Boolean if passed state would not be pushed, but replaced, to save history clean.

this.loadPage(url, [args])

This will perform an Ajax call to load the page.

  • URL is url like string. Must start from '/'.
  • Args is optional object with following params:
    replaceState: Boolean

If passed state would not be pushed, but replaced, to save history clean.

    transition: String

The animation for the container when being displayed.

    forced: Boolean

Param that tells fire new state any way even if URL is same.

this.disablePopstate();

Sometimes there might be a need to disable the built in popstate event.

this.enablePopstate();

Used to re-enable the popstate event.

this.replaceParams(Array);

  • Array an array of paramaters to append/remove/replace from the current url.

CSS for container animation

Where .content-wrapper is the classname of your container.

/* Fade animation */
.content-wrapper.fade {
    opacity: 0;
    transition: opacity .1s;
}
.content-wrapper.fade.in {
  opacity: 1;
}

/* Slide animation */
.content-wrapper.sliding {
    z-index: 2;
    transition: transform .4s;
    transform: translate3d(0, 0, 0);
}
.content-wrapper.sliding.left {
  z-index: 1;
  transform: translate3d(-100%, 0, 0);
}
.content-wrapper.sliding.right {
  z-index: 3;
  transform: translate3d(100%, 0, 0);
}

Using Laravel

Checkout the Laravel Pjax Middleware package.