2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-14 23:18:37 +00:00
|
|
|
define(['app','backgrid'], function () {
|
|
|
|
Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
|
2013-06-22 06:24:24 +00:00
|
|
|
className: 'series-status-cell',
|
2013-04-24 00:30:25 +00:00
|
|
|
|
2013-06-14 23:18:37 +00:00
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
|
|
|
var monitored = this.model.get('monitored');
|
|
|
|
var status = this.model.get('status');
|
2013-04-24 00:30:25 +00:00
|
|
|
|
2013-06-14 23:18:37 +00:00
|
|
|
if (!monitored) {
|
2013-06-22 06:24:24 +00:00
|
|
|
this.$el.html('<i class='icon-pause grid-icon' title='Not Monitored'></i>');
|
2013-06-14 23:18:37 +00:00
|
|
|
}
|
|
|
|
else if (status === 'continuing') {
|
2013-06-22 06:24:24 +00:00
|
|
|
this.$el.html('<i class='icon-play grid-icon' title='Continuing'></i>');
|
2013-06-14 23:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2013-06-22 06:24:24 +00:00
|
|
|
this.$el.html('<i class='icon-stop grid-icon' title='Ended'></i>');
|
2013-06-14 23:18:37 +00:00
|
|
|
}
|
2013-04-24 00:30:25 +00:00
|
|
|
|
2013-06-14 23:18:37 +00:00
|
|
|
return this;
|
2013-04-24 00:30:25 +00:00
|
|
|
}
|
2013-06-14 23:18:37 +00:00
|
|
|
});
|
2013-04-24 00:30:25 +00:00
|
|
|
|
2013-06-14 23:18:37 +00:00
|
|
|
return Backgrid.SeriesStatusCell;
|
2013-05-01 22:42:30 +00:00
|
|
|
});
|