2013-06-25 07:43:16 +03:00
|
|
|
'use strict';
|
2013-06-25 02:41:59 +03:00
|
|
|
define(
|
|
|
|
[
|
2013-06-25 07:43:16 +03:00
|
|
|
'templates',
|
2013-06-27 03:29:48 +03:00
|
|
|
'handlebars.helpers',
|
2013-06-25 07:43:16 +03:00
|
|
|
'Handlebars/Helpers/DateTime',
|
|
|
|
'Handlebars/Helpers/Html',
|
|
|
|
'Handlebars/Helpers/Numbers',
|
2013-07-17 02:54:45 +03:00
|
|
|
'Handlebars/Helpers/Episode',
|
|
|
|
'Handlebars/Helpers/Series',
|
|
|
|
'Handlebars/Helpers/Quality',
|
2013-06-25 07:43:16 +03:00
|
|
|
'Handlebars/Debug'
|
2013-06-25 02:41:59 +03:00
|
|
|
], function (Templates) {
|
|
|
|
return function () {
|
|
|
|
this.get = function (templateId) {
|
2013-03-30 22:13:10 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
var templateKey = templateId.toLowerCase();
|
2013-03-30 22:13:10 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
var templateFunction = Templates[templateKey];
|
2013-02-15 06:10:03 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
if (!templateFunction) {
|
|
|
|
throw 'couldn\'t find pre-compiled template ' + templateKey;
|
2013-06-15 08:28:35 +03:00
|
|
|
}
|
2013-06-25 02:41:59 +03: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 08:28:35 +03:00
|
|
|
};
|
2013-06-15 02:18:37 +03:00
|
|
|
};
|
2013-06-25 02:41:59 +03:00
|
|
|
});
|
2013-06-15 08:28:35 +03:00
|
|
|
|
|
|
|
|