RxNT Extra widgets for Mozilla's react-jsonschema-form

This project takes react-jsonschema-form-extras and adds additional fields, specific to RxNT.
- IMO field - field that allows to make request to IMO API, through RxNT network
- Async typeahead - extension of general typeahead, that uses standard RxNT signature and request formats
- IMO field
- Purpose
- Use
- Properties
- Async typeahead
- Async multi typeahead
---
IMO field allows to query problems with IMO service in separate window.
In accordance with requirements, there are 3 ways to trigger IMO search
- with a Composite array
- with inputField imo which would display Add and optional Free Text button
- with inputField: imoFreeText which would just display Free Text button
- with Collapsible add
- with addElement imoAdd in this case on pressing a plus in collapsible IMO modal will be displayed
For example
Composite array with inputField imo
``json`
{
"ui:field": "compositeArray",
"inputField": "imo",
"arrayField": "table"
}
Composite array with inputField imoFreeText
`json`
{
"ui:field": "compositeArray",
"inputField": "imoFreeText",
"arrayField": "table"
}
Collapsible with imo
`json`
{
"ui:field": "collapsible",
"collapse": {
"collapsed": false,
"addTo": "familyHistory",
"addElement": "imoAdd",
"field": "ObjectField"
}
}
For Composite array with inputField imo, the only property IMO accepts is
- freeText boolean which enables freeText button on IMO field
All other uses do not have specific configurations
This component is minimalistic modification of react-jsonschema-form-extras component,
which specifies predefined search string, that allows to query RxNT autocomplete data.
This component extends the functionality of the standard async typeahead to support multiple selections. It's a wrapper around the multiTypeahead component from react-jsonschema-form-extras that integrates with RxNT's autocomplete API.
To use the async multi typeahead, set the ui:field to asyncMultiTypeahead:
`json`
{
"ui:field": "asyncMultiTypeahead",
"asyncMultiTypeahead": {
"url": "http://your-api-endpoint/search",
"queryKey": "name",
"optionsPath": "Results",
"labelTemplate": "{Name}",
"valueKeys": ["Id", "Name", "Code", "Description"],
"label": "Search Items",
"placeholder": "Search and select multiple items..."
}
}
The component accepts the following configuration options in the asyncMultiTypeahead key:
- url (string): The API endpoint to search for optionsqueryKey
- (string): The query parameter name to send the search term (e.g., "name")optionsPath
- (string): The path in the API response where the options array is locatedlabelTemplate
- (string): Template for displaying options, using {FieldName} syntaxvalueKeys
- (array): Array of field names to extract from selected itemslabel
- (string): Label for the fieldplaceholder
- (string): Placeholder text for the input
The search function is automatically configured to use RxNT's autocomplete API format.
The component includes custom styling to remove Material-UI input borders and focus states for better integration with RxNT's design system. These styles are defined in the rxnt-extras.css file under the .async-multi-typeahead-wrapper class.
`encounterTemplateV2User
!!! WARNING
IMO and AsyncTypeahead rely on window variables for Authentication, provided by the caller
- user dataencounterTemplateV2EncounterInfo
- encounter data`
You need to have them in the scope in order for IMO to work properly
This component is to add the new records to the table through the custom AddElement(Popup) from custom collapsible/SearchField
ui:field should be [tableWithSearchAdd]tableWithSearchAdd new attribute to mention the AddElement(Popup/Dropdown etc) procedureCode POPUP as AddElement
Collapsible with
`json``
{
"table": {
"tableCols": [
{
"dataField": "code",
"columnWidth": "25%",
"width": "40%",
"field": "asyncTypeahead",
"editable": false,
"uiSchema": {
"focusOnMount": true,
"asyncTypeahead": {
"placeholder": "CPT code or description",
"url": "https://jsonplaceholder.typicode.com/todos",
"mapping": {
"code": "userId",
"description": "title"
},
"minLength": 1,
"labelKey": {
"fields": ["userId", "title"],
"separator": " - "
},
"className": "rectangle diagnosisTypeahead"
}
}
},
{
"dataField": "description",
"columnWidth": "60%",
"width": "50%",
"editable": false
}
],
"focusOnAdd": 0,
"hover": true
},
"ui:options": {
"label": false
},
"classNames": "col-md-12 ",
"ui:field": "tableWithSearchAdd",
"tableWithSearchAdd": {
"addElement": "procedureCode"
}
}