Lidarr/UI/Controller.js

120 lines
3.7 KiB
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
2013-06-21 05:19:41 +00:00
define(
[
'app',
'Settings/SettingsLayout',
'AddSeries/AddSeriesLayout',
'Form/FormBuilder',
'Series/Index/SeriesIndexLayout',
'Calendar/CalendarLayout',
'Shared/NotificationView',
'Shared/NotFoundView',
'MainMenuView',
'Series/Details/SeriesDetailsLayout',
'Series/EpisodeCollection',
'Logs/Layout',
'Release/Layout',
'Missing/MissingLayout',
'History/HistoryLayout',
'Shared/FormatHelpers',
'Shared/TemplateHelpers',
'Shared/Footer/View'
], function (App, SettingsLayout, AddSeriesLayout) {
var controller = Backbone.Marionette.Controller.extend({
series : function () {
this._setTitle('NzbDrone');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.Series.Index.SeriesIndexLayout());
},
seriesDetails: function (query) {
var self = this;
this._setTitle('Loading Series');
var series = new NzbDrone.Series.SeriesModel({ id: query });
series.fetch({
success: function (seriesModel) {
self._setTitle(seriesModel.get('title'));
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.Series.Details.SeriesDetailsLayout({ model: seriesModel }));
}
});
},
addSeries: function (action) {
this._setTitle('Add Series');
2013-06-21 05:19:41 +00:00
App.mainRegion.show(new AddSeriesLayout({action: action}));
},
calendar: function () {
this._setTitle('Calendar');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.Calendar.CalendarLayout());
},
settings: function (action) {
this._setTitle('Settings');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new SettingsLayout({action: action}));
},
missing: function () {
this._setTitle('Missing');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.Missing.MissingLayout());
},
2013-05-03 06:53:32 +00:00
history: function () {
this._setTitle('History');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.History.HistoryLayout());
2013-05-03 06:53:32 +00:00
},
rss: function () {
this._setTitle('RSS');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.Release.Layout());
},
2013-06-05 00:49:53 +00:00
logs: function () {
this._setTitle('logs');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.Logs.Layout());
2013-06-05 00:49:53 +00:00
},
notFound: function () {
this._setTitle('Not Found');
2013-06-19 01:02:23 +00:00
App.mainRegion.show(new NzbDrone.Shared.NotFoundView(this));
},
2013-06-05 00:49:53 +00:00
_setTitle: function (title) {
//$('#title-region').html(title);
if (title.toLocaleLowerCase() === 'nzbdrone') {
window.document.title = 'NzbDrone';
2013-03-02 19:13:23 +00:00
}
else {
window.document.title = title + ' - NzbDrone';
2013-03-04 00:09:43 +00:00
}
2013-05-28 06:03:25 +00:00
this._clearCookies();
},
_clearCookies: function () {
if (!document.cookie) {
return;
}
2013-06-22 06:24:24 +00:00
var cookies = document.cookie.split(';');
2013-05-28 06:03:25 +00:00
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
2013-06-22 06:24:24 +00:00
var eqPos = cookie.indexOf('=');
2013-05-28 06:03:25 +00:00
var name = eqPos > -1 ? cookie.substr(0, eqPos) :cookie;
2013-06-22 06:24:24 +00:00
document.cookie = name + '=;expires=Thu, 01 Jan 1970 00:00:00 GMT';
2013-05-28 06:03:25 +00:00
}
}
});
2013-02-15 23:38:53 +00:00
return new controller();
2013-02-16 00:49:25 +00:00
});
2013-02-15 23:38:53 +00:00