๐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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (title). | Literal: title |
text | Title text content. | String |
Example:
{
"id": "exampleTitleBlock",
"block": "title",
"text": "Important Title"
}
Text Block
Description: Represents a simple text block.
Properties:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (text). | Literal: text |
text | Text 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: textcounter |
text | Text content of the block. | String |
counter | Counter object with value and style preset. | Object |
counter
object:
Property | Description | Type |
---|---|---|
value | Value to display inside the counter | string or number |
preset | Visual preset style for the counter | Enum: 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (divider). | Literal: divider |
Example:
{
"id": "exampleDividerBlock",
"block": "divider"
}
Image Block
Description: Represents an image block.
Properties:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (image). | Literal: image |
url | URL of the image. | String |
alt | Alternative 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (button). | Literal: button |
text | Button text content. | String |
style | Style of the button. | Enum: BlockStyleEnum |
target | Target type for the button. | Enum: BlockTargetEnum |
url | URL 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: buttons |
buttons | List 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (link). | Literal: link |
text | Link text content. | String |
style | Style of the link. | Enum: BlockStyleEnum |
target | Target type for the link. | Enum: BlockTargetEnum |
url | URL 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (file). | Literal: file |
text | Text content for the file block. | String |
url | URL to the attached file. | String |
fileType | Type 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (iframe). | Literal: iframe |
url | URL of the content to be embedded. | String |
height | Height 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (keyvalue). | Literal: keyvalue |
keyvalues | Object 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: radiobuttons |
radio | Radio group configuration. | Object |
url | Optional URL to navigate or send data to | String (optional) |
action | Optional action to trigger on change | Object (see BlockVisualizerAction) |
radio
object:
Property | Description | Type |
---|---|---|
value | Currently selected value | string or number |
options | List of radio options | Array<{ label: string, value: any }> |
disabled | Whether the group is disabled | boolean (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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: switch |
text | Label displayed next to the switch | String |
checked | Whether the switch is checked | Boolean |
disabled | Whether the switch is disabled | Boolean (optional) |
action | Optional action to trigger on change | Object (see BlockVisualizerAction) |
url | Optional URL to navigate or send data to | String (optional) |
target | Target behavior for the action | Enum: 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: card |
text | Markdown text displayed inside the card. | String |
card | Card display configuration. | Object |
action | Optional action triggered when clicking the card. | Object (see BlockVisualizerAction) |
url | Optional URL to open on click. | String (optional) |
target | How the link should be opened. | Enum: BlockTargetEnum |
card
object:
Property | Description | Type |
---|---|---|
type | Card style type | Enum: CardTypeEnum |
border | Border size of the card | Enum: CardBorderEnum |
padding | Padding inside the card | Enum: CardPaddingEnum |
isDisabled | Whether the card is disabled | Boolean (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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: ratings |
ratings | Configuration object for the rating. | Object |
action | Optional action triggered on rating. | Object (see BlockVisualizerAction) |
url | Optional URL to open/send on rating. | String (optional) |
target | Target for the URL | Enum: BlockTargetEnum |
ratings
object:
Property | Description | Type |
---|---|---|
rating | Current rating value | Number |
displayRating | Show rating number as text | Boolean (optional) |
readonly | Whether rating is read-only | Boolean (optional) |
size | Size of the stars | Enum: 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: breadcrumb |
breadcrumb | Breadcrumb configuration object. | Object |
action | Optional action triggered on navigation. | Object (see BlockVisualizerAction) |
target | Target for the breadcrumb link | Enum: BlockTargetEnum |
breadcrumb
object:
Property | Description | Type |
---|---|---|
items | List of breadcrumb items | Array<{ label: string, url: string }> |
separator | String separator between items | String (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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: wrapper |
items | Array of items displayed inside the wrapper. | Array<{ label: string, value: any }> |
selected | Currently selected item's value | string or number |
action | Action triggered on item selection. | Object (see BlockVisualizerAction) |
url | Optional URL for the action | String (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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type. | Literal: selects |
selects | List of select dropdown configurations | Array of select input objects (see below) |
Each select supports the following structure:
Property | Description | Type |
---|---|---|
value | Currently selected value | string or number |
placeholder | Placeholder shown before selection | string |
hasFilter | Whether the dropdown includes a filter | boolean |
selectValues | Options available for selection | Array<{ 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (form). | Literal: form |
actionButton | Configuration for the form's action button. | Object |
inputs | Array of form input configurations. | Array of: - Objects Input - Objects Checkbox - Objects Select - Objects TreeSelect |
url | URL 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:
Property | Description | Type |
---|---|---|
name | name attribute is used as the identifier for the button. | String |
label | Label is the visible text on the button. | String |
style | Style 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:
Property | Description | Type |
---|---|---|
type | Literal value indicating the input type (input). | Literal: input |
name | Name attribute for the input field. | String |
label | Label for the input field. | String |
placeholder | Optional placeholder text for the input field. | String (optional) |
value | Default 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:
Property | Description | Type |
---|---|---|
type | Literal value indicating the input type (checkbox). | Literal: checkbox |
name | Name attribute for the checkbox input. | String |
label | Label for the checkbox input. | String |
value | Boolean 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:
Property | Description | Type |
---|---|---|
type | Literal value indicating the input type (select). | Literal: select |
name | Name attribute for the select input. | String |
label | Label for the select input. | String |
placeholder | Placeholder text for the select input (optional). | String |
selectValues | Array 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:
Property | Description | Type |
---|---|---|
type | Literal value indicating the input type (treeselect). | Literal: treeSelect |
name | Name attribute for the select input. | String |
label | Label for the select input. | String |
placeholder | Placeholder text for the select input (optional). | String |
data | Array 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:
Property | Description | Type |
---|---|---|
type | Literal value indicating the input type. | Literal: textarea |
name | Name attribute for the textarea field. | String |
label | Label displayed above the textarea. | String |
value | Default value of the textarea. | String (optional) |
placeholder | Placeholder text shown inside the textarea. | String (optional) |
rows | Number 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:
Property | Description | Type |
---|---|---|
type | Literal value indicating the input type. | Literal: datepicker |
name | Name attribute for the date input. | String |
label | Label displayed above the date picker. | String |
value | Initial 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:
Property | Description | Type |
---|---|---|
type | Literal value indicating the input type. | Literal: signature |
name | Name attribute for the signature field. | String |
label | Label displayed above the signature pad. | String |
placeholder | Placeholder text inside the pad area (optional). | String (optional) |
showClear | Whether to show a "Clear" button. | Boolean (optional) |
clearButtonTxt | Text 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (banner). | Literal: banner |
text | The content of the banner. | String |
bannerType | The 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:
Property | Description | Type |
---|---|---|
id | Identifier for the block. | String |
block | Literal value indicating the block type (error). | Literal: error |
text | The 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 Formatdoc
: Microsoft Word Documentxls
: Microsoft Excel Spreadsheetppt
: Microsoft PowerPoint Presentationimg
: Image
Example:
"fileType": "pdf"
BlockFormInputTypeEnum
Description: Enumeration of possible input types for the form block.
Values:
input
: Text inputcheckbox
: Checkboxselect
: Dropdown selecttreeSelect
: Tree select with hierarchy
Example:
"type": "input"
BlockStyleEnum
Description: Enumeration of possible styles for button and form action button blocks.
Values:
primary
: Primary stylesecondary
: Secondary styledanger
: 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 backgroundsuccess
: Light green backgroundwarning
: Light yellow backgrounderror
: 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 paddingmedium
: Medium padding
Example:
"padding": "medium"
Updated 7 days ago