Lidarr/UI/AddSeries/AddSeriesLayout.js

40 lines
1.2 KiB
JavaScript
Raw Normal View History

"use strict";
define([
2013-02-22 06:18:36 +00:00
'app',
'AddSeries/RootFolders/RootFolderCollection',
'Quality/QualityProfileCollection',
'AddSeries/RootFolders/RootFolderView',
2013-05-27 02:53:56 +00:00
'AddSeries/AddSeriesView',
2013-02-22 06:18:36 +00:00
'AddSeries/Existing/ImportSeriesView'
],
function (app, rootFolderCollection, qualityProfileCollection) {
NzbDrone.AddSeries.AddSeriesLayout = Backbone.Marionette.Layout.extend({
template: 'AddSeries/addSeriesLayoutTemplate',
regions: {
2013-05-27 02:53:56 +00:00
workspace: '#add-series-workspace'
},
events: {
2013-05-27 02:53:56 +00:00
'click .x-import': '_importSeries'
},
onRender: function () {
2013-05-27 02:53:56 +00:00
/* rootFolderCollection.fetch({success: function () {
self.importExisting.show(new NzbDrone.AddSeries.Existing.RootDirListView({model: rootFolderCollection.at(0)}));
}});*/
qualityProfileCollection.fetch();
2013-05-27 02:53:56 +00:00
rootFolderCollection.fetch();
2013-05-27 02:53:56 +00:00
this.workspace.show(new NzbDrone.AddSeries.AddSeriesView());
},
2013-05-27 02:53:56 +00:00
_importSeries: function () {
NzbDrone.modalRegion.show(new NzbDrone.AddSeries.RootFolders.Layout());
}
});
});