mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
UI Cleanup - Updated Navbar, Profile, Quality and Release subtrees.
This commit is contained in:
@@ -5,25 +5,31 @@ require('../Shared/FormatHelpers');
|
||||
|
||||
module.exports = Backgrid.Cell.extend({
|
||||
className : 'age-cell',
|
||||
render : function(){
|
||||
|
||||
render : function() {
|
||||
var age = this.model.get('age');
|
||||
var ageHours = this.model.get('ageHours');
|
||||
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');
|
||||
if(age === 0) {
|
||||
|
||||
if (age === 0) {
|
||||
formatted = ageHours.toFixed(1);
|
||||
suffix = this.plural(Math.round(ageHours), 'hour');
|
||||
}
|
||||
|
||||
this.$el.html('<div title="{2}">{0} {1}</div>'.format(formatted, suffix, publishedFormatted));
|
||||
|
||||
this.delegateEvents();
|
||||
return this;
|
||||
},
|
||||
plural : function(input, unit){
|
||||
if(input === 1) {
|
||||
|
||||
plural : function(input, unit) {
|
||||
if (input === 1) {
|
||||
return unit;
|
||||
}
|
||||
|
||||
return unit + 's';
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user