Lidarr/UI/Settings/SettingsLayout.js

187 lines
6.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',
'Settings/MediaManagement/Layout',
'Settings/Quality/QualityLayout',
'Settings/Indexers/Layout',
'Settings/Indexers/Collection',
'Settings/DownloadClient/Layout',
'Settings/Notifications/CollectionView',
'Settings/Notifications/Collection',
'Settings/General/GeneralView',
'Shared/LoadingView'
], function (App,
Marionette,
SettingsModel,
GeneralSettingsModel,
NamingModel,
2013-07-05 03:26:07 +00:00
MediaManagementLayout,
QualityLayout,
IndexerLayout,
IndexerCollection,
DownloadClientLayout,
NotificationCollectionView,
NotificationCollection,
GeneralView,
LoadingView) {
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-07-10 02:12:02 +00:00
generalTab : '.x-general-tab'
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',
'click .x-save-settings' : '_save'
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
},
initialize: function (options) {
if (options.action) {
this.action = options.action.toLowerCase();
2013-03-04 00:09:43 +00:00
}
},
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}));
});
2013-03-04 00:09:43 +00:00
},
onShow: function () {
switch (this.action) {
case 'quality':
2013-07-05 03:26:07 +00:00
this._showQuality();
2013-03-04 00:09:43 +00:00
break;
case 'indexers':
2013-07-05 03:26:07 +00:00
this._showIndexers();
2013-03-04 00:09:43 +00:00
break;
case 'downloadclient':
2013-07-05 03:26:07 +00:00
this._showDownloadClient();
2013-03-04 00:09:43 +00:00
break;
case 'connect':
this._showNotifications();
break;
2013-03-04 00:09:43 +00:00
case 'notifications':
2013-07-05 03:26:07 +00:00
this._showNotifications();
2013-03-04 00:09:43 +00:00
break;
case 'general':
2013-07-05 03:26:07 +00:00
this._showGeneral();
2013-03-04 00:09:43 +00:00
break;
default:
2013-07-05 03:26:07 +00:00
this._showMediaManagement();
2013-03-04 00:09:43 +00:00
}
},
2013-07-05 03:26:07 +00:00
_save: function () {
2013-06-19 01:02:23 +00:00
App.vent.trigger(App.Commands.SaveSettings);
2013-03-04 00:09:43 +00:00
}
2013-06-13 23:19:24 +00:00
});
});
2013-03-04 00:09:43 +00:00