You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/UI/Shared/TemplateHelpers.js

44 lines
1.5 KiB

'use strict';
12 years ago
12 years ago
define(['app','handlebars','Shared/FormatHelpers'], function (App,Handlebars) {
12 years ago
Handlebars.registerHelper('partial', function (templateName) {
//TODO: We should be able to pass in the context, either an object or a property
var templateFunction = Marionette.TemplateCache.get(templateName);
return new Handlebars.SafeString(templateFunction(this));
});
Handlebars.registerHelper('debug', function (optionalValue) {
console.log('Current Context');
console.log('====================');
12 years ago
console.log(this);
if (optionalValue) {
console.log('Value');
console.log('====================');
12 years ago
console.log(optionalValue);
}
});
Handlebars.registerHelper('fileSize', function (size) {
return new Handlebars.SafeString(NzbDrone.Shared.FormatHelpers.FileSizeHelper(size));
12 years ago
});
Handlebars.registerHelper('date', function (date) {
12 years ago
//TODO: show actual date in tooltip
if (!date) {
return '';
}
var shortDate = Date.create(date).short();
var formattedDate = NzbDrone.Shared.FormatHelpers.DateHelper(date);
var result = '<span title='' + shortDate + ''>' + formattedDate + '</span>';
12 years ago
return new Handlebars.SafeString(result);
});
Handlebars.registerHelper('defaultImg', function () {
return new Handlebars.SafeString('onerror='this.src=\'/content/images/poster-dark.jpg\';'');
});
});