mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'backgrid'
|
|
], function (Backgrid) {
|
|
return Backgrid.Cell.extend({
|
|
|
|
className: 'toggle-cell',
|
|
|
|
events: {
|
|
'click': '_onClick'
|
|
},
|
|
|
|
_onClick: function () {
|
|
|
|
var self = this;
|
|
|
|
this.$el.tooltip('hide');
|
|
|
|
var name = this.column.get('name');
|
|
this.model.set(name, !this.model.get(name));
|
|
|
|
this.$('i').addClass('icon-spinner icon-spin');
|
|
|
|
this.model.save().always(function () {
|
|
self.render();
|
|
});
|
|
},
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
this.$el.html('<i />');
|
|
|
|
var name = this.column.get('name');
|
|
|
|
if (this.model.get(name)) {
|
|
this.$('i').addClass(this.column.get('trueClass'));
|
|
}
|
|
else {
|
|
this.$('i').addClass(this.column.get('falseClass'));
|
|
}
|
|
|
|
var tooltip = this.column.get('tooltip');
|
|
|
|
if (tooltip) {
|
|
this.$('i').attr('title', tooltip);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
});
|
|
});
|