2020-09-06 14:00:25 +02:00
|
|
|
import { KeyboardEvent } from 'react';
|
2020-10-09 19:35:46 +02:00
|
|
|
import eventManager from 'lib/eventManager';
|
|
|
|
import shim from 'lib/shim';
|
|
|
|
import { _ } from 'lib/locale';
|
2020-09-06 14:00:25 +02:00
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
const BaseService = require('lib/services/BaseService').default;
|
2020-08-02 13:26:55 +02:00
|
|
|
|
|
|
|
const keysRegExp = /^([0-9A-Z)!@#$%^&*(:+<_>?~{|}";=,\-./`[\\\]']|F1*[1-9]|F10|F2[0-4]|Plus|Space|Tab|Backspace|Delete|Insert|Return|Enter|Up|Down|Left|Right|Home|End|PageUp|PageDown|Escape|Esc|VolumeUp|VolumeDown|VolumeMute|MediaNextTrack|MediaPreviousTrack|MediaStop|MediaPlayPause|PrintScreen)$/;
|
|
|
|
const modifiersRegExp = {
|
|
|
|
darwin: /^(Ctrl|Option|Shift|Cmd)$/,
|
|
|
|
default: /^(Ctrl|Alt|AltGr|Shift|Super)$/,
|
|
|
|
};
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
const defaultKeymapItems = {
|
2020-08-02 13:26:55 +02:00
|
|
|
darwin: [
|
|
|
|
{ accelerator: 'Cmd+N', command: 'newNote' },
|
|
|
|
{ accelerator: 'Cmd+T', command: 'newTodo' },
|
|
|
|
{ accelerator: 'Cmd+S', command: 'synchronize' },
|
|
|
|
{ accelerator: 'Cmd+P', command: 'print' },
|
|
|
|
{ accelerator: 'Cmd+H', command: 'hideApp' },
|
|
|
|
{ accelerator: 'Cmd+Q', command: 'quit' },
|
|
|
|
{ accelerator: 'Cmd+,', command: 'config' },
|
|
|
|
{ accelerator: 'Cmd+W', command: 'closeWindow' },
|
|
|
|
{ accelerator: 'Option+Cmd+I', command: 'insertTemplate' },
|
|
|
|
{ accelerator: 'Cmd+C', command: 'textCopy' },
|
|
|
|
{ accelerator: 'Cmd+X', command: 'textCut' },
|
|
|
|
{ accelerator: 'Cmd+V', command: 'textPaste' },
|
|
|
|
{ accelerator: 'Cmd+A', command: 'textSelectAll' },
|
|
|
|
{ accelerator: 'Cmd+B', command: 'textBold' },
|
|
|
|
{ accelerator: 'Cmd+I', command: 'textItalic' },
|
|
|
|
{ accelerator: 'Cmd+K', command: 'textLink' },
|
|
|
|
{ accelerator: 'Cmd+`', command: 'textCode' },
|
|
|
|
{ accelerator: 'Shift+Cmd+T', command: 'insertDateTime' },
|
|
|
|
{ accelerator: 'Shift+Cmd+F', command: 'focusSearch' },
|
|
|
|
{ accelerator: 'Cmd+F', command: 'showLocalSearch' },
|
|
|
|
{ accelerator: 'Shift+Cmd+S', command: 'focusElementSideBar' },
|
|
|
|
{ accelerator: 'Shift+Cmd+L', command: 'focusElementNoteList' },
|
|
|
|
{ accelerator: 'Shift+Cmd+N', command: 'focusElementNoteTitle' },
|
|
|
|
{ accelerator: 'Shift+Cmd+B', command: 'focusElementNoteBody' },
|
|
|
|
{ accelerator: 'Option+Cmd+S', command: 'toggleSidebar' },
|
2020-09-13 18:21:11 +02:00
|
|
|
{ accelerator: 'Option+Cmd+L', command: 'toggleNoteList' },
|
2020-08-02 13:26:55 +02:00
|
|
|
{ accelerator: 'Cmd+L', command: 'toggleVisiblePanes' },
|
|
|
|
{ accelerator: 'Cmd+0', command: 'zoomActualSize' },
|
2020-10-10 14:32:30 +02:00
|
|
|
{ accelerator: 'Cmd+E', command: 'toggleExternalEditing' },
|
2020-08-02 13:26:55 +02:00
|
|
|
{ accelerator: 'Option+Cmd+T', command: 'setTags' },
|
|
|
|
{ accelerator: 'Cmd+G', command: 'gotoAnything' },
|
|
|
|
{ accelerator: 'F1', command: 'help' },
|
|
|
|
],
|
|
|
|
default: [
|
|
|
|
{ accelerator: 'Ctrl+N', command: 'newNote' },
|
|
|
|
{ accelerator: 'Ctrl+T', command: 'newTodo' },
|
|
|
|
{ accelerator: 'Ctrl+S', command: 'synchronize' },
|
|
|
|
{ accelerator: 'Ctrl+P', command: 'print' },
|
|
|
|
{ accelerator: 'Ctrl+Q', command: 'quit' },
|
|
|
|
{ accelerator: 'Ctrl+Alt+I', command: 'insertTemplate' },
|
|
|
|
{ accelerator: 'Ctrl+C', command: 'textCopy' },
|
|
|
|
{ accelerator: 'Ctrl+X', command: 'textCut' },
|
|
|
|
{ accelerator: 'Ctrl+V', command: 'textPaste' },
|
|
|
|
{ accelerator: 'Ctrl+A', command: 'textSelectAll' },
|
|
|
|
{ accelerator: 'Ctrl+B', command: 'textBold' },
|
|
|
|
{ accelerator: 'Ctrl+I', command: 'textItalic' },
|
|
|
|
{ accelerator: 'Ctrl+K', command: 'textLink' },
|
|
|
|
{ accelerator: 'Ctrl+`', command: 'textCode' },
|
|
|
|
{ accelerator: 'Ctrl+Shift+T', command: 'insertDateTime' },
|
|
|
|
{ accelerator: 'F6', command: 'focusSearch' },
|
|
|
|
{ accelerator: 'Ctrl+F', command: 'showLocalSearch' },
|
|
|
|
{ accelerator: 'Ctrl+Shift+S', command: 'focusElementSideBar' },
|
|
|
|
{ accelerator: 'Ctrl+Shift+L', command: 'focusElementNoteList' },
|
|
|
|
{ accelerator: 'Ctrl+Shift+N', command: 'focusElementNoteTitle' },
|
|
|
|
{ accelerator: 'Ctrl+Shift+B', command: 'focusElementNoteBody' },
|
|
|
|
{ accelerator: 'F10', command: 'toggleSidebar' },
|
2020-09-13 18:21:11 +02:00
|
|
|
{ accelerator: 'F11', command: 'toggleNoteList' },
|
2020-08-02 13:26:55 +02:00
|
|
|
{ accelerator: 'Ctrl+L', command: 'toggleVisiblePanes' },
|
|
|
|
{ accelerator: 'Ctrl+0', command: 'zoomActualSize' },
|
2020-10-10 14:32:30 +02:00
|
|
|
{ accelerator: 'Ctrl+E', command: 'toggleExternalEditing' },
|
2020-08-02 13:26:55 +02:00
|
|
|
{ accelerator: 'Ctrl+Alt+T', command: 'setTags' },
|
|
|
|
{ accelerator: 'Ctrl+,', command: 'config' },
|
|
|
|
{ accelerator: 'Ctrl+G', command: 'gotoAnything' },
|
|
|
|
{ accelerator: 'F1', command: 'help' },
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
export interface KeymapItem {
|
|
|
|
accelerator: string;
|
|
|
|
command: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface Keymap {
|
|
|
|
[command: string]: KeymapItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class KeymapService extends BaseService {
|
|
|
|
private keymap: Keymap;
|
2020-09-06 14:00:25 +02:00
|
|
|
private platform: string;
|
|
|
|
private customKeymapPath: string;
|
|
|
|
private defaultKeymapItems: KeymapItem[];
|
2020-10-09 19:35:46 +02:00
|
|
|
private lastSaveTime_:number;
|
2020-08-02 13:26:55 +02:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
this.lastSaveTime_ = Date.now();
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
// By default, initialize for the current platform
|
|
|
|
// Manual initialization allows testing for other platforms
|
2020-08-02 13:26:55 +02:00
|
|
|
this.initialize();
|
|
|
|
}
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
get lastSaveTime():number {
|
|
|
|
return this.lastSaveTime_;
|
|
|
|
}
|
|
|
|
|
2020-08-02 13:26:55 +02:00
|
|
|
initialize(platform: string = shim.platformName()) {
|
2020-09-06 14:00:25 +02:00
|
|
|
this.platform = platform;
|
|
|
|
|
2020-08-02 13:26:55 +02:00
|
|
|
switch (platform) {
|
|
|
|
case 'darwin':
|
2020-09-06 14:00:25 +02:00
|
|
|
this.defaultKeymapItems = defaultKeymapItems.darwin;
|
2020-08-02 13:26:55 +02:00
|
|
|
this.modifiersRegExp = modifiersRegExp.darwin;
|
|
|
|
break;
|
|
|
|
default:
|
2020-09-06 14:00:25 +02:00
|
|
|
this.defaultKeymapItems = defaultKeymapItems.default;
|
2020-08-02 13:26:55 +02:00
|
|
|
this.modifiersRegExp = modifiersRegExp.default;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.keymap = {};
|
2020-09-06 14:00:25 +02:00
|
|
|
for (let i = 0; i < this.defaultKeymapItems.length; i++) {
|
|
|
|
// Keep the original defaultKeymapItems array untouched
|
|
|
|
// Makes it possible to retrieve the original accelerator later, if needed
|
|
|
|
this.keymap[this.defaultKeymapItems[i].command] = { ...this.defaultKeymapItems[i] };
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
async loadCustomKeymap(customKeymapPath: string) {
|
|
|
|
this.customKeymapPath = customKeymapPath; // Useful for saving the changes later
|
2020-08-02 13:26:55 +02:00
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
if (await shim.fsDriver().exists(customKeymapPath)) {
|
|
|
|
this.logger().info(`KeymapService: Loading keymap from file: ${customKeymapPath}`);
|
2020-08-02 13:26:55 +02:00
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
const customKeymapFile = await shim.fsDriver().readFile(customKeymapPath, 'utf-8');
|
|
|
|
// Custom keymaps are supposed to contain an array of keymap items
|
|
|
|
this.overrideKeymap(JSON.parse(customKeymapFile));
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
async saveCustomKeymap(customKeymapPath: string = this.customKeymapPath) {
|
|
|
|
this.logger().info(`KeymapService: Saving keymap to file: ${customKeymapPath}`);
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Only the customized keymap items should be saved to the disk
|
|
|
|
const customKeymapItems = this.getCustomKeymapItems();
|
|
|
|
await shim.fsDriver().writeFile(customKeymapPath, JSON.stringify(customKeymapItems, null, 2), 'utf-8');
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
this.lastSaveTime_ = Date.now();
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
// Refresh the menu items so that the changes are reflected
|
|
|
|
eventManager.emit('keymapChange');
|
|
|
|
} catch (err) {
|
|
|
|
const message = err.message || '';
|
2020-09-15 13:08:25 +02:00
|
|
|
throw new Error(_('Error: %s', message));
|
2020-09-06 14:00:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
acceleratorExists(command: string) {
|
2020-08-02 13:26:55 +02:00
|
|
|
return !!this.keymap[command];
|
|
|
|
}
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
private convertToPlatform(accelerator:string) {
|
|
|
|
return accelerator
|
|
|
|
.replace(/CmdOrCtrl/g, this.platform === 'darwin' ? 'Cmd' : 'Ctrl')
|
|
|
|
.replace(/Option/g, this.platform === 'darwin' ? 'Option' : 'Alt')
|
|
|
|
.replace(/Alt/g, this.platform === 'darwin' ? 'Option' : 'Alt');
|
|
|
|
}
|
|
|
|
|
2020-10-13 13:57:03 +02:00
|
|
|
public registerCommandAccelerator(commandName:string, accelerator:string) {
|
2020-10-09 19:35:46 +02:00
|
|
|
// If the command is already registered, we don't register it again and
|
|
|
|
// we don't update the accelerator. This is because it might have been
|
|
|
|
// modified by the user and we don't want the plugin to overwrite this.
|
|
|
|
if (this.keymap[commandName]) return;
|
|
|
|
|
2020-10-13 13:57:03 +02:00
|
|
|
if (!commandName) throw new Error('Cannot register an accelerator without a command name');
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
const validatedAccelerator = this.convertToPlatform(accelerator);
|
|
|
|
this.validateAccelerator(validatedAccelerator);
|
|
|
|
|
|
|
|
this.keymap[commandName] = {
|
|
|
|
command: commandName,
|
|
|
|
accelerator: validatedAccelerator,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
setAccelerator(command: string, accelerator: string) {
|
|
|
|
this.keymap[command].accelerator = accelerator;
|
|
|
|
}
|
|
|
|
|
2020-08-02 13:26:55 +02:00
|
|
|
getAccelerator(command: string) {
|
|
|
|
const item = this.keymap[command];
|
|
|
|
if (!item) throw new Error(`KeymapService: "${command}" command does not exist!`);
|
2020-09-06 14:00:25 +02:00
|
|
|
|
|
|
|
return item.accelerator;
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
getDefaultAccelerator(command: string) {
|
|
|
|
const defaultItem = this.defaultKeymapItems.find((item => item.command === command));
|
|
|
|
if (!defaultItem) throw new Error(`KeymapService: "${command}" command does not exist!`);
|
|
|
|
|
|
|
|
return defaultItem.accelerator;
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
getCommandNames() {
|
|
|
|
return Object.keys(this.keymap);
|
|
|
|
}
|
2020-08-02 13:26:55 +02:00
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
getKeymapItems() {
|
|
|
|
return Object.values(this.keymap);
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
getCustomKeymapItems() {
|
|
|
|
const customkeymapItems: KeymapItem[] = [];
|
|
|
|
this.defaultKeymapItems.forEach(({ command, accelerator }) => {
|
|
|
|
const currentAccelerator = this.getAccelerator(command);
|
2020-08-02 13:26:55 +02:00
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
// Only the customized/changed keymap items are neccessary for the custom keymap
|
|
|
|
// Customizations can be merged with the original keymap at the runtime
|
|
|
|
if (this.getAccelerator(command) !== accelerator) {
|
|
|
|
customkeymapItems.push({ command, accelerator: currentAccelerator });
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
2020-09-06 14:00:25 +02:00
|
|
|
});
|
2020-08-02 13:26:55 +02:00
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
for (const commandName in this.keymap) {
|
|
|
|
if (!this.defaultKeymapItems.find((item:KeymapItem) => item.command === commandName)) {
|
|
|
|
customkeymapItems.push(this.keymap[commandName]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
return customkeymapItems;
|
|
|
|
}
|
|
|
|
|
|
|
|
getDefaultKeymapItems() {
|
|
|
|
return [...this.defaultKeymapItems];
|
|
|
|
}
|
|
|
|
|
|
|
|
overrideKeymap(customKeymapItems: KeymapItem[]) {
|
2020-08-02 13:26:55 +02:00
|
|
|
try {
|
2020-09-06 14:00:25 +02:00
|
|
|
for (let i = 0; i < customKeymapItems.length; i++) {
|
|
|
|
const item = customKeymapItems[i];
|
|
|
|
// Validate individual custom keymap items
|
|
|
|
// Throws if there are any issues in the keymap item
|
|
|
|
this.validateKeymapItem(item);
|
2020-10-09 19:35:46 +02:00
|
|
|
|
|
|
|
// If the command does not exist in the keymap, we are loading a new
|
|
|
|
// command accelerator so we need to register it.
|
|
|
|
if (!this.keymap[item.command]) {
|
|
|
|
this.registerCommandAccelerator(item.command, item.accelerator);
|
|
|
|
} else {
|
|
|
|
this.setAccelerator(item.command, item.accelerator);
|
|
|
|
}
|
2020-09-06 14:00:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate the entire keymap for duplicates
|
|
|
|
// Throws whenever there are duplicate Accelerators used in the keymap
|
|
|
|
this.validateKeymap();
|
2020-08-02 13:26:55 +02:00
|
|
|
} catch (err) {
|
2020-09-06 14:00:25 +02:00
|
|
|
this.initialize(); // Discard all the changes if there are any issues
|
|
|
|
throw err;
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private validateKeymapItem(item: KeymapItem) {
|
|
|
|
if (!item.hasOwnProperty('command')) {
|
2020-10-09 19:35:46 +02:00
|
|
|
throw new Error(_('"%s" is missing the required "%s" property.', JSON.stringify(item), _('command')));
|
|
|
|
// } else if (!this.keymap.hasOwnProperty(item.command)) {
|
|
|
|
// throw new Error(_('Invalid %s: %s.', _('command'), item.command));
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!item.hasOwnProperty('accelerator')) {
|
2020-10-09 19:35:46 +02:00
|
|
|
throw new Error(_('"%s" is missing the required "%s" property.', JSON.stringify(item), _('accelerator')));
|
2020-08-02 13:26:55 +02:00
|
|
|
} else if (item.accelerator !== null) {
|
|
|
|
try {
|
|
|
|
this.validateAccelerator(item.accelerator);
|
2020-09-06 14:00:25 +02:00
|
|
|
} catch {
|
2020-10-09 19:35:46 +02:00
|
|
|
throw new Error(_('Invalid %s: %s.', _('accelerator'), item.command));
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
validateKeymap(proposedKeymapItem: KeymapItem = null) {
|
2020-08-02 13:26:55 +02:00
|
|
|
const usedAccelerators = new Set();
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
// Validate as if the proposed change is already present in the current keymap
|
|
|
|
// Helpful for detecting any errors that'll occur, when the proposed change is performed on the keymap
|
|
|
|
if (proposedKeymapItem) usedAccelerators.add(proposedKeymapItem.accelerator);
|
|
|
|
|
2020-08-02 13:26:55 +02:00
|
|
|
for (const item of Object.values(this.keymap)) {
|
2020-09-06 14:00:25 +02:00
|
|
|
const [itemAccelerator, itemCommand] = [item.accelerator, item.command];
|
|
|
|
if (proposedKeymapItem && itemCommand === proposedKeymapItem.command) continue; // Ignore the original accelerator
|
2020-08-02 13:26:55 +02:00
|
|
|
|
|
|
|
if (usedAccelerators.has(itemAccelerator)) {
|
2020-09-06 14:00:25 +02:00
|
|
|
const originalItem = (proposedKeymapItem && proposedKeymapItem.accelerator === itemAccelerator)
|
|
|
|
? proposedKeymapItem
|
|
|
|
: Object.values(this.keymap).find(_item => _item.accelerator == itemAccelerator);
|
|
|
|
|
|
|
|
throw new Error(_(
|
|
|
|
'Accelerator "%s" is used for "%s" and "%s" commands. This may lead to unexpected behaviour.',
|
|
|
|
itemAccelerator,
|
|
|
|
originalItem.command,
|
|
|
|
itemCommand
|
|
|
|
));
|
|
|
|
} else if (itemAccelerator) {
|
2020-08-02 13:26:55 +02:00
|
|
|
usedAccelerators.add(itemAccelerator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
validateAccelerator(accelerator: string) {
|
2020-08-02 13:26:55 +02:00
|
|
|
let keyFound = false;
|
|
|
|
|
|
|
|
const parts = accelerator.split('+');
|
|
|
|
const isValid = parts.every((part, index) => {
|
2020-09-06 14:00:25 +02:00
|
|
|
const isKey = keysRegExp.test(part);
|
2020-08-02 13:26:55 +02:00
|
|
|
const isModifier = this.modifiersRegExp.test(part);
|
|
|
|
|
|
|
|
if (isKey) {
|
|
|
|
// Key must be unique
|
|
|
|
if (keyFound) return false;
|
|
|
|
keyFound = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Key is required
|
|
|
|
if (index === (parts.length - 1) && !keyFound) return false;
|
|
|
|
return isKey || isModifier;
|
|
|
|
});
|
|
|
|
|
2020-09-06 14:00:25 +02:00
|
|
|
if (!isValid) throw new Error(_('Accelerator "%s" is not valid.', accelerator));
|
|
|
|
}
|
|
|
|
|
|
|
|
domToElectronAccelerator(event: KeyboardEvent<HTMLDivElement>) {
|
|
|
|
const parts = [];
|
|
|
|
const { key, ctrlKey, metaKey, altKey, shiftKey } = event;
|
|
|
|
|
|
|
|
// First, the modifiers
|
|
|
|
if (ctrlKey) parts.push('Ctrl');
|
|
|
|
switch (this.platform) {
|
|
|
|
case 'darwin':
|
|
|
|
if (altKey) parts.push('Option');
|
|
|
|
if (shiftKey) parts.push('Shift');
|
|
|
|
if (metaKey) parts.push('Cmd');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (altKey) parts.push('Alt');
|
|
|
|
if (shiftKey) parts.push('Shift');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, the key
|
|
|
|
const electronKey = KeymapService.domToElectronKey(key);
|
|
|
|
if (electronKey) parts.push(electronKey);
|
|
|
|
|
|
|
|
return parts.join('+');
|
|
|
|
}
|
|
|
|
|
|
|
|
static domToElectronKey(domKey: string) {
|
|
|
|
let electronKey;
|
|
|
|
|
|
|
|
if (/^([a-z])$/.test(domKey)) {
|
|
|
|
electronKey = domKey.toUpperCase();
|
|
|
|
} else if (/^Arrow(Up|Down|Left|Right)|Audio(VolumeUp|VolumeDown|VolumeMute)$/.test(domKey)) {
|
|
|
|
electronKey = domKey.slice(5);
|
|
|
|
} else {
|
|
|
|
switch (domKey) {
|
|
|
|
case ' ':
|
|
|
|
electronKey = 'Space';
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
electronKey = 'Plus';
|
|
|
|
break;
|
|
|
|
case 'MediaTrackNext':
|
|
|
|
electronKey = 'MediaNextTrack';
|
|
|
|
break;
|
|
|
|
case 'MediaTrackPrevious':
|
|
|
|
electronKey = 'MediaPreviousTrack';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
electronKey = domKey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keysRegExp.test(electronKey)) return electronKey;
|
|
|
|
else return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public on(eventName: string, callback: Function) {
|
|
|
|
eventManager.on(eventName, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public off(eventName: string, callback: Function) {
|
|
|
|
eventManager.off(eventName, callback);
|
2020-08-02 13:26:55 +02:00
|
|
|
}
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
private static instance_:KeymapService = null;
|
|
|
|
|
|
|
|
static instance():KeymapService {
|
2020-08-02 13:26:55 +02:00
|
|
|
if (this.instance_) return this.instance_;
|
|
|
|
|
|
|
|
this.instance_ = new KeymapService();
|
|
|
|
return this.instance_;
|
|
|
|
}
|
|
|
|
}
|