New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@openmrs/esm-patient-labs-app

Package Overview
Dependencies
Maintainers
0
Versions
650
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openmrs/esm-patient-labs-app

Patient lab order and test results microfrontend for the OpenMRS SPA

8.2.0
latest
Source
npm
Version published
Weekly downloads
703
1573.81%
Maintainers
0
Weekly downloads
 
Created
Source

esm-patient-labs-app

Functionality for viewing test results and ordering labs.

Test Results

It provides tabular and chart-based overviews of the test results available for a patient.

IMPORTANT NOTE: To have data show up in this view, your concepts just need to have "Type: Test" or "Type: LabSet". If you are seeing strange things showing up, like Temperature, in the Test Results viewer, then you probably just need to change the Type for your Temperature concept to something other than "Test", like finding.

How to Configure the Lab Filter View

The Lab Filter feature enables you to set up custom filter views - eg based on standard medical hierarchies, or even based on your own custom ideas (e.g. "Our Favorite HIV-Related Tests"), like this:

image

To configure your own Lab Filters, you need to use Labs, LabSets, and ConvSets (Convenience Sets) in your Concept Dictionary. Below, we will walk through the steps taken to set up this OpenMRS Example Lab Filter.

1. Decide what you want.

In this example, we wanted a layout like:

  • Bloodwork
    • Hematology
      • CBC
        • Lymphocytes (%)
        • Neutrophils (%)
        • Hemoglobin
        • Mean corpuscular volume (MCV)
        • Hematocrit
        • Red blood cells
        • Platelets
        • White blood cells
    • Chemistry
      • Serum Electrolytes
        • Serum calcium
        • Serum carbon dioxide
        • Serum chloride
        • Serum potassium
        • Serum sodium

2. Create the "parents" as concepts with type = ConvSet

  • Bloodwork --> Create as a custom concept, type = ConvSet
    • Hematology --> Create as a custom concept, type = ConvSet
    • Chemistry --> Create as a custom concept, type = ConvSet

3. Add the "children" Set Members to each parent

  • Bloodwork
    • Hematology --> Add concept as a Set Member to "Bloodwork"
      • CBC --> Add concept as a Set Member to "Hematology"
    • Chemistry --> Add concept as a Set Member to "Bloodwork"
      • Serum Electrolytes --> Add concept as a Set Member to "Chemistry"

Note1: As of March 2022, Set Members cannot be added to concepts through the Term Browser, but you can either use your EMR directly or the OpenMRS Dictionary Manager.

Note2: if you don't already have all the "children" concepts, e.g. CBC, Serum Electrolytes, you may have to add these specifically into your dictionary first.

4. Check your work

Review your concepts to see that the hierarchy all looks right in the Dictionary/Collection. In the above example (which was created using the OpenMRS Dictionary Manager), you can see that Bloodwork now correctly contains Hematology and Chemistry. image

5. Update the config-schema file with your ConvSet codes

Go here to add the UUIDs for each of your ConvSet concepts which you want to show up in the Lab Results filters: https://github.com/openmrs/openmrs-esm-patient-chart/blob/master/packages/esm-patient-labs-app/src/config-schema.ts#L3

Keywords

openmrs

FAQs

Package last updated on 06 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts