2013-03-30 00:00:38 +01:00
|
|
|
|
"use strict";
|
2013-02-15 04:10:03 +01:00
|
|
|
|
|
2013-06-15 07:28:35 +02:00
|
|
|
|
define(['templates'], function (Templates) {
|
|
|
|
|
return function () {
|
|
|
|
|
this.get = function (templateId) {
|
2013-03-30 20:13:10 +01:00
|
|
|
|
|
2013-06-15 07:28:35 +02:00
|
|
|
|
var templateKey = templateId.toLowerCase();
|
2013-03-30 20:13:10 +01:00
|
|
|
|
|
2013-06-15 07:28:35 +02:00
|
|
|
|
var templateFunction = Templates[templateKey];
|
2013-02-15 04:10:03 +01:00
|
|
|
|
|
2013-06-15 07:28:35 +02:00
|
|
|
|
if (!templateFunction) {
|
|
|
|
|
throw 'couldn\'t find pre-compiled template ' + templateKey;
|
|
|
|
|
}
|
2013-02-15 04:10:03 +01:00
|
|
|
|
|
2013-06-15 07:28:35 +02:00
|
|
|
|
return function (data) {
|
2013-02-15 04:10:03 +01:00
|
|
|
|
|
2013-06-15 07:28:35 +02:00
|
|
|
|
try {
|
|
|
|
|
return templateFunction(data);
|
|
|
|
|
}
|
|
|
|
|
catch (error) {
|
|
|
|
|
console.error('template render failed for ' + templateKey + ' ' + error);
|
|
|
|
|
console.error(data);
|
|
|
|
|
throw error;
|
|
|
|
|
}
|
|
|
|
|
};
|
2013-06-15 01:18:37 +02:00
|
|
|
|
};
|
2013-03-30 00:00:38 +01:00
|
|
|
|
};
|
2013-06-15 01:18:37 +02:00
|
|
|
|
});
|
2013-06-15 07:28:35 +02:00
|
|
|
|
|
|
|
|
|
|