The goal is to be able to modify values of variables used in templates. It enables future functionality such as escaping, inlining etc. It adds support applying predefined pipes to variables. Pipes can be applied to variable substitution in with and parameter substitution expressions. They work in similar way to piping in Unix where each pipe applied to the compiled result of pipe before. It adds support for using pipes in `with` and parameter substitution expressions. It also refactors how their regex is build to reuse more of the logic by abstracting regex building into a new class. Finally, it separates and extends documentation for templating.
29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import { RegexParser, IPrimitiveExpression } from '../Parser/Regex/RegexParser';
|
|
import { FunctionParameter } from '@/application/Parser/Script/Compiler/Function/Parameter/FunctionParameter';
|
|
import { ExpressionRegexBuilder } from '../Parser/Regex/ExpressionRegexBuilder';
|
|
|
|
export class ParameterSubstitutionParser extends RegexParser {
|
|
protected readonly regex = new ExpressionRegexBuilder()
|
|
.expectExpressionStart()
|
|
.expectCharacters('$')
|
|
.matchUntilFirstWhitespace() // First match: Parameter name
|
|
.matchPipeline() // Second match: Pipeline
|
|
.expectExpressionEnd()
|
|
.buildRegExp();
|
|
|
|
protected buildExpression(match: RegExpMatchArray): IPrimitiveExpression {
|
|
const parameterName = match[1];
|
|
const pipeline = match[2];
|
|
return {
|
|
parameters: [ new FunctionParameter(parameterName, false) ],
|
|
evaluator: (context) => {
|
|
const argumentValue = context.args.getArgument(parameterName).argumentValue;
|
|
if (!pipeline) {
|
|
return argumentValue;
|
|
}
|
|
return context.pipelineCompiler.compile(argumentValue, pipeline);
|
|
},
|
|
};
|
|
}
|
|
}
|