1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Controller.js

113 lines
3.5 KiB
JavaScript
Raw Normal View History

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