avocado-old/packages/input/index.js

127 lines
2.9 KiB
JavaScript
Raw Normal View History

2019-03-17 23:45:48 -05:00
import * as I from 'immutable';
import {compose} from '@avocado/core';
import {EventEmitter} from '@avocado/mixins';
const decorate = compose(
EventEmitter,
);
export class ActionRegistry extends decorate(class {}) {
2019-03-17 23:45:48 -05:00
static normalizeKey(key) {
return key.toLowerCase();
}
constructor() {
super();
2019-03-17 23:45:48 -05:00
// Track events.
this.target = undefined;
2019-03-28 20:35:22 -05:00
this.mapActionToKey = new Map();
2019-03-17 23:45:48 -05:00
this.mapKeyToAction = {};
// Track actions.
2019-03-28 20:35:22 -05:00
this._state = I.Map();
2019-03-17 23:45:48 -05:00
// Handle lame OS input event behavior. See: https://mzl.la/2Ob0WQE
this.keysDown = {};
this.keyUpDelays = {};
// Bind event handlers.
this.onBlur = this.onBlur.bind(this);
this.onKeyDown = this.onKeyDown.bind(this);
this.onKeyUp = this.onKeyUp.bind(this);
}
actionForKey(key) {
return this.mapKeyToAction[key];
}
listen(target = window.document) {
// Only listen once.
if (this.target) {
return;
}
this.target = target;
this.target.addEventListener('blur', this.onBlur);
this.target.addEventListener('keydown', this.onKeyDown);
this.target.addEventListener('keyup', this.onKeyUp);
}
keyForAction(action) {
2019-03-28 20:35:22 -05:00
return this.mapActionToKey.get(action);
2019-03-17 23:45:48 -05:00
}
mapKeysToActions(map) {
for (const key in map) {
const action = map[key];
this.mapKeyToAction[key] = action;
2019-03-28 20:35:22 -05:00
this.mapActionToKey.set(action, key);
2019-03-17 23:45:48 -05:00
}
}
onBlur(event) {
event = event || window.event;
this.setAllKeysUp();
}
onKeyDown(event) {
event = event || window.event;
const key = this.constructor.normalizeKey(event.key);
if (this.keysDown[key]) {
if (this.keyUpDelays[key]) {
clearTimeout(this.keyUpDelays[key]);
delete this.keyUpDelays[key];
}
return;
}
this.keysDown[key] = true;
if (this.mapKeyToAction[key]) {
const action = this.mapKeyToAction[key];
2019-03-28 20:35:22 -05:00
this._state = this._state.set(action, true);
2019-03-17 23:45:48 -05:00
}
}
onKeyUp(event) {
event = event || window.event;
const key = this.constructor.normalizeKey(event.key);
this.keyUpDelays[key] = setTimeout(() => {
delete this.keyUpDelays[key];
delete this.keysDown[key];
if (this.mapKeyToAction[key]) {
const action = this.mapKeyToAction[key];
this._state = this._state.delete(action);
}
}, 20);
}
setAllKeysUp() {
this.keysDown = {};
for (const key in this.keyUpDelays) {
const handle = this.keyUpDelays[key];
clearTimeout(handle);
}
this.keyUpDelays = {};
2019-03-28 20:35:22 -05:00
this._state = I.Map();
2019-03-17 23:45:48 -05:00
}
2019-03-28 20:35:22 -05:00
get state() {
2019-03-17 23:45:48 -05:00
return this._state;
}
2019-03-28 20:35:22 -05:00
set state(state) {
this._state = state;
}
2019-03-17 23:45:48 -05:00
stopListening() {
this.setAllKeysUp();
if (!this.target) {
return;
}
this.target.removeEventListener('blur', this.onBlur);
this.target.removeEventListener('keydown', this.onKeyDown);
this.target.removeEventListener('keyup', this.onKeyUp);
this.target = undefined;
}
}
2019-04-15 10:03:02 -05:00
export {InputPacket} from './packet/input.packet';