1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Handlebars/backbone.marionette.templates.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

2013-06-25 07:43:16 +03:00
'use strict';
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'
], 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 08:28:35 +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 08:28:35 +03:00