Radarr/UI/Cells/NzbDroneCell.js

45 lines
993 B
JavaScript
Raw Normal View History

"use strict";
define(['app','backgrid'], function () {
NzbDrone.Cells.NzbDroneCell = Backgrid.Cell.extend({
_originalInit: Backgrid.Cell.prototype.initialize,
initialize: function () {
this._originalInit.apply(this, arguments);
this.cellValue = this._getValue();
this.model.on('change', this._refresh, this);
},
_refresh: function () {
this.cellValue = this._getValue();
this.render();
},
_getValue: function () {
var name = this.column.get('name');
2013-06-11 01:55:05 +00:00
if (name === 'this') {
return this.model;
}
var value = this.model.get(name);
2013-06-11 01:55:05 +00:00
if (!value) {
2013-06-10 02:10:15 +00:00
return undefined;
}
//if not a model
2013-06-11 01:55:05 +00:00
if (!value.get && typeof value === 'object') {
2013-06-10 02:10:15 +00:00
value = new Backbone.Model(value);
}
return value;
}
});
});