Named Actions
Named actions are action arrays that can be referenced by more than one element, or more easily called from HTML elements. You can think of them like a FileMaker script. The set of actions has a name, like a script name.
Defining Named Actions
formSchema.form.namedActions
These are scoped to the current page only. You can edit them in the Misc tab of the page editor.site.content.namedActions
These are globally scoped and can be called from anywhere.
The actions processor will first try to find the named action in the current page. If unsuccessful, the global site.namedActions
object is checked.
Schema
Named actions look like any other actions array, with just the name of the action as the key. They can either be a single action like the showCantDoThat
example, or an array of actions like goToMyAccount
.
Reserved Names (> v0.8.13)
There are some reserved named action key names that are reserved for special use cases.
onFormLoad - Global named action - These actions will run just after a form is loaded. If there are actions that are generated in an onFormRequest
hook, those actions will be queued first and the onFormLoad
actions will run after. A typical use case would be to show an empty form with a loading placeholder image, then request data from the server then render the data after, allowing the application to feel more performant.
onAppLoad - Global named action - These actions will run just after the app is loaded. This can be used to populate global app settings like user data and flags after a page is refreshed.
onLogin - ( >0.9.35) Global named action - These actions will run just after the user is authenticated. This can be used to populate global app settings like user data and flags after a user logs in.
Usage
As an action in a standard array of actions:
In an HTML element using @click
:
In this example, goToMyAccount
is the name of the named action and the {id: '12345'}
is the options array that will be passed to the named action. In JavaScript, JSON keys do not need to be in quotes.
Sequence
If a namedAction is called while other actions are still in the queue, the namedAction will run first and get inserted at the front of the actions queue. You can think of this as a sub-script where the namedAction runs first and then the remaining actions continue. This allows you to reuse code and is particularly useful in the global scope.
Last updated