mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-12 18:51:52 +01:00
33 lines
938 B
JavaScript
33 lines
938 B
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'Cells/NzbDroneCell',
|
|
'filesize'
|
|
], function (NzbDroneCell, fileSize) {
|
|
return NzbDroneCell.extend({
|
|
|
|
className: 'timeleft-cell',
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
|
|
if (this.cellValue) {
|
|
|
|
var timeleft = this.cellValue.get('timeleft');
|
|
var totalSize = fileSize(this.cellValue.get('size'), 1, false);
|
|
var remainingSize = fileSize(this.cellValue.get('sizeleft'), 1, false);
|
|
|
|
if (timeleft === undefined) {
|
|
this.$el.html("-");
|
|
}
|
|
else {
|
|
this.$el.html(timeleft);
|
|
}
|
|
this.$el.attr('title', '{0} / {1}'.format(remainingSize, totalSize));
|
|
}
|
|
|
|
return this;
|
|
}
|
|
});
|
|
});
|