Form with calculated fields creation
In this tutorial we will learn how to work with calculated fields. The GAD-7 form is taken as an example, because it contains the "Generalized anxiety disorder 7 item total score" field, which can be declared as a sum of seven scored anwers.
Prerequisites
To accomplish the goal we assume the SDC Forms project is already configured as described in "Getting Started".
Next we need an example namespace to put the form we are about to create into. Let's create a file zrc/tutorial/gad-7.edn
and declare the desired namespace:
Make sure the created Zen file is imported in the project so Zen can (re-) load it. Available forms can be imported via an aggregation file (e.g. /zrc/forms.edn
) or directly via the entrypoint file /zrc/sdc-box.edn
like this:
Zen translates namespaces to paths on the filesystem. Ensure the file path corresponds to the namespace it contains. It should be relative to Zen source directory zrc
.
Steps
Let's summarize steps required to create a calculated form field.
Declare a rule under
:sdc/rules
in the document layer using lisp expressionDefine a form field using the same name as the rule
Form layer
In this step we declare a basic form containing only references to the required Document
and Launch
Zen schema definitions.
For sake of simplicity all definitions will be put into a single file. But it is also possible to split definitions of separate form aspects to dedicated files and to import them in a single EDN file.
Add following lines to /zrc/tutorial/gad-7.edn
file:
We just declared some form metadata like :title
. We also added a reference to GAD7Document
, which describes the schema of the form model. Let's skip :launch
for now and focus on the subject of this tutorial. The example Launch definition can be found in Appendix for completeness.
Prepare Document with static fields
The data model of a Form is declared using the aidbox.sdc/Document
schema and is tagged as aidbox.sdc/doc
. This schema allows us to describe individual fields this document consists of.
In the example below we define seven fields (69725-0, 68509-9, 69733-4, 69734-2, 69735-9, 69689-8, 69736-7) as described in the GAD-7 LOINC form.
To keep the example short we define common schema LL358-3
for each answer.
Declare calculated field
After the basic Document structure is set up we are ready to define a so called "calculated" form field.
Calculation rules are declared under the :sdc/rules
key.
To calculate the actual GAD7 score we need to sum up all scores from the user input. Let's implement the formula for the rule :70274-6
using the Lisp +
expression. With get-in
we grab the selected score for each answer.
Finally we declare an additional form field using the previously defined rule name :70274-6
. The form field is linked to the corresponding rule via it's name. Calculated form fields will also be stored in the database.
Review the result
The final form can be reviewed in Aidbox. At <aidbox-url>/ui/zen-ui
you can review and inspect available Zen schemas including the previously created ones. Any validation errors will be displayed here.
With the Aidbox Forms Editor you can inspect all Form layers at <aidbox-url>/ui/sdc#/forms/edit?form=tutorial.gad-7%2FGAD7Form
. In this tutorial we skipped the visual representation of a form, which is described in the Layout
layer, but in real world you surely will render your form. This will be covered in an another tutorial.
Appendix
Launch
Last updated