parent
78d90f15f5
commit
e54c606c6d
@ -1,25 +1,58 @@
|
||||
import defaultShortcuts from '@/utils/shortcuts';
|
||||
const { globalShortcut } = require('electron');
|
||||
|
||||
export function registerGlobalShortcut(win) {
|
||||
globalShortcut.register('Alt+CommandOrControl+P', () => {
|
||||
const clc = require('cli-color');
|
||||
const log = text => {
|
||||
console.log(`${clc.blueBright('[globalShortcut.js]')} ${text}`);
|
||||
};
|
||||
|
||||
export function registerGlobalShortcut(win, store) {
|
||||
log('registerGlobalShortcut');
|
||||
let shortcuts = store.get('settings.shortcuts');
|
||||
if (shortcuts === undefined) {
|
||||
shortcuts = defaultShortcuts;
|
||||
}
|
||||
|
||||
globalShortcut.register(
|
||||
shortcuts.find(s => s.id === 'play').globalShortcut,
|
||||
() => {
|
||||
win.webContents.send('play');
|
||||
});
|
||||
globalShortcut.register('Alt+CommandOrControl+Right', () => {
|
||||
}
|
||||
);
|
||||
globalShortcut.register(
|
||||
shortcuts.find(s => s.id === 'next').globalShortcut,
|
||||
() => {
|
||||
win.webContents.send('next');
|
||||
});
|
||||
globalShortcut.register('Alt+CommandOrControl+Left', () => {
|
||||
}
|
||||
);
|
||||
globalShortcut.register(
|
||||
shortcuts.find(s => s.id === 'previous').globalShortcut,
|
||||
() => {
|
||||
win.webContents.send('previous');
|
||||
});
|
||||
globalShortcut.register('Alt+CommandOrControl+Up', () => {
|
||||
}
|
||||
);
|
||||
globalShortcut.register(
|
||||
shortcuts.find(s => s.id === 'increaseVolume').globalShortcut,
|
||||
() => {
|
||||
win.webContents.send('increaseVolume');
|
||||
});
|
||||
globalShortcut.register('Alt+CommandOrControl+Down', () => {
|
||||
}
|
||||
);
|
||||
globalShortcut.register(
|
||||
shortcuts.find(s => s.id === 'decreaseVolume').globalShortcut,
|
||||
() => {
|
||||
win.webContents.send('decreaseVolume');
|
||||
});
|
||||
globalShortcut.register('Alt+CommandOrControl+L', () => {
|
||||
}
|
||||
);
|
||||
globalShortcut.register(
|
||||
shortcuts.find(s => s.id === 'like').globalShortcut,
|
||||
() => {
|
||||
win.webContents.send('like');
|
||||
});
|
||||
globalShortcut.register('Alt+CommandOrControl+M', () => {
|
||||
}
|
||||
);
|
||||
globalShortcut.register(
|
||||
shortcuts.find(s => s.id === 'minimize').globalShortcut,
|
||||
() => {
|
||||
win.isVisible() ? win.hide() : win.show();
|
||||
});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
@ -0,0 +1,47 @@
|
||||
// default shortcuts
|
||||
// for more info, check https://www.electronjs.org/docs/api/accelerator
|
||||
|
||||
export default [
|
||||
{
|
||||
id: 'play',
|
||||
name: '播放/暂停',
|
||||
shortcut: 'CommandOrControl+P',
|
||||
globalShortcut: 'Alt+CommandOrControl+P',
|
||||
},
|
||||
{
|
||||
id: 'next',
|
||||
name: '下一首',
|
||||
shortcut: 'CommandOrControl+Right',
|
||||
globalShortcut: 'Alt+CommandOrControl+Right',
|
||||
},
|
||||
{
|
||||
id: 'previous',
|
||||
name: '上一首',
|
||||
shortcut: 'CommandOrControl+Left',
|
||||
globalShortcut: 'Alt+CommandOrControl+Left',
|
||||
},
|
||||
{
|
||||
id: 'increaseVolume',
|
||||
name: '增加音量',
|
||||
shortcut: 'CommandOrControl+Up',
|
||||
globalShortcut: 'Alt+CommandOrControl+Up',
|
||||
},
|
||||
{
|
||||
id: 'decreaseVolume',
|
||||
name: '减少音量',
|
||||
shortcut: 'CommandOrControl+Down',
|
||||
globalShortcut: 'Alt+CommandOrControl+Down',
|
||||
},
|
||||
{
|
||||
id: 'like',
|
||||
name: '喜欢歌曲',
|
||||
shortcut: 'CommandOrControl+L',
|
||||
globalShortcut: 'Alt+CommandOrControl+L',
|
||||
},
|
||||
{
|
||||
id: 'minimize',
|
||||
name: '隐藏/显示播放器',
|
||||
shortcut: 'CommandOrControl+M',
|
||||
globalShortcut: 'Alt+CommandOrControl+M',
|
||||
},
|
||||
];
|
Loading…
Reference in new issue