Sonarr/UI/Settings/Notifications/EditView.js

100 lines
3.1 KiB
JavaScript
Raw Normal View History

"use strict";
define([
'app',
2013-06-19 01:02:23 +00:00
'marionette',
2013-05-29 07:20:41 +00:00
'Settings/Notifications/Model',
2013-06-19 01:02:23 +00:00
'Settings/Notifications/DeleteView',
'Settings/SyncNotification',
'Shared/Messenger',
'Mixins/AsModelBoundView'
2013-06-19 01:02:23 +00:00
], function (App, Marionette, NotificationModel, DeleteView, SyncNotification, Messenger, AsModelBoundView) {
2013-06-19 01:02:23 +00:00
var model = Marionette.ItemView.extend({
template: 'Settings/Notifications/EditTemplate',
events: {
2013-06-19 01:02:23 +00:00
'click .x-save' : '_saveNotification',
'click .x-remove': '_deleteNotification',
'click .x-test' : '_test'
2013-06-13 02:55:11 +00:00
},
ui: {
2013-06-19 01:02:23 +00:00
testButton: '.x-test',
testIcon : '.x-test-icon'
},
2013-05-29 02:49:17 +00:00
initialize: function (options) {
this.notificationCollection = options.notificationCollection;
},
2013-05-29 07:20:41 +00:00
_saveNotification: function () {
2013-05-29 02:49:17 +00:00
var name = this.model.get('name');
var success = 'Notification Saved: ' + name;
var fail = 'Failed to save notification: ' + name;
2013-06-19 01:02:23 +00:00
this.model.save(undefined, SyncNotification.callback({
successMessage : success,
errorMessage : fail,
2013-06-01 00:22:47 +00:00
successCallback: this._saveSuccess,
2013-06-19 01:02:23 +00:00
context : this
2013-06-01 00:22:47 +00:00
}));
},
2013-05-29 07:20:41 +00:00
_deleteNotification: function () {
2013-06-19 01:02:23 +00:00
var view = new DeleteView({ model: this.model });
App.modalRegion.show(view);
2013-05-29 07:20:41 +00:00
},
2013-06-01 00:22:47 +00:00
_saveSuccess: function () {
this.notificationCollection.add(this.model, { merge: true });
2013-06-19 01:02:23 +00:00
App.modalRegion.closeModal();
2013-06-13 02:55:11 +00:00
},
_test: function () {
2013-06-13 15:21:38 +00:00
var testCommand = this.model.get('testCommand');
if (testCommand) {
2013-06-13 02:55:11 +00:00
this.idle = false;
this.ui.testButton.addClass('disabled');
this.ui.testIcon.addClass('icon-spinner icon-spin');
var properties = {};
2013-06-13 15:21:38 +00:00
_.each(this.model.get('fields'), function (field) {
2013-06-13 02:55:11 +00:00
properties[field.name] = field.value;
});
var self = this;
2013-06-19 01:02:23 +00:00
var commandPromise = App.Commands.Execute(testCommand, properties);
2013-06-13 02:55:11 +00:00
commandPromise.done(function () {
2013-06-19 01:02:23 +00:00
Messenger.show({
2013-06-13 02:55:11 +00:00
message: 'Notification settings tested successfully'
});
});
commandPromise.fail(function (options) {
if (options.readyState === 0 || options.status === 0) {
return;
}
2013-06-19 01:02:23 +00:00
Messenger.show({
2013-06-13 02:55:11 +00: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 01:02:23 +00:00
return AsModelBoundView.call(model);
});