mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-03 22:23:01 +01:00
112 lines
3.5 KiB
JavaScript
112 lines
3.5 KiB
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'vent',
|
|
'AppLayout',
|
|
'marionette',
|
|
'Settings/Notifications/DeleteView',
|
|
'Commands/CommandController',
|
|
'Mixins/AsModelBoundView',
|
|
'underscore',
|
|
'Form/FormBuilder'
|
|
|
|
], function (vent, AppLayout, Marionette, DeleteView, CommandController, AsModelBoundView, _) {
|
|
|
|
var model = Marionette.ItemView.extend({
|
|
template: 'Settings/Notifications/NotificationEditViewTemplate',
|
|
|
|
ui: {
|
|
onDownloadToggle: '.x-on-download',
|
|
onUpgradeSection: '.x-on-upgrade'
|
|
},
|
|
|
|
events: {
|
|
'click .x-save' : '_saveClient',
|
|
'click .x-save-and-add': '_saveAndAddNotification',
|
|
'click .x-delete' : '_deleteNotification',
|
|
'click .x-back' : '_back',
|
|
'click .x-test' : '_test',
|
|
'click .x-cancel' : '_cancel',
|
|
'change .x-on-download': '_onDownloadChanged'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.notificationCollection = options.notificationCollection;
|
|
},
|
|
|
|
onRender: function () {
|
|
this._onDownloadChanged();
|
|
},
|
|
|
|
_saveClient: function () {
|
|
var self = this;
|
|
var promise = this.model.saveSettings();
|
|
|
|
if (promise) {
|
|
promise.done(function () {
|
|
self.notificationCollection.add(self.model, { merge: true });
|
|
vent.trigger(vent.Commands.CloseModalCommand);
|
|
});
|
|
}
|
|
},
|
|
|
|
_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);
|
|
});
|
|
}
|
|
},
|
|
|
|
_cancel: function () {
|
|
if (this.model.isNew()) {
|
|
this.model.destroy();
|
|
vent.trigger(vent.Commands.CloseModalCommand);
|
|
}
|
|
},
|
|
|
|
_deleteNotification: function () {
|
|
var view = new DeleteView({ model: this.model });
|
|
AppLayout.modalRegion.show(view);
|
|
},
|
|
|
|
_back: function () {
|
|
if (this.model.isNew()) {
|
|
this.model.destroy();
|
|
}
|
|
|
|
require('Settings/Notifications/SchemaModal').open(this.notificationCollection);
|
|
},
|
|
|
|
_test: function () {
|
|
var testCommand = 'test{0}'.format(this.model.get('implementation'));
|
|
var properties = {};
|
|
|
|
_.each(this.model.get('fields'), function (field) {
|
|
properties[field.name] = field.value;
|
|
});
|
|
|
|
CommandController.Execute(testCommand, properties);
|
|
},
|
|
|
|
_onDownloadChanged: function () {
|
|
var checked = this.ui.onDownloadToggle.prop('checked');
|
|
|
|
if (checked) {
|
|
this.ui.onUpgradeSection.show();
|
|
}
|
|
|
|
else {
|
|
this.ui.onUpgradeSection.hide();
|
|
}
|
|
}
|
|
});
|
|
|
|
return AsModelBoundView.call(model);
|
|
});
|