2013-06-21 23:24:24 -07:00
|
|
|
'use strict';
|
2013-06-20 18:43:58 -07:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'app',
|
|
|
|
'marionette',
|
|
|
|
'AddSeries/RootFolders/Layout',
|
|
|
|
'AddSeries/Existing/CollectionView',
|
|
|
|
'AddSeries/AddSeriesView',
|
|
|
|
'Quality/QualityProfileCollection',
|
2013-06-30 12:57:26 -07:00
|
|
|
'AddSeries/RootFolders/Collection',
|
|
|
|
'Series/SeriesCollection',
|
|
|
|
], function (App, Marionette, RootFolderLayout, ExistingSeriesCollectionView, AddSeriesView, qualityProfileCollection, rootFolderCollection, SeriesCollection) {
|
2013-06-20 18:43:58 -07:00
|
|
|
|
|
|
|
return Marionette.Layout.extend({
|
2013-06-27 17:00:55 -07:00
|
|
|
template: 'AddSeries/AddSeriesLayoutTemplate',
|
2013-02-13 18:28:56 -08:00
|
|
|
|
|
|
|
regions: {
|
2013-05-26 19:53:56 -07:00
|
|
|
workspace: '#add-series-workspace'
|
2013-02-13 18:28:56 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
events: {
|
2013-06-30 22:58:38 -07:00
|
|
|
'click .x-import': '_importSeries',
|
|
|
|
'click .x-add-new': '_addSeries'
|
2013-02-13 18:28:56 -08:00
|
|
|
},
|
|
|
|
|
2013-06-30 12:57:26 -07:00
|
|
|
attributes: {
|
|
|
|
id: 'add-series-screen'
|
|
|
|
},
|
|
|
|
|
2013-05-27 19:05:34 -07:00
|
|
|
initialize: function () {
|
2013-06-30 12:57:26 -07:00
|
|
|
|
|
|
|
SeriesCollection.fetch();
|
|
|
|
|
2013-06-20 18:43:58 -07:00
|
|
|
this.rootFolderLayout = new RootFolderLayout();
|
2013-05-27 19:05:34 -07:00
|
|
|
this.rootFolderLayout.on('folderSelected', this._folderSelected, this);
|
|
|
|
|
2013-06-20 18:43:58 -07:00
|
|
|
qualityProfileCollection.fetch();
|
|
|
|
rootFolderCollection.fetch();
|
2013-05-27 19:05:34 -07:00
|
|
|
},
|
2013-02-13 18:28:56 -08:00
|
|
|
|
2013-06-20 18:43:58 -07:00
|
|
|
onShow: function () {
|
|
|
|
this.workspace.show(new AddSeriesView());
|
2013-05-27 19:05:34 -07:00
|
|
|
},
|
|
|
|
|
2013-06-20 18:43:58 -07:00
|
|
|
_folderSelected: function (options) {
|
|
|
|
App.modalRegion.closeModal();
|
|
|
|
this.workspace.show(new ExistingSeriesCollectionView({model: options.model}));
|
2013-02-13 18:28:56 -08:00
|
|
|
},
|
|
|
|
|
2013-05-26 19:53:56 -07:00
|
|
|
_importSeries: function () {
|
2013-06-20 18:43:58 -07:00
|
|
|
App.modalRegion.show(this.rootFolderLayout);
|
2013-06-30 22:58:38 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
_addSeries: function () {
|
|
|
|
this.workspace.show(new AddSeriesView());
|
2013-02-14 18:40:29 -08:00
|
|
|
}
|
2013-02-13 18:28:56 -08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|