Templates

Templates are the way you can use local variables and custom Javascript within your tasks

One of the ways to create dynamic questionnaires is using templates. Templates are a format that allows you to dynamically generate properties for your elements using the environmental variables.

Syntax

A template is formed as a string that has a section of the form <%= %> in it. Within these brackets you can inject any environmental variables that you like. Environmental variables hold information that you set in advance or derive from the current or previous tasks, you should really read about them before you advance any further. For example: the following message task will print out “Hi Andy, this is an example for the use of templates”.

API.addGlobal({
    userName: 'Andy'
});

var task = {
    type: 'message',
    template: 'Hi <%= global.userName %>, this is an example for the use of templates',
    keys: ' '
}

This example was an extremely simple use case. Templates actually allow you to run any Javascript that you like, so they allow to do some really complex things. We’ll give just one example of how you can make a simple condition within a template using a conditional operator. The player uses lodash templates internally, you should look them up to see some of the more advanced uses. The following message will read “Your name is Andy” if userName actually equals Andy, and “Your name is not Andy” otherwise.

var task = {
    type: 'message',
    template: 'Your name is <%= global.userName === 'Andy' ? '' : 'not' %> Andy',
    keys: ' '
}

You can replace any string setting in your elements with a template, and it will be rendered according to the environmental variables. The exception to this rule are the inherit and mixer properties that cannot use templates. The reason for this is the sequencers order of execution. It first mixes, then inherits and only finally parses templates - so that the templating effect is not activated in time to be used for mixing or inheritance.

Real time (reRender)

Normaly each template gets rendered only once, when it is first encountered. Sometimes you may want it to update in response to various realtime changes. In order to for the templates to re-render each time you should set the reRender property to be true.


Last modified March 11, 2021: setup hugo (11980dc)