templating-tools

v1.2.0-beta.3Published 3 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

templating-tools

Has some conveniently abstracted functions that are used together with the caching-html-compiler package to implement different template compilers:

  1. templating
  2. static-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

  1. sourceName the name of the input file, used when throwing errors.
  2. contents the contents of the input file, these are parsed to find the top-level tags
  3. tagNames the top-level tags to look for in the HTML.

Example

1const tags = scanHtmlForTags({
2  sourceName: inputPath,
3  contents: contents,
4  tagNames: ["body", "head", "template"]
5});

TemplatingTools.compileTagsWithSpacebars(tags)

Transform an array of tags into a result object of the following form:

1{
2  js: String,
3  body: "",
4  head: String,
5  bodyAttrs: {
6    [attrName]: String
7  }
8}
  1. The contents of every <template> and <body> tag will be compiled into JavaScript with spacebars-compiler, and the code appended to the js field of the result.
  2. The contents of every <head> tag will be concatenated into the head field of the result.
  3. Any attributes found on <body> tags will be added to the bodyAtts field of the result.
  4. Every <template> tag is required to have a name attribute, and no other attributes.
  5. 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:

  1. message The error message to show to the user.
  2. file The filename where the error occured.
  3. line The 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

  1. tag the Tag object in which this compile error occured. The fields on this object are used to populate fields on the resulting error.
  2. message the error message, will be displayed to the user.
  3. overrideIndex optional - 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:

1{
2  // Name of the tag - "body", "head", "template", etc
3  tagName: String,
4  
5  // Attributes on the tag
6  attribs: { [attrName]: String },
7  
8  // Contents of the tag
9  contents: String,
10  
11  // Starting index of the opening tag in the source file
12  // (used to throw informative errors)
13  tagStartIndex: Number,
14  
15  // Starting index of the contents of the tag in the source file
16  // (used to throw informative errors)
17  contentsStartIndex: Number,
18  
19  // The contents of the entire source file, should be used only to
20  // throw informative errors (for example, this can be used to
21  // determine the line number for an error)
22  fileContents: String,
23  
24  // The file name of the initial source file, used to throw errors
25  sourceName: String
26};