0.0.32 • Published 2 years ago

ui-trap-focus v0.0.32

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

UiTrapFocus

Keep focus locked in. Works for any web based project. Easy to use API.

Getting started

npm i ui-trap-focus

How it works

UiTrapFocus will attempt to trap focus on any focusable element by default in the root element listening for focus traps. You can listen for specific elements only to be trapped, or use the closest option to trap focus on specific elements e.g <div tabindex='0'> <button /> </div>. Normally, the div and the button will be focused if there's no specifc children, with the closest option, you can set where the focus should be trapped on. Check usage below.

Usage

A proper keyboard event only with e.currentTarget should be used to trap focus.

Vue project

<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

const trapFocus = (evt: KeyboardEvent) => new TrapFocus().init(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

const trapFocus = (evt: KeyboardEvent) =>
  new TrapFocus({
    // customize what key controls the forward and backwards tabbing
    forward: (evt) => e.keyCode === 40,
    backward: (evt) => e.keyCode === 38,
  }).init(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

// forward and backward option not neccessary
const trapFocus = (evt: KeyboardEvent) => new TrapFocus().forward(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

// forward and backward option not neccessary
const trapFocus = (evt: KeyboardEvent) => new TrapFocus().backward(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

const trapFocus = (evt: KeyboardEvent) =>
  new TrapFocus({
    // valid querySelector within the element listening for focus traps
    children: "button",
  }).init(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

const trapFocus = (evt: KeyboardEvent) =>
  new TrapFocus({
    closest: "div",
  }).init(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

const trapFocus = (evt: KeyboardEvent) =>
  new TrapFocus({
    loop: false,
  }).init(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

const trapFocus = (evt: KeyboardEvent) =>
  new TrapFocus({
    // object syntax, if you need to be more specific
    // preventScroll: {
    //    forward: true,
    //    backward: false
    // }

    // boolean syntax
    preventScroll: true,
  }).init(evt);
</script>
<template>
  <div @keydown="trapFocus">...</div>
</template>

<script lang="ts" setup>
import TrapFocus from "ui-trap-focus";

const trapFocus = (evt: KeyboardEvent) =>
  new TrapFocus({
    // object, more robust syntax
    // steps: {
    //     forward: 2,
    //     backward: 3
    // }

    // number syntax
    steps: 3,
  }).init(evt);
</script>

Thats basically all the possible functionalities.

Any other framework project e.g React, Svelte ... can easily integrate the above example. Vanilla web projects should listen for events with addEventListener or onkeydown.

Ciao.

0.0.30

2 years ago

0.0.31

2 years ago

0.0.32

2 years ago

0.0.29

2 years ago

0.0.28

2 years ago

0.0.27

2 years ago

0.0.26

2 years ago

0.0.25

2 years ago

0.0.24

2 years ago

0.0.23

2 years ago

0.0.22

2 years ago

0.0.21

2 years ago

0.0.20

2 years ago

0.0.1

2 years ago