Radarr/UI/Settings/SettingsLayout.js

215 lines
7.7 KiB
JavaScript
Raw Normal View History

'use strict';
define(
[
'app',
'marionette',
'Settings/SettingsModel',
'Settings/General/GeneralSettingsModel',
2013-07-05 03:26:07 +00:00
'Settings/MediaManagement/Naming/Model',
2013-09-25 05:04:33 +00:00
'Settings/MediaManagement/MediaManagementLayout',
'Settings/Quality/QualityLayout',
2013-09-25 05:04:33 +00:00
'Settings/Indexers/IndexerLayout',
'Settings/Indexers/Collection',
'Settings/DownloadClient/Layout',
'Settings/Notifications/CollectionView',
'Settings/Notifications/Collection',
'Settings/General/GeneralView',
2013-09-25 04:51:44 +00:00
'Shared/LoadingView',
'Config'
], function (App,
Marionette,
SettingsModel,
GeneralSettingsModel,
NamingModel,
2013-07-05 03:26:07 +00:00
MediaManagementLayout,
QualityLayout,
IndexerLayout,
IndexerCollection,
DownloadClientLayout,
NotificationCollectionView,
NotificationCollection,
GeneralView,
2013-09-25 04:51:44 +00:00
LoadingView,
Config) {
2013-06-19 01:02:23 +00:00
return Marionette.Layout.extend({
2013-03-04 00:09:43 +00:00
template: 'Settings/SettingsLayoutTemplate',
regions: {
2013-07-05 03:26:07 +00:00
mediaManagement : '#media-management',
quality : '#quality',
indexers : '#indexers',
downloadClient : '#download-client',
notifications : '#notifications',
general : '#general',
loading : '#loading-region'
2013-03-04 00:09:43 +00:00
},
ui: {
2013-07-05 03:26:07 +00:00
mediaManagementTab : '.x-media-management-tab',
qualityTab : '.x-quality-tab',
indexersTab : '.x-indexers-tab',
downloadClientTab : '.x-download-client-tab',
notificationsTab : '.x-notifications-tab',
2013-09-25 04:51:44 +00:00
generalTab : '.x-general-tab',
advancedSettings : '.x-advanced-settings'
2013-03-04 00:09:43 +00:00
},
events: {
2013-07-05 03:26:07 +00:00
'click .x-media-management-tab' : '_showMediaManagement',
'click .x-quality-tab' : '_showQuality',
'click .x-indexers-tab' : '_showIndexers',
'click .x-download-client-tab' : '_showDownloadClient',
'click .x-notifications-tab' : '_showNotifications',
'click .x-general-tab' : '_showGeneral',
2013-09-25 04:51:44 +00:00
'click .x-save-settings' : '_save',
'change .x-advanced-settings' : '_toggleAdvancedSettings'
},
initialize: function (options) {
if (options.action) {
this.action = options.action.toLowerCase();
}
},
onRender: function () {
this.loading.show(new LoadingView());
var self = this;
this.settings = new SettingsModel();
this.generalSettings = new GeneralSettingsModel();
this.namingSettings = new NamingModel();
this.indexerSettings = new IndexerCollection();
this.notificationSettings = new NotificationCollection();
$.when(this.settings.fetch(),
this.generalSettings.fetch(),
this.namingSettings.fetch(),
this.indexerSettings.fetch(),
this.notificationSettings.fetch()
).done(function () {
self.loading.$el.hide();
self.mediaManagement.show(new MediaManagementLayout({ settings: self.settings, namingSettings: self.namingSettings }));
self.quality.show(new QualityLayout({ settings: self.settings }));
self.indexers.show(new IndexerLayout({ settings: self.settings, indexersCollection: self.indexerSettings }));
self.downloadClient.show(new DownloadClientLayout({ model: self.settings }));
self.notifications.show(new NotificationCollectionView({ collection: self.notificationSettings }));
self.general.show(new GeneralView({ model: self.generalSettings }));
});
this._setAdvancedSettingsState();
},
onShow: function () {
switch (this.action) {
case 'quality':
this._showQuality();
break;
case 'indexers':
this._showIndexers();
break;
case 'downloadclient':
this._showDownloadClient();
break;
case 'connect':
this._showNotifications();
break;
case 'notifications':
this._showNotifications();
break;
case 'general':
this._showGeneral();
break;
default:
this._showMediaManagement();
}
2013-03-04 00:09:43 +00:00
},
2013-07-05 03:26:07 +00:00
_showMediaManagement: function (e) {
2013-03-04 00:09:43 +00:00
if (e) {
e.preventDefault();
}
2013-07-05 03:26:07 +00:00
this.ui.mediaManagementTab.tab('show');
this._navigate('settings/mediamanagement');
2013-03-04 00:09:43 +00:00
},
2013-07-05 03:26:07 +00:00
_showQuality: function (e) {
2013-03-04 00:09:43 +00:00
if (e) {
e.preventDefault();
}
this.ui.qualityTab.tab('show');
this._navigate('settings/quality');
2013-03-04 00:09:43 +00:00
},
2013-07-05 03:26:07 +00:00
_showIndexers: function (e) {
2013-03-04 00:09:43 +00:00
if (e) {
e.preventDefault();
}
this.ui.indexersTab.tab('show');
this._navigate('settings/indexers');
2013-03-04 00:09:43 +00:00
},
2013-07-05 03:26:07 +00:00
_showDownloadClient: function (e) {
2013-03-04 00:09:43 +00:00
if (e) {
e.preventDefault();
}
this.ui.downloadClientTab.tab('show');
this._navigate('settings/downloadclient');
2013-03-04 00:09:43 +00:00
},
2013-07-05 03:26:07 +00:00
_showNotifications: function (e) {
2013-03-04 00:09:43 +00:00
if (e) {
e.preventDefault();
}
this.ui.notificationsTab.tab('show');
this._navigate('settings/connect');
2013-03-04 00:09:43 +00:00
},
2013-07-05 03:26:07 +00:00
_showGeneral: function (e) {
2013-03-04 00:09:43 +00:00
if (e) {
e.preventDefault();
}
this.ui.generalTab.tab('show');
this._navigate('settings/general');
2013-03-04 00:09:43 +00:00
},
_navigate:function(route){
require(['Router'], function(){
App.Router.navigate(route);
});
2013-03-04 00:09:43 +00:00
},
2013-09-25 04:51:44 +00:00
_save: function () {
App.vent.trigger(App.Commands.SaveSettings);
2013-03-04 00:09:43 +00:00
},
2013-09-25 04:51:44 +00:00
_setAdvancedSettingsState: function () {
var checked = Config.getValueBoolean('advancedSettings');
this.ui.advancedSettings.prop('checked', checked);
2013-09-25 04:51:44 +00:00
if (checked) {
this.$el.addClass('show-advanced-settings');
}
2013-03-04 00:09:43 +00:00
},
2013-09-25 04:51:44 +00:00
_toggleAdvancedSettings: function () {
var checked = this.ui.advancedSettings.prop('checked');
Config.setValue('advancedSettings', checked);
if (checked) {
this.$el.addClass('show-advanced-settings');
2013-03-04 00:09:43 +00:00
}
2013-09-25 04:51:44 +00:00
else {
this.$el.removeClass('show-advanced-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