1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Series/Index/Table/SeriesStatusCell.js

28 lines
814 B
JavaScript
Raw Normal View History

2013-05-02 01:42:30 +03:00
"use strict";
define(['app','backgrid'], function () {
Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
className: "series-status-cell",
2013-04-24 03:30:25 +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
if (!monitored) {
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
}
else if (status === 'continuing') {
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
}
else {
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
}
2013-04-24 03:30:25 +03:00
return this;
2013-04-24 03:30:25 +03:00
}
});
2013-04-24 03:30:25 +03:00
return Backgrid.SeriesStatusCell;
2013-05-02 01:42:30 +03:00
});