mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Refresh upcoming collection every hour
This commit is contained in:
parent
e3d47cddaa
commit
39bb2ce80a
@ -2,17 +2,29 @@
|
||||
|
||||
define(
|
||||
[
|
||||
'underscore',
|
||||
'marionette',
|
||||
'Calendar/UpcomingCollection',
|
||||
'Calendar/UpcomingItemView',
|
||||
'Mixins/backbone.signalr.mixin'
|
||||
], function (Marionette, UpcomingCollection, UpcomingItemView) {
|
||||
], function (_, Marionette, UpcomingCollection, UpcomingItemView) {
|
||||
return Marionette.CollectionView.extend({
|
||||
itemView: UpcomingItemView,
|
||||
|
||||
initialize: function () {
|
||||
this.collection = new UpcomingCollection().bindSignalR({ updateOnly: true });
|
||||
this.collection.fetch();
|
||||
|
||||
this._fetchCollection = _.bind(this._fetchCollection, this);
|
||||
this.timer = window.setInterval(this._fetchCollection, 60 * 60 * 1000);
|
||||
},
|
||||
|
||||
onClose: function () {
|
||||
window.clearInterval(this.timer);
|
||||
},
|
||||
|
||||
_fetchCollection: function () {
|
||||
this.collection.fetch();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user