繁体   English   中英

Electron - 将自定义事件从 Menu 发送到渲染器

[英]Electron - send a custom event from Menu to renderer

我偶然发现了一个问题,在创建 Electron 应用程序时,我在查找文档时遇到了很多问题。 这是一个关于如何让自定义 Electron 菜单项与应用程序前端通信的问题/答案。

请让我知道这种帖子是否有用或是否需要详细说明某些部分。


对于我的一个应用程序,我希望我的前端在目录中显示图片。 当用户单击他的右箭头键时,我想将 go 转到下一张图片。 我希望这种行为由内置的Electron Menu Accelerator处理。

我已经构建了我的应用程序,将我的main.js与我的菜单模板分开,如下所示:

app
├── main.js
├── renderer.js
├── index.html
├── templates
        ├── menu.js => uses objects from picture.js and about.js to build & return a menu
        ├── picture.js
        ├── about.js
├── ... (rest of files)

我的 picture.js 看起来像这样:

const picture = {
    label: 'Picture',
    role: 'help',
    submenu: [
      {
        label: 'Previous',
        accelerator: 'Left',
        click: function() {
            // this needs to be figured out
        },
      },
      {
        label: 'Next',
        accelerator: 'Right',
        click: function() {
            // this needs to be figured out
        },
      }
    ],
}

exports.picture = picture;

我的直觉告诉我要摆弄ipcMain ,但这种方法不起作用。 我收到很多消息说ipc is not definedthe method send of undefined不起作用。

这是我设法解决问题的方法:

我们知道:对于 Menu 和前端之间的通信,我们需要在main.js中创建一个事件。 它将向renderer.js发送事件的是main.js

我们在搜索时发现:可以使用webContents.send将消息从主进程发送到渲染器进程

如何应用它:我们需要调用“app”(应用程序对象)并“发出”一个事件。 这就是为什么我们必须将“图片” object 更改为 function 并采用一个参数:app。

const fileMenu = () => {
  return {
    label: 'Picture',
    role: 'help',
    submenu: [
      {
        label: 'Previous',
        accelerator: 'Left',
        click: () => app.emit('prevPicture'),
      },
      {
        label: 'Next',
        accelerator: 'Right',
        click: () => app.emit('nextPicture'),
      }
    ],
  }
}

exports.fileMenu = fileMenu;

然后我们只需要在 main 中添加参数:

// LOTS OF CODE ...
// mainWindow is the name of the Electron BrowserWindow object that holds our menu and app

app.on('ready', function() {
  const template = new AppMenu([fileMenu(app), editMenu, windowMenu, aboutMenu]).getTemplate();
  const menu = Menu.buildFromTemplate(template);
  Menu.setApplicationMenu(menu);
  createWindow();
});

// OTHER CODE ...
app.on('prevPicture', () => {mainWindow.webContents.send('prevPicture');});
app.on('nextPicture', () => {mainWindow.webContents.send('nextPicture');});

// REST OF CODE ...

这允许我们在我们的renderer.js文件中使用一个简单ipc.on('prevPicture', () => doWhatever)并创建自定义键盘快捷键,这将影响 Electron 中的前端。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM