2013-06-24 23:41:59 +00:00
|
|
|
|
'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',
|
2013-06-24 23:41:59 +00:00
|
|
|
|
'Settings/Quality/QualityLayout',
|
2013-07-05 04:52:20 +00:00
|
|
|
|
'Settings/Indexers/Layout',
|
2013-06-24 23:41:59 +00:00
|
|
|
|
'Settings/Indexers/Collection',
|
2013-07-02 06:46:38 +00:00
|
|
|
|
'Settings/DownloadClient/Layout',
|
2013-06-24 23:41:59 +00:00
|
|
|
|
'Settings/Notifications/CollectionView',
|
|
|
|
|
'Settings/Notifications/Collection',
|
|
|
|
|
'Settings/General/GeneralView',
|
2013-07-02 06:46:38 +00:00
|
|
|
|
'Shared/LoadingView'
|
|
|
|
|
], function (App,
|
|
|
|
|
Marionette,
|
|
|
|
|
SettingsModel,
|
|
|
|
|
GeneralSettingsModel,
|
|
|
|
|
NamingModel,
|
2013-07-05 03:26:07 +00:00
|
|
|
|
MediaManagementLayout,
|
2013-07-02 06:46:38 +00:00
|
|
|
|
QualityLayout,
|
2013-07-05 04:52:20 +00:00
|
|
|
|
IndexerLayout,
|
2013-07-02 06:46:38 +00:00
|
|
|
|
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',
|
|
|
|
|
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');
|
2013-06-24 23:41:59 +00:00
|
|
|
|
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');
|
2013-06-24 23:41:59 +00:00
|
|
|
|
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');
|
2013-06-24 23:41:59 +00:00
|
|
|
|
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');
|
2013-06-24 23:41:59 +00:00
|
|
|
|
this._navigate('settings/notifications');
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-23 05:12:01 +00:00
|
|
|
|
this.ui.generalTab.tab('show');
|
2013-06-24 23:41:59 +00:00
|
|
|
|
this._navigate('settings/general');
|
2013-03-04 00:09:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
_navigate:function(route){
|
|
|
|
|
require(['Router'], function(){
|
|
|
|
|
App.Router.navigate(route);
|
|
|
|
|
});
|
2013-03-04 00:09:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-04-18 23:14:08 +00:00
|
|
|
|
initialize: function (options) {
|
|
|
|
|
if (options.action) {
|
|
|
|
|
this.action = options.action.toLowerCase();
|
2013-03-04 00:09:43 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onRender: function () {
|
2013-07-02 06:46:38 +00:00
|
|
|
|
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 () {
|
2013-07-05 04:52:20 +00:00
|
|
|
|
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-07-02 06:46:38 +00:00
|
|
|
|
});
|
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 'notifications':
|
2013-07-05 03:26:07 +00:00
|
|
|
|
this._showNotifications();
|
2013-03-04 00:09:43 +00:00
|
|
|
|
break;
|
2013-05-23 05:12:01 +00:00
|
|
|
|
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-03-05 06:50:42 +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
|
|
|
|
|