10000 GitHub - dinistavares/v-hotkey3: Vue 3.2.x directive for binding hotkeys to components.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

dinistavares/v-hotkey3

 
 

Repository files navigation

v-hotkey3

Vue 3.2.x directive for binding hotkeys to components.

Though not a fork, this package is a direct copy of v-hotkey made to work with Vue 3 (until this PR probably gets merged).

Install

pnpm add v-hotkey3

Usage

import { createApp } from 'vue'
import HotkeyPlugin from 'v-hotkey3'

const app = createApp(App)

app.use(HotkeyPlugin)
<script setup>
import { ref } from 'vue'

const show = ref(true)

const toggle = () => (show.value = !show.value)
const show = () => (show.value = true)
const hide = () => (show.value = false)

const keymap = {
  // 'esc+ctrl' is OK.
  'ctrl+esc': toggle,
  'enter': {
    keydown: hide,
    keyup: show
  }
}
</script>

<template>
  <span v-show="show" v-hotkey="keymap">
    Press `ctrl + esc` to toggle me! Hold `enter` to hide me!
  </span>
</template>

Composable

<script setup>
import { ref } from 'vue'
import { useHotkey } from 'v-hotkey3'

const show = ref(true)

useHotkey({
  'ctrl+esc': () => {
    show.value = !show.value
  },
  'enter': {
    keydown() {
      show.value = false
    },
    keyup() {
      show.value = true
    }
  }
})
</script>

<template>
  <span v-show="show">
    Press `ctrl + esc` to toggle me! Hold `enter` to hide me!
  </span>
</template>

Event Handler

  • keydown (as default)
  • keyup

Key Combination

Use one or more of following keys to fire your hotkeys.

  • ctrl
  • alt
  • shift
  • command (MacOS)
  • windows (Windows)

Modifiers

prevent

Add the prevent modifier to the directive to prevent default browser behavior.

<template>
  <span v-show="show" v-hotkey.prevent="keymap">
    Press `ctrl + esc` to toggle me! Hold `enter` to hide me!
  </span>
</template>

stop

Add the stop modifier to the directive to stop event propagation.

<template>
  <div v-hotkey.stop="keymap">
    <span> Enter characters in editable areas doesn't trigger any hotkeys. </span>
    <input>
  </div>
</template>

Key Code Alias

The default key code map is based on US standard keyboard. This ability to provide their own key code alias for developers who using keyboards with different layouts. The alias name must be a single character.

Definition

import { createApp } from 'vue'
import HotkeyPlugin from 'v-hotkey3'

const app = createApp(App)

app.use(HotkeyPlugin, {
  '①': 49 // the key code of character '1'
})

Template

<script setup>
import { computed } from 'vue'

function foo() {
  console.log('Hooray!')
}

const keymap = {
  '': foo
}
</script>

<template>
  <span v-hotkey="keymap" />
</template>

License

MIT

About

Vue 3.2.x directive for binding hotkeys to components.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 64.5%
  • TypeScript 30.4%
  • Vue 5.1%
0