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

history-block-async

v1.2.0

Published

Allows to block history transitions asynchronously

Downloads

1,605

Readme

history-block-async

A wrapper for the history library to allow for an unlimited amount of asynchronous listeners to prevent navigation.

Installation

npm install --save history-block-async

Usage

The module exports a wrapper function that accepts 2 arguments:

  • the history instance
  • a name for the asynchronous blocking function (defaults to block but can be overriden).
const history = patchBlockFn(createBrowserHistory(), 'block');

If you are using Prompt from React Router v4+, then you must leave the default naming. In this case the wrapper will replace the old history.block function with a new one. We will assume you are using the default naming in the rest of the documentation.

After the history is patched the default history.block is replaced with a custom function that can be called as many times as you like. It accepts a string or a listener function and returns an unsubscribe function.

// This is the same as in the default history library.
// Register a simple prompt message that will be shown the
// user before they navigate away from the current page.
const unblock = history.block('Are you sure you want to leave this page?');

// Or use a function that returns the message when it's needed.
history.block((location, action) => {
  // The location and action arguments indicate the location
  // we're transitioning to and how we're getting there.

  // A common use case is to prevent the user from leaving the
  // page if there's a form they haven't submitted yet.
  if (input.value !== '') return 'Are you sure you want to leave this page?';
});

// To stop blocking transitions, call the function returned from block().
unblock();

// This is added by the asynchronous wrapper. Note the 3rd argument
history.block((location, action, callback) => {
  // Simply return true to allow the transition to pass immediately. Actually, returning true or false
  // works with the history itself as well, but it only allows for one synchronous listener
  if (noNeedToBlock) return true;

  // You can simply prevent the transition from occuring
  if (justBlockThisRightNow) return false;

  // Allow the transition to pass or block it asynchronously
  // When the handler returns `undefined` the transitions will be blocked until the callback
  // is called with either `true` to allow navigation or `false` to block it.
  pinkyPromise.then(() => callback(true)).catch(() => callback(false))

  asynchronousAction(() => callback('Can also return a string to show the default browser prompt.'))
});

The transition will happen if no listeners are present or every listener allows the transition. The first blocking listener with prevent the transition. If the listener was asynchronous we wait for the confirmation. If after that the transition is confirmed, navigation will occur regardless of following listeners. The first blocking listener will always decide if the transition happens, asynchronous or otherwise.

Usage with React Router

import { Router } from 'react-router-dom'
import { createBrowserHistory } from 'history'
import patchBlockFn from 'history-block-async';

const history = patchBlockFn(createBrowserHistory({ /* history configuration options */ }));

render((
  <Router history={history}>
    <App />
  </Router>
), document.getElementById('root'))