Skip to main content

Adding help links to the builder

It is possible to add some assistive buttons/links in the builder to help users better understand certain concepts of the builder. To do so you need to specify links for the topics using the helpTopics property.

The following topics can be defined:

Example

This example shows the configuration used in the Tripetto Studio application.

import { Builder } from "@tripetto/builder";

const builder = new Builder({
helpTopics: {
prologue: "https://tripetto.com/help/articles/how-to-add-a-welcome-message/",
epilogue: "https://tripetto.com/help/articles/how-to-add-one-or-multiple-closing-messages/",
branches: "https://tripetto.com/help/articles/discover-the-power-of-branches-for-your-logic/",
conditions: "https://tripetto.com/help/articles/learn-about-different-types-of-branch-conditions-for-your-logic/",
culling: "https://tripetto.com/help/articles/learn-about-different-types-of-branch-behavior-for-your-logic/",
terminators: "https://tripetto.com/help/articles/learn-about-different-types-of-branch-endings-for-your-logic/"
}
});

builder.open();

Run Try on CodePen