User task node
This node represents an interaction with the user. It is used to display a piece of UI (defined in the UI Designer or a custom Angular component. You can also define actions available for the users to interact with the process.
Configuring a user task node
User task nodes allow you to define and configure UI templates and possible actions for a certain template config node (ex: button components).
General Config
- Node name - the name of the node
- Can go back - setting this to true will allow users to return to this step after completing it. When encountering a step with
canGoBack
false, all steps found behind it will become unavailable. - Stage - assign a stage to the node
When encountering a step with canGoBack
switched to false, all steps found behind it will become unavailable.
Data stream topics
- Topic Name - the topic name where the process engine listens for the response (this should be added to the platform and match the topic naming rule for the engine to listen to it) - available for UPDATES topics (Kafka receive events)
A naming pattern must be defined on the process engine configuration to use the defined topics. It is important to know that all the events that start with a configured pattern will be consumed by the Engine. For example, KAFKA_TOPIC_PATTERN
is the topic name pattern where the Engine listens for incoming Kafka events.
- Key Name - will hold the result received from the external system, if the key already exists in the process values, it will be overwritten
Task Management
- Update task management - force Task Management plugin to update information about this process after this node
Configuring the UI
The FlowX Designer includes an intuitive UI Designer (drag-and-drop editor) for creating diverse UI templates. You can use various elements from basic buttons, indicators, and forms, but also predefined collections or prototypes.
Accessing the UI Designer
To access the UI Designer, follow the next steps:
- Open FLOWX Designer and from the Processes tab select Definitions.
- Select a process from the process definitions list.
- Click the Edit process button.
- Select a user task node from the Pro dcess Designer then click the brush icon to open the UI Designer.
Creating a user interface
Predefined components
UI can be defined using the available components provided by FLOWX, using the UI Designer available at node level.
Predefined components can be split in 3 categories:
Custom components
These are components developed in the web application and referenced here by component identifier. This will dictate where the component is displayed in the component hierarchy and what actions are available for the component.
To add a custom component in the template config tree, we need to know its unique identifier and the data it should receive from the process model.
More details in the following section:
Custom
Displaying a UI Element in FlowX Designer
When a process instance is started the web application will receive all the UI elements that can be displayed in that process.
- Starting a Process:
- The process is initiated by sending a request to the SDK.
- This tells the server to start the specific process definition, in this case, named “DemoProcess”.
- Displaying UI Elements:
- As the process progresses, it reaches different nodes, in our example, “User Tasks” (nodes that require human interaction).
- When a User Task is reached, a server message is sent to the application, instructing it to display the UI element associated with that users task. This UI element is essentially the part of the interface that the user will interact with at this point in the process.
- Inside the
templateConfig
you can find all the UI elements configured on the node. In the following example you can see the details of aCARD
UI element.
- Matching UI Elements to User Tasks:
- When the application receives an update ProgressUpdateDto will trigger the SDK to search for the UI element having the same
nodeId
with the one in the SSE event.
Start process response:
SSE event:
- Fetching Data and Actions:
- To display the UI element correctly, the application may need additional data or perform certain actions.
- It retrieves this data via a request to the server. This step ensures that the displayed UI element has all the information and functionality it needs to work properly, like updating the displayed information or enabling specific actions for the user.
In simple terms, the process involves starting a sequence, notifying the application when to show specific user interface parts, and ensuring these parts have the necessary data to function correctly.
Was this page helpful?