2013-04-18 23:14:08 +00:00
|
|
|
|
"use strict";
|
|
|
|
|
define([
|
2013-03-04 00:09:43 +00:00
|
|
|
|
'app',
|
|
|
|
|
'Settings/Naming/NamingView',
|
2013-03-07 08:01:18 +00:00
|
|
|
|
'Settings/Quality/QualityLayout',
|
2013-05-01 00:01:54 +00:00
|
|
|
|
'Settings/Indexers/CollectionView',
|
2013-03-04 00:09:43 +00:00
|
|
|
|
'Settings/DownloadClient/DownloadClientView',
|
2013-05-20 04:19:54 +00:00
|
|
|
|
'Settings/Notifications/CollectionView',
|
2013-05-23 05:12:01 +00:00
|
|
|
|
'Settings/General/GeneralView',
|
|
|
|
|
'Settings/General/GeneralSettingsModel',
|
2013-03-04 00:09:43 +00:00
|
|
|
|
'Settings/Misc/MiscView'
|
|
|
|
|
],
|
2013-04-18 23:14:08 +00:00
|
|
|
|
function () {
|
2013-03-04 00:09:43 +00:00
|
|
|
|
NzbDrone.Settings.SettingsLayout = Backbone.Marionette.Layout.extend({
|
|
|
|
|
template: 'Settings/SettingsLayoutTemplate',
|
|
|
|
|
|
|
|
|
|
regions: {
|
2013-03-29 23:28:58 +00:00
|
|
|
|
naming : '#naming',
|
|
|
|
|
quality : '#quality',
|
|
|
|
|
indexers : '#indexers',
|
2013-03-04 00:09:43 +00:00
|
|
|
|
downloadClient: '#download-client',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
notifications : '#notifications',
|
2013-05-23 05:12:01 +00:00
|
|
|
|
general : '#general',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
misc : '#misc'
|
2013-03-04 00:09:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
ui: {
|
2013-03-29 23:28:58 +00:00
|
|
|
|
namingTab : '.x-naming-tab',
|
|
|
|
|
qualityTab : '.x-quality-tab',
|
|
|
|
|
indexersTab : '.x-indexers-tab',
|
2013-03-04 00:09:43 +00:00
|
|
|
|
downloadClientTab: '.x-download-client-tab',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
notificationsTab : '.x-notifications-tab',
|
2013-05-23 05:12:01 +00:00
|
|
|
|
generalTab : '.x-general-tab',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
miscTab : '.x-misc-tab'
|
2013-03-04 00:09:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
events: {
|
2013-03-29 23:28:58 +00:00
|
|
|
|
'click .x-naming-tab' : 'showNaming',
|
|
|
|
|
'click .x-quality-tab' : 'showQuality',
|
|
|
|
|
'click .x-indexers-tab' : 'showIndexers',
|
2013-03-04 00:09:43 +00:00
|
|
|
|
'click .x-download-client-tab': 'showDownloadClient',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
'click .x-notifications-tab' : 'showNotifications',
|
2013-05-23 05:12:01 +00:00
|
|
|
|
'click .x-general-tab' : 'showGeneral',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
'click .x-misc-tab' : 'showMisc',
|
|
|
|
|
'click .x-save-settings' : 'save'
|
2013-03-04 00:09:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
showNaming: function (e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ui.namingTab.tab('show');
|
|
|
|
|
NzbDrone.Router.navigate('settings/naming');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
showQuality: function (e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ui.qualityTab.tab('show');
|
|
|
|
|
NzbDrone.Router.navigate('settings/quality');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
showIndexers: function (e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ui.indexersTab.tab('show');
|
|
|
|
|
NzbDrone.Router.navigate('settings/indexers');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
showDownloadClient: function (e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ui.downloadClientTab.tab('show');
|
|
|
|
|
NzbDrone.Router.navigate('settings/downloadclient');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
showNotifications: function (e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ui.notificationsTab.tab('show');
|
|
|
|
|
NzbDrone.Router.navigate('settings/notifications');
|
|
|
|
|
},
|
|
|
|
|
|
2013-05-23 05:12:01 +00:00
|
|
|
|
showGeneral: function (e) {
|
2013-03-04 00:09:43 +00:00
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-23 05:12:01 +00:00
|
|
|
|
this.ui.generalTab.tab('show');
|
|
|
|
|
NzbDrone.Router.navigate('settings/general');
|
2013-03-04 00:09:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
showMisc: function (e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ui.miscTab.tab('show');
|
|
|
|
|
NzbDrone.Router.navigate('settings/misc');
|
|
|
|
|
},
|
|
|
|
|
|
2013-04-18 23:14:08 +00:00
|
|
|
|
initialize: function (options) {
|
2013-05-14 03:21:37 +00:00
|
|
|
|
this.settings = new NzbDrone.Settings.SettingsModel();
|
|
|
|
|
this.settings.fetch();
|
|
|
|
|
|
2013-05-23 05:12:01 +00:00
|
|
|
|
this.generalSettings = new NzbDrone.Settings.General.GeneralSettingsModel();
|
|
|
|
|
this.generalSettings.fetch();
|
|
|
|
|
|
2013-04-26 15:31:56 +00:00
|
|
|
|
this.namingSettings = new NzbDrone.Settings.Naming.NamingModel();
|
|
|
|
|
this.namingSettings.fetch();
|
|
|
|
|
|
2013-05-01 00:01:54 +00:00
|
|
|
|
this.indexerSettings = new NzbDrone.Settings.Indexers.Collection();
|
|
|
|
|
this.indexerSettings.fetch();
|
|
|
|
|
|
2013-05-20 04:19:54 +00:00
|
|
|
|
this.notificationSettings = new NzbDrone.Settings.Notifications.Collection();
|
|
|
|
|
this.notificationSettings.fetch();
|
|
|
|
|
|
2013-04-18 23:14:08 +00:00
|
|
|
|
if (options.action) {
|
|
|
|
|
this.action = options.action.toLowerCase();
|
2013-03-04 00:09:43 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onRender: function () {
|
2013-04-26 15:31:56 +00:00
|
|
|
|
this.naming.show(new NzbDrone.Settings.Naming.NamingView());
|
2013-03-07 08:01:18 +00:00
|
|
|
|
this.quality.show(new NzbDrone.Settings.Quality.QualityLayout({settings: this.settings}));
|
2013-05-01 00:01:54 +00:00
|
|
|
|
this.indexers.show(new NzbDrone.Settings.Indexers.CollectionView({collection: this.indexerSettings}));
|
2013-03-04 00:09:43 +00:00
|
|
|
|
this.downloadClient.show(new NzbDrone.Settings.DownloadClient.DownloadClientView({model: this.settings}));
|
2013-05-20 04:19:54 +00:00
|
|
|
|
this.notifications.show(new NzbDrone.Settings.Notifications.CollectionView({collection: this.notificationSettings}));
|
2013-05-23 05:12:01 +00:00
|
|
|
|
this.general.show(new NzbDrone.Settings.General.GeneralView({model: this.generalSettings}));
|
2013-03-04 00:09:43 +00:00
|
|
|
|
this.misc.show(new NzbDrone.Settings.Misc.MiscView({model: this.settings}));
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onShow: function () {
|
|
|
|
|
switch (this.action) {
|
|
|
|
|
case 'quality':
|
|
|
|
|
this.showQuality();
|
|
|
|
|
break;
|
|
|
|
|
case 'indexers':
|
|
|
|
|
this.showIndexers();
|
|
|
|
|
break;
|
|
|
|
|
case 'downloadclient':
|
|
|
|
|
this.showDownloadClient();
|
|
|
|
|
break;
|
|
|
|
|
case 'notifications':
|
|
|
|
|
this.showNotifications();
|
|
|
|
|
break;
|
2013-05-23 05:12:01 +00:00
|
|
|
|
case 'general':
|
|
|
|
|
this.showGeneral();
|
2013-03-04 00:09:43 +00:00
|
|
|
|
break;
|
|
|
|
|
case 'misc':
|
|
|
|
|
this.showMisc();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
this.showNaming();
|
|
|
|
|
}
|
2013-03-05 06:50:42 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
save: function () {
|
2013-04-25 04:27:49 +00:00
|
|
|
|
|
|
|
|
|
NzbDrone.vent.trigger(NzbDrone.Commands.SaveSettings);
|
|
|
|
|
|
2013-06-13 23:19:24 +00:00
|
|
|
|
this.settings.saveIfChanged(undefined, NzbDrone.Settings.SyncNotificaiton.callback({
|
|
|
|
|
successMessage: 'Settings saved',
|
|
|
|
|
errorMessage: "Failed to save settings"
|
|
|
|
|
}));
|
2013-03-04 00:09:43 +00:00
|
|
|
|
}
|
2013-06-13 23:19:24 +00:00
|
|
|
|
});
|
|
|
|
|
});
|
2013-03-04 00:09:43 +00:00
|
|
|
|
|