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

trapfocus-refocus-typescript

v1.0.1

Published

A Zero-Dependency, tiny, pure typescript Focus Trap with refocussing functionality. Compatible with pure JS, React and Vue.

Downloads

10

Readme

trapfocus-refocus-typescript

What is it for?

This library is composed of a single Typescript function that creates a "focus trap" for a given element. By 'focus trap' we mean that it limits keyboard focus to a specific set of elements within that element. Once the focus trap is removed, the user will be 'refocussed' back to the element that acts as the trigger for the focus trap. It is the Typescript version of another package: https://www.npmjs.com/package/trapfocus-refocus?activeTab=readme

Why?

A lot of focus-trap libraries are either UI-framework specific or have a huge bundle size. This library hopes to provide a smaller alternative.It also aims to improve user experience by taking users back to the place 'where they started' before entering and exiting the focus trap. This is a slightly more complex (but still hopefully very simple) flavour of another package: https://www.npmjs.com/package/magicthecat-trapfocus.

Function Parameters

The function takes three parameters:

  1. elem: The element within which the focus trap is created. This is typically a container or modal dialog that restricts focus.

  2. triggerElementId: The ID of an element that triggers the focus trap. When the focus trap is removed, the focus is returned to this element.

  3. selectors (optional): A string that specifies the types of elements within elem that can receive focus. By default, it includes anchor links (a[href]), buttons, input fields, select dropdowns, text areas, and any element with a tabindex.

How it works

Inside the function, the focusable elements within elem are obtained using the specified selectors. The first and last focusable elements are determined using the querySelectorAll method.

The function sets up event listeners for the keydown event on the first and last focusable elements. If the Tab key is pressed while the first element has focus and the Shift key is also pressed, focus is moved to the last focusable element. Similarly, if the Tab key is pressed while the last element has focus and Shift key is not pressed, focus is moved to the first focusable element. This creates a circular focus navigation within the defined focus trap.

Additionally, the function sets up a keydown event listener on elem to handle the Tab key. If the Tab key is pressed while focus is within elem and not on the first or last focusable element, the function checks the Shift key state and moves focus accordingly.

The initTrap function is provided as part of the returned object. When called, it sets focus on the first focusable element within elem, initiating the focus trap.

The removeTrap function is also returned. When called, it removes the event listener for keydown on elem and moves focus back to the element with the specified ID triggerElementId. This function is used to release the focus trap and return the user to the element that has the id passed in as the 'triggerElementId' parameter.

Compatibility

Compatible with:

  • React (tested on v18.2.0)

  • Vue (tested on v3.3.2)

  • Vanilla Javascript

Examples

Code Sandbox Examples can be found here: