Skip to content

vigetlabs/react-focus-trap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b5adcb7 · May 23, 2022
Oct 12, 2018
Nov 2, 2017
May 31, 2018
May 31, 2018
May 31, 2018
Nov 2, 2017
May 5, 2017
Sep 18, 2018
May 23, 2022
Nov 2, 2017
Apr 15, 2015
Oct 12, 2018
Sep 18, 2018
Oct 12, 2018
Nov 2, 2017
May 23, 2022
May 31, 2018
Oct 12, 2018

Repository files navigation

NPM


Circle CI


A generic focus management tool for components such as dialogs and dropdowns.

focus

Usage

React Focus Trap is a container element that will manage focus for its children.

let Modal = React.createClass({
  render() {
    return (
      <FocusTrap onExit={ this._onExit } active={ this.props.active }>
        Amazing stuff goes here
      </FocusTrap>
    )
  }
})

When Focus Trap is active, it will do several things:

  1. Ensure focus remains on its content
  2. Exits when clicks outside of the container occur
  3. Exits when the escape key is pressed

Props

Name Default Description
active true Should the FocusTrap render?
className 'focus-trap' The class of the inner container that maintains focus
onExit null Callback when escape or an outside click occurs
element 'div' The tag name of the inner container
role 'dialog' The aria role for the inner container

Code At Viget

Visit code.viget.com to see more projects from Viget.