outPorts
Last updated
Was this helpful?
Last updated
Was this helpful?
The definition of the output ports of the component. It's an array of objects.
Components can have zero or more output ports. Each output port has a name
and optionally an array options
that defines the structure of the message that this output port emits. Without the options object, the user won't be able to see the possible variables they can use in the other connected components. For example, a component connected to the weather
output port of our GetCurrentWeather component can see the following variables in the variables picker:
An example of an outPorts
definition can look like this:
As you can see, compared to the first example, we replaced the last 3 options with a single one, which is actually an array of items with three properties. Each of these items has title
which determines the label that will be visible in the UI. Note that the type of these inner properties could be an object
or array
, and have their own nested schemas.
If the option
is defined as an array
and you want to work with that array using modifiers:
You will see the item properties
among other variables.
And if you use the Each connector, you will see the item properties
in the Variables picker.
Alternatively, you can define a schema at the top level instead of using the options property. For example:
There is one difference though. When defined in the output port, the source
definition can reference both component properties and input fields, while the properties source
definition can only hold references to other properties' values.
An example is a Google Spreadsheet component UpdatedRow. The output port options of this component consist of the column names in the spreadsheet. But that is specific to the selected Spreadsheet/Worksheet combination. Therefore it has to be defined dynamically.
Here is an example of the UpdatedRow output port definition.
Set the maximum number of outgoing links that can exist from the output port. The maximum number of connections is infinite by default but in some applications, it might be desirable to set a limit on this, usually 1
. The Appmixer Designer UI will not allow the user to connect more than maxConnections
links from the output port.
We support full schema definition for each option, so you can specify the structure of the data that is coming out from your component. You can add a schema
property to each option, which contains a definition. For example:
When you define the structure of the data coming out from your component, the users of your component will have an easier time working with it, as they will be able to do things like selecting nested properties directly, selecting properties on iteration modifiers, and getting properties paths in modifiers. You can find more details about this in .
The definition is similar to the source source
of . When used for the output port definition, it allows defining the output port schema dynamically.