Radarr/UI/Settings/Notifications/EditView.js

114 lines
3.6 KiB
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'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',
'Shared/Messenger',
'Commands/CommandController',
2013-06-26 00:34:33 +00:00
'Mixins/AsModelBoundView',
'Form/FormBuilder'
], function (App, Marionette, NotificationModel, DeleteView, Messenger, CommandController, AsModelBoundView) {
2013-06-19 01:02:23 +00:00
var model = Marionette.ItemView.extend({
template: 'Settings/Notifications/EditTemplate',
events: {
2013-06-28 01:55:45 +00:00
'click .x-save' : '_saveNotification',
'click .x-save-and-add' : '_saveAndAddNotification',
'click .x-delete' : '_deleteNotification',
'click .x-back' : '_back',
'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-06-26 00:34:33 +00:00
var self = this;
var promise = this.model.saveSettings();
if (promise) {
2013-06-26 00:34:33 +00:00
promise.done(function () {
self.notificationCollection.add(self.model, { merge: true });
2013-07-24 01:15:58 +00:00
App.vent.trigger(App.Commands.CloseModalCommand);
2013-06-26 00:34:33 +00:00
});
}
},
2013-06-28 01:55:45 +00:00
_saveAndAddNotification: function () {
var self = this;
var promise = this.model.saveSettings();
if (promise) {
promise.done(function () {
self.notificationCollection.add(self.model, { merge: true });
require('Settings/Notifications/SchemaModal').open(self.notificationCollection);
});
}
},
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-28 01:55:45 +00:00
_back: function () {
require('Settings/Notifications/SchemaModal').open(this.notificationCollection);
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;
var commandPromise = CommandController.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);
});