mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
New: Show age in minutes when less than 2 hours old (manual search/history)
This commit is contained in:
+10
-12
@@ -1,7 +1,7 @@
|
||||
var moment = require('moment');
|
||||
var Backgrid = require('backgrid');
|
||||
var UiSettings = require('../Shared/UiSettingsModel');
|
||||
require('../Shared/FormatHelpers');
|
||||
var FormatHelpers = require('../Shared/FormatHelpers');
|
||||
|
||||
module.exports = Backgrid.Cell.extend({
|
||||
className : 'age-cell',
|
||||
@@ -9,27 +9,25 @@ module.exports = Backgrid.Cell.extend({
|
||||
render : function() {
|
||||
var age = this.model.get('age');
|
||||
var ageHours = this.model.get('ageHours');
|
||||
var ageMinutes = this.model.get('ageMinutes');
|
||||
var published = moment(this.model.get('publishDate'));
|
||||
var publishedFormatted = published.format('{0} {1}'.format(UiSettings.get('shortDateFormat'), UiSettings.time(true, true)));
|
||||
var formatted = age;
|
||||
var suffix = this.plural(age, 'day');
|
||||
var suffix = FormatHelpers.plural(age, 'day');
|
||||
|
||||
if (age === 0) {
|
||||
if (age < 2) {
|
||||
formatted = ageHours.toFixed(1);
|
||||
suffix = this.plural(Math.round(ageHours), 'hour');
|
||||
suffix = FormatHelpers.plural(Math.round(ageHours), 'hour');
|
||||
}
|
||||
|
||||
if (ageHours < 2) {
|
||||
formatted = ageMinutes.toFixed(1);
|
||||
suffix = FormatHelpers.plural(Math.round(ageMinutes), 'minute');
|
||||
}
|
||||
|
||||
this.$el.html('<div title="{2}">{0} {1}</div>'.format(formatted, suffix, publishedFormatted));
|
||||
|
||||
this.delegateEvents();
|
||||
return this;
|
||||
},
|
||||
|
||||
plural : function(input, unit) {
|
||||
if (input === 1) {
|
||||
return unit;
|
||||
}
|
||||
|
||||
return unit + 's';
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user