Skip to content

Latest commit

 

History

History
242 lines (164 loc) · 5.39 KB

configuration.rst

File metadata and controls

242 lines (164 loc) · 5.39 KB

single: Configuration

Configuration

You can configure docxtemplater with an options object by using the setOptions method.

var doc = new Docxtemplater();
doc.loadZip(zip);
doc.setOptions(options)

Custom Parser

The name of this option is parser (function).

With a custom parser you can parse the tags to for example add operators like '+', '-', or even create a Domain Specific Language to specify your tag values.

To enable this, you need to specify a custom parser.

docxtemplater comes shipped with this parser:

If the template is :

Hello {user}
doc.setData({user: "John"})
doc.setOptions({
    parser: function(tag) {
      // tag is "user"
      return {
        'get': function(scope) {
          // scope will be {user: "John"}
          if (tag === '.') {
            return scope;
          }
          else {
            // Here we return the property "user" of the object {user: "John"}
            return scope[tag];
          }
        }
      };
    },
});

A very useful parser is the angular-expressions parser, which has implemented useful features.

See angular parser for comprehensive documentation

The parser function is given two arguments,

For the template

Hello {#users}{.}{/}

With the data :

{users: ['Mary', 'John']}
function parser(scope, context) [
    console.log(scope); 
    console.log(context);
}

For the tag . in the first iteration, the arguments will be :

scope = { "name": "Jane" }
context = {
  "num": 1, // This corresponds to the level of the nesting, the {#users} tag is level 0, the {.} is level 1
  "scopeList": [
    {
      "users": [
        {
          "name": "Jane"
        },
        {
          "name": "Mary"
        }
      ]
    },
    {
      "name": "Jane"
    }
  ],
  "scopePath": [
    "users"
  ],
  "scopePathItem": [
    0
  ]
  // Together, scopePath and scopePathItem describe where we are in the data, in this case, we are in the tag users[0] (the first user)
}

For example, it is possible to use the {$index} tag inside a loop by using following parser :

function parser(tag) {
    return {
        get(scope, context) {
            if (tag === "$index") {
                const indexes = context.scopePathItem;
                return indexes[indexes.length - 1];
            }
            return scope[tag];
        },
    };
}

Custom delimiters

You can set up your custom delimiters with this syntax:

new Docxtemplater()
    .loadZip(zip)
    .setOptions({delimiters:{start:'[[',end:']]'}})

paragraphLoop

The paragraphLoop option has been added in version 3.2.0.

It is recommended to turn that option on, since it makes the rendering a little bit easier to reason about.

However since it breaks backwards-compatibility, it is turned off by default.

new Docxtemplater()
    .loadZip(zip)
    .setOptions({paragraphLoop:true})

It allows to loop around paragraphs without having additional spacing.

When you write the following template

The users list is : 
{#users}
{name}
{/users}
End of users list

Most users of the library would expect to have no spaces between the different names.

The output without the option is as follows :

The users list is : 

John

Jane

Mary

End of users list

With the paragraphLoop option turned on, the output becomes :

The users list is : 
John
Jane
Mary
End of users list

The rule is quite simple :

If the opening loop ({#users}) and the closing loop ({/users}) are both on separate paragraphs, treat the loop as a paragraph loop (eg create one new paragraph for each loop) where you remove the first and last paragraphs (the ones containing the loop tags).

nullGetter

You can customize the value that is shown whenever the parser (documented above) returns 'null' or undefined. By default the nullGetter is the following function

nullGetter(part, scopeManager) {
    if (!part.module) {
        return "undefined";
    }
    if (part.module === "rawxml") {
        return "";
    }
    return "";
},

This means that the default value for simple tags is to show "undefined". The default for rawTags ({@rawTag}) is to drop the paragraph completely (you could enter any xml here).

The scopeManager variable contains some meta information about the tag, for example, if the template is : {#users}{name}{/users} and the tag name is undefined, scopeManager.scopePath === ["users", "name"]

linebreaks

You can enable linebreaks, eg if your data contains newlines, those will be shown as linebreaks in the document

doc.setOptions({linebreaks:true});
doc.setData({text: "My text,\nmultiline"});
doc.render();