mirror of https://gitee.com/bigwinds/arangodb
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
/*global window, _, $, document*/
|
|
(function() {
|
|
"use strict";
|
|
var TemplateEngine = function() {
|
|
var exports = {};
|
|
exports.createTemplate = function(id) {
|
|
var ref = "#" + id.replace(".", "\\.");
|
|
var template;
|
|
if ($(ref).length === 0) {
|
|
var path = "../../base/frontend/js/templates/" + id;
|
|
$.ajax({
|
|
url: path,
|
|
type: "GET",
|
|
async: false
|
|
}).done(function(script) {
|
|
$(document.head).append(script);
|
|
}).error(function() {
|
|
path = "../../base/clusterFrontend/js/templates/" + id;
|
|
$.ajax({
|
|
url: path,
|
|
type: "GET",
|
|
async: false
|
|
}).done(function(script) {
|
|
$(document.head).append(script);
|
|
}).error(function() {
|
|
throw "Could not load template " + id;
|
|
});
|
|
});
|
|
}
|
|
template = $(ref).html();
|
|
return {
|
|
render: function(params) {
|
|
return _.template(template, params);
|
|
}
|
|
};
|
|
};
|
|
return exports;
|
|
};
|
|
window.templateEngine = new TemplateEngine();
|
|
}());
|