UI dependency graph cleanup

This commit is contained in:
kayone
2013-10-08 18:43:41 -07:00
parent 86ea33b638
commit 4948d0608b
87 changed files with 1119 additions and 735 deletions

View File

@@ -0,0 +1,40 @@
'use strict';
define(
[
'Shared/NzbDroneController',
'AppLayout',
'Series/SeriesCollection',
'Series/Index/SeriesIndexLayout',
'Series/Details/SeriesDetailsLayout'
], function (NzbDroneController, AppLayout, SeriesCollection, SeriesIndexLayout, SeriesDetailsLayout) {
return NzbDroneController.extend({
initialize: function () {
this.route('', this.series);
this.route('series', this.series);
this.route('series/:query', this.seriesDetails);
},
series: function () {
this.setTitle('NzbDrone');
AppLayout.mainRegion.show(new SeriesIndexLayout());
},
seriesDetails: function (query) {
var series = SeriesCollection.where({titleSlug: query});
if (series.length !== 0) {
var targetSeries = series[0];
this.setTitle(targetSeries.get('title'));
AppLayout.mainRegion.show(new SeriesDetailsLayout({ model: targetSeries }));
}
else {
this.showNotFound();
}
}
});
});