๐Ÿ““Application Blocks Definition

Definition of applications blocks for educational applications.

It allows you to easily generate complex application layout for educational content, such as text, images, buttons, forms, and more...

Title Block

Description: Represents a block with a title.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (title).Literal: title
textTitle text content.String

Example:

{
  "id": "exampleTitleBlock",
  "block": "title",
  "text": "Important Title"
}

Text Block

Description: Represents a simple text block.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (text).Literal: text
textText content of the block (supports Markdown).String

Example:

{
  "id": "exampleTextBlock",
  "block": "text",
  "text": "Hello, **this** is a *text* block with Markdown support."
}

Text Counter Block

Description: Represents a text block with an additional counter badge.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: textcounter
textText content of the block.String
counterCounter object with value and style preset.Object

counter object:

PropertyDescriptionType
valueValue to display inside the counterstring or number
presetVisual preset style for the counterEnum: BlockCounterPresetEnum

Example:

{
  "id": "exampleTextCounterBlock",
  "block": "textcounter",
  "text": "You have 2 items pending",
  "counter": {
    "value": 2,
    "preset": "outline"
  }
}

Divider Block

Description: Represents a divider line.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (divider).Literal: divider

Example:

{
  "id": "exampleDividerBlock",
  "block": "divider"
}

Image Block

Description: Represents an image block.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (image).Literal: image
urlURL of the image.String
altAlternative text for the image.String (optional)

Example:

{
  "id": "exampleImageBlock",
  "block": "image",
  "url": "https://example.com/image.jpg",
  "alt": "A descriptive image"
}

Button Block

Description: Represents a button block.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (button).Literal: button
textButton text content.String
styleStyle of the button.Enum: BlockStyleEnum
targetTarget type for the button.Enum: BlockTargetEnum
urlURL the button leads to.String

Example:

{
  "id": "exampleButtonBlock",
  "block": "button",
  "text": "Click me",
  "style": "primary",
  "target": "_blank",
  "url": "https://example.com"
}

Buttons Block

Description: Represents a group of individual buttons, laid out together.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: buttons
buttonsList of buttons in the group.Array of Action Buttons

Each button supports the same structure as the one described in Button Block, including:

  • id, label, style, url, target, action, buttonIcon

Example:

{
  "id": "exampleButtonsBlock",
  "block": "buttons",
  "buttons": [
    {
      "id": "btn1",
      "label": "Save",
      "style": "primary",
      "url": "https://example.com",
      "buttonIcon": {
        "icon": "fa-solid fa-floppy-disk",
        "iconOnly": false,
        "iconPos": "left"
      }
    },
    {
      "id": "btn2",
      "label": "Delete",
      "style": "danger",
      "action": {
        "name": "deleteAction",
        "data": {}
      }
    }
  ]
}

Link Block

Description: Represents a hyperlink block.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (link).Literal: link
textLink text content.String
styleStyle of the link.Enum: BlockStyleEnum
targetTarget type for the link.Enum: BlockTargetEnum
urlURL the link leads to.String

Example:

{
  "id": "exampleLinkBlock",
  "block": "link",
  "text": "Visit our website",
  "style": "secondary",
  "target": "new_tab",
  "url": "https://example.com"
}

File Block

Description: Represents a file attachment block.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (file).Literal: file
textText content for the file block.String
urlURL to the attached file.String
fileTypeType of the attached file.Enum: BlockFileTypeEnum

Example:

{
  "id": "exampleFileBlock",
  "block": "file",
  "text": "Download Document",
  "url": "https://example.com/document.pdf",
  "fileType": "pdf"
}

Iframe Block

Description: Represents an iframe block for embedding external content.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (iframe).Literal: iframe
urlURL of the content to be embedded.String
heightHeight of the iframe in pixels, viewport height, or percentage.String

Example:

{
  "id": "exampleIframeBlock",
  "block": "iframe",
  "url": "https://example.com/embedded-content",
  "height": "500px"
}

Keyvalue Block

Description: Represents a key-value pair block.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (keyvalue).Literal: keyvalue
keyvaluesObject containing key-value pairs. (Values support Markdown)Array of Objects
{ key: string, value: string }

Example:

{
  "id": "exampleKeyvalueBlock",
  "block": "keyvalue",
  "keyvalues": [
    {"key": "Name", "value": "*John Doe* (with Markdown support)"},
    {"key": "Age", "value": 25}
  ]
}

Radio Buttons Block

Description: Represents a group of radio buttons.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: radiobuttons
radioRadio group configuration.Object
urlOptional URL to navigate or send data toString (optional)
actionOptional action to trigger on changeObject (see BlockVisualizerAction)

radio object:

PropertyDescriptionType
valueCurrently selected valuestring or number
optionsList of radio optionsArray<{ label: string, value: any }>
disabledWhether the group is disabledboolean (optional)

Example:

{
  "id": "exampleRadioBlock",
  "block": "radiobuttons",
  "radio": {
    "value": "opt1",
    "disabled": false,
    "options": [
      { "label": "Option 1", "value": "opt1" },
      { "label": "Option 2", "value": "opt2" }
    ]
  }
}

Switch Block

Description: Represents a switch/toggle input block.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: switch
textLabel displayed next to the switchString
checkedWhether the switch is checkedBoolean
disabledWhether the switch is disabledBoolean (optional)
actionOptional action to trigger on changeObject (see BlockVisualizerAction)
urlOptional URL to navigate or send data toString (optional)
targetTarget behavior for the actionEnum: BlockTargetEnum

Example:

{
  "id": "exampleSwitchBlock",
  "block": "switch",
  "text": "Activate notifications",
  "checked": true,
  "action": {
    "name": "toggleNotifications",
    "data": { "enabled": true }
  },
  "url": "https://api.example.com/toggle",
  "target": "_self"
}

Card Block

Description: Represents a clickable card block, optionally linked to an action or external URL.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: card
textMarkdown text displayed inside the card.String
cardCard display configuration.Object
actionOptional action triggered when clicking the card.Object (see BlockVisualizerAction)
urlOptional URL to open on click.String (optional)
targetHow the link should be opened.Enum: BlockTargetEnum

card object:

PropertyDescriptionType
typeCard style typeEnum: CardTypeEnum
borderBorder size of the cardEnum: CardBorderEnum
paddingPadding inside the cardEnum: CardPaddingEnum
isDisabledWhether the card is disabledBoolean (optional)

Example:

{
  "id": "exampleCardBlock",
  "block": "card",
  "text": "**New course available!**",
  "card": {
    "type": "default",
    "border": "small",
    "padding": "medium",
    "isDisabled": false
  },
  "action": {
    "name": "cardAction",
    "data": { "courseId": 42 }
  }
}

Ratings Block

Description: Represents a rating system, allowing users to rate with stars (1โ€“5) and optionally trigger an action.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: ratings
ratingsConfiguration object for the rating.Object
actionOptional action triggered on rating.Object (see BlockVisualizerAction)
urlOptional URL to open/send on rating.String (optional)
targetTarget for the URLEnum: BlockTargetEnum

ratings object:

PropertyDescriptionType
ratingCurrent rating valueNumber
displayRatingShow rating number as textBoolean (optional)
readonlyWhether rating is read-onlyBoolean (optional)
sizeSize of the starsEnum: small, regular, large (default: regular)

Example:

{
  "id": "exampleRatingsBlock",
  "block": "ratings",
  "ratings": {
    "rating": 4,
    "displayRating": true,
    "readonly": false,
    "size": "regular"
  },
  "action": {
    "name": "ratingsAction",
    "data": { "reviewId": 123 }
  }
}

Breadcrumb Block

Description: Represents a breadcrumb navigation block with optional action per step.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: breadcrumb
breadcrumbBreadcrumb configuration object.Object
actionOptional action triggered on navigation.Object (see BlockVisualizerAction)
targetTarget for the breadcrumb linkEnum: BlockTargetEnum

breadcrumb object:

PropertyDescriptionType
itemsList of breadcrumb itemsArray<{ label: string, url: string }>
separatorString separator between itemsString (optional, default: "/")

Example:

{
  "id": "exampleBreadcrumbBlock",
  "block": "breadcrumb",
  "breadcrumb": {
    "items": [
      { "label": "Home", "url": "/home" },
      { "label": "Courses", "url": "/courses" },
      { "label": "Math", "url": "/courses/math" }
    ],
    "separator": ">"
  },
  "target": "_self"
}

Wrapper Block

Description: Represents a wrapper around items with a selectable state.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: wrapper
itemsArray of items displayed inside the wrapper.Array<{ label: string, value: any }>
selectedCurrently selected item's valuestring or number
actionAction triggered on item selection.Object (see BlockVisualizerAction)
urlOptional URL for the actionString (optional)

Example:

{
  "id": "exampleWrapperBlock",
  "block": "wrapper",
  "items": [
    { "label": "Module 1", "value": "mod1" },
    { "label": "Module 2", "value": "mod2" }
  ],
  "selected": "mod1",
  "action": {
    "name": "wrapperSelectedChange",
    "data": {}
  }
}

Selects Block

Description: Represents a group of select dropdowns.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type.Literal: selects
selectsList of select dropdown configurationsArray of select input objects (see below)

Each select supports the following structure:

PropertyDescriptionType
valueCurrently selected valuestring or number
placeholderPlaceholder shown before selectionstring
hasFilterWhether the dropdown includes a filterboolean
selectValuesOptions available for selectionArray<{ name: string, value: string }>

Example:

{
  "id": "exampleSelectsBlock",
  "block": "selects",
  "selects": [
    {
      "value": "opt1",
      "placeholder": "Choose one",
      "hasFilter": true,
      "selectValues": [
        { "name": "Option 1", "value": "opt1" },
        { "name": "Option 2", "value": "opt2" }
      ]
    },
    {
      "value": "optA",
      "placeholder": "Choose second",
      "hasFilter": false,
      "selectValues": [
        { "name": "A", "value": "optA" },
        { "name": "B", "value": "optB" }
      ]
    }
  ]
}

Form Block

Description: Represents a form block with various input types.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (form).Literal: form
actionButtonConfiguration for the form's action button.Object
inputsArray of form input configurations.Array of:

- Objects Input
- Objects Checkbox
- Objects Select
- Objects TreeSelect
urlURL where the form data will be submitted.String

Example:

{
  "id": "exampleFormBlock",
  "block": "form",
  "actionButton": {
    "name": "submit",
    "label": "Submit Form",
    "style": "primary"
  },
  "inputs": [
    {"type": "input", "name": "name", "label": "Your Name", "placeholder": "Enter your name", "value": ""},
    {"type": "checkbox", "name": "subscribe",

 "label": "Subscribe to newsletter", "value": false},
    {"type": "select", "name": "category", "label": "Select Category", "placeholder": "Choose category", "selectValues": [{"name": "Option 1", "value": "option1"}]}
  ],
  "url": "https://example.com/submit-form"
}

Action Button Configuration

Description: Configuration for the action button within the form block. This button triggers the submission of the form.

Properties:

PropertyDescriptionType
namename attribute is used as the identifier for the button.String
labelLabel is the visible text on the button.String
styleStyle of the button.Enum: BlockStyleEnum

Example:

"actionButton": {
  "name": "submit",
  "label": "Submit Form",
  "style": "primary"
}

Form Input Types

Input

Description: Represents a standard text input field.

Properties:

PropertyDescriptionType
typeLiteral value indicating the input type (input).Literal: input
nameName attribute for the input field.String
labelLabel for the input field.String
placeholderOptional placeholder text for the input field.String (optional)
valueDefault value for the input field.String

Example:

{
  "type": "input",
  "name": "username",
  "label": "Username",
  "placeholder": "Enter your username",
  "value": ""
}

Checkbox

Description: Represents a checkbox input field.

Properties:

PropertyDescriptionType
typeLiteral value indicating the input type (checkbox).Literal: checkbox
nameName attribute for the checkbox input.String
labelLabel for the checkbox input.String
valueBoolean value indicating whether the checkbox is checked.Boolean

Example:

{
  "type": "checkbox",
  "name": "subscribe",
  "label": "Subscribe to newsletter",
  "value": false
}

Select

Description: Represents a dropdown select input field.

Properties:

PropertyDescriptionType
typeLiteral value indicating the input type (select).Literal: select
nameName attribute for the select input.String
labelLabel for the select input.String
placeholderPlaceholder text for the select input (optional).String
selectValuesArray of objects representing options for the dropdown.Array of Objects
{ name: string, value: string }

Example:

{
  "type": "select",
  "name": "category",
  "label": "Select Category",
  "placeholder": "Choose category",
  "selectValues": [
    {"name": "Option 1", "value": "option1"},
    {"name": "Option 2", "value": "option2"}
  ]
}

TreeSelect

Description: Represents a tree select input field with hierarchy inside.

Properties:

PropertyDescriptionType
typeLiteral value indicating the input type (treeselect).Literal: treeSelect
nameName attribute for the select input.String
labelLabel for the select input.String
placeholderPlaceholder text for the select input (optional).String
dataArray of objects representing options for tree view. The children propertie is an array of recursive representation of an option Array of Objects
{ data: any, label: string, key: string, selected: boolean, , children: object}

Example:

{
  type: 'treeSelect',
  name: 'my-tree-select',
  label: 'A tree select',
  placeholder: "Select a value",
  treeSelectValues: [
    {
      label: "Without children",
      data: "without-children",
      key: 'mykey1',
    },
    {
      label: "With children",
      data: "with-children",
      key: 'mykey2',
      selected: true,
      children: [
        {

          label: "With parent and children",
          data: "with-parent-and-children",
          key: 'mykey3',
          children: [
            {
              label: "With parent and selected",
              data: "with-parent-and-selected",
              key: 'mykey5',
              selected: true,
            },
            {
              label: "With parent and unselected",
              data: "with-parent-and-unselected",
              key: 'mykey6',
            }
          ]
        },
        {
          label: "My second value without children",
          data: "second-value-without-children",
          key: 'mykey4',
        }
      ]
    }
  ]
}

Textarea

Description: Represents a multiline text input field.

Properties:

PropertyDescriptionType
typeLiteral value indicating the input type.Literal: textarea
nameName attribute for the textarea field.String
labelLabel displayed above the textarea.String
valueDefault value of the textarea.String (optional)
placeholderPlaceholder text shown inside the textarea.String (optional)
rowsNumber of visible text lines.Number (optional)

Example:

{
  "type": "textarea",
  "name": "message",
  "label": "Your message",
  "value": "Hello, world!"
}

Datepicker

Description: Represents a date input field.

Properties:

PropertyDescriptionType
typeLiteral value indicating the input type.Literal: datepicker
nameName attribute for the date input.String
labelLabel displayed above the date picker.String
valueInitial date value.String

Example:

{
  "type": "datepicker",
  "name": "startDate",
  "label": "Start Date",
  "value": "2024-04-01T00:00:00.000Z"
}

Signature

Description: Represents a signature pad input for capturing handwritten signatures.

Properties:

PropertyDescriptionType
typeLiteral value indicating the input type.Literal: signature
nameName attribute for the signature field.String
labelLabel displayed above the signature pad.String
placeholderPlaceholder text inside the pad area (optional).String (optional)
showClearWhether to show a "Clear" button.Boolean (optional)
clearButtonTxtText displayed on the clear button.String (optional)

Example:

{
  "type": "signature",
  "name": "signaturePad",
  "label": "Please sign here",
  "placeholder": "Sign here",
  "showClear": true,
  "clearButtonTxt": "Clear"
}

Banner Block

Description: Represents a block that displays a banner, with differents backgrounds.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (banner).Literal: banner
textThe content of the banner.String
bannerTypeThe type of banner.Enum: BlockBannerEnum

Example:

{
  "id": "exampleBannerBlock",
  "block": "banner",
  "text": "Displays an important information, a warning.",
  "bannerType": "warning"
}

Error Block

Description: Represents a block that displays an error message.

Properties:

PropertyDescriptionType
idIdentifier for the block.String
blockLiteral value indicating the block type (error).Literal: error
textThe content of the error.String

Example:

{
  "id": "exampleErrorBlock",
  "block": "error",
  "text": "Error : this resource was not found."
}

Enums

BlockFileTypeEnum

Description: Enumeration of possible file types for the file block.

Values:

  • pdf: Portable Document Format
  • doc: Microsoft Word Document
  • xls: Microsoft Excel Spreadsheet
  • ppt: Microsoft PowerPoint Presentation
  • img: Image

Example:

"fileType": "pdf"

BlockFormInputTypeEnum

Description: Enumeration of possible input types for the form block.

Values:

  • input: Text input
  • checkbox: Checkbox
  • select: Dropdown select
  • treeSelect: Tree select with hierarchy

Example:

"type": "input"

BlockStyleEnum

Description: Enumeration of possible styles for button and form action button blocks.

Values:

  • primary: Primary style
  • secondary: Secondary style
  • danger: Danger style

Example:

"style": "primary"

BlockTargetEnum

Description: Enumeration of possible target types for button and link blocks.

Values:

  • _blank: Open link in a new tab
  • _self: Open link in the same tab

Example:

"target": "_blank"

BlockBannerEnum

Description: Enumeration of possible types for banner blocks.

Values:

  • info: Grey background
  • success: Light green background
  • warning: Light yellow background
  • error: Light red background

Example:

"bannerType": "success"

BlockCounterPresetEnum

Description: Enumeration of possible presets for text counter blocks.

Values:

  • primary: Primary counter background.
  • blue: Blue counter background.
  • light-blue: Light blue counter background.
  • outline: Outlined counter.
"preset": "primary"

CardTypeEnum

Description: Enumeration of possible colors of card layout.

Values:

  • default: Standard card color.
  • primary: Primary card color.
  • secondary: Secondary card color.
  • blue: Blue card color.

Example:

"type": "default"

CardBorderEnum

Description: Enumeration of possible border sizes for card blocks.

Values:

  • small: Small border.
  • medium: Medium border.
  • large: Large border.

Example:

"border": "small"

CardPaddingEnum

Description: Enumeration of possible paddings inside a card block.

Values:

  • small: Small padding
  • medium: Medium padding

Example:

"padding": "medium"