mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 06:52:20 +08:00
215 lines
5.1 KiB
JavaScript
215 lines
5.1 KiB
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
window = require('window'),
|
|
ko = require('ko'),
|
|
|
|
Enums = require('Common/Enums'),
|
|
Audio = require('Common/Audio'),
|
|
|
|
Settings = require('Storage/Settings')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function NotificationUserStore()
|
|
{
|
|
var self = this;
|
|
|
|
this.enableSoundNotification = ko.observable(false);
|
|
this.soundNotificationIsSupported = ko.observable(false);
|
|
|
|
this.allowDesktopNotification = ko.observable(false);
|
|
|
|
this.desktopNotificationPermissions = ko.computed(function () {
|
|
|
|
this.allowDesktopNotification();
|
|
|
|
var
|
|
NotificationClass = this.notificationClass(),
|
|
iResult = Enums.DesktopNotification.NotSupported
|
|
;
|
|
|
|
if (NotificationClass && NotificationClass.permission)
|
|
{
|
|
switch (NotificationClass.permission.toLowerCase())
|
|
{
|
|
case 'granted':
|
|
iResult = Enums.DesktopNotification.Allowed;
|
|
break;
|
|
case 'denied':
|
|
iResult = Enums.DesktopNotification.Denied;
|
|
break;
|
|
case 'default':
|
|
iResult = Enums.DesktopNotification.NotAllowed;
|
|
break;
|
|
}
|
|
}
|
|
else if (window.webkitNotifications && window.webkitNotifications.checkPermission)
|
|
{
|
|
iResult = window.webkitNotifications.checkPermission();
|
|
}
|
|
|
|
return iResult;
|
|
|
|
}, this).extend({'notify': 'always'});
|
|
|
|
this.enableDesktopNotification = ko.computed({
|
|
'owner': this,
|
|
'read': function () {
|
|
return this.allowDesktopNotification() &&
|
|
Enums.DesktopNotification.Allowed === this.desktopNotificationPermissions();
|
|
},
|
|
'write': function (bValue) {
|
|
if (bValue)
|
|
{
|
|
var
|
|
NotificationClass = this.notificationClass(),
|
|
iPermission = this.desktopNotificationPermissions()
|
|
;
|
|
|
|
if (NotificationClass && Enums.DesktopNotification.Allowed === iPermission)
|
|
{
|
|
this.allowDesktopNotification(true);
|
|
}
|
|
else if (NotificationClass && Enums.DesktopNotification.NotAllowed === iPermission)
|
|
{
|
|
NotificationClass.requestPermission(function () {
|
|
self.allowDesktopNotification.valueHasMutated();
|
|
if (Enums.DesktopNotification.Allowed === self.desktopNotificationPermissions())
|
|
{
|
|
if (self.allowDesktopNotification())
|
|
{
|
|
self.allowDesktopNotification.valueHasMutated();
|
|
}
|
|
else
|
|
{
|
|
self.allowDesktopNotification(true);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (self.allowDesktopNotification())
|
|
{
|
|
self.allowDesktopNotification(false);
|
|
}
|
|
else
|
|
{
|
|
self.allowDesktopNotification.valueHasMutated();
|
|
}
|
|
}
|
|
});
|
|
}
|
|
else
|
|
{
|
|
this.allowDesktopNotification(false);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this.allowDesktopNotification(false);
|
|
}
|
|
}
|
|
}).extend({'notify': 'always'});
|
|
|
|
if (!this.enableDesktopNotification.valueHasMutated)
|
|
{
|
|
this.enableDesktopNotification.valueHasMutated = function () {
|
|
self.allowDesktopNotification.valueHasMutated();
|
|
};
|
|
}
|
|
|
|
this.computers();
|
|
|
|
this.initNotificationPlayer();
|
|
}
|
|
|
|
NotificationUserStore.prototype.computers = function ()
|
|
{
|
|
this.isDesktopNotificationSupported = ko.computed(function () {
|
|
return Enums.DesktopNotification.NotSupported !== this.desktopNotificationPermissions();
|
|
}, this);
|
|
|
|
this.isDesktopNotificationDenied = ko.computed(function () {
|
|
return Enums.DesktopNotification.NotSupported === this.desktopNotificationPermissions() ||
|
|
Enums.DesktopNotification.Denied === this.desktopNotificationPermissions();
|
|
}, this);
|
|
};
|
|
|
|
NotificationUserStore.prototype.initNotificationPlayer = function ()
|
|
{
|
|
if (Audio && Audio.supportedNotification)
|
|
{
|
|
this.soundNotificationIsSupported(true);
|
|
}
|
|
else
|
|
{
|
|
this.enableSoundNotification(false);
|
|
this.soundNotificationIsSupported(false);
|
|
}
|
|
};
|
|
|
|
NotificationUserStore.prototype.playSoundNotification = function (bSkipSetting)
|
|
{
|
|
if (Audio && Audio.supportedNotification && (bSkipSetting ? true : this.enableSoundNotification()))
|
|
{
|
|
Audio.playNotification();
|
|
}
|
|
};
|
|
|
|
NotificationUserStore.prototype.displayDesktopNotification = function (sImageSrc, sTitle, sText)
|
|
{
|
|
if (this.enableDesktopNotification())
|
|
{
|
|
var
|
|
NotificationClass = this.notificationClass(),
|
|
oNotification = NotificationClass ? new NotificationClass(sTitle, {
|
|
'body': sText,
|
|
'icon': sImageSrc
|
|
}) : null
|
|
;
|
|
|
|
if (oNotification)
|
|
{
|
|
if (oNotification.show)
|
|
{
|
|
oNotification.show();
|
|
}
|
|
|
|
window.setTimeout((function (oLocalNotifications) {
|
|
return function () {
|
|
if (oLocalNotifications.cancel)
|
|
{
|
|
oLocalNotifications.cancel();
|
|
}
|
|
else if (oLocalNotifications.close)
|
|
{
|
|
oLocalNotifications.close();
|
|
}
|
|
};
|
|
}(oNotification)), 7000);
|
|
}
|
|
}
|
|
};
|
|
|
|
NotificationUserStore.prototype.populate = function ()
|
|
{
|
|
this.enableSoundNotification(!!Settings.settingsGet('SoundNotification'));
|
|
this.enableDesktopNotification(!!Settings.settingsGet('DesktopNotifications'));
|
|
};
|
|
|
|
/**
|
|
* @return {*|null}
|
|
*/
|
|
NotificationUserStore.prototype.notificationClass = function ()
|
|
{
|
|
return window.Notification && window.Notification.requestPermission ? window.Notification : null;
|
|
};
|
|
|
|
module.exports = new NotificationUserStore();
|
|
|
|
}());
|