yuvrajkarna2717/react-hook-granth

[Feature]: Add useKeyboard hook for keyboard shortcuts

開放

#10 建立於 2025年12月6日

 (0 則留言) (0 個反應) (0 位負責人)JavaScript (1 個分叉)auto 404
enhancementgood first issuehelp wanted

倉庫指標

星標
 (3 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

Hook Name

useKeyboard

Feature Description

Description: Create a hook for handling keyboard shortcuts and key combinations in React components.

Requirements:

  • Single key and key combinations
  • Modifier keys support (Ctrl, Alt, Shift)
  • Prevent default behavior option
  • Multiple shortcuts per component

Use Case

It handles keyboard shortcuts and key combinations in React components.

Proposed API

useKeyboard('Escape', handleEscape);
useKeyboard(['Ctrl', 'S'], handleSave);

貢獻者指南