From 44a1780688aa1bfec6928a19a41dc5b06742eede Mon Sep 17 00:00:00 2001 From: "pabs@pablotron.org" Date: Thu, 18 Dec 2014 02:06:58 -0500 Subject: add parse_template and parse_filters --- luigi-template.js | 58 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 52 insertions(+), 6 deletions(-) diff --git a/luigi-template.js b/luigi-template.js index f36519c..806ddea 100644 --- a/luigi-template.js +++ b/luigi-template.js @@ -116,11 +116,8 @@ LuigiTemplate = (function() { if (!re.global) throw 'non-global regex'; - while (m = re.exec(s)) { - m.shift(); - fn(m); - } - }; + while ((m = re.exec(s)) !== null) + fn(m); } // list of built-in filters @@ -166,14 +163,63 @@ LuigiTemplate = (function() { }; var RES = { + actions: /%\{\s*([^\s\|\}]+)\s*((\s*\|(\s*[^\s\|\}]+)+)*)\s*\}|([^%]|%)/g, + filter: /(\S+)((\s*\S+)*)\s*/g, + delim_filters: /\s*\|\s*/, + delim_args: /\s+/, + run: /%\{\s*(\w+)((\s*\|\s*\w+\s*(\([\w\s,-]+\))?)*)\}/g, - filter: /(\w+)\s*(\(([\w\s,-]+)\))?/, + old_filter: /(\w+)\s*(\(([\w\s,-]+)\))?/, trim: /^\s+|\s+$/ }; + function parse_template(s) { + var r = []; + + scan(s, RES.actions, function(m) { + if (m[1]) { + r.push({ + type: 'action', + key: m[1], + filters: parse_filters(m[2]) + }); + } else { + // text + r.push({ + type: 'text', + text: m[5] + }); + } + }); + + return r; + } + + function parse_filters(filters) { + var r = []; + + each(filters.split(RES.delim_filters), function(f) { + f = f.trim(); + if (!f) + return; + + var m = f.match(RES.filter); + if (!m) + throw new Error('invalid filter: ' + f); + + r.push({ + name: m[1], + args: FILTERS.trim(md[2] || '').split(RES.delim_args) + }); + }); + + return r; + } + function init(s, o) { this.s = s; this.o = o; + this.actions = parse_template(s); }; function safe_trim(s) { -- cgit v1.2.3