👋 New to O3? Be sure to review the OpenMRS 3 Frontend Developer Documentation. 🧑🏫
The OpenMRS Form Engine is a React library that enables the creation and rendering of standardized medical forms within the OpenMRS 3 (O3) ecosystem. It provides a flexible, JSON-based form schema system with built-in validation, conditional rendering, and multilingual support - making it ideal for complex healthcare data collection needs.
O3 form schemas are written in JSON and conform to the O3 standard JSON schema spec which defines the structure and constraints of the form data. The O3 reference application ships an embedded Form Builder that users can leverage to build forms interactively, using the interactive schema builder, or by writing code into the built-in JSON schema editor.
The Form Engine is a versatile library that can be integrated into any frontend module within the O3 ecosystem that requires form rendering capabilities. It's currently used in the following modules:
- Form Builder - where the form rendering in the Form Preview component is powered by the Form Engine
- Patient Chart - specifically in the form engine wrapper app where the form engine is used to render clinical forms in the patient chart workspace
Key features of the Form Engine include:
- Validation - The form engine enables the validation of form data based on the form schema. Arbitrarily complex validation rules can be defined within the schema and evaluated by the form engine.
- Subforms - The form engine supports the rendering of subforms within a form. This allows for the creation of complex forms that can be reused across multiple forms.
- Conditional rendering - The form engine supports the conditional rendering of form fields based on the values of other form fields. This allows for the creation of dynamic forms that can adapt to the user's input.
- Data sources - The form engine supports the use of data sources to populate form fields. This allows for the creation of forms that can be populated with data from external sources.
- Expression helpers - The form engine supports the use of expression helpers to evaluate expressions within the form schema. This allows for the creation of complex expressions that can be evaluated by the form engine.
- Translations - The form engine supports translations for various elements such as action items, notifications, validators, and questions within the forms. Translations for pages, sections, and question labels are retrieved from the backend.
- Drug orders - The form engine facilitates drug orders by enabling the launch of the drug order basket. This feature allows users to add drugs along with medication details contained in the template for the specified drug.
- Lab orders - The form engine supports lab orders created using observations (obs) by utilizing the testOrders type on a specific question.
- Markdown/ Read only fields - The form engine includes support for read-only fields embedded within forms. These fields are utilized to provide additional information or guide users without allowing input.
- Multiple form rendering modes - The form engine provides several rendering modes that can be used to render forms in different contexts, including:
- Enter Mode - This is the default mode that allows the user to enter data into the form. The form is rendered in a read-write mode.
- Edit Mode - This mode allows the user to edit data that has already been entered into the form. The form is rendered in a read-write mode.
- View Mode - This mode allows the user to view data that has already been entered into the form. The form is rendered in a read-only mode.
- Embedded View - This mode is a condensed version of the
view mode
without the section headers and form actions. It can be used to display entered form data within a widget.
Read the full docs in the OpenMRS Wiki here.
NB: The Form Engine is a React library, not a standalone O3 frontend module. It can only be consumed by bundling it within a frontend module that incorporates it within a UI workflow.
- Node.js 18 or later (LTS version recommended)
- Yarn 4.x or later (We use Yarn as our package manager)
- Git (for local development)
yarn add @openmrs/esm-form-engine-lib@latest
git clone [email protected]:openmrs/openmrs-esm-form-engine-lib.git
Or using https:
git clone https://github.com/openmrs/openmrs-esm-form-engine-lib.git
yarn
yarn build
To test your local Form Engine changes, you'll need to link the library to a frontend module that uses it (like Form Builder or Patient Chart). Here's how:
- Build the library
yarn build
- Copy the relative path to the built library
Copy the relative path to the built library by running the following command on Mac:
pwd | pbcopy # copy the path to form-engine-lib to the clipboard
Or the equivalent command on Linux:
# Copy the path to clipboard
pwd | xclip
# Link the library using the copied path
yarn link `xclip -o`
- Symlink the library to the consuming frontend module
Then run the following command from the root of the consuming frontend module. For example, if you are working on the openmrs-esm-form-builder
module, you would navigate to the root of the module and run:
yarn link `pbpaste` # paste the path to the openmrs-form-engine-lib where `pbpaste` is the command to paste the clipboard content
- Run the consuming frontend module
After linking the library, run the relevant start
command from the frontend module. For example, if you're working on the form builder module, you would run:
yarn start
Whereas for the patient chart you would have to start the Form Engine Lib frontend module like so:
yarn start --sources packages/esm-form-engine-app
You could also optionally proxy to a different backend where your forms are hosted by appending backend
followed by the URL to the backend. For example:
yarn start --sources packages/esm-form-engine-app --backend https://link-to-my-backend.com
Note that in addition to this library, other form engine alternatives exist within the O3 ecosystem, including:
To use this library as the default form engine in your O3 instance, you will need to add this to your spa-assemble-config.json file:
{
"frontendModules": {
...
"@openmrs/esm-form-engine-app": "next"
...
}
}
NB: If you are currently using the Angular Form Engine (@openmrs/esm-form-entry-app), you will need to remove it from your importmap and replace it with the Form Engine App (@openmrs/esm-form-engine-app). The two libraries are not compatible.
Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. Read our contributing guide for more information on how to contribute.
Distributed under the MPLv2 with Healthcare Disclaimer License. See LICENSE.txt
for more information.