Actions library
Last updated
Last updated
© 2024 UI Bakery
Actions Library is a collection of actions that can be reused in your workspace apps and automations. Actions created in the library have the full power of UI Bakery actions, including the ability to load and send data, trigger other actions, and execute JavaScript code.
Actions created in the library are not directly connected to any specific app. This means that you cannot access app components or state variables, but you can use the workspace's data sources, and actions can accept parameters to customize behaviour.
Actions created in the library are only accessible using the Execute Action step and are not directly available in the app's actions code.
Let's review an example of creating a library action that will load data from the database. You'll be able to use this action across multiple apps.
Our flow will consist of two parts:
Creating a basic reusable SQL action
Adding variable parameters to it (filtering data)
Go to your workspace and click the Actions Library link in the bottom left corner of the screen.
Create a new action of the SQL Query type and specify the following code in the query field: select * from users;
Name your action loadUsers. Now the action is ready to be used in any app in the workspace.
Open your app and use the action you've just created via the Execute Action step.
Once you run the action, you can see that the data is loaded in the Result tab. The action is now complete and ready to be reused in multiple apps and automations.
Go back to the Actions Library and open your loadUsers action.
In the Default params section on the right, add the following filter parameter that will be used in the query. Here, also define the default filter value in the query so that the action can be executed without passing any parameters and will not fail during development and debugging:
Parameters is an arbitrary JavaScript object that can be passed to the action in the runtime.
Next, specify the following condition in the query that will use the filter parameter you've added:
While testing the action, you can change the parameter value and see how it affects the query result.
Now, revert the filter to the default empty string value and go back to your app.
Select the Execute Action step you've created before.
In the Custom action params field, hardcode some filter value to pass it to the action, for example:
If prompted, click the Reload button to synchronize the latest changes made in the Actions library.
Next, run the action to observe the filter being applied.
You can also use the component or state values as the arguments passed in the action.
Lastly, connect your action to a component to display the data.
To use Actions Library in Production or Staging environments, you need to release the library. This will create a new version of the library that can be used in Prod or Staging, while you can still modify the library in the Development environment.
Go to the Actions Library.
Click the Release button in the upper right corner.
In the pop-up window that opens, set a version, add a description if needed, and click Publish release.
That's it! Now, if you release your app, UI Bakery will remind you to release the Actions Library as well.
The Actions Library environment is linked to the app environment, which means that your actions will use the same data source environments as your app. For example, if your app is connected to the production database, your library actions will also use the production database in the Production environment.
In some cases, you might want to move an action from the app to the Actions Library to make it more abstract and reusable.
Click on the three dots next to the action you want to extract and click Copy.
Next, go to the Actions Library, click the plus sign in the Actions section and select Paste. The action will be copied to the library.
Modify it, if necessary, and remove all references to UI components or state variables.
Go back to the app and replace this action with the Execute Action step and add the action you moved to the library.
During development, you may want to create an action that is not ready to be used in your apps. Or you may want to create an action that is not intended to be used in other apps but can be used in other actions in the library. In such cases, you can turn off the Shared toggle in the Action settings. This will make the action private and it will not be available in the app's Actions list.