mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
8388092bf5
Fixed: Manually download will change icons when sent to download client
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'backgrid'
|
|
], function (Backgrid) {
|
|
return Backgrid.Cell.extend({
|
|
|
|
className: 'download-report-cell',
|
|
|
|
events: {
|
|
'click': '_onClick'
|
|
},
|
|
|
|
_onClick: function () {
|
|
|
|
if (!this.model.get('downloadAllowed'))
|
|
{
|
|
return;
|
|
}
|
|
|
|
var self = this;
|
|
|
|
this.$el.html('<i class="icon-spinner icon-spin" />');
|
|
|
|
//Using success callback instead of promise so it
|
|
//gets called before the sync event is triggered
|
|
this.model.save(null, { success: function () {
|
|
self.model.set('queued', true);
|
|
}});
|
|
},
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
|
|
if (this.model.get('queued')) {
|
|
this.$el.html('<i class="icon-nd-downloading" title="Added to downloaded queue" />');
|
|
}
|
|
|
|
else if (this.model.get('downloadAllowed'))
|
|
{
|
|
this.$el.html('<i class="icon-download-alt" title="Add to download queue" />');
|
|
}
|
|
|
|
else {
|
|
this.className = 'no-download-report-cell';
|
|
}
|
|
|
|
return this;
|
|
}
|
|
});
|
|
});
|