IVariable interface
đ Descriptionâ
Describes the interface that holds a variable.
đ Type declarationâ
interface IVariable { id: string;Readonly string: string;Readonly hasValue: boolean;Readonly value?: any;ReadonlyOptional reference?: string;ReadonlyOptional content: { value: string; type: "string" | "text" | "markdown"; separator: string; }[];Readonly slot?: Slot;ReadonlyOptional subscribe: (fnChange: (variable: IVariable) => void, context?: {}) => void;Function unsubscribe: (context: {}) => void;Function }
đī¸ Propertiesâ
đˇī¸ content
â
Contains the content for the variable. This array has at least one item but can contain more if the variable has multiple values in different contexts.
Typeâ
{
/*
* Contains the type of value. It can be one of the following values:
* - `string`: `value` contains the variable value as a string;
* - `text`: `value` contains text with basic markdown support for referencing variables;
* - `markdown`: `value` contains markdown content with support for basic formatting, hyperlinks and referencing variables.
*/
type: "string" | "text" | "markdown";
/* Contains the value defined by the `type` property. */
value: string;
/* Contains the character to use as separator when concatenating multiple value content parts. */
separator: string;
}[]
đˇī¸ hasValue
â
Retrieves if a valid value is present.
Typeâ
boolean
đˇī¸ id
â
Contains the identifier of the variable.
Typeâ
string
đˇī¸ reference
â
Retrieves the additional reference that can be set. This reference is used by some blocks to store an additional identifier related to the value. For example, when a value from a dropdown block is set, the reference is used to store the identifier of the selected item.
Typeâ
string
đˇī¸ slot
â
Reference to the slot that defines the data value.
Typeâ
đˇī¸ string
â
Contains the value as a string.
Typeâ
string
đˇī¸ value
â
Retrieves the value (can be undefined
when there is no value set).
Typeâ
any
âļī¸ Functionsâ
đ§ subscribe
â
Subscribes a listener to the variable. This listener function is invoked when the variable changes. It is also possible to supply a context. This context is used when you want to unsubscribe
all the listener functions attached to the supplied context.
Signatureâ
(onChange: (variable: IVariable) => void, context?: {}) => void
Parametersâ
Name | Type | Optional | Description |
---|---|---|---|
onChange | (variable: IVariable ) => void | No | Specifies the function that is called when a change is detected. |
Exampleâ
const variable: IVariable;
const context = {};
// Subscribes a listener function and attaches the function to the supplied context
variable.subscribe((v) => console.log(`New value: ${v.string}`), context);
// And, when you want to unsubscribe all listeners attached to the context do:
variable.unsubscribe(context);
đ§ unsubscribe
â
Unsubscribe the listener functions attached to a context.
Signatureâ
(context: {}) => void
Parametersâ
Name | Type | Optional | Description |
---|---|---|---|
context | {} | No | Specifies the context to unsubscribe. |