1.2.5 • Published 5 years ago

fuel-pjax v1.2.5

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Pjax

Pjax enables fast and easy AJAX navigation on any website using pushState and XHR. No more full page reloads, no more multipul HTTP request. Written entirely in TypeScript, transpiled into vanilla JavaScript.

Installation

Add Pjax as a dependency to your package.json with "fuel-pjax": "https://github.com/Pageworks/fuel-pjax.git#x.x.x". Alternatively you can include pjax-x.x.x.js in your project by downloading the compiled and browserified pjax-x.x.x.js version and including the script <script src="pjax-x.x.x.js"></script> into your HTML document.

How Pjax Works

Pjax loads pages using AJAX and updates the browser's current URL using pushState() without reloading the page's layout or any resources (JavaScript, CSS, etc). Pjax listens for the onmouseenter event for links and prefetches the pages HTML. Dpending on what the user does determines Pjax's response. If the user triggers an onmouseleave event the XHR request is canceled. If the user clicks the link before the server responds Pjax will notice that the user wants the page and will switch out the content as soon as the server responds. Finally, if the user remains hovered and the server has already responded Pjax will cache the new pages HTML content and will wait until the user clicks the link or triggers the onmouseleave event causing Pjax to clear the cached HTML. When combining prefetching and the ability to swap out content without causing a full page reload results in very fast page load responses.

Under the hood Pjax is one HTTP request with a pushState() call.

Obviously not all browers support history.pushState() so in cases where Pjax is unsupported Pjax will gracefully degrade and does nothing at all.

What Pjax's All About

  • Multiple container support
  • Fully supports browser history (window popstates)
  • Automagically falls back to standard navigation for external pages
  • Automagically falls back to standard navigation for internal pages that do not have an appropriate DOM tree
  • Allows for modern CSS page transitions (animation) easily
  • Is very lightweight

Under the Hood

  • Pjax attempts to prefetch internal links for the fastest possible load time
  • Pjax renders new pages without reloading resources such as images, CSS, JavaScript, etc...
  • Checks that all defined parts can be replaced:
    • If the page doesn't meet the requirements Pjax will do nothing and standard navigation is used
    • If the page meets requirements Pjax swaps the DOM elements
  • Pjax updates the browser's current URL using pushState()

Documentation

Getting Started

To begin using Pjax add "pjax": "https://github.com/Pageworks/fuel-pjax.git#x.x.x" to your project's package.json before running npm install. Then you can simple import Pjax using import Pjax from 'fuel-pjax'. Alternatively you can include pjax-x.x.x.js in your project by downloading the compiled and browserified pjax-x.x.x.js version and including the script <script src="pjax-x.x.x.js"></script> into your HTML document.

Start by setting up a base layout for your website.

<!doctype <!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Index | Pjax Testing</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
    <a href="index">Home</a>
    <main class="js-pjax-wrapper">
        <article class="js-pjax">
            <h1>Index Page</h1>
            <ul>
                <li><a href="index">Index</a></li>
                <li><a href="page-1">Page 1</a></li>
            </ul>
        </article>
    </main>
    <script src="main.js"></script>
</body>
</html>

In the main/application script for your project you can being using Pjax with the following:

const pjax = new Pjax({
    debug: true
});

Pjax Options

You can define custom Pjax options using the following:

OptionTypeDefault
elementsstringa[href]
selectorsstring[].js-pjax
historybooleantrue
scrollTonumber0
cacheBustbooleanfalse
debugbooleanfalse
timeoutnumber0
titleSwitchbooleantrue
customTransitionsbooleanfalse

elements is the base element users should click on to trigger a page transition.

selectors is an array of containers that Pjax should swap.

When history is true Pjax will use window.history.pushState to manipulate the browsers history.

scrollTo is the default position the DOM should scroll to when a page loads.

cacheBust will add a GET param to all request forcing the browser to perform the request instead of using a cached version of the page.

debug will tell Pjax to display all debug information.

timeout is the about of time allowed before Pjax time's out an XMLHttpRequest

titleSwitch when true will swap out the documents title during page transitions.

customTransitions when true Pjax won't actually switch out the content until the developers application sends a custom pjax:continue event.

Pjax Events

Pjax fires a handful of events on the document that you can listen for.

document.addEventListener('pjax:error', ()=>{ console.log('Event: pjax:error'); });
document.addEventListener('pjax:send', (e)=>{ console.log('Event: pjax:send', e); });
document.addEventListener('pjax:prefetch', ()=>{ console.log('Event: pjax:prefetch'); });
document.addEventListener('pjax:cancel', ()=>{ console.log('Event: pjax:cancel'); });
document.addEventListener('pjax:complete', ()=>{ console.log('Event: pjax:complete'); });

pjax:send is a CustomEvent with a details JSON object. When the pjax:send event is fired Pjax will pass along the events triggering element.

e.details{
    el: element
}

Pjax listens for a pjax:continue event on the document. This is only used when the customTransitions option is set to true. Pjax will NOT swap content until it recieves this event so use it with caution.

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.0

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago