mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-10-24 00:23:36 +00:00
28 lines
777 B
JavaScript
28 lines
777 B
JavaScript
'use strict';
|
|
|
|
const {
|
|
remote: { app }
|
|
} = require('electron');
|
|
|
|
const DefaultNotification = require('./default-notification');
|
|
const { appId, loadBots } = require('./helpers');
|
|
|
|
// From https://github.com/felixrieseberg/electron-windows-notifications#appusermodelid
|
|
// On windows 8 we have to explicitly set the appUserModelId otherwise notification won't work.
|
|
app.setAppUserModelId(appId);
|
|
|
|
window.Notification = DefaultNotification;
|
|
|
|
if (process.platform === 'darwin') {
|
|
const DarwinNotification = require('./darwin-notifications');
|
|
window.Notification = DarwinNotification;
|
|
}
|
|
|
|
window.addEventListener('load', () => {
|
|
// Call this function only when user is logged in
|
|
// eslint-disable-next-line no-undef, camelcase
|
|
if (page_params.realm_uri) {
|
|
loadBots();
|
|
}
|
|
});
|