2013-06-22 09:24:24 +03:00
|
|
|
'use strict';
|
2013-06-24 05:31:02 +03:00
|
|
|
define(['app','cells/nzbdronecell'], function () {
|
|
|
|
return NzbDrone.Cells.NzbDroneCell.extend({
|
2013-06-22 09:24:24 +03:00
|
|
|
className: 'series-status-cell',
|
2013-04-24 03:30:25 +03:00
|
|
|
|
2013-06-15 02:18:37 +03:00
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
|
|
|
var monitored = this.model.get('monitored');
|
|
|
|
var status = this.model.get('status');
|
2013-04-24 03:30:25 +03:00
|
|
|
|
2013-06-15 02:18:37 +03:00
|
|
|
if (!monitored) {
|
2013-06-22 18:58:16 +03:00
|
|
|
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
2013-06-15 02:18:37 +03:00
|
|
|
}
|
|
|
|
else if (status === 'continuing') {
|
2013-06-22 18:58:16 +03:00
|
|
|
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
2013-06-15 02:18:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2013-06-22 18:58:16 +03:00
|
|
|
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
2013-06-15 02:18:37 +03:00
|
|
|
}
|
2013-04-24 03:30:25 +03:00
|
|
|
|
2013-06-15 02:18:37 +03:00
|
|
|
return this;
|
2013-04-24 03:30:25 +03:00
|
|
|
}
|
2013-06-15 02:18:37 +03:00
|
|
|
});
|
2013-05-02 01:42:30 +03:00
|
|
|
});
|