Lidarr/UI/Handlebars/backbone.marionette.templat...

38 lines
1.0 KiB
JavaScript
Raw Normal View History

2013-06-25 04:43:16 +00:00
'use strict';
define(
[
2013-06-25 04:43:16 +00:00
'templates',
2013-06-27 00:29:48 +00:00
'handlebars.helpers',
2013-06-25 04:43:16 +00:00
'Handlebars/Helpers/DateTime',
'Handlebars/Helpers/Html',
'Handlebars/Helpers/Numbers',
'Handlebars/Debug'
], function (Templates) {
return function () {
this.get = function (templateId) {
var templateKey = templateId.toLowerCase();
var templateFunction = Templates[templateKey];
if (!templateFunction) {
throw 'couldn\'t find pre-compiled template ' + templateKey;
2013-06-15 05:28:35 +00:00
}
return function (data) {
try {
return templateFunction(data);
}
catch (error) {
console.error('template render failed for ' + templateKey + ' ' + error);
console.error(data);
throw error;
}
};
2013-06-15 05:28:35 +00:00
};
};
});
2013-06-15 05:28:35 +00:00