mirror of https://github.com/Radarr/Radarr
75 lines
2.0 KiB
JavaScript
75 lines
2.0 KiB
JavaScript
|
"use strict";
|
|||
|
define(function () {
|
|||
|
|
|||
|
/* var model = new NzbDrone.Shared.NotificationModel();
|
|||
|
model.set('title','test notification');
|
|||
|
model.set('message','test message');
|
|||
|
model.set('level', 'error');
|
|||
|
this.push(model);
|
|||
|
*/
|
|||
|
|
|||
|
window.alert = function (message) {
|
|||
|
window.Messenger().post(message);
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
var self = this;
|
|||
|
|
|||
|
window.onerror = function (msg, url, line) {
|
|||
|
|
|||
|
try {
|
|||
|
|
|||
|
var a = document.createElement('a');
|
|||
|
a.href = url;
|
|||
|
var messageText = a.pathname.split('/').pop() + ' : ' + line + "</br>" + msg;
|
|||
|
|
|||
|
var message = {
|
|||
|
message : messageText,
|
|||
|
type : 'error',
|
|||
|
hideAfter: 1000,
|
|||
|
showCloseButton: true
|
|||
|
};
|
|||
|
|
|||
|
window.Messenger().post(message);
|
|||
|
|
|||
|
} catch (error) {
|
|||
|
console.log("An error occurred while reporting error. " + error);
|
|||
|
console.log(msg);
|
|||
|
window.alert('Couldn\'t report JS error. ' + msg);
|
|||
|
}
|
|||
|
|
|||
|
return false; //don't suppress default alerts and logs.
|
|||
|
};
|
|||
|
|
|||
|
$(document).ajaxError(function (event, xmlHttpRequest, ajaxOptions) {
|
|||
|
|
|||
|
//don't report 200 error codes
|
|||
|
if (xmlHttpRequest.status >= 200 && xmlHttpRequest.status <= 300) {
|
|||
|
return undefined;
|
|||
|
}
|
|||
|
|
|||
|
//don't report aborted requests
|
|||
|
if (xmlHttpRequest.statusText === 'abort') {
|
|||
|
return undefined;
|
|||
|
}
|
|||
|
|
|||
|
var message = {
|
|||
|
type : 'error',
|
|||
|
hideAfter: 1000,
|
|||
|
showCloseButton: true
|
|||
|
};
|
|||
|
|
|||
|
if (xmlHttpRequest.status === 0 && xmlHttpRequest.readyState === 0) {
|
|||
|
message.message = 'NzbDrone Server Not Reachable. make sure NzbDrone is running.';
|
|||
|
} else {
|
|||
|
message.message = ajaxOptions.type + " " + ajaxOptions.url + " : " + xmlHttpRequest.statusText;
|
|||
|
}
|
|||
|
|
|||
|
window.Messenger().post(message);
|
|||
|
alert('test');
|
|||
|
return false;
|
|||
|
});
|
|||
|
|
|||
|
});
|
|||
|
|