npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-jsonschema-rxnt-extras

v0.3.86

Published

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

Downloads

51

Readme

npm version

This project takes react-jsonschema-form-extras and adds additional fields, specific to RxNT.

Catalogue

  • 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

Table of Contents


IMO field

Purpose

IMO field allows to query problems with IMO service in separate window.

Use

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

{
  "ui:field": "compositeArray",
  "inputField": "imo",
  "arrayField": "table"
}

Composite array with inputField imoFreeText

{
  "ui:field": "compositeArray",
  "inputField": "imoFreeText",
  "arrayField": "table"
}

Collapsible with imo

{
  "ui:field": "collapsible",
  "collapse": {
    "collapsed": false,
    "addTo": "familyHistory",
    "addElement": "imoAdd",
    "field": "ObjectField"
  }
}

Properties

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

Async typeahead

This component is minimalistic modification of react-jsonschema-form-extras component, which specifies predefined search string, that allows to query RxNT autocomplete data.

!!! WARNING
IMO and AsyncTypeahead rely on window variables for Authentication, provided by the caller
- `encounterTemplateV2User` user data
- `encounterTemplateV2EncounterInfo` encounter data
You need to have them in the scope in order for IMO to work properly

TableWithSearchAdd

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)
Collapsible with procedureCode POPUP as AddElement

{
"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"
      }
}