1.2.0
parent
b1b60bee67
commit
f1e63fe545
|
@ -59,6 +59,10 @@ kb.on(['ctrl + c', 'ctrl + v'], ev => {
|
||||||
|
|
||||||
### API
|
### API
|
||||||
|
|
||||||
|
+ .disabled
|
||||||
|
> 禁止属性, 允许临时暂时热键.
|
||||||
|
|
||||||
|
|
||||||
+ .on(actions`<Array>`, callback`<Function>`)
|
+ .on(actions`<Array>`, callback`<Function>`)
|
||||||
> 监听键盘动作组合, 支持单组或双组。
|
> 监听键盘动作组合, 支持单组或双组。
|
||||||
>> 双组时, 2组按键前后时差不能超过`300毫秒`, 否则视为2次独立的操作。
|
>> 双组时, 2组按键前后时差不能超过`300毫秒`, 否则视为2次独立的操作。
|
||||||
|
|
|
@ -1,13 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "@bytedo/keyboard",
|
"name": "@bytedo/keyboard",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"description": "支持各种按钮组合。原生js开发, 无任何依赖(不到2KB)。使用也非常简单。",
|
"description": "支持各种按钮组合。原生js开发, 无任何依赖(不到2KB)。使用也非常简单。",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/bytedo/keyboard.git"
|
"url": "git+https://github.com/bytedo/keyboard.git"
|
||||||
},
|
},
|
||||||
"keywords": ["keyboard", "hotkey", "shortcut", "yutent"],
|
"keywords": [
|
||||||
|
"keyboard",
|
||||||
|
"hotkey",
|
||||||
|
"shortcut",
|
||||||
|
"yutent"
|
||||||
|
],
|
||||||
"author": "yutent",
|
"author": "yutent",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {}
|
"dependencies": {}
|
||||||
|
|
|
@ -45,14 +45,20 @@ function check(ev) {
|
||||||
|
|
||||||
export default class Keyboard {
|
export default class Keyboard {
|
||||||
constructor(elem) {
|
constructor(elem) {
|
||||||
console.log(elem)
|
|
||||||
this.$elem = elem
|
this.$elem = elem
|
||||||
hide(this, '__EVENTS__', {})
|
hide(this, '__EVENTS__', {})
|
||||||
|
hide(this, 'paused', false)
|
||||||
|
|
||||||
hide(
|
hide(
|
||||||
this,
|
this,
|
||||||
'_keydown',
|
'_keydown',
|
||||||
bind(elem, ev => {
|
bind(elem, ev => {
|
||||||
|
// 允许暂停
|
||||||
|
if (this.paused) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 屏蔽纯辅助键的监听
|
||||||
if (MULTI_KEY_CODES.includes(ev.keyCode)) {
|
if (MULTI_KEY_CODES.includes(ev.keyCode)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -107,6 +113,14 @@ export default class Keyboard {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get disabled() {
|
||||||
|
return this.paused
|
||||||
|
}
|
||||||
|
|
||||||
|
set disabled(v) {
|
||||||
|
this.paused = !!v
|
||||||
|
}
|
||||||
|
|
||||||
destroy() {
|
destroy() {
|
||||||
unbind(this.$elem, this._keydown)
|
unbind(this.$elem, this._keydown)
|
||||||
delete this.__EVENTS__
|
delete this.__EVENTS__
|
||||||
|
|
Loading…
Reference in New Issue