1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00
Sonarr/UI/Settings/Notifications/EditView.js

99 lines
3.0 KiB
JavaScript
Raw Normal View History

2013-06-22 09:24:24 +03:00
'use strict';
define([
'app',
2013-06-19 04:02:23 +03:00
'marionette',
2013-05-29 10:20:41 +03:00
'Settings/Notifications/Model',
2013-06-19 04:02:23 +03:00
'Settings/Notifications/DeleteView',
'Shared/Messenger',
2013-06-26 03:34:33 +03:00
'Mixins/AsModelBoundView',
'Form/FormBuilder'
], function (App, Marionette, NotificationModel, DeleteView, Messenger, AsModelBoundView) {
2013-06-19 04:02:23 +03:00
var model = Marionette.ItemView.extend({
template: 'Settings/Notifications/EditTemplate',
events: {
2013-06-19 04:02:23 +03:00
'click .x-save' : '_saveNotification',
'click .x-remove': '_deleteNotification',
'click .x-test' : '_test'
2013-06-13 05:55:11 +03:00
},
ui: {
2013-06-19 04:02:23 +03:00
testButton: '.x-test',
testIcon : '.x-test-icon'
},
2013-05-29 05:49:17 +03:00
initialize: function (options) {
this.notificationCollection = options.notificationCollection;
},
2013-05-29 10:20:41 +03:00
_saveNotification: function () {
2013-06-26 03:34:33 +03:00
var self = this;
var promise = this.model.saveSettings();
if (promise) {
2013-06-26 03:34:33 +03:00
promise.done(function () {
self.notificationCollection.add(self.model, { merge: true });
App.modalRegion.closeModal();
});
}
},
2013-05-29 10:20:41 +03:00
_deleteNotification: function () {
2013-06-19 04:02:23 +03:00
var view = new DeleteView({ model: this.model });
App.modalRegion.show(view);
2013-05-29 10:20:41 +03:00
},
2013-06-01 03:22:47 +03:00
_saveSuccess: function () {
this.notificationCollection.add(this.model, { merge: true });
2013-06-19 04:02:23 +03:00
App.modalRegion.closeModal();
2013-06-13 05:55:11 +03:00
},
_test: function () {
2013-06-13 18:21:38 +03:00
var testCommand = this.model.get('testCommand');
if (testCommand) {
2013-06-13 05:55:11 +03:00
this.idle = false;
this.ui.testButton.addClass('disabled');
this.ui.testIcon.addClass('icon-spinner icon-spin');
var properties = {};
2013-06-13 18:21:38 +03:00
_.each(this.model.get('fields'), function (field) {
2013-06-13 05:55:11 +03:00
properties[field.name] = field.value;
});
var self = this;
2013-06-19 04:02:23 +03:00
var commandPromise = App.Commands.Execute(testCommand, properties);
2013-06-13 05:55:11 +03:00
commandPromise.done(function () {
2013-06-19 04:02:23 +03:00
Messenger.show({
2013-06-13 05:55:11 +03:00
message: 'Notification settings tested successfully'
});
});
commandPromise.fail(function (options) {
if (options.readyState === 0 || options.status === 0) {
return;
}
2013-06-19 04:02:23 +03:00
Messenger.show({
2013-06-13 05:55:11 +03:00
message: 'Failed to test notification settings',
type : 'error'
});
});
commandPromise.always(function () {
if (!self.isClosed) {
self.ui.testButton.removeClass('disabled');
self.ui.testIcon.removeClass('icon-spinner icon-spin');
self.idle = true;
}
});
}
}
});
2013-06-19 04:02:23 +03:00
return AsModelBoundView.call(model);
});