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.
38 lines
1.0 KiB
38 lines
1.0 KiB
'use strict';
|
|
define(
|
|
[
|
|
'templates',
|
|
'handlebars.helpers',
|
|
'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;
|
|
}
|
|
|
|
return function (data) {
|
|
|
|
try {
|
|
return templateFunction(data);
|
|
}
|
|
catch (error) {
|
|
console.error('template render failed for ' + templateKey + ' ' + error);
|
|
console.error(data);
|
|
throw error;
|
|
}
|
|
};
|
|
};
|
|
};
|
|
});
|
|
|
|
|