client side templates in, fixed home page to parse templates on ajaxify, added footer to the page transition animation for smoothness
parent
7e637a93bb
commit
5173498180
@ -1,19 +1,122 @@
|
|||||||
var templates = {};
|
var templates = {};
|
||||||
|
|
||||||
function loadTemplates(templatesToLoad) {
|
(function() {
|
||||||
var timestamp = new Date().getTime();
|
|
||||||
|
function loadTemplates(templatesToLoad) {
|
||||||
for (var t in templatesToLoad) {
|
var timestamp = new Date().getTime();
|
||||||
(function(template) {
|
|
||||||
$.get('/templates/' + template + '.tpl?v=' + timestamp, function(html) {
|
for (var t in templatesToLoad) {
|
||||||
templates[template] = html;
|
(function(file) {
|
||||||
});
|
$.get('/templates/' + file + '.tpl?v=' + timestamp, function(html) {
|
||||||
}(templatesToLoad[t]));
|
var template = function() {
|
||||||
|
this.toString = function() {
|
||||||
|
return this.html;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
template.prototype.parse = parse;
|
||||||
|
template.prototype.html = String(html);
|
||||||
|
|
||||||
|
templates[file] = new template;
|
||||||
|
});
|
||||||
|
}(templatesToLoad[t]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function init() {
|
||||||
|
loadTemplates([
|
||||||
|
'header', 'footer', 'register', 'home',
|
||||||
|
'login', 'reset', 'reset_code', 'account_settings',
|
||||||
|
'logout',
|
||||||
|
'emails/reset', 'emails/reset_plaintext'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//modified from https://github.com/psychobunny/dcp.templates
|
||||||
|
var parse = function(data) {
|
||||||
|
function replace(key, value, template) {
|
||||||
|
var searchRegex = new RegExp('{' + key + '}', 'g');
|
||||||
|
return template.replace(searchRegex, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
function makeRegex(block) {
|
||||||
|
return new RegExp("<!-- BEGIN " + block + " -->[^]*<!-- END " + block + " -->", 'g');
|
||||||
|
}
|
||||||
|
|
||||||
|
function getBlock(regex, block, template) {
|
||||||
|
data = template.match(regex);
|
||||||
|
if (data == null) return;
|
||||||
|
|
||||||
|
data = data[0]
|
||||||
|
.replace("<!-- BEGIN " + block + " -->", "")
|
||||||
|
.replace("<!-- END " + block + " -->", "");
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setBlock(regex, block, template) {
|
||||||
|
return template.replace(regex, block);
|
||||||
|
}
|
||||||
|
|
||||||
|
var template = this.html, regex, block;
|
||||||
|
|
||||||
|
return (function parse(data, namespace, template) {
|
||||||
|
|
||||||
|
for (var d in data) {
|
||||||
|
if (data.hasOwnProperty(d)) {
|
||||||
|
if (data[d] instanceof String || data[d] === null) {
|
||||||
|
continue;
|
||||||
|
} else if (data[d].constructor == Array) {
|
||||||
|
namespace += d;
|
||||||
|
|
||||||
|
regex = makeRegex(d),
|
||||||
|
block = getBlock(regex, namespace, template)
|
||||||
|
if (block == null) continue;
|
||||||
|
|
||||||
|
var numblocks = data[d].length - 1, i = 0, result = "";
|
||||||
|
|
||||||
|
do {
|
||||||
|
result += parse(data[d][i], namespace + '.', block);
|
||||||
|
} while (i++ < numblocks);
|
||||||
|
|
||||||
|
template = setBlock(regex, result, template);
|
||||||
|
|
||||||
|
} else if (data[d] instanceof Object) {
|
||||||
|
namespace += d + '.';
|
||||||
|
|
||||||
|
regex = makeRegex(d),
|
||||||
|
block = getBlock(regex, namespace, template)
|
||||||
|
if (block == null) continue;
|
||||||
|
|
||||||
|
block = parse(data[d], namespace, block);
|
||||||
|
template = setBlock(regex, block, template);
|
||||||
|
} else {
|
||||||
|
template = replace(namespace + d, data[d], template);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return template;
|
||||||
|
|
||||||
|
})(data, "", template);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
function templates_init() {
|
|
||||||
loadTemplates(['register', 'home', 'login', 'reset']);
|
|
||||||
}
|
|
||||||
|
|
||||||
templates_init();
|
init();
|
||||||
|
|
||||||
|
}());
|
||||||
|
|
||||||
|
function load_template(callback) {
|
||||||
|
var location = document.location || window.location,
|
||||||
|
rootUrl = location.protocol + '//' + (location.hostname || location.host) + (location.port ? ':' + location.port : '');
|
||||||
|
|
||||||
|
var url = location.href.replace(rootUrl +'/', '');
|
||||||
|
if (url == '') url = 'home';
|
||||||
|
jQuery.get('api/' + url, function(data) {
|
||||||
|
|
||||||
|
document.getElementById('content').innerHTML = templates[url].parse(JSON.parse(data));
|
||||||
|
if (callback) callback();
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in New Issue