This repo is the parser to convert edge templates to a self invoked Javascript function. Later you can invoke this function by providing a context.
Example:
Input
Hello {{ username }}Output
(function (template, ctx) {
let out = ''
out += 'Hello '
out += `${ctx.escape(ctx.resolve('username'))}`
return out
})(ctx)Notice of use of ctx in the function body. Parser doesn't provide the implementation of ctx, the runtime of template engine should provide it.
The following expressions are supported by the parser.
The identifier is wrapped inside ctx.resolve. The resolve method job is to resolve the value.
In following statement username is the identifier
Hello {{ username }}
A string literal
Hello {{ 'Guest' }}
The [1, 2, 3, 4] is an array expression.
Evens are {{
[1, 2, 3, 4].filter((num) => num % 2 === 0)
}}
The { username: 'virk' } is an Object expression
{{ toJSON({ username: 'virk' }) }}
Following are examples of UnaryExpression.
{{ typeof(username) }}
{{ !!username }}
Here {{ 2 + 2 }} is the binary expression
{{ 2 + 2 }} = 4
Following is the example of LogicalExpression.
{{ username || admin.username }}
{{ username.toUpperCase() }}
{{ username ? username : 'Guest' }}
{{ upper(username) }}
Sequence is not supported in mustache blocks and instead used inside tags. For example:
Everything inside () is a sequence expression.
@component('button', text = 'Submit', type = 'Primary')
{{ Hello `${username}` }}
{{
users.map((user) => {
return user.username
})
}}
Context must have following methods to work with the core parser.
class Context {
// Resolve value for a key
resolve(key: string): any
// make input HTML safe
escape (input: string): string
}The change log can be found in the CHANGELOG.md file.
Everyone is welcome to contribute. Please go through the following guides, before getting started.
thetutlage and contributors.
MIT License, see the included MIT file.