Reputation: 1013
I am making an electron app and wonder how I can automatically log out the user after being inactive for lets say 15 minutes! Thanks a lot!
const electron = require('electron');
const app = electron.app;
let willQuitApp = false;
let window;
app.on('ready', () => {
window = new electron.BrowserWindow();
window.on('close', (e) => {
if (willQuitApp) {
window = null;
} else {
/* the user only tried to close the window */
e.preventDefault();
window.hide();
}
});
window.loadURL(`mypage`); /* load your page */
});
app.on('activate', () => window.show());
app.on('before-quit', () => willQuitApp = true);
Upvotes: 4
Views: 3042
Reputation: 131
Look at Electron Power monitor API's and implement an Interval function to check if time is more than 15 minutes then log out user
const {powerMonitor} = require('electron');
const idle = powerMonitor.getSystemIdleTime() // it returns in seconds when I am writing this
console.log('Current System Idle Time - ', idle);
Upvotes: 2
Reputation: 14847
If you're interested in idle time in your app specifically then this has been previously answered. On the other hand if you're interested in system idle time then you'll want to use https://github.com/paulcbetts/node-system-idle-time
Upvotes: 4