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

32 lines
870 B
JavaScript
Raw Normal View History

2013-06-07 08:33:01 +03:00
'use strict';
define(
[
2013-06-28 18:43:37 +03:00
'app',
2013-08-22 03:24:38 +03:00
'marionette',
'moment'
], function (App, Marionette, Moment) {
return Marionette.ItemView.extend({
2013-08-22 03:24:38 +03:00
template: 'Calendar/UpcomingItemViewTemplate',
2013-06-28 18:43:37 +03:00
tagName : 'div',
events: {
'click .x-episode-title': '_showEpisodeDetails'
2013-06-28 18:43:37 +03:00
},
2013-08-22 03:24:38 +03:00
initialize: function () {
var start = this.model.get('airDateUtc');
var runtime = this.model.get('series').runtime;
var end = Moment(start).add('minutes', runtime);
this.model.set({
2013-08-22 07:30:26 +03:00
end: end.toISOString()
2013-08-22 03:24:38 +03:00
})
},
_showEpisodeDetails: function () {
App.vent.trigger(App.Commands.ShowEpisodeDetails, {episode: this.model});
2013-06-28 18:43:37 +03:00
}
});
2013-06-07 08:33:01 +03:00
});