-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkeanu.js
More file actions
422 lines (345 loc) · 11.6 KB
/
keanu.js
File metadata and controls
422 lines (345 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
var keanu;
(function (exports) {
// CommonJS
if (typeof module !== "undefined" && module.exports) {
module.exports = exports;
}
// AMD
else if (typeof define === "function") {
define(exports);
}
// <script>
else {
keanu = exports;
}
}((function () {
var exports = {};
exports.name = 'keanu.js';
exports.version = '0.3';
var MODIFIERS = [
'17', 'Ctrl',
'224', 'Cmd'
],
// Cancel if these are pressed
CANCEL_ON = [
'0', // Escape
'27', // Escape
'8', // Backspace
'46' // Delete
],
// Special character transforms for displaying properly
TRANSFORMS = {
16: 'Shift',
17: 'Ctrl',
18: 'Alt',
28: '\\',
32: 'Space',
92: 'Win',
224: 'Cmd'
};
var webkit_transforms = {
13: 'Enter',
37: 'Left',
38: 'Up',
39: 'Down',
40: 'Right',
91: 'Cmd',
112: 'F1',
113: 'F2',
114: 'F3',
115: 'F4',
116: 'F5',
117: 'F6',
118: 'F7',
119: 'F8',
120: 'F9',
121: 'F10',
122: 'F11',
123: 'F12',
186: ';',
187: '=',
188: ',',
189: '-',
190: '.',
191: '/',
192: '`',
219: '[',
220: '\\',
221: ']',
222: '\''
};
// Merge the transforms
for(var key in webkit_transforms)
TRANSFORMS[key] = webkit_transforms[key];
MODIFIERS.push('16');
MODIFIERS.push('Shift');
//
MODIFIERS.push('18');
MODIFIERS.push('Alt');
// Add the reverse transform relationships
for(var transform_key in TRANSFORMS){
if(TRANSFORMS.hasOwnProperty(transform_key)){
TRANSFORMS[TRANSFORMS[transform_key]] = transform_key;
}
}
// Test whether a key is a modifier
function is_modifier(which){
return (
MODIFIERS.indexOf(which) !== -1 ||
MODIFIERS.indexOf(String(which)) !== -1
);
}
function transform_which(which){
return TRANSFORMS[which] || String.fromCharCode(Number(which));
}
// Sort an array of which entities
function sort_which(a, b){
if( is_modifier(a) === is_modifier(b) ){
return a - b;
}
// A is modifier
else if(is_modifier(a)){
return -1;
}
// Last case is that B is a modifier
return 1;
}
// Transform a key hash map to a sorted shortcut string
function keyarray_to_shortcut(keyarray){
if(typeof keyarray === 'undefined' || keyarray.length === 0){
return;
}
return keyarray.sort(sort_which).join('_');
}
// Given a shortcut string, return a shortcut array
function shortcut_to_keyarray(shortcut){
return shortcut.split('_').map(function(elem){
return String(elem);
}).sort(sort_which);
}
// Handle the actual dispatching of events
function dispatch_update(callback, keyarray){
if(typeof(callback) !== 'undefined'){
callback(
keyarray.length ? keyarray_to_shortcut(keyarray) : false
);
}
}
function has_non_modifier(keyarray){
for(var i = 0; i < keyarray.length; i++){
if(!is_modifier(keyarray[i])){
return true;
}
}
return false;
}
function has_modifier(keyarray){
for(var i = 0; i < keyarray.length; i++){
if(is_modifier(keyarray[i])){
return true;
}
}
return false;
}
function has_function_key(keyarray){
var friendlyShortcut = get_friendly_shortcut(keyarray_to_shortcut(keyarray));
return 'F1?[0-9]'.search(friendlyShortcut) != -1;
}
// Determine if a key event should be considered valid
function validate_event(event){
var which = String(event.which);
if (event.type === 'keydown') {
return which;
}
return false;
}
// Listen for new shortcuts being set
function get_shortcut(options, passed_doc) {
var // Internal tracking of keys pressed
keyarray = [],
// What to attach key events to
doc = typeof passed_doc === 'undefined' ? window : passed_doc,
// Options
max_keys = typeof(options.max_keys) === 'undefined' ? 0 : options.max_keys;
function keydown_listener(event){
event.preventDefault();
var which = validate_event(event);
if(which){
if(CANCEL_ON.indexOf(which) !== -1){
return cancel(event);
}
else if(
keyarray.indexOf(which) === -1 &&
// And we cant go over max keys
keyarray.length < max_keys
){
keyarray.push(which);
dispatch_update(options.on_update, keyarray);
}
}
}
function keyup_listener(event){
event.preventDefault();
return tear_down();
}
// Cancel everything
function cancel(event){
if(event){
event.preventDefault();
event.stopPropagation();
}
keyarray = [];
return tear_down();
}
function tear_down(){
if(!has_non_modifier(keyarray)){
keyarray = [];
}
if(options.on_set){
dispatch_update(options.on_set, keyarray);
}
keyarray = [];
doc.removeEventListener('keypress', keydown_listener, true);
doc.removeEventListener('keydown', keydown_listener, true);
doc.removeEventListener('keyup', keyup_listener, true);
doc.removeEventListener('mousedown', cancel, true);
doc.removeEventListener('blur', cancel, true);
doc.removeEventListener('focus', cancel, true);
if(options.on_complete){
options.on_complete();
}
}
doc.addEventListener('keypress', keydown_listener, true);
doc.addEventListener('keydown', keydown_listener, true);
doc.addEventListener('keyup', keyup_listener, true);
// Entering or leaving the doc should cancel anything going on
doc.addEventListener('mousedown', cancel, true);
doc.addEventListener('blur', cancel, true);
doc.addEventListener('focus', cancel, true);
}
function listen(callback, passed_doc){
var keyarray = [],
doc = typeof passed_doc === 'undefined' ? window : passed_doc;
function keydown_listener(event){
var which = validate_event(event),
whichNotInArr = keyarray.indexOf(which) === -1,
eventIsValid = (
!event.target ||
event.target.tagName == 'BODY' ||
event.target.tagName == 'HTML' ||
event.target.tagName == 'html' ||
event.target.tagName == 'DIV' ||
event.target.tagName == 'ARTICLE' ||
event.target.tagName == 'div' ||
event.target == document.documentElement
);
//Sites like gmail and Twitter have text inputs that are just divs
//with contenteditable set to true. Shortcuts should not fire for
//them. This should only run once we know the event is otherwise
//valid.
if (eventIsValid) {
if (event.target.getAttribute('contenteditable')) {
eventIsValid = false;
}
}
if (which && whichNotInArr && eventIsValid) {
if (CANCEL_ON.indexOf(which) !== -1){
return cancel();
}
keyarray.push(which);
dispatch_update(callback, keyarray);
}
}
function keyup_listener(event){
if(keyarray.length){
dispatch_update(callback, keyarray);
keyarray = [];
}
}
function cancel(){
keyarray = [];
return false;
}
function stop(){
keyarray = [];
doc.removeEventListener('keypress', keydown_listener, true);
doc.removeEventListener('keydown', keydown_listener, true);
doc.removeEventListener('keyup', keyup_listener, true);
doc.removeEventListener('blur', cancel);
doc.removeEventListener('focus', cancel);
}
doc.addEventListener('keypress', keydown_listener, true);
doc.addEventListener('keydown', keydown_listener, true);
doc.addEventListener('keyup', keyup_listener, true);
// Entering and leaving the doc should cancel any active presses
doc.addEventListener('blur', cancel, true);
doc.addEventListener('focus', cancel, true);
return {
stop: stop
};
}
function get_friendly_shortcut (shortcut) {
var friendlyShortcut = '',
shortcutArr = keanu.shortcut_to_keyarray(shortcut),
which = null;
for (var i = 0; i < shortcutArr.length; i += 1) {
which = shortcutArr[i];
friendlyShortcut += keanu.transform_which(which);
if (i < shortcutArr.length -1) {
friendlyShortcut += ' + ';
}
}
return friendlyShortcut;
}
function shortcut_to_firefox_hotkey(shortcut) {
function transform_names(match) {
switch(match) {
case 'cmd':
return 'meta';
case 'ctrl':
return 'control';
default:
return match;
}
}
var friendlyShortcut = get_friendly_shortcut(shortcut).toLowerCase().replace(/ \+ /g, '-');
return friendlyShortcut.replace(/cmd|ctrl/gi, transform_names);
}
function firefox_to_friendly(shortcut) {
if(shortcut == null) {
return null;
}
function transform_names(match) {
switch(match) {
case 'meta':
return 'Cmd';
case 'control':
return 'Ctrl';
case 'shift':
return 'Shift';
case 'alt':
return 'Alt';
default:
return match;
}
}
var output = shortcut.toLowerCase().replace(/-/g, ' + ');
output = output.replace(/meta|control|shift|alt/gi, transform_names);
return output;
}
// TODO: We might just want to declare each function as a member of exports
// instead of doing it here.
exports.listen = listen;
exports.get_shortcut = get_shortcut;
exports.keyarray_to_shortcut = keyarray_to_shortcut;
exports.shortcut_to_keyarray = shortcut_to_keyarray;
exports.transform_which = transform_which;
exports.is_modifier = is_modifier;
exports.has_modifier = has_modifier;
exports.has_function_key = has_function_key;
exports.has_non_modifier = has_non_modifier;
exports.get_friendly_shortcut = get_friendly_shortcut;
exports.shortcut_to_firefox_hotkey = shortcut_to_firefox_hotkey;
exports.firefox_to_friendly = firefox_to_friendly;
return exports;
}())));