127 lines
3.1 KiB
JavaScript
127 lines
3.1 KiB
JavaScript
import Exception from "../exception";
|
|
|
|
export function ProgramNode(statements, inverse) {
|
|
this.type = "program";
|
|
this.statements = statements;
|
|
if(inverse) { this.inverse = new ProgramNode(inverse); }
|
|
}
|
|
|
|
export function MustacheNode(rawParams, hash, unescaped) {
|
|
this.type = "mustache";
|
|
this.escaped = !unescaped;
|
|
this.hash = hash;
|
|
|
|
var id = this.id = rawParams[0];
|
|
var params = this.params = rawParams.slice(1);
|
|
|
|
// a mustache is an eligible helper if:
|
|
// * its id is simple (a single part, not `this` or `..`)
|
|
var eligibleHelper = this.eligibleHelper = id.isSimple;
|
|
|
|
// a mustache is definitely a helper if:
|
|
// * it is an eligible helper, and
|
|
// * it has at least one parameter or hash segment
|
|
this.isHelper = eligibleHelper && (params.length || hash);
|
|
|
|
// if a mustache is an eligible helper but not a definite
|
|
// helper, it is ambiguous, and will be resolved in a later
|
|
// pass or at runtime.
|
|
}
|
|
|
|
export function PartialNode(partialName, context) {
|
|
this.type = "partial";
|
|
this.partialName = partialName;
|
|
this.context = context;
|
|
}
|
|
|
|
export function BlockNode(mustache, program, inverse, close) {
|
|
if(mustache.id.original !== close.original) {
|
|
throw new Exception(mustache.id.original + " doesn't match " + close.original);
|
|
}
|
|
|
|
this.type = "block";
|
|
this.mustache = mustache;
|
|
this.program = program;
|
|
this.inverse = inverse;
|
|
|
|
if (this.inverse && !this.program) {
|
|
this.isInverse = true;
|
|
}
|
|
}
|
|
|
|
export function ContentNode(string) {
|
|
this.type = "content";
|
|
this.string = string;
|
|
}
|
|
|
|
export function HashNode(pairs) {
|
|
this.type = "hash";
|
|
this.pairs = pairs;
|
|
}
|
|
|
|
export function IdNode(parts) {
|
|
this.type = "ID";
|
|
|
|
var original = "",
|
|
dig = [],
|
|
depth = 0;
|
|
|
|
for(var i=0,l=parts.length; i<l; i++) {
|
|
var part = parts[i].part;
|
|
original += (parts[i].separator || '') + part;
|
|
|
|
if (part === ".." || part === "." || part === "this") {
|
|
if (dig.length > 0) { throw new Exception("Invalid path: " + original); }
|
|
else if (part === "..") { depth++; }
|
|
else { this.isScoped = true; }
|
|
}
|
|
else { dig.push(part); }
|
|
}
|
|
|
|
this.original = original;
|
|
this.parts = dig;
|
|
this.string = dig.join('.');
|
|
this.depth = depth;
|
|
|
|
// an ID is simple if it only has one part, and that part is not
|
|
// `..` or `this`.
|
|
this.isSimple = parts.length === 1 && !this.isScoped && depth === 0;
|
|
|
|
this.stringModeValue = this.string;
|
|
}
|
|
|
|
export function PartialNameNode(name) {
|
|
this.type = "PARTIAL_NAME";
|
|
this.name = name.original;
|
|
}
|
|
|
|
export function DataNode(id) {
|
|
this.type = "DATA";
|
|
this.id = id;
|
|
}
|
|
|
|
export function StringNode(string) {
|
|
this.type = "STRING";
|
|
this.original =
|
|
this.string =
|
|
this.stringModeValue = string;
|
|
}
|
|
|
|
export function IntegerNode(integer) {
|
|
this.type = "INTEGER";
|
|
this.original =
|
|
this.integer = integer;
|
|
this.stringModeValue = Number(integer);
|
|
}
|
|
|
|
export function BooleanNode(bool) {
|
|
this.type = "BOOLEAN";
|
|
this.bool = bool;
|
|
this.stringModeValue = bool === "true";
|
|
}
|
|
|
|
export function CommentNode(comment) {
|
|
this.type = "comment";
|
|
this.comment = comment;
|
|
}
|