From 678f0f436eb018502cbd57649e1693733d7453c1 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 6 May 2014 17:50:01 -0400 Subject: [PATCH] importing latest templates.js @Schamper --- public/src/templates.js | 77 ++++++++++++++++++++++------------------- 1 file changed, 42 insertions(+), 35 deletions(-) diff --git a/public/src/templates.js b/public/src/templates.js index 9ccc06b073..83931fb057 100644 --- a/public/src/templates.js +++ b/public/src/templates.js @@ -1,4 +1,5 @@ -"use strict"; +'use strict'; +/*global require, module*/ (function(module) { var templates = { @@ -53,7 +54,7 @@ }; templates.getBlock = function(template, block) { - return template.replace(new RegExp("[\\s\\S]*([\r\n]*[\\s\\S]*?[\r\n]*)[\\s\\S]*", 'g'), '$1'); + return template.replace(new RegExp('[\\s\\S]*([\r\n]*[\\s\\S]*?[\r\n]*)[\\s\\S]*', 'g'), '$1'); }; function express(filename, options, fn) { @@ -76,15 +77,19 @@ } function makeRegex(block) { - return new RegExp("[\\s\\S]*?", 'g'); + return new RegExp('[\\s\\S]*?'); + } + + function makeBlockRegex(block) { + return new RegExp('([\\n]?[\\n]?)|([\\n]?[\\n]?)', 'g'); } function makeConditionalRegex(block) { - return new RegExp("([\\s\\S]*?)", 'g'); + return new RegExp('([\\s\\S]*?)', 'g'); } function makeStatementRegex(key) { - return new RegExp("([\\s]*)|([\\s]*)", 'gi'); + return new RegExp('([\\s]*)|([\\s]*)', 'gi'); } function registerGlobals(obj) { @@ -168,41 +173,44 @@ template = checkConditional(template, namespace + 'length', array[key].length); template = checkConditional(template, '!' + namespace + 'length', !array[key].length); - var regex = makeRegex(key), - block = namespace.substring(0, namespace.length - 1).split('.').pop(); - - block = template.replace(new RegExp("[\\s\\S]*[\r\n]*([\\s\\S]*?)[\r\n]*[\\s\\S]*", 'g'), '$1'); + var regex = makeRegex(key), block; - if (typeof block === "undefined" || !array[key].length) { + if (!array[key].length) { return template; } - var numblocks = array[key].length - 1, - iterator = 0, - result = "", - parsedBlock; - - do { - parsedBlock = parse(block, array[key][iterator], bind, namespace, {iterator: iterator, total: numblocks}) + ((iterator < numblocks) ? '\r\n':''); + while (block = template.match(regex)) { + block = block[0].replace(makeBlockRegex(key), ''); - result += (!bind) ? parsedBlock : setBindContainer(parsedBlock, bind + namespace + iterator); - result = parseFunctions(block, result, { - data: array[key][iterator], - iterator: iterator, - numblocks: numblocks - }); - - result = checkConditional(result, '@first', iterator === 0); - result = checkConditional(result, '!@first', iterator !== 0); - result = checkConditional(result, '@last', iterator === numblocks); - result = checkConditional(result, '!@last', iterator !== numblocks); + var numblocks = array[key].length - 1, + iterator = 0, + result = '', + parsedBlock; - if (bind) { - array[key][iterator].__template = block; - } - } while (iterator++ < numblocks); + do { + parsedBlock = parse(block, array[key][iterator], bind, namespace, {iterator: iterator, total: numblocks}) + ((iterator < numblocks) ? '\r\n':''); + + result += (!bind) ? parsedBlock : setBindContainer(parsedBlock, bind + namespace + iterator); + result = parseFunctions(block, result, { + data: array[key][iterator], + iterator: iterator, + numblocks: numblocks + }); + + result = checkConditional(result, '@first', iterator === 0); + result = checkConditional(result, '!@first', iterator !== 0); + result = checkConditional(result, '@last', iterator === numblocks); + result = checkConditional(result, '!@last', iterator !== numblocks); + + if (bind) { + array[key][iterator].__template = block; + } + } while (iterator++ < numblocks); - return template.replace(regex, result); + template = template.replace(regex, result); + } + + return template; } function setBindContainer(block, namespace) { @@ -265,7 +273,6 @@ namespace = namespace || ''; originalObj = originalObj || obj; - template = checkConditionalHelper(template, obj); for (var key in obj) { @@ -296,7 +303,7 @@ } if (namespace) { - template = template.replace(new RegExp("{" + namespace + "\\.[\\s\\S]*?}", 'g'), ''); + template = template.replace(new RegExp('{' + namespace + '\\.[\\s\\S]*?}', 'g'), ''); namespace = ''; } else { // clean up all undefined conditionals