2013-03-30 19:01:27 +00:00
|
|
|
|
"use strict";
|
2013-05-15 01:17:24 +00:00
|
|
|
|
define(['app', 'AddSeries/AddSeriesLayout',
|
2013-05-03 07:20:52 +00:00
|
|
|
|
'Series/Index/SeriesIndexLayout',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
'Calendar/CalendarCollectionView', 'Shared/NotificationView',
|
2013-04-20 00:46:56 +00:00
|
|
|
|
'Shared/NotFoundView', 'MainMenuView',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
'Series/Details/SeriesDetailsView', 'Series/EpisodeCollection',
|
2013-05-03 06:53:32 +00:00
|
|
|
|
'Settings/SettingsLayout', 'Missing/MissingLayout',
|
|
|
|
|
'History/HistoryLayout'],
|
2013-05-15 01:17:24 +00:00
|
|
|
|
function () {
|
2013-03-29 23:28:58 +00:00
|
|
|
|
var controller = Backbone.Marionette.Controller.extend({
|
|
|
|
|
|
2013-05-15 01:17:24 +00:00
|
|
|
|
series : function () {
|
2013-04-18 23:14:08 +00:00
|
|
|
|
this._setTitle('NzbDrone');
|
2013-04-23 00:35:04 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Series.Index.SeriesIndexLayout());
|
2013-03-29 23:28:58 +00:00
|
|
|
|
},
|
|
|
|
|
seriesDetails: function (query) {
|
|
|
|
|
|
|
|
|
|
var self = this;
|
2013-04-18 23:14:08 +00:00
|
|
|
|
this._setTitle('Loading Series');
|
2013-03-29 23:28:58 +00:00
|
|
|
|
var series = new NzbDrone.Series.SeriesModel({ id: query });
|
|
|
|
|
series.fetch({
|
|
|
|
|
success: function (seriesModel) {
|
2013-04-18 23:14:08 +00:00
|
|
|
|
self._setTitle(seriesModel.get('title'));
|
2013-03-29 23:28:58 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Series.Details.SeriesDetailsView({ model: seriesModel }));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
2013-04-18 23:14:08 +00:00
|
|
|
|
addSeries: function (action) {
|
|
|
|
|
this._setTitle('Add Series');
|
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.AddSeries.AddSeriesLayout({action: action}));
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
calendar: function () {
|
|
|
|
|
this._setTitle('Calendar');
|
|
|
|
|
var calendarCollection = new NzbDrone.Calendar.CalendarCollection();
|
|
|
|
|
calendarCollection.fetch();
|
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Calendar.CalendarCollectionView({collection: calendarCollection}));
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
settings: function (action) {
|
|
|
|
|
this._setTitle('Settings');
|
2013-05-14 03:21:37 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Settings.SettingsLayout({action: action}));
|
2013-03-29 23:28:58 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-04-18 23:14:08 +00:00
|
|
|
|
missing: function () {
|
|
|
|
|
this._setTitle('Missing');
|
2013-03-29 23:28:58 +00:00
|
|
|
|
|
2013-05-01 03:04:06 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Missing.MissingLayout());
|
2013-03-29 23:28:58 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-05-03 06:53:32 +00:00
|
|
|
|
history: function () {
|
|
|
|
|
this._setTitle('History');
|
|
|
|
|
|
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.History.HistoryLayout());
|
|
|
|
|
},
|
|
|
|
|
|
2013-03-29 23:28:58 +00:00
|
|
|
|
notFound: function () {
|
2013-04-18 23:14:08 +00:00
|
|
|
|
this._setTitle('Not Found');
|
2013-03-29 23:28:58 +00:00
|
|
|
|
NzbDrone.mainRegion.show(new NzbDrone.Shared.NotFoundView(this));
|
|
|
|
|
},
|
|
|
|
|
|
2013-04-18 23:14:08 +00:00
|
|
|
|
_setTitle: function (title) {
|
2013-04-24 01:55:29 +00:00
|
|
|
|
//$('#title-region').html(title);
|
2013-03-29 23:28:58 +00:00
|
|
|
|
|
|
|
|
|
if (title.toLocaleLowerCase() === 'nzbdrone') {
|
|
|
|
|
window.document.title = 'NzbDrone';
|
2013-03-02 19:13:23 +00:00
|
|
|
|
}
|
2013-03-29 23:28:58 +00:00
|
|
|
|
else {
|
|
|
|
|
window.document.title = title + ' - NzbDrone';
|
2013-03-04 00:09:43 +00:00
|
|
|
|
}
|
2013-03-29 23:28:58 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2013-02-15 23:38:53 +00:00
|
|
|
|
|
2013-03-29 23:28:58 +00:00
|
|
|
|
return new controller();
|
2013-02-16 00:49:25 +00:00
|
|
|
|
|
|
|
|
|
});
|
2013-02-15 23:38:53 +00:00
|
|
|
|
|