Как я могу зарегистрировать несколько глобальных ярлыков в Electron? - PullRequest
0 голосов
/ 08 мая 2018

Я создаю прототип поверх https://github.com/electron/electron-quick-start

У меня есть следующий код в main.js и больше ничего в других файлах:

const electron = require('electron')
// Module to control application life.
const app = electron.app
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow

const path = require('path')
const url = require('url')
const globalShortcut = electron.globalShortcut
const {clipboard} = require('electron')

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow

function createWindow () {
  // Create the browser window.
  mainWindow = new BrowserWindow({width: 800, height: 600})

  // and load the index.html of the app.
  mainWindow.loadURL(url.format({
    pathname: path.join(__dirname, 'index.html'),
    protocol: 'file:',
    slashes: true
  }))

  // Open the DevTools.
  // mainWindow.webContents.openDevTools()

  // Emitted when the window is closed.
  mainWindow.on('closed', function () {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    mainWindow = null
    globalShortcut.unregisterAll();
  })
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', function() {
  createWindow();
  globalShortcut.register('Alt+h', () => {
    let date = new Date();
    clipboard.writeText(date.toLocaleString());
  });

  globalShortcut.register('Alt+c', function() {
    clipboard.writeText('Multitabler spin 2 tables');
  });
})

// Quit when all windows are closed.
app.on('window-all-closed', function () {
  // On OS X it is common for applications and their menu bar
  // to stay active until the user quits explicitly with Cmd + Q
  if (process.platform !== 'darwin') {
    app.quit()
  }
})

app.on('activate', function () {
  // On OS X it's common to re-create a window in the app when the
  // dock icon is clicked and there are no other windows open.
  if (mainWindow === null) {
    createWindow()
  }
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.

На мероприятии «готово» я регистрирую два сочетания клавиш: Alt + h и Alt + c.Alt + h работает в том смысле, что дата копируется в мой буфер обмена, но другой ярлык не выводит в буфер обмена.

Что я пробовал : я пытался заменитьсобытие записи в буфер обмена во втором ярлыке с оператором console.log.Я не получил никакого вывода, когда нажал эту комбинацию клавиш.

Как я могу зарегистрировать несколько глобальных коротких кодов, которые активируются независимо от того, сфокусировано ли приложение или свернуто.

1 Ответ

0 голосов
/ 08 мая 2018

Ваш код на самом деле работает. Я проверил на моих окнах и Mac. Возможно, это конфликт сочетаний клавиш, Alt + c, возможно, был занят другим программным обеспечением.

Более того, я рекомендую вам зарегистрировать ярлык на фокусе Windows вместо готовности к приложению, потому что Electron заблокирует другие программы, использующие ту же самую клавишу быстрого доступа.

const refreshCommand = process.platform === 'darwin' ? 'Cmd+R' : 'F5'

app.on('browser-window-focus', () => {
globalShortcut.register(refreshCommand, () => {
    // do something
})
})

app.on('browser-window-blur', () => {
globalShortcut.unregisterAll()
})
...