2013-06-22 09:24:24 +03:00
|
|
|
'use strict';
|
2013-05-15 04:17:24 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
define(
|
|
|
|
[
|
2013-07-17 09:23:44 +03:00
|
|
|
'backgrid',
|
|
|
|
'moment'
|
|
|
|
], function (Backgrid, Moment) {
|
2013-06-25 02:41:59 +03:00
|
|
|
return Backgrid.Cell.extend({
|
2013-05-15 04:17:24 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
className: 'episode-status-cell',
|
2013-05-21 00:42:20 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
2013-05-21 00:05:48 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
if (this.model) {
|
2013-05-21 00:05:48 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
var icon;
|
2013-07-05 23:26:50 +03:00
|
|
|
var tooltip;
|
2013-05-21 00:05:48 +03:00
|
|
|
|
2013-07-17 09:23:44 +03:00
|
|
|
var hasAired = Moment(this.model.get('airDate')).isBefore(Moment());
|
2013-07-17 06:25:42 +03:00
|
|
|
var hasFile = this.model.get('hasFile');
|
2013-07-17 02:54:45 +03:00
|
|
|
|
2013-07-17 06:25:42 +03:00
|
|
|
if (hasFile) {
|
2013-06-25 02:41:59 +03:00
|
|
|
icon = 'icon-ok';
|
2013-07-05 23:26:50 +03:00
|
|
|
tooltip = 'Episode downloaded';
|
2013-05-21 00:06:01 +03:00
|
|
|
}
|
|
|
|
else {
|
2013-07-18 08:02:19 +03:00
|
|
|
if (!this.model.get('airDate')) {
|
|
|
|
icon = 'icon-question-sign';
|
|
|
|
tooltip = 'TBA';
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (hasAired) {
|
2013-06-25 02:41:59 +03:00
|
|
|
icon = 'icon-warning-sign';
|
2013-07-05 23:26:50 +03:00
|
|
|
tooltip = 'Episode missing from disk';
|
2013-06-25 02:41:59 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
icon = 'icon-time';
|
2013-07-05 23:26:50 +03:00
|
|
|
tooltip = 'Episode has not aired';
|
2013-06-25 02:41:59 +03:00
|
|
|
}
|
2013-05-21 00:06:01 +03:00
|
|
|
}
|
2013-07-18 08:52:13 +03:00
|
|
|
|
2013-07-05 23:26:50 +03:00
|
|
|
this.$el.html('<i class="{0}" title="{1}"/>'.format(icon, tooltip));
|
2013-05-21 00:06:01 +03:00
|
|
|
}
|
2013-05-21 00:05:48 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
return this;
|
2013-05-21 00:05:48 +03:00
|
|
|
}
|
2013-06-25 02:41:59 +03:00
|
|
|
});
|
2013-05-15 04:17:24 +03:00
|
|
|
});
|