@blastjs/templating-tools v1.2.1
templating-tools
Has some conveniently abstracted functions that are used together with the caching-html-compiler package to implement different template compilers:
templatingstatic-html
These functions contain some code shared between the above build plugins, and if you are building your own build plugin they can be useful too. But they aren't guaranteed to be helpful for every use case, so you should carefully decide if they are appropriate for your package.
TemplatingTools.scanHtmlForTags(options)
Scan an HTML file for top-level tags as specified by options.tagNames, and return an array of Tag objects. See more about Tag objects below.
Options
sourceNamethe name of the input file, used when throwing errors.contentsthe contents of the input file, these are parsed to find the top-level tagstagNamesthe top-level tags to look for in the HTML.
Example
const tags = scanHtmlForTags({
sourceName: inputPath,
contents: contents,
tagNames: ["body", "head", "template"]
});TemplatingTools.compileTagsWithSpacebars(tags)
Transform an array of tags into a result object of the following form:
{
js: String,
body: "",
head: String,
bodyAttrs: {
[attrName]: String
}
}- The contents of every
<template>and<body>tag will be compiled into JavaScript withspacebars-compiler, and the code appended to thejsfield of the result. - The contents of every
<head>tag will be concatenated into theheadfield of the result. - Any attributes found on
<body>tags will be added to thebodyAttsfield of the result. - Every
<template>tag is required to have anameattribute, and no other attributes. - The
<head>tag is not allowed to have any attributes.
TemplatingTools.CompileError
This error is thrown when a compilation error happens. If you catch it, look for the following fields, which are set by TemplatingTools.throwCompileError:
messageThe error message to show to the user.fileThe filename where the error occured.lineThe line number where the error occured.
TemplatingTools.throwCompileError(tag, message, overrideIndex)
Throw a TemplatingTools.CompileError with the right properties. Handles generating the line number of the error for you.
Arguments
tagthe Tag object in which this compile error occured. The fields on this object are used to populate fields on the resulting error.messagethe error message, will be displayed to the user.overrideIndexoptional - if provided will be used to determine the line number of the error; otherwise the index of the start of the tag will be used.
Tag object
The scanHtml and compileTagsWithSpacebars functions communicate via an array of Tag objects, which have the following form:
{
// Name of the tag - "body", "head", "template", etc
tagName: String,
// Attributes on the tag
attribs: { [attrName]: String },
// Contents of the tag
contents: String,
// Starting index of the opening tag in the source file
// (used to throw informative errors)
tagStartIndex: Number,
// Starting index of the contents of the tag in the source file
// (used to throw informative errors)
contentsStartIndex: Number,
// The contents of the entire source file, should be used only to
// throw informative errors (for example, this can be used to
// determine the line number for an error)
fileContents: String,
// The file name of the initial source file, used to throw errors
sourceName: String
};