Calling actions from code
Last updated
Was this helpful?
Last updated
Was this helpful?
Sometimes, you may have to handle the result of another action or execute some actions in bulk using JavaScript. In such cases, you can use the await actions.action.trigger()
syntax, which returns Promise and allows you to reuse the result of other actions.
Let’s check a couple of cases where action.trigger
may come in handy.
As we've already mentioned before in , you can use await actions.actionName.trigger()
anywhere in your app actions code:
As well as pass custom parameters to the action:
The parameters will be available as {{params}}
variable in any action step.
Let’s review the case when you need to combine the data from several tables about a certain record. As an example, we will use MySQL data source and two tables: Orders and Order Details.
Create a new action of the Load Table type and select the Order Details table as a resource. Make sure the action is titled as loadOrderDetails.
In the Filters section, configure selected record field as Order Number ={{data}}
.
Next, create a second action of the Load Row type and select the Orders table as a resource. Make sure the action is titled as loadOrder.
In the Filters section, configure selected record field as Order Number ={{data}}
.
Now, to combine the data from both actions, create a new action of the JavaScript code type.
Rename the action to loadDetails and specify the following code:
To display the obtained data, add the Detail component to your working area.
Assign the loadDetails action to the data field of the Detail component.
Create a new action of the Load Table type and select the Order Details table as a resource. Make sure the action is titled as loadOrderDetails.
In the Filters section, сonfigure selected record field as Order Number ={{data}}
.
Next, create a multi-step action - add your loadOrderDetails action as the first step.
For the second step, create a new action of the JavaScript code type.
Rename the action to applyDetailsToOrder and specify the following code:
To display the obtained data, add the Table component to your working area.
Assign the applyDetailsToOrder action to the data field of the Table component.
Let's say you have a table with lots of records, but you only need to display certain items. We'll show you how you can do that based on the example of an HTTP API data source.
Create a new action:
a. Select your HTTP API data source and HTTP request.
b. Set GET
method and set your URL as:
https://example-data.draftbit.com/users/{{params}}
c. Rename your action as getUser.
Add another action of the JavaScript code type.
Rename the action to getUsers and specify the following code:
To display the obtained data, add the Table component to your working area.
Assign the getUsers action to the data field of the Table component.