Radarr/NzbDrone.Backbone/Controller.js

67 lines
2.2 KiB
JavaScript
Raw Normal View History

define(['app', 'Shared/ModalRegion', 'AddSeries/AddSeriesLayout', 'Series/SeriesCollectionView',
'Upcoming/UpcomingCollectionView', 'Calendar/CalendarCollectionView', 'Shared/NotificationView',
'Shared/NotFoundView'], 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-18 03:37:13 +00:00
NzbDrone.mainRegion.show(new NzbDrone.Series.SeriesCollectionView(this, action, query));
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));
},
calendar: function (action, query) {
this.setTitle('Calendar');
2013-02-25 00:00:17 +00:00
var calendarCollection = new NzbDrone.Calendar.CalendarCollection();
calendarCollection.fetch();
NzbDrone.mainRegion.show(new NzbDrone.Calendar.CalendarCollectionView(this, calendarCollection, action, query));
},
2013-02-20 07:45:52 +00:00
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-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-15 23:38:53 +00:00
return new controller();
});