2013-03-02 19:13:23 +00:00
|
|
|
|
define(['app', 'Shared/ModalRegion', 'AddSeries/AddSeriesLayout',
|
|
|
|
|
'Series/SeriesCollectionView', 'Upcoming/UpcomingCollectionView',
|
|
|
|
|
'Calendar/CalendarCollectionView', 'Shared/NotificationView',
|
|
|
|
|
'Shared/NotFoundView', 'MainMenuView', 'HeaderView',
|
|
|
|
|
'Series/Details/SeriesDetailsView', 'Series/Details/EpisodeCollection'],
|
|
|
|
|
function (app, modalRegion) {
|
2013-02-15 23:38:53 +00:00
|
|
|
|
|
2013-02-18 03:37:13 +00:00
|
|
|
|
var controller = Backbone.Marionette.Controller.extend({
|
2013-02-15 23:38:53 +00:00
|
|
|
|
|
|
|
|
|
addSeries: function (action, query) {
|
|
|
|
|
this.setTitle('Add Series');
|
2013-02-18 03:37:13 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.AddSeries.AddSeriesLayout(this, action, query));
|
2013-02-15 23:38:53 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
series: function (action, query) {
|
|
|
|
|
this.setTitle('NzbDrone');
|
2013-02-28 04:48:31 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Series.SeriesCollectionView());
|
2013-02-15 23:38:53 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-02-20 07:45:52 +00:00
|
|
|
|
upcoming: function (action, query) {
|
|
|
|
|
this.setTitle('Upcoming');
|
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Upcoming.UpcomingCollectionView(this, action, query));
|
|
|
|
|
},
|
2013-02-23 17:42:15 +00:00
|
|
|
|
|
|
|
|
|
calendar: function (action, query) {
|
|
|
|
|
this.setTitle('Calendar');
|
2013-02-25 00:00:17 +00:00
|
|
|
|
var calendarCollection = new NzbDrone.Calendar.CalendarCollection();
|
|
|
|
|
calendarCollection.fetch();
|
2013-02-28 04:48:31 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Calendar.CalendarCollectionView(this, action, query, calendarCollection));
|
2013-02-23 17:42:15 +00:00
|
|
|
|
},
|
2013-02-20 07:45:52 +00:00
|
|
|
|
|
2013-03-02 19:13:23 +00:00
|
|
|
|
seriesDetails: function (query) {
|
|
|
|
|
this.setTitle('Series Title Goes Here');
|
|
|
|
|
// var seriesModel = new NzbDrone.Series.SeriesModel();
|
|
|
|
|
// seriesModel.fetch();
|
|
|
|
|
|
|
|
|
|
var seriesEpisodes = new NzbDrone.Series.Details.EpisodeCollection({ seriesId: query });
|
|
|
|
|
seriesEpisodes.fetch({
|
|
|
|
|
success: function (collection) {
|
|
|
|
|
var seasons = collection.models.groupBy(function(episode){
|
|
|
|
|
var seasonNumber = episode.get('seasonNumber');
|
|
|
|
|
|
|
|
|
|
if (seasonNumber === undefined)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return seasonNumber;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var seasonCollection = new NzbDrone.Series.Details.SeasonCollection();
|
|
|
|
|
|
|
|
|
|
$.each(seasons, function(index, season){
|
|
|
|
|
seasonCollection.add(new NzbDrone.Series.Details.SeasonModel(
|
|
|
|
|
{ seasonNumber: index, episodes: season })
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Series.Details.SeriesDetailsView({ collection: seasonCollection }));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
2013-02-15 23:38:53 +00:00
|
|
|
|
notFound: function () {
|
|
|
|
|
this.setTitle('Not Found');
|
2013-02-18 03:37:13 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Shared.NotFoundView(this));
|
2013-02-15 23:38:53 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-02-18 03:37:13 +00:00
|
|
|
|
setTitle: function (title) {
|
2013-02-15 23:38:53 +00:00
|
|
|
|
$('#title-region').html(title);
|
|
|
|
|
|
2013-02-18 03:37:13 +00:00
|
|
|
|
if (title.toLocaleLowerCase() === 'nzbdrone') {
|
2013-02-15 23:38:53 +00:00
|
|
|
|
window.document.title = 'NzbDrone';
|
|
|
|
|
}
|
2013-02-18 03:37:13 +00:00
|
|
|
|
else {
|
2013-02-15 23:38:53 +00:00
|
|
|
|
window.document.title = title + ' - NzbDrone';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2013-02-27 03:31:35 +00:00
|
|
|
|
//Modal dialog initializer
|
2013-02-16 00:49:25 +00:00
|
|
|
|
NzbDrone.addInitializer(function () {
|
|
|
|
|
|
2013-02-18 03:37:13 +00:00
|
|
|
|
NzbDrone.addRegions({ modalRegion: modalRegion });
|
2013-02-16 00:49:25 +00:00
|
|
|
|
|
|
|
|
|
NzbDrone.vent.on(NzbDrone.Events.OpenModalDialog, function (options) {
|
2013-02-18 03:37:13 +00:00
|
|
|
|
console.log('opening modal dialog ' + options.view.template);
|
2013-02-16 00:49:25 +00:00
|
|
|
|
NzbDrone.modalRegion.show(options.view);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
NzbDrone.vent.on(NzbDrone.Events.CloseModalDialog, function () {
|
|
|
|
|
console.log('closing modal dialog');
|
|
|
|
|
NzbDrone.modalRegion.close();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
2013-02-27 03:31:35 +00:00
|
|
|
|
|
2013-02-15 23:38:53 +00:00
|
|
|
|
return new controller();
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|