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