You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
'use strict';
|
|
define([
|
|
'app',
|
|
'Calendar/UpcomingCollectionView',
|
|
'Calendar/CalendarView',
|
|
'Shared/Toolbar/ToolbarLayout'
|
|
],
|
|
function () {
|
|
NzbDrone.Calendar.CalendarLayout = Backbone.Marionette.Layout.extend({
|
|
template: 'Calendar/CalendarLayoutTemplate',
|
|
|
|
regions: {
|
|
upcoming: '#x-upcoming',
|
|
calendar: '#x-calendar'
|
|
},
|
|
|
|
initialize: function () {
|
|
this.upcomingCollection = new NzbDrone.Calendar.UpcomingCollection();
|
|
this.upcomingCollection.fetch();
|
|
},
|
|
|
|
onShow: function () {
|
|
this._showUpcoming();
|
|
this._showCalendar();
|
|
},
|
|
|
|
_showUpcoming: function () {
|
|
this.upcoming.show(new NzbDrone.Calendar.UpcomingCollectionView({
|
|
collection: this.upcomingCollection
|
|
}));
|
|
},
|
|
|
|
_showCalendar: function () {
|
|
this.calendar.show(new NzbDrone.Calendar.CalendarView());
|
|
}
|
|
});
|
|
});
|