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

31 lines
764 B
JavaScript
Raw Normal View History

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