Skip to main content

i4designer Knowledge Base

Utilities

Abstract

Check out these articles and learn more details about the i4designer Utilities components and how to use them in your projects.

The components under the Utility category provides the user with various option to manipulate signal values by means of script definitions. Each component will be described in the upcoming sections of this article.

Tip

For a set of step-based tutorials describing the usage of the Utilities components, please visit the dedicated tutorials, here.

Local script
Abstract

Check out this article and learn more details about the i4designer Local script component and how can you use them in your projects.

The i4designer Local script is a utility component that enables the usage of temporary signals inside a client session, also known as Client-side signals.

Note

The Client-side signals have multiple purposes, from simple things such as supporting state switching, based on client actions (ex. going in/out of a “selected” state when clicking on a button) to more complex scenarios:

  • Multiplexing/demultiplexing array signal values

  • Providing aggregated values as signals (ex. average/min/max value of log values over a certain time window)

  • Providing client-side scripting (client VChannel functionality)

Given the fact that Client-side Signals only exist in the client application and have a life that is directly related to the session lifetime, there is no security concept around them. Client-side Signals can be written or read from any component.

Client-side signals are identified by the case-sensitive prefix: "local://". When the connector is requested such a signal, will be registered internally but it will not include the list of signals that are registered with the server.

The picture below illustrates the general behavior of the Local script component:

Local_script_behaviour.jpg

Representation of the Local script behavior

The Local script component can be found under the Utilities category:

local_script.jpg

The Local script component

Category

Property

Description

Common

Name

Sets the component's name.

name_of_the_component_script.jpg

Object ID

Sets the Object ID of the component. By defining an object ID for the control, it can be passed as SignalPrefix when using parameter passing in navigation. The value of the Object ID can be used via a placeholder [OID] in other properties of this extension. The placeholder is supported in all signal properties, symbolic text, and states.

Example: Setpoint [OID]

object_id.jpg

Signal

Input signal name

The name of the signals that will provide the input values of the script. The signals can be added as an array list, by manually filling in the name of the Signal(s).

input_signal_name.jpg

Output signal name

The name of the signal to which the output will be written. If left empty, no writing will occur.

output_signal_name.jpg

Configuration

Is async

If set to true, the function must return a Promise and it will be evaluated asynchronously. This allows to perform asynchronous operations (such as writing for the connector to perform an operation) and then writing the output value.

is_async.jpg

Script body

Sets the JavaScript function body for processing the inputs. The JS body can be added directly to the dedicated text area.

script_body.jpg

Clicking the Open Editor Page button opens a separate tab where the user can add the JS body, benefiting from a larger text area.

script_body_editor.jpg

The function will receive three parameters that can be used in the script:

  • values – an object which maps the signal name to a value (ex. values[“Local Second”]returns the current value of the local second)

  • valuesArray – an array which contains the values of each signal from the InputSignalNames in the same order (ex. valuesArray[0] contains the value of the InputSignalNames[0] signal)

  • signalService – the signal service instance which can be used in the script to gain full access to the signal operations.

The value returned by the function will be written to the OutputSignalName if provided.

Transform

Width

Sets the width of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component width can also be adjusted directly on the design surface by means of mouse manipulation.

width.jpg

Height

Sets the height of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component height can also be adjusted directly on the design surface by means of mouse manipulation.

height.jpg

Angle

Sets the rotation angle using the up and down arrows to increase and decrease, or by manually typing the desired degree value.

The component angle can also be adjusted directly on the design surface by means of mouse manipulation.

angle.jpg

Left

Specifies the X (horizontal) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component X coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

left.jpg

Top

Specifies the Y (vertical) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component Y coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

top.jpg

Disable flip

Disables any flip transformation for this component. This keeps the component in the default position event when its container is flipped.

disable_flip.jpg

Horizontal flip

Flips the selected component horizontally.

horizontal_flip.jpg

Vertical flip

Flips the selected component vertically.

vertical_flip.jpg

Tip

For a step-based guide describing the usage of the Local script component, please also visit the dedicated tutorial, here.

To use SignalService functions, please check the complete list, below.

Function keyword

Description

getSignal

getSignal(name: string): Signal;

Reads the values of the supplied signals.

  • param {Signal[]} signals - The signals to read

  • returns {Promise<ISignalOperationOutcome>} - The outcome of the read operation.

  • memberOf SignalService

readSignals

readSignals(signals: Signal[]): Promise<ISignalOperationOutcome>;

Writes the signal values.

  • param signalValues - A dictionary that maps signal names to values.

  • returns {Promise<ISignalOperationOutcome>} - The outcome of the write operation.

writeSignals

writeSignals(signalValues: Dictionary<any>): Promise<ISignalOperationOutcome>;

Writes the signal values with password reinforcement. Local signals are written directly, ignoring the password reinforcement.

  • param {string} userPassword - The user password

  • param {Dictionary<any>} signalValues - A dictionary that maps signal names to values

  • returns {Promise<ISignalOperationOutcome>} - The outcome of the write operation.

  • memberOf SignalService

writeSignalsSecure

writeSignalsSecure(userPassword: string, signalValues: Dictionary<any>)
Promise<ISignalOperationOutcome>;

Gets the signal names that match a filter and data page.

  • param {SignalNameFilter} filter - The filter for the signal names

  • param {number} startIndex - The starting index

  • param {number} count - The number of items to return.

  • returns {Promise<SignalName[]>} - The signal names and IDs.

  • memberOf SignalService

getSignalNames

getSignalNames(filter: SignalNameFilter, startIndex: number, count: number): Promise<SignalName[]>;

Gets all signal names by requesting them page by page. This operation is cached, so multiple requests to it will return the same results.

getAllSignalNames

getAllSignalNames(): Promise<SignalName[]>;
Local array splitter
Abstract

Check out this article and learn how to use the Local array splitter component in order to break elements of a Signal.

The i4designer Local array splitter component is a utility component that allows the i4designer components to interact with individual array values in a simple and straightforward way.

The picture below illustrates the general behavior of the Local array splitter component:

Behaviour_of_Local_array_splitter.jpg

Representation of the Local array splitter behavior

The Local array splitter component can be found under the Utilities category:

local_array_splitter_component.jpg

The Local array component

Tip

For a step-based guide describing a basic use case using the Local array splitter component, please visit the dedicated tutorial, here.

Category

Property

Description

Configuration

Array max size

If set, it will limit the number of signals for each array element. If not set, it will add signals as the array values are read and the array grows in size. Once signals are allocated, they will not be released unless the entire component is released. It is recommended to set this value if possible, otherwise, large numbers of signals can be created if the input signal value contains a large number of items.

array_max_size.jpg

Array min size

If set, it will force the array to have a minimum size. This is useful for pre-creating local signals and it is also used when writing back the value to generate the array.

array_min_size.jpg

Array name template

The name template is used for creating the local signals. The local signals will automatically have the ‘local://’ prefix and it should not be specified in the template. Two placeholders can be used in the name template.

{InputSignalName}{Index}

  • InputSiganlName - the name of the signal specified as input

  • Index - the index of the value in the array (1-based)

array_name_template.jpg

Array value type

The type of values that the array contains, If multiple value types can be in the array, then it should be set to "String". This is used for parsing the values and providing a native representation in the local signals, as well as for formatting them when writing to the output.

array_value_type.jpg

Input array element quote

The quote character is used around each array element. By default, the " (double quotation mark) character is applied.

input_array_element_quote.jpg

Input array element separator

The separator is used between array elements. By default, the , (comma) character is applied.

input_array_element_separator.jpg

Input array left delimiter

The left array delimiter is used for parsing string arrays. By default, the [ (square open bracket) character is applied.

input_array_left_delimiter.jpg

Input array right delimiter

The right array delimiter is used for parsing string arrays. By default, the ] (square closed bracket) character is applied.

input_array_right_delimiter.jpg

Input array strip whitespace

If set to true, the parser will strip any whitespace between array elements and at the beginning and end of the array. If false, no stripping will be done inside the element quotes if they are defined, regardless of the value of this property.

input_array_strip_whitespace.jpg

Input array type

Describes how the input array will be written:

  • Native - the component expects the signal value to be an actual array.

  • String - the component will parse the string signal value and will try to extract the array value out of it.

input_array_type.jpg

Output array element quote

The quote character is used around each array element. By default, the " (double quotation mark) character is applied.

output_array_element_quote.jpg

Output array element separator

The separator is used between array elements. By default, the , (comma) character is applied.

output_array_element_separator.jpg

Output array left delimiter

The left array delimiter is used for parsing string arrays. By default, the [ (square open bracket) character is applied.

output_array_left_delimiter.jpg

Output array right delimiter

The right array delimiter is used for parsing string arrays. By default, the ] (square closed bracket) character is applied.

output_array_right_delimiter.jpg

Output array type

Describes how the output array will be written:

  • Native - the component expects the signal value to be an actual array.

  • String - the component will parse the string signal value and will try to extract the array value out of it.

output_array_type.jpg

Output keep nulls

If set to true, null values will be written to the array, otherwise, only non-null values will be written.

output_keep_nulls.jpg

Output write buffering interval

The number of milliseconds used in Debounced/Sample/Throttle modes.

output_write_buffering_interval.jpg

Output write buffering mode

Describes how the writing to the output signal is done:

  • None –as soon as a new value is written into one of the local signals, the whole array will be written to the output

  • Debounced –after the OutputWriteBufferingInterval time elapses from the last change to any of the local signals, the value is written

  • Sampled –every OutputWriteBufferingInterval milliseconds, the value will be written, independent of the values have changed or not

  • Throttle –after the first change it will write the value after a maximum of OutputWriteBufferingInterval milliseconds. It will stop as soon as there are no more changes and the interval elapses.

  • WaitAll –waits until all local signals corresponding to array elements are written to and then writes the output.

  • Triggered –waits untilthe signalwith theOutputWriteTriggerSignalNamechanges it’s value

output_write_buffering_mode.jpg

Output write trigger signal name

If set and the OutputWriteBufferingMode is set to Triggered, it will trigger a write every time its value changes.

output_write_trigger_signal_name.jpg

Undefined default value

The default value is used when UndefinedValueHanding is set to UseDefaultValue. The default value is parsed/formatted according to the value of the ArrayValueType property.

undefined_default_value.jpg

Undefined value handling

The default value is used when UndefinedvalueHandling is set to UseDefaultvalue. The default value is parsed/formatted according to the value of the ArrayValueType property.

  • UseNull -signal values without a defined value will be treated as nulls when written to the output

  • UseDefaultValue –signal values without a defined value will be replaced with the DefaultValue

undefined_value_handling.jpg

Write on read

If set to true, then every time the input value changes, it will go through the entire pipeline and write to the output.

write_on_read.jpg

Signal

Input signal name

The name of the signals that will provide the input values of the script.

input_signal_name.jpg

Output signal name

The name of the signal to which the output will be written. If left empty, no writing will occur.

output_signal_name.jpg

Common

Object ID

Sets the Object ID of the component. By defining an object ID for the control, it can be passed as SignalPrefix when using parameter passing in navigation. The value of the Object ID can be used via a placeholder [OID] in other properties of this extension. The placeholder is supported in all signal properties, symbolic text, and states.

Example: Setpoint [OID]

object_id.jpg

Transform

Width

Sets the width of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component width can also be adjusted directly on the design surface by means of mouse manipulation.

width.jpg

Height

Sets the height of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component height can also be adjusted directly on the design surface by means of mouse manipulation.

height.jpg

Angle

Sets the rotation angle using the up and down arrows to increase and decrease, or by manually typing the desired degree value.

The component angle can also be adjusted directly on the design surface by means of mouse manipulation.

angle.jpg

Left

Specifies the X (horizontal) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component X coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

left.jpg

Top

Specifies the Y (vertical) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component Y coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

top.jpg

Disable flip

Disables any flip transformation for this component. This keeps the component in the default position even when its container is flipped.

disable_flip.jpg

Horizontal flip

Flips the selected component horizontally.

horizontal_flip.jpg

Vertical flip

Flips the selected component vertically.

vertical_flip.jpg
Custom CSS
Abstract

Check out this article and learn more details about the Custom CSS utility component and the design-time properties.

The Custom CSS component allows the users of i4designer to use CSS scripts in their visualizations, to append custom style sheets on load.

custom_css.jpg

The Custom CSS component

Tip

For a set of step-based guides describing the Custom CSS component please visit the dedicated tutorial, here.

Category

Property

Description

Common

Object ID

Sets the Object ID of the component. By defining an object ID for the control, it can be passed as SignalPrefix when using parameter passing in navigation. The value of the Object ID can be used via a placeholder [OID] in other properties of this extension. The placeholder is supported in all signal properties, symbolic text, and states.

For more details, please visit the dedicated tutorials, here.

Configuration

CSS body

Allows the user to add the CSS body. The CSS body can be added directly in the dedicated text area.

css_body.jpg

Tip

Please ensure that your custom CSS script is applied and overrides any existing CSS rules by using the “!important“ flag.

Clicking the Open Editor Page button opens a separate tab where the user can add the CSS body, benefiting from a larger text area.

css_body_2.jpg

Transform

Angle

Sets the rotation angle using the up and down arrows to increase and decrease, or by manually typing the desired degree value.

The component angle can also be adjusted directly on the design surface by means of mouse manipulation.

angle.jpg

Height

Sets the height of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component height can also be adjusted directly on the design surface by means of mouse manipulation.

height.jpg

Left

Specifies the X (horizontal) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component X coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

left.jpg

Horizontal flip

Flips the selected component horizontally.

horizontal_flip.jpg

Top

Specifies the Y (vertical) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component Y coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

top.jpg

Vertical flip

Flips the selected component vertically.

vertical_flip.jpg

Width

Sets the width of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component width can also be adjusted directly on the design surface by means of mouse manipulation.

width.jpg

Disable flip

Disables any flip transformation for this component. This keeps the component in the default position even when its container is flipped.

disable_flip.jpg

Horizontal flip

Flips the selected component horizontally.

horizontal_flip.jpg

Vertical flip

Flips the selected component vertically.

vertical_flip.jpg
Custom script
Abstract

Check out this article and learn more details about the Custom script utility component and the design-time properties.

Quite similar to the Local script component, the Custom script component allows the users of i4designer to use custom synchronous or asynchronous scripts in their visualizations.

The main difference between the Local script and the Custom script components is related to the triggers. The Custom script component does not use Signal change triggers as it has its own integrated trigger options (Time interval, Trigger Component ID, and Trigger mode).

custom_script.jpg

The Custom script component

Tip

The Custom script component enables a wide range of use-cases, but for a quick step-based guide describing an example of how to use it, please visit the dedicated tutorial, here.

Category

Property

Description

Common

Object ID

Sets the Object ID of the component. By defining an object ID for the control, it can be passed as SignalPrefix when using parameter passing in navigation. The value of the Object ID can be used via a placeholder [OID] in other properties of this extension. The placeholder is supported in all signal properties, symbolic text, and states.

object_id.jpg

For more details, please visit the dedicated tutorials, here.

Configuration

Is async

If set to true, the function must return a Promise and it will be evaluated asynchronously. This allows to perform asynchronous operations (such as writing for the connector to perform an operation) and then writing the output value.

is_async.jpg

Script body

Sets the JavaScript function body for processing the inputs. The JS body can be added directly in the dedicated text area.

script_body.jpg

Clicking the Open Editor Page button opens a separate tab where the user can add the JS body, benefiting from a larger text area.

custom_script.jpg

The function will receive the following parameter that can be used in the script:

  • signalService – the signal service instance which can be used in the script to gain full access to the signal operations.

Time interval

Sets the numeric time interval, measured in milliseconds, for the first trigger or the recurring trigger.

time_interval.jpg

Trigger Component Id

Sets the Id of the component that will trigger the script on click.

trigger_component_id.jpg

Tip

The Id of components can be easily copied using the dedicated option available on the top of the properties list of each component.

copy_id_of_component.jpg

Trigger mode

Sets the trigger mode, allowing the user to choose from the following options:

trigger_mode.jpg
  • onLoad - as soon as the visualization is loaded

  • onTimeInterval - after the defined time interval has passed

  • onRecurringTimeInterval - after the time interval has passed, the script trigger will happen again.

  • onClick - only if the component is clicked on the visualization page

Transform

Angle

Sets the rotation angle using the up and down arrows to increase and decrease, or by manually typing the desired degree value.

The component angle can also be adjusted directly on the design surface by means of mouse manipulation.

angle.jpg

Height

Sets the height of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component height can also be adjusted directly on the design surface by means of mouse manipulation.

height.jpg

Left

Specifies the X (horizontal) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component X coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

left.jpg

Horizontal flip

Flips the selected component horizontally.

horizontal_flip.jpg

Top

Specifies the Y (vertical) coordinate of the component, on the grid, using the up and down arrows to increase and decrease, or by manually typing the desired value.

The component Y coordinate can also be adjusted directly on the design surface by means of mouse manipulation.

top.jpg

Vertical flip

Flips the selected component vertically.

vertical_flip.jpg

Width

Sets the width of the component using the up and down arrows to increase and decrease, or by manually typing the desired pixels value.

The component width can also be adjusted directly on the design surface by means of mouse manipulation.

width.jpg

Disable flip

Disables any flip transformation for this component. This keeps the component in the default position even when its container is flipped.

disable_flip.jpg

To use SignalService functions, please check the complete list of functions, below.

Function keyword

Description

getSignal

getSignal(name: string): Signal;

Reads the values of the supplied signals.

  • param {Signal[]} signals - The signals to read

  • returns {Promise<ISignalOperationOutcome>} - The outcome of the read operation.

  • memberOf SignalService

readSignals

readSignals(signals: Signal[]): Promise<ISignalOperationOutcome>;

Writes the signal values.

  • param signalValues - A dictionary that maps signal names to values.

  • returns {Promise<ISignalOperationOutcome>} - The outcome of the write operation.

writeSignals

writeSignals(signalValues: Dictionary<any>): Promise<ISignalOperationOutcome>;

Writes the signal values with password reinforcement. Local signals are written directly, ignoring the password reinforcement.

  • param {string} userPassword - The user password

  • param {Dictionary<any>} signalValues - A dictionary that maps signal names to values

  • returns {Promise<ISignalOperationOutcome>} - The outcome of the write operation.

  • memberOf SignalService

writeSignalsSecure

writeSignalsSecure(userPassword: string, signalValues: Dictionary<any>)
Promise<ISignalOperationOutcome>;

Gets the signal names that match a filter and data page.

  • param {SignalNameFilter} filter - The filter for the signal names

  • param {number} startIndex - The starting index

  • param {number} count - The number of items to return.

  • returns {Promise<SignalName[]>} - The signal names and IDs.

  • memberOf SignalService

getSignalNames

getSignalNames(filter: SignalNameFilter, startIndex: number, count: number): Promise<SignalName[]>;

Gets all signal names by requesting them page by page. This operation is cached, so multiple requests to it will return the same results.

getAllSignalNames

getAllSignalNames(): Promise<SignalName[]>;