🚀 Socket Launch Week Day 4:Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection.Learn more
Sign In

react-focus-onkeydown

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-focus-onkeydown

React hook for getting focus of a component when a key is pressed anywhere in the page

Source
npmnpm
Version
5.0.2
Version published
Weekly downloads
44
37.5%
Maintainers
2
Weekly downloads
 
Created
Source

react-focus-onkeydown

Build Status npm package Coverage Status

React hook for getting focus of a component when a key is pressed anywhere in the page

Live demo

You can see the simplest demo here: Live demo

Install

$ npm install --save react-focus-onkeydown

Examples

Run examples:

cd examples
npm install
npm start

Usage

import { useRef } from 'react';
import useFocusOnKeyDown from 'react-focus-onkeydown';

const () => {
  const ref = useRef(null);
  useFocusOnKeyDown(ref);

  // Typing any key will trigger a focus on the input below
  return <input ref={ref} />;
}

Parameters

ref

Type: ref, required

ref to the target element

active

Type: boolean, default: true

Controls whether or not hook is active (i.e., whether or not a keydown will cause the element to focus)

License

See the LICENSE file for license rights and limitations (MIT).

Keywords

react

FAQs

Package last updated on 01 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts