Skip to main content

Docx to PDF

Overview

Build a PDF document from a '.docx' template file and data. You can call this document from a logix function, it returns base64 (text) so it can output to a text parameter.

PDF Generation

All you need to do is:

  1. Create a document layout in Microsoft Word or Libre Office (free) and save it as a docx
  2. Map your data to the docx template by injecting it with {instructions and variable placeholders}
  3. Upload it to your Comnoco Docx to PDF file

This will embed the document with it's instructions and variable placeholders into your Comnoco template and merge it at runtime with the data you pass into the template allowing you to create customised transactional PDFs that you can then return in your API or send elsewhere (for example store or email them).

tip

The PDF is returned as a base64 encoded string. If you want to return it directly to a browser, just set it as the only text output parameter on an API function and set the content type to application/PDF.

The Docx to PDF block (like functions) allows you to define input variables. These allow you to pass data in from wherever you use/call the template. It also allows you to set internal variables for use when transforming building your data into the shape you need.

Data that the template uses must be written (by you/your process) to the Template Data variable.

tip
  • If you want to add images or links use the helper blocks in the add point. These will build the data structure required. You will also need to use a set boolean to set the Enable Images and Links variable to true. This is false by default to save processing overhead.
  • If data isn't available during the template merge, the Missing Tags Value variable defines what is shown in the field placeholders. You can change the default by using a set text block. The default behaviour is to output the word undefined.

Example template file and data

You can find an example template and data here which you can import to your workspace and use to play with document generation.

Template Placeholders

To add {template variable placeholders} into your docx document please refer to the below:

Data Mapping - Fields

{Path-to-Data} in dot notation.

For example, if your data looks like this (either json input data or data in a Data Structure block): Data Structure

{
"address": {
"street": "123 Main St",
"city": "Anytown",
"country": "USA"
},
"age": 30,
"hobbies": ["reading", "hiking", "photography"],
"name": "John Doe",
"projects": [
{
"title": "Project A",
"description": "Description for Project A"
},
{
"title": "Project B",
"description": "Description for Project B"
}
]
}

Then placeholders for this data to access objects, nested objects, and items in an array using dot notation would be:

  • Accessing Items:

    • To access the name of the person: {name} (This will give John Doe).
    • To access the age of the person: {age} (This will give 30).
  • Accessing Nested Items:

    • To access the street of the address: {address.street} (This will give 123 Main St).
    • To access the city of the address: {address.city} (This will give Anytown).
    • To access the country of the address: {address.country} (This will give USA).
  • Accessing Items in an Array:

    • Arrays are zero-indexed, meaning the first item is at position 0, the second at position 1, and so on.
    • To access the first hobby: {hobbies[0]} (This will give reading).
    • To access the second hobby: {hobbies[1]} (This will give hiking).
    • To access the third hobby: {hobbies[2]} (This will give photography).
  • Accessing Items Nested Within an Array:

  • To access the title of the first project: {data.projects[0].title} (This will give Project A).

    • To access the description of the first project: {data.projects[0].description} (This will give Description for Project A).
    • To access the title of the second project: {data.projects[1].title} (This will give Project B).
    • To access the description of the second project: {data.projects[1].description} (This will give Description for Project B).

Data Mapping - Conditional Parts

To control whether or not something shows in your template depending on a condition, wrap your data in an object that contains a boolean (true/false flag) and use that to control your output.

For example, to conditionally control the output of a date and associated title, put the following into your template:

{#section}{#show}
Today: {date}
{/show}
{/section}

...and control it with this data: Condition

"section": {
"date": "27 Sep 2023 15:27:23",
"show": true
}

Data Mapping - Loops

Where you have a list or array of repeating data, you can output it as repeating items.

For example, with the below data:

Loop

"items": [
{
"description": "Menorca is the quietest of the islands, start here.",
"dest": "Menorca",
"number": "1",
},
{
"description": "Menorca is busier, go here next.",
"dest": "Majorca",
"number": "2"
},
{
"description": "Party time. Let's go!",
"dest": "Ibiza",
"number": "3"
}
]

...output it as a repeating list of the dest field with {#items}{dest}{/items}. If you want a new line, ensure you add a new line between the tags.

Tables

Comnoco will automatically find and repeat table lines for you if you put a repeating item into a table row:

Table

Lists

Comnoco will automatically find and repeat bullet points or numbered lists for you if you define a repeating item and tell it to search for the p constructor with this format:

List

Images require a special object in your data that contains the details Comnoco requires to inject and render them. The data structure is created automatically for you when you choose the Image helper from the add point when inside a document template.

Helper

These will add data as required:

HelperData

And can be inserted into your template with {c_spo}{Image1.comnoco_image}{c_spc} for images or {c_spo}{link1.comnoco_link}{c_spc} for links where Image1 and link1 are the paths to your corresponding data objects.

tip

Images must be provided as URLs, ensure the source image is not too large or it will increase the size of your output PDF and slow down processing.


Parameters

ParameterParameterValid BlocksRequired
Use Dynamic NameShow the Dynamic Name slot in the tree so that it can be set dynamicallyBoolean Block GroupNo
Dynamic NameThe dynamic name of this itemText Block GroupNo
AttributesMetadata values for this block. Used in XML and multipart/form-data.Text Block GroupNo
Input ParametersDefine any input parameters which you want to pass in to this template (eg, user data, flags for display certain sections, etc.)Basic Type Block GroupNo
Internal VariablesDefine any variables which you want to use throughout this template which are only to be used in this template here (eg, reusable text strings, number of rows processed).Basic Type Block GroupNo
Template fileThe .docx template file to use for this documentTemplate File Block GroupNo
Template Data VariablesThese parameters are required to generate your document. You can read and write to them. Use 'Set' blocks to set their values.Basic Type Block GroupNo
Build Template DataTransform your incoming data to create data to feed your templateProcess Block GroupNo