Files
liquidjs/tokenizer.js
T
2016-06-18 23:18:46 +08:00

81 lines
2.1 KiB
JavaScript

const lexical = require('./lexical.js');
const TokenizationError = require('./error.js').TokenizationError;
function parse(html) {
var tokens = [];
if (!html) return tokens;
var syntax = /({%(.*?)%})|({{(.*?)}})/g;
var result, htmlFragment, token;
var idx = 0;
var _idx = -1;
var _count = 0;
while ((result = syntax.exec(html)) !== null) {
// passed html fragments
if (result.index > idx) {
htmlFragment = html.slice(idx, result.index);
tokens.push({
type: 'html',
value: htmlFragment
});
}
// tag appeared
if (result[1]) {
token = factory('tag', 1, result);
var match = token.value.match(lexical.tagLine);
if (!match) {
throw new TokenizationError(`illegal tag: ${token.raw}`,
token.input, token.line);
}
token.name = match[1];
token.args = match[2];
tokens.push(token);
}
// output
else {
token = factory('output', 3, result);
tokens.push(token);
}
idx = syntax.lastIndex;
}
// remaining html
if (html.length > idx) {
htmlFragment = html.slice(idx, html.length);
tokens.push({
type: 'html',
value: htmlFragment
});
}
return tokens;
function factory(type, offset, match) {
return {
type: type,
raw: match[offset],
value: match[offset + 1].trim(),
line: getLineNum(match),
input: getLineContent(match)
};
}
function getLineContent(match) {
var idx1 = match.input.lastIndexOf('\n', match.index);
var idx2 = match.input.indexOf('\n', match.index);
if (idx2 === -1) idx2 = match.input.length;
return match.input.slice(idx1 + 1, idx2);
}
function getLineNum(match) {
var lines = match.input.slice(_idx + 1, match.index).split('\n');
_count += lines.length - 1;
_idx = match.index;
return _count + 1;
}
}
exports.parse = parse;