@swup/js-plugin
TypeScript icon, indicating that this package has built-in type declarations

3.1.1 • Public • Published

Swup JS Plugin

A swup plugin for managing animations in JS.

  • Use JavaScript for timing animations instead of CSS
  • Successor to the deprecated swupjs library

Installation

Install the plugin from npm and import it into your bundle.

npm install @swup/js-plugin
import SwupJsPlugin from '@swup/js-plugin';

Or include the minified production file from a CDN:

<script src="https://unpkg.com/@swup/js-plugin@3"></script>

Usage

To run this plugin, include an instance in the swup options.

const swup = new Swup({
  plugins: [
    new SwupJsPlugin({ animations: [ /* your custom animation functions */ ] })
  ]
});

Options

The plugin expects an array of animation objects. The example below is the default setup and defines two animations, where out is the animation function being executed before the content is being replaced, and in is the animation being executed after the content is replaced:

{
  animations: [
    {
      from: '(.*)', // matches any route
      to: '(.*)', // matches any route
      out: done => done(), // immediately continues
      in: done => done() // immediately continues
    }
  ]
}

This is also the fallback animation in case no other matching animations were found.

Animations are chosen based on the from and to properties of the object, which are compared against the current visit (urls of current and next page). Learn more on choosing the animation below.

Animation function

The animation function is executed for each corresponding animation phase. Inside the animation function, you manage the animation yourself and signal when it has finished. It receives two arguments: a done function and a data object.

out: (done, data) => {
  // Signal the end of the animation by calling done()
  // Access info about the animation inside the data argument
}

Signaling the end of an animation

Calling the done() function signals to swup that the animation has finished and it can proceed to the next step: replacing the content or finishing the visit. You can pass along the done() function as a callback to your animation library. The example below will wait for two seconds before replacing the content.

out: (done) => {
  setTimeout(done, 2000);
}

Promises and async/await

If your animation library returns Promises, you can also return the Promise directly from your animation function. Swup will consider the animation to be finished when the Promise resolves. The done function is then no longer required.

out: () => {
  return myAnimationLibrary.animate(/* */).then(() => {});
}

This also allows async/await syntax for convenience.

out: async () => {
  await myAnimationLibrary.animate(/* */);
}

Data object

The second parameter is an object that contains useful data about the animation, such as the visit object (containing actual before/after routes), the from and to parameters of the animation object, and the route params.

{
  visit: { /* */ }, // swup global visit object
  direction: 'in',
  from: {
    url: '/',
    pattern: '(.*)',
    params: {}
  },
  to: {
    url: '/about',
    pattern: '(.*)',
    params: {}
  }
}

Examples

Basic usage examples for a fade transition implemented in popular animation libraries:

Web Animations API

{
  from: '(.*)',
  to: '(.*)',
  in: async () => {
    const container = document.querySelector('#swup');
    await container.animate([{ opacity: 0 }, { opacity: 1 }], 500).finished;
  },
  out: async () => {
    const container = document.querySelector('#swup');
    await container.animate([{ opacity: 1 }, { opacity: 0 }], 500).finished;
  }
}

GSAP

{
  from: '(.*)',
  to: '(.*)',
  out: (done) => {
    const container = document.querySelector('#swup');
    container.style.opacity = 1;
    gsap.to(container, { opacity: 0, duration: 0.5, onComplete: done });
  },
  in: (done) => {
    const container = document.querySelector('#swup');
    container.style.opacity = 0;
    gsap.to(container, { opacity: 1, duration: 0.5, onComplete: done });
  }
}

anime.js

{
  from: '(.*)',
  to: '(.*)',
  out: (done) => {
    const container = document.querySelector('#swup');
    container.style.opacity = 1;
    anime({ targets: container, opacity: 0, duration: 500, complete: done });
  },
  in: (done) => {
    const container = document.querySelector('#swup');
    container.style.opacity = 0;
    anime({ targets: container, opacity: 1, duration: 500, complete: done });
  }
}

Choosing the animation

As mentioned above, the animation is chosen based on the from and to properties of the animation object. Those properties can take several forms:

  • a string (matching a route exactly)
  • a regular expression
  • A route pattern like /foo/:bar) parsed by path-to-regexp
  • a custom animation name taken from the data-swup-animation attribute of the clicked link

The most fitting route is always chosen. Keep in mind, that two routes can be evaluated as "same fit". In this case, the first one defined in the options is used, so usually you would like to define the more specific routes first. See the example below for more info.

[
    // animation 1
  { from: '/', to: 'custom' },
  // animation 2
  { from: '/', to: '/post' },
  // animation 3
  { from: '/', to: '/post/:id' },
  // animation 4
  { from: '/', to: /pos(.*)/ },
  // animation 5
  { from: '(.*)', to: '(.*)' },
];
  • from / to /post → animation 2
  • from / to /posting → animation 4
  • from / to /post/12 → animation 3
  • from / to /some-route → animation 5
  • from / to /post with data-swup-animation="custom" → animation 1

Readme

Keywords

none

Package Sidebar

Install

npm i @swup/js-plugin

Weekly Downloads

630

Version

3.1.1

License

MIT

Unpacked Size

82.4 kB

Total Files

12

Last publish

Collaborators

  • hirasso
  • daun
  • gmrchk