From 2a77d65c2276b9038bad4251692dc4a9c80029ce Mon Sep 17 00:00:00 2001 From: 0neGal Date: Sat, 29 Apr 2023 00:30:29 +0200 Subject: win.alert() now uses Promise, and added .confirm() win.alert() now has a Promise return value, which'll allow you to wait until an alert has been closed before continuing code execution. win.confirm() was also added it's the same as win.alert() except it runs confirm() in the renderer instead of alert(), and has a return boolean in the Promise resolve callback. This boolean being whether the user confirmed the action or not. --- src/modules/window.js | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) (limited to 'src/modules') diff --git a/src/modules/window.js b/src/modules/window.js index 3b5c76f..6cc573c 100644 --- a/src/modules/window.js +++ b/src/modules/window.js @@ -7,9 +7,38 @@ win.log = (msg) => { ipcMain.emit("win-log", msg, msg); } +// this increments for every alert that's created, the ID is used to +// keep track of popups being opened or closed. +let alert_id = 0; + // sends an alert to the renderer win.alert = (msg) => { - ipcMain.emit("win-alert", msg, msg); + alert_id++; + + return new Promise((resolve) => { + ipcMain.once(`alert-closed-${alert_id}`, () => { + resolve(); + }) + + ipcMain.emit("win-alert", msg, msg, alert_id); + }) +} + +// this increments for every confirm alert that's created, the ID is +// used to keep track of popups being opened or closed. +let confirm_id = 0; + +// sends an alert to the renderer +win.confirm = (msg) => { + confirm_id++; + + return new Promise((resolve) => { + ipcMain.once(`confirm-closed-${confirm_id}`, (event, confirmed) => { + resolve(confirmed); + }) + + ipcMain.emit("win-confirm", msg, msg, confirm_id); + }) } module.exports = win; -- cgit v1.2.3