最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Electron.js prevent windows close conditionally - Stack Overflow

programmeradmin0浏览0评论

I want to ask user if he really want to close an electron app.

Accordingly to docs - I've tried:

window.onbeforeunload = (e) => {
  const answer = confirm('Do you want to close the application?');
  e.returnValue = answer;
  if (answer) { window.close(); }
};

But my app still closes no matter what user choose. How to prevent close an Electron app conditionally?

I want to ask user if he really want to close an electron app.

Accordingly to docs - I've tried:

window.onbeforeunload = (e) => {
  const answer = confirm('Do you want to close the application?');
  e.returnValue = answer;
  if (answer) { window.close(); }
};

But my app still closes no matter what user choose. How to prevent close an Electron app conditionally?

Share Improve this question asked Jun 27, 2018 at 11:03 WebArtisanWebArtisan 4,23612 gold badges47 silver badges66 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

I guess, I have an answer. It shouldn't be called in renderer process. Instead we should use mainWindow in main process for such operation and 'close' lifecycle method, which will be called right before closing.

this.mainWindow.on('close', (e) => {
  const choice = this.dialog.showMessageBox(
    this.mainWindow,
    {
      type: 'question',
      buttons: ['Yes', 'No, hang on', 'third option'],
      title: 'Confirm your actions',
      message: 'Do you really want to close the application?'
    }
  );
  console.log('CHOICE: ', choice);
  if (choice > 0) e.preventDefault();
});

choice const will return an answer from buttons array, so 'Yes' will be as confirm and for other options we can prevent actions.

NOTE: I've pasted with this. from my code, but, obviously mainWindow is your BrowserWindow instance and this.dialog is electron.dialog that imported from import electron from 'electron';

To conditionally close window in Electron ^15, do:

win.on('close', async e => {
  e.preventDefault()

  const { response } = await dialog.showMessageBox(win, {
    type: 'question',
    title: '  Confirm  ',
    message: 'Are you sure that you want to close this window?',
    buttons: ['Yes', 'No'],
  })

  response === 0 && win.destroy()
})
发布评论

评论列表(0)

  1. 暂无评论