-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathShortcutCustomizeUI.js
432 lines (403 loc) · 14 KB
/
ShortcutCustomizeUI.js
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
/*
license: The MIT License, Copyright (c) 2018 YUKI "Piro" Hiroshi
original:
http://github.com/piroor/webextensions-lib-shortcut-customize-ui
*/
// eslint-disable-next-line no-unused-vars
const ShortcutCustomizeUI = {
available: (
typeof browser.commands.update == 'function' &&
typeof browser.commands.reset == 'function'
),
uniqueKey: parseInt(Math.random() * Math.pow(2, 16)),
get commonClass() {
delete this.commonClass;
return this.commonClass = `shortcut-customize-ui-${this.uniqueKey}`;
},
setDefaultShortcuts() {
browser.commands.getAll().then(commands => {
for (const command of commands) {
if (command.shortcut || !command.description)
continue;
this.setDefaultShortcut(command.name, command);
}
});
},
async setDefaultShortcut(name, command=null) {
if (!command) {
const commands = await browser.commands.getAll();
for (const oneCommand of commands) {
if (oneCommand.name == name) {
command = oneCommand;
break;
}
}
if (!command)
throw new Error(`Unknown command: ${name}`);
}
if (!command.description)
return false;
const shortcut = command.description.match(this.DEFAULT_SHORTCUT_MATCHER);
if (!shortcut || !shortcut[1])
return false;
await browser.commands.update({
name: name,
shortcut: shortcut[1]
});
return true;
},
DEFAULT_SHORTCUT_MATCHER: /\(([^ ]+)\)$/,
async build(options) {
const defaultOptions = {
showDescriptions: true
};
options = Object.assign({}, defaultOptions, options || {});
const isMac = /^Mac/i.test(navigator.platform);
const commands = await browser.commands.getAll();
const list = document.createElement('ul');
list.classList.add(this.commonClass);
list.classList.add('shortcuts');
const items = [];
for (let command of commands) {
const initialShortcut = command.shortcut || '';
command.currentUnmodifedHotkey = initialShortcut.replace(/(Alt|Control|Ctrl|Command|Meta|Shift)\+/gi, '').trim();
let defaultShortcut = command.description && command.description.match(this.DEFAULT_SHORTCUT_MATCHER);
if (defaultShortcut)
defaultShortcut = defaultShortcut[1];
const item = document.createElement('li');
item.classList.add(this.commonClass);
item.classList.add('shortcut');
if (options.showDescriptions) {
const name = `${(command.description || '').replace(this.DEFAULT_SHORTCUT_MATCHER, '') || command.name}: `
.replace(/__MSG_(.+?)__/g, aMatched => browser.i18n.getMessage(aMatched.slice(6, -2)));
const nameLabel = item.appendChild(document.createElement('label'));
nameLabel.classList.add(this.commonClass);
nameLabel.textContent = name;
}
const keyCombination = item.appendChild(document.createElement('span'));
keyCombination.classList.add(this.commonClass);
keyCombination.classList.add('key-combination');
const keyField = document.createElement('input');
const ctrlLabel = this.buildCheckBoxWithLabel(this.getLocalizedKey(isMac ? 'MacCtrl' : 'Ctrl') || isMac ? 'Control' : 'Ctrl');
const metaLabel = this.buildCheckBoxWithLabel(this.getLocalizedKey('Command') || isMac ? '⌘' : 'Meta');
const altLabel = this.buildCheckBoxWithLabel(this.getLocalizedKey('Alt') || 'Alt');
const shiftLabel = this.buildCheckBoxWithLabel(this.getLocalizedKey('Shift') || 'Shift');
const checkboxes = isMac ? [metaLabel, ctrlLabel, altLabel, shiftLabel] : [ctrlLabel, altLabel, shiftLabel /* , metaLabel */] ;
const createEvent = (aName, aShortcut) => {
return new CustomEvent('ShortcutChanged', {
detail: {
name: aName,
key: aShortcut
}
})
};
const update = async () => {
const key = this.normalizeKey(keyField.value);
const shortcut = [];
if (altLabel.checkbox.checked)
shortcut.push('Alt');
if (ctrlLabel.checkbox.checked)
shortcut.push(isMac ? 'MacCtrl' : 'Ctrl');
if (metaLabel.checkbox.checked)
shortcut.push('Command');
if (shiftLabel.checkbox.checked)
shortcut.push('Shift');
shortcut.push(key);
command.currentUnmodifedHotkey = key;
const fullShortcut = shortcut.join('+');
try {
await browser.commands.update({
name: command.name,
shortcut: fullShortcut
});
item.classList.remove('error');
list.dispatchEvent(createEvent(command.name, fullShortcut));
}
catch(aError) {
if (key || shortcut.length > 1)
item.classList.add('error');
console.log(aError);
}
};
const apply = () => {
let key = command.shortcut || '';
altLabel.checkbox.checked = /Alt/i.test(key);
ctrlLabel.checkbox.checked = /Ctrl|MacCtrl/i.test(key);
metaLabel.checkbox.checked = /Command/i.test(key) || (isMac && /Ctrl/i.test(key));
shiftLabel.checkbox.checked = /Shift/i.test(key);
key = key.replace(/(Alt|Control|Ctrl|Command|Meta|Shift)\+/gi, '').trim();
keyField.value = this.getLocalizedKey(key) || key;
};
const reset = async () => {
if (defaultShortcut) {
// Reset to default shortcut extracted from the description.
// See also https://bugzilla.mozilla.org/show_bug.cgi?id=1475043
command.shortcut = defaultShortcut;
apply();
await update();
}
else {
browser.commands.reset(command.name);
}
browser.commands.getAll().then(aCommands => {
for (const defaultCommand of aCommands) {
if (defaultCommand.name != command.name)
continue;
command = defaultCommand;
list.dispatchEvent(createEvent(command.name, command.shortcut));
item.classList.remove('error');
apply();
break;
}
});
};
const clear = () => {
if (defaultShortcut) {
// Reset to blank instead of setting blank.
// See also https://bugzilla.mozilla.org/show_bug.cgi?id=1475043
browser.commands.reset(command.name);
command.shortcut = '';
apply();
}
else {
altLabel.checkbox.checked =
ctrlLabel.checkbox.checked =
metaLabel.checkbox.checked =
shiftLabel.checkbox.checked = false;
keyField.value = '';
update();
}
};
const cleanKeyField = () => {
keyField.value = this.getLocalizedKey(command.currentUnmodifedHotkey) || command.currentUnmodifedHotkey;
}
for (const checkbox of checkboxes) {
keyCombination.appendChild(checkbox);
keyCombination.appendChild(document.createTextNode('+'));
checkbox.addEventListener('change', update);
}
keyCombination.appendChild(keyField);
keyField.setAttribute('type', 'text');
keyField.setAttribute('size', 8);
keyField.addEventListener('input', update);
keyField.addEventListener('keyup', event => {
switch (event.key) {
case 'Escape':
clear();
break;
}
});
keyField.addEventListener('blur', cleanKeyField);
if (!this.available)
keyField.setAttribute('disabled', true);
if (this.available) {
const resetButton = keyCombination.appendChild(this.createOperationButton(() => reset()));
resetButton.textContent = '🔄';
resetButton.setAttribute('title', 'Reset');
//const clearButton = keyCombination.appendChild(this.createOperationButton(() => clear()));
//clearButton.textContent = '✖';
//clearButton.setAttribute('title', 'Clear');
}
apply();
items.push(item);
list.appendChild(item);
}
this.installStyleSheet();
return list;
},
createOperationButton(onCommand) {
const button = document.createElement('button');
button.style.minWidth = 0;
button.addEventListener('keyup', aEvent => {
switch (aEvent.key) {
case 'Enter':
case ' ':
onCommand();
break;
}
});
button.addEventListener('click', aEvent => {
switch (aEvent.button) {
case 0:
onCommand();
break;
}
});
return button;
},
buildCheckBoxWithLabel(aLabel) {
const label = document.createElement('label');
label.textContent = aLabel;
label.checkbox = label.insertBefore(document.createElement('input'), label.firstChild);
label.checkbox.setAttribute('type', 'checkbox');
if (!this.available)
label.checkbox.setAttribute('disabled', true);
return label;
},
normalizeKey(aKey) {
aKey = aKey.trim().toLowerCase();
const normalizedKey = aKey.replace(/\s+/g, '');
if (/^[a-z0-9]$/i.test(normalizedKey) ||
/^F([1-9]|1[0-2])$/i.test(normalizedKey))
return aKey.toUpperCase();
switch (normalizedKey) {
case 'comma':
return 'Comma';
case 'period':
return 'Period';
case 'home':
return 'Home';
case 'end':
return 'End';
case 'pageup':
return 'PageUp';
case 'pagedown':
return 'PageDown';
case 'space':
return 'Space';
case 'del':
case 'delete':
return 'Delete';
case 'up':
return 'Up';
case 'down':
return 'Down';
case 'left':
return 'Left';
case 'right':
return 'Right';
case 'next':
case 'medianexttrack':
case 'mediatracknext':
// KeyboardEvent API defines "MediaTrackNext" and "MediaTrackPrevious",
// but WebExtensions APIs uses "MediaNextTrack" and "MediaPrevTrack" as
// valid key names.
// https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key/Key_Values#Multimedia_keys
// https://developer.mozilla.org/en-US/Add-ons/WebExtensions/manifest.json/commands#Media_keys
// https://developer.chrome.com/extensions/commands#usage
// See also: https://github.com/piroor/webextensions-lib-shortcut-customize-ui/issues/10
return 'MediaNextTrack';
case 'play':
case 'pause':
case 'mediaplaypause':
return 'MediaPlayPause';
case 'prev':
case 'previous':
case 'mediaprevtrack':
case 'mediaprevioustrack':
case 'mediatrackprev':
case 'mediatrackprevious':
return 'MediaPrevTrack';
case 'stop':
case 'mediastop':
return 'MediaStop';
default:
for (const map of [this.keyNameMap, this.keyNameMapLocales.global]) {
for (const key of Object.keys(map)) {
if (Array.isArray(map[key])) {
if (map[key].some(aLocalizedKey => aLocalizedKey.toLowerCase() == aKey))
return key;
}
else {
if (map[key] &&
map[key].toLowerCase() == aKey)
return key;
}
}
}
break;
}
return '';
},
getLocalizedKey(aKey) {
for (const map of [this.keyNameMap, this.keyNameMapLocales.global]) {
if (aKey in map)
return Array.isArray(map[aKey]) ? map[aKey][0] : map[aKey];
}
return '';
},
installStyleSheet() {
if (this.style)
return;
this.style = document.createElement('style');
this.style.setAttribute('type', 'text/css');
this.style.textContent = `
li.shortcut.${this.commonClass} {
border-top: 1px solid ThreeDShadow;
display: grid;
grid-template-columns: 1fr max-content;
margin: 0 0 0.25em;
padding: 0.25em 0 0;
}
li.shortcut.${this.commonClass}:first-child {
border-top: none;
margin-top: 0;
padding-top: 0;
}
li.error.${this.commonClass} .key-combination::before {
background: #ff6060;
border: solid thin white;
border-radius: 100%;
box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.35);
content: "!";
color: white;
display: inline-block;
font-weight: bold;
min-width: 1em;
text-align: center;
}
`;
document.head.appendChild(this.style);
},
keyNameMapLocales: {
global: {
Comma: [','],
Period: ['.'],
Space: [' '],
Up: ['↑'],
Down: ['↓'],
Left: ['←', '<=', '<-'],
Right: ['→', '=>', '->'],
},
// define tables with https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/i18n/LanguageCode
ja: {
// key: valid key name listed at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/manifest.json/commands#Shortcut_values
// value: array of localized key names
Up: ['上'],
Down: ['下'],
Left: ['左'],
Right: ['右'],
// you can localize modifier keys also.
// Alt: ['オルト'],
// Ctrl: ['コントロール'],
// MacCtrl: ['コントロール'], // for macOS
// Command: ['コマンド`], // for macOS
// Shift: ['シフト`],
},
ru: {
// key: valid key name listed at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/manifest.json/commands#Shortcut_values
// value: array of localized key names
Up: ['Вверх'],
Down: ['Вниз'],
Left: ['Влево'],
Right: ['Вправо'],
Comma: ['Запятая'],
Period: ['Точка'],
Space: ['Пробел'],
MediaNextTrack: ['Следующий трек'],
MediaPrevTrack: ['Предыдущий трек'],
MediaPlayPause: ['Пауза проигрывания'],
MediaStop: ['Остановка проигрывания']
},
// de: {...},
// fr: {...},
},
get keyNameMap() {
delete this.keyNameMap;
return this.keyNameMap = (
this.keyNameMapLocales[browser.i18n.getUILanguage()] ||
this.keyNameMapLocales[browser.i18n.getUILanguage().replace(/[-_].+$/, '')] ||
{}
);
}
};