-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathindex.ts
461 lines (432 loc) · 10.8 KB
/
index.ts
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
import { Platform } from '@lumino/domutils';
/**
* An object which represents an abstract keyboard layout.
*/
export interface IKeyboardLayout {
/**
* The human readable name of the layout.
*
* This value is used primarily for display and debugging purposes.
*/
readonly name: string;
/**
* Get an array of all key values supported by the layout.
*
* @returns A new array of the supported key values.
*
* #### Notes
* This can be useful for authoring tools and debugging, when it's
* necessary to know which keys are available for shortcut use.
*/
keys(): string[];
/**
* Get an arrow of all modifier key values supported by the layout.
*
* @returns A new array of the supported modifier key values.
*
* #### Notes
* This can be useful for authoring tools and debugging, when it's
* necessary to know which modifier keys are available for shortcut use.
*/
modifierKeys(): string[];
/**
* Test whether the given key is a valid value for the layout.
*
* @param key - The user provided key to test for validity.
*
* @returns `true` if the key is valid, `false` otherwise.
*/
isValidKey(key: string): boolean;
/**
* Test whether the given key is a valid modifier key for the layout.
*
* @param key - The user provided key to test for validity.
*
* @returns `true` if the key is a modifier key, `false` otherwise.
*
* #### Notes
* This may be useful to determine whether we should ignore a keypress
* event in the middle of a key sequence. For example, "Shift C Ctrl P" is
* actually four keydown events: "Shift, "Shift P", "Ctrl", "Ctrl P", but
* the keypress events for the modifier keys "Shift" and "Ctrl" are ignored.
*/
isModifierKey(key: string): boolean;
/**
* Get the key for a `'keydown'` event.
*
* @param event - The event object for a `'keydown'` event.
*
* @returns The associated key value, or an empty string if the event
* does not represent a valid primary key.
*/
keyForKeydownEvent(event: KeyboardEvent): string;
/**
* Get the formatted string for displaying a key in the user interface.
*
* @param key - The user provided key.
*
* @returns A unicode string representing the key in the interface.
*/
formatKey(key: string): string;
}
/**
* Get the global application keyboard layout instance.
*
* @returns The keyboard layout for use by the application.
*
* #### Notes
* The default keyboard layout is US-English.
*/
export function getKeyboardLayout(): IKeyboardLayout {
return Private.keyboardLayout;
}
/**
* Set the global application keyboard layout instance.
*
* @param - The keyboard layout for use by the application.
*
* #### Notes
* The keyboard layout should typically be set on application startup
* to a layout which is appropriate for the user's system.
*/
export function setKeyboardLayout(layout: IKeyboardLayout): void {
Private.keyboardLayout = layout;
}
/**
* A concrete implementation of [[IKeyboardLayout]] based on keycodes.
*
* The `keyCode` property of a `'keydown'` event is a browser and OS
* specific representation of the physical key (not character) which
* was pressed on a keyboard. While not the most convenient API, it
* is currently the only one which works reliably on all browsers.
*
* This class accepts a user-defined mapping of keycode to key, which
* allows for reliable shortcuts tailored to the user's system.
*/
export class KeycodeLayout implements IKeyboardLayout {
/**
* Construct a new keycode layout.
*
* @param name - The human readable name for the layout.
*
* @param codes - A mapping of keycode to key value.
*
* @param modifierKeys - Array of modifier key names
*/
constructor(
name: string,
codes: KeycodeLayout.CodeMap,
modifierKeys: string[] = [],
format: KeycodeLayout.KeyFormat = x => x
) {
this.name = name;
this._codes = codes;
this._keys = KeycodeLayout.extractKeys(codes);
this._modifierKeys = new Set<string>(modifierKeys);
this._format = format;
}
/**
* The human readable name of the layout.
*/
readonly name: string;
/**
* Get an array of the key values supported by the layout.
*
* @returns A new array of the supported key values.
*/
keys(): string[] {
return Object.keys(this._keys);
}
/**
* Get an arrow of all modifier key values supported by the layout.
*
* @returns A new array of the supported modifier key values.
*/
modifierKeys(): string[] {
return Array.from(this._modifierKeys);
}
/**
* Test whether the given key is a valid value for the layout.
*
* @param key - The user provided key to test for validity.
*
* @returns `true` if the key is valid, `false` otherwise.
*/
isValidKey(key: string): boolean {
return key in this._keys;
}
/**
* Test whether the given key is a modifier key.
*
* @param key - The user provided key.
*
* @returns `true` if the key is a modifier key, `false` otherwise.
*/
isModifierKey(key: string): boolean {
return this._modifierKeys.has(key);
}
/**
* Get the key for a `'keydown'` event.
*
* @param event - The event object for a `'keydown'` event.
*
* @returns The associated key value, or an empty string if
* the event does not represent a valid primary key.
*/
keyForKeydownEvent(event: KeyboardEvent): string {
return this._codes[event.keyCode] || '';
}
/**
* Get the formatted string for displaying a key in the user interface.
*
* @param key - The user provided key.
*
* @returns A unicode string representing the key in the interface.
*/
formatKey(key: string): string {
return this._format(key);
}
private _keys: KeycodeLayout.KeySet;
private _codes: KeycodeLayout.CodeMap;
private _modifierKeys: Set<string>;
private _format: KeycodeLayout.KeyFormat;
}
/**
* The namespace for the `KeycodeLayout` class statics.
*/
export namespace KeycodeLayout {
/**
* A type alias for a keycode map.
*/
export type CodeMap = { readonly [code: number]: string };
/**
* A type alias for a key set.
*/
export type KeySet = { readonly [key: string]: boolean };
/**
* A type alias for a key format function.
*/
export type KeyFormat = (key: string) => string;
/**
* Extract the set of keys from a code map.
*
* @param code - The code map of interest.
*
* @returns A set of the keys in the code map.
*/
export function extractKeys(codes: CodeMap): KeySet {
let keys: any = Object.create(null);
for (let c in codes) {
keys[codes[c]] = true;
}
return keys as KeySet;
}
/**
* Convert array of keys to a key set.
*
* @param keys - The array that needs to be converted
*
* @returns A set of the keys in the array.
*/
export function convertToKeySet(keys: string[]): KeySet {
let keySet = Object(null);
for (let i = 0, n = keys.length; i < n; ++i) {
keySet[keys[i]] = true;
}
return keySet;
}
}
export const MAC_DISPLAY: { [key: string]: string } = {
Backspace: '⌫',
Tab: '⇥',
Enter: '↩',
Shift: '⇧',
Ctrl: '⌃',
Alt: '⌥',
Escape: '⎋',
PageUp: '⇞',
PageDown: '⇟',
End: '↘',
Home: '↖',
ArrowLeft: '←',
ArrowUp: '↑',
ArrowRight: '→',
ArrowDown: '↓',
Delete: '⌦',
Meta: '⌘'
};
export const WIN_DISPLAY: { [key: string]: string } = {
// 'Backspace': '⌫',
// 'Tab': '⇥',
// 'Enter': 'Return',
// 'Shift': '⇧',
// 'Ctrl': 'Ctrl',
// 'Alt': '⌥',
// 'Pause': '',
Escape: 'Esc',
// 'Space': '␣',
PageUp: 'Page Up',
PageDown: 'Page Down',
// 'End': '↘',
// 'Home': '↖',
ArrowLeft: 'Left',
ArrowUp: 'Right',
ArrowRight: 'Up',
ArrowDown: 'Down',
// 'Insert': '',
Delete: 'Del'
// 'Meta': ''
};
export function formatKey(key: string): string {
if (Platform.IS_MAC) {
return MAC_DISPLAY.hasOwnProperty(key) ? MAC_DISPLAY[key] : key;
} else {
return WIN_DISPLAY.hasOwnProperty(key) ? WIN_DISPLAY[key] : key;
}
}
/**
* A keycode-based keyboard layout for US English keyboards.
*
* This layout is valid for the following OS/Browser combinations.
*
* - Windows
* - Chrome
* - Firefox
* - IE
*
* - OSX
* - Chrome
* - Firefox
* - Safari
*
* - Linux
* - Chrome
* - Firefox
*
* Other combinations may also work, but are untested.
*/
export const EN_US: IKeyboardLayout = new KeycodeLayout(
'en-us',
{
8: 'Backspace',
9: 'Tab',
13: 'Enter',
16: 'Shift',
17: 'Ctrl',
18: 'Alt',
19: 'Pause',
27: 'Escape',
32: 'Space',
33: 'PageUp',
34: 'PageDown',
35: 'End',
36: 'Home',
37: 'ArrowLeft',
38: 'ArrowUp',
39: 'ArrowRight',
40: 'ArrowDown',
45: 'Insert',
46: 'Delete',
48: '0',
49: '1',
50: '2',
51: '3',
52: '4',
53: '5',
54: '6',
55: '7',
56: '8',
57: '9',
59: ';', // firefox
61: '=', // firefox
65: 'A',
66: 'B',
67: 'C',
68: 'D',
69: 'E',
70: 'F',
71: 'G',
72: 'H',
73: 'I',
74: 'J',
75: 'K',
76: 'L',
77: 'M',
78: 'N',
79: 'O',
80: 'P',
81: 'Q',
82: 'R',
83: 'S',
84: 'T',
85: 'U',
86: 'V',
87: 'W',
88: 'X',
89: 'Y',
90: 'Z',
91: 'Meta', // non-firefox
93: 'ContextMenu',
96: '0', // numpad
97: '1', // numpad
98: '2', // numpad
99: '3', // numpad
100: '4', // numpad
101: '5', // numpad
102: '6', // numpad
103: '7', // numpad
104: '8', // numpad
105: '9', // numpad
106: '*', // numpad
107: '+', // numpad
109: '-', // numpad
110: '.', // numpad
111: '/', // numpad
112: 'F1',
113: 'F2',
114: 'F3',
115: 'F4',
116: 'F5',
117: 'F6',
118: 'F7',
119: 'F8',
120: 'F9',
121: 'F10',
122: 'F11',
123: 'F12',
173: '-', // firefox
186: ';', // non-firefox
187: '=', // non-firefox
188: ',',
189: '-', // non-firefox
190: '.',
191: '/',
192: '`',
219: '[',
220: '\\',
221: ']',
222: "'",
224: 'Meta' // firefox
},
// The modifier is labeled "Control", but the key value is "Ctrl"?
['Ctrl', 'Alt', 'Shift', 'Meta'], // modifier keys in display order
formatKey
);
/**
* The namespace for the module implementation details.
*/
namespace Private {
/**
* The global keyboard layout instance.
*/
export let keyboardLayout = EN_US;
}