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

31 lines
764 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
2013-06-15 05:28:35 +00:00
define(['templates'], function (Templates) {
return function () {
this.get = function (templateId) {
2013-06-15 05:28:35 +00:00
var templateKey = templateId.toLowerCase();
2013-06-15 05:28:35 +00:00
var templateFunction = Templates[templateKey];
2013-06-15 05:28:35 +00:00
if (!templateFunction) {
throw 'couldn\'t find pre-compiled template ' + templateKey;
}
2013-06-15 05:28:35 +00:00
return function (data) {
2013-06-15 05:28:35 +00:00
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