Socket
Socket
Sign inDemoInstall

antd-record-hotkey-input

Package Overview
Dependencies
86
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    antd-record-hotkey-input

> Ant Design 快捷键录制输入框


Version published
Weekly downloads
19
decreased by-66.07%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

antd-record-hotkey-input

Ant Design 快捷键录制输入框

NPM version NPM downloads install size

Install

npm i antd-record-hotkey-input -S

Usage

import { Empty, message } from 'antd';
import RecordShortcutInput from 'antd-record-hotkey-input';
import { useState } from 'react';
import { useHotkeys } from 'react-hotkeys-hook';

const App = () => {
  const [shortcut, setShortcut] = useState('');

  const shortRef = useHotkeys<HTMLDivElement>(
    shortcut,
    () => {
      message.success('快捷键触发');
    },
    {
      preventDefault: true,
    },
  );

  return (
    <>
      <RecordShortcutInput
        style={{ width: 500 }}
        defaultValue={shortcut}
        onConfirm={(value) => {
          console.log('快捷键变更为:', value);
          setShortcut(value);
        }}
      />

      <div tabIndex={-1} className="container" ref={shortRef}>
        {shortcut ? <span>点击聚焦,测试快捷键:{shortcut}</span> : <Empty />}
      </div>
    </>
  );
};

export default App;

Keywords

FAQs

Last updated on 13 Apr 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc