2013-06-07 04:39:12 +02:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
define(['app'], function () {
|
|
|
|
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));
|
|
|
|
});
|
|
|
|
|
2013-06-07 05:52:46 +02:00
|
|
|
Handlebars.registerHelper("debug", function (optionalValue) {
|
2013-06-07 04:39:12 +02:00
|
|
|
console.log("Current Context");
|
|
|
|
console.log("====================");
|
|
|
|
console.log(this);
|
|
|
|
|
|
|
|
if (optionalValue) {
|
|
|
|
console.log("Value");
|
|
|
|
console.log("====================");
|
|
|
|
console.log(optionalValue);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-06-07 05:52:46 +02:00
|
|
|
Handlebars.registerHelper("fileSize", function (size) {
|
2013-06-07 04:39:12 +02:00
|
|
|
return NzbDrone.Shared.FormatHelpers.FileSizeHelper(size);
|
|
|
|
});
|
|
|
|
|
2013-06-07 05:52:46 +02:00
|
|
|
Handlebars.registerHelper("date", function (date) {
|
2013-06-07 04:39:12 +02:00
|
|
|
//TODO: show actual date in tooltip
|
|
|
|
if (!date) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
var shortDate = Date.create(date).short();
|
|
|
|
var formattedDate = NzbDrone.Shared.FormatHelpers.DateHelper(date);
|
2013-06-07 05:44:22 +02:00
|
|
|
var result = '<span title="' + shortDate + '">' + formattedDate + '</span>';
|
2013-06-07 04:39:12 +02:00
|
|
|
|
|
|
|
return new Handlebars.SafeString(result);
|
|
|
|
});
|
2013-06-07 05:52:46 +02:00
|
|
|
|
|
|
|
Handlebars.registerHelper('defaultImg', function () {
|
2013-06-07 07:54:56 +02:00
|
|
|
return new Handlebars.SafeString('onerror="this.src=\'/content/images/poster-dark.jpg\';"');
|
2013-06-07 05:52:46 +02:00
|
|
|
});
|
|
|
|
});
|