2013-06-24 23:41:59 +00:00
|
|
|
'use strict';
|
|
|
|
define(
|
|
|
|
[
|
|
|
|
'backgrid'
|
|
|
|
], function (Backgrid) {
|
|
|
|
return Backgrid.Cell.extend({
|
|
|
|
className: 'series-status-cell',
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
|
|
|
var monitored = this.model.get('monitored');
|
|
|
|
var status = this.model.get('status');
|
|
|
|
|
2013-08-18 06:10:18 +00:00
|
|
|
if (status === 'ended') {
|
|
|
|
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
|
|
|
this.model.set('statusWeight', 3);
|
2013-06-24 23:41:59 +00:00
|
|
|
}
|
2013-08-18 06:10:18 +00:00
|
|
|
|
|
|
|
else if (!monitored) {
|
|
|
|
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
|
|
|
this.model.set('statusWeight', 2);
|
2013-06-24 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2013-08-18 06:10:18 +00:00
|
|
|
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
|
|
|
this.model.set('statusWeight', 1);
|
2013-06-24 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|