jsketcher/web/app/3d/ui/input-manager.js
2016-10-14 01:19:08 -07:00

101 lines
No EOL
2.8 KiB
JavaScript

import {jwerty} from 'jwerty'
import {keymap} from './keymaps/default'
import {Bind} from './bind'
import {MessageSink} from './message-sink'
import {LoadTemplate, DefaultMouseEvent, EventData, fit} from './utils'
export function InputManager(app) {
this.app = app;
this.openMenus = [];
this.keymap = keymap;
this.mouseInfo = new DefaultMouseEvent();
this.requestedActionInfo = null;
this.actionInfoDom = $(LoadTemplate('action-info')({}));
this.messageSink = new MessageSink(this);
$(() => {
$(document)
.on('keydown', (e) => this.handleKeyPress(e))
.on('mousedown', (e) => this.clear(e))
.on('mouseenter', '.action-item', (e) => this.showActionInfo($(e.currentTarget)))
.on('mouseleave', '.action-item', (e) => this.hideActionInfo())
.on('mousemove', (e) => this.mouseInfo = e)
.on('click', '.action-item', (e) => this.handleActionClick(e));
});
}
InputManager.prototype.handleKeyPress = function(e) {
switch (e.keyCode) {
case 27 : this.clear(); break;
}
for (let action in this.keymap) {
if (jwerty.is(this.keymap[action], e)) {
this.app.actionManager.run(action, e);
break;
}
}
};
InputManager.prototype.clear = function(e) {
if (e != undefined && $(e.target).closest('.menu-item').length != 0) {
return;
}
if (this.openMenus.length != 0) {
for (let openMenu of this.openMenus) {
openMenu.node.hide();
}
this.openMenus = [];
}
this.requestedActionInfo = null;
this.messageSink.hide();
};
InputManager.prototype.handleActionClick = function(event) {
var target = $(event.currentTarget);
var action = target.data('action');
if (action != undefined) {
this.clear();
EventData.set(event, 'menu-button', target);
this.app.actionManager.run(action, event);
}
};
InputManager.prototype.registerOpenMenu = function(menu) {
fit(menu.node, $('body'));
this.openMenus.push(menu);
};
InputManager.prototype.hideActionInfo = function() {
this.requestedActionInfo = null;
this.messageSink.hide();
};
InputManager.prototype.showActionInfo = function(el) {
var action = el.data('action');
if (action) {
this.requestInfo(action);
}
};
InputManager.prototype.requestInfo = function(actionRequest) {
if (this.requestedActionInfo == actionRequest) {
return;
}
this.requestedActionInfo = actionRequest;
setTimeout(() => {
const actionId = this.requestedActionInfo;
this.requestedActionInfo = null;
if (actionId != null ) {
const action = this.app.actionManager.actions[actionId];
if (action) {
const hotKey = this.keymap[actionId];
Bind(this.actionInfoDom, {
hint: action.state.hint,
info: action.info,
hotKey: hotKey
});
this.messageSink.showContent(this.actionInfoDom);
}
}
}, 500);
};