fchat-rising/electron/notifications.ts

29 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-09-02 01:50:31 +00:00
import {remote} from 'electron';
import core from '../chat/core';
import {Conversation} from '../chat/interfaces';
//tslint:disable-next-line:match-default-export-name
import BaseNotifications from '../chat/notifications';
2018-01-06 16:14:21 +00:00
const browserWindow = remote.getCurrentWindow();
2017-09-02 01:50:31 +00:00
export default class Notifications extends BaseNotifications {
notify(conversation: Conversation, title: string, body: string, icon: string, sound: string): void {
2018-04-11 19:17:58 +00:00
if(!this.shouldNotify(conversation)) return;
2017-09-02 01:50:31 +00:00
this.playSound(sound);
2018-01-06 16:14:21 +00:00
browserWindow.flashFrame(true);
2017-09-02 01:50:31 +00:00
if(core.state.settings.notifications) {
/*tslint:disable-next-line:no-object-literal-type-assertion*///false positive
const notification = new Notification(title, <NotificationOptions & {silent: boolean}>{
body,
icon: core.state.settings.showAvatars ? icon : undefined,
silent: true
});
notification.onclick = () => {
browserWindow.webContents.send('show-tab', remote.getCurrentWebContents().id);
2017-09-02 01:50:31 +00:00
conversation.show();
2018-01-06 16:14:21 +00:00
browserWindow.focus();
2017-09-02 01:50:31 +00:00
notification.close();
};
}
}
}