emr-api-client
TypeScript icon, indicating that this package has built-in type declarations

0.9.2 • Public • Published

About

This client is based on BHT-EMR-API

Installation

npm i his-api-client

Usage

Basic Example

import { ApiCore } from "his-api-client"
// Set custom host configuration. By default the system will use http://localhost:3000
ApiCore.setHost("https://hospitalwide.co")
// Condition runs a health check with provided host
if ((await ApiCore.apiOk())) {
    // Check if loggin session is present before accessing API resources
    if (!ApiCore.isLoggedIn()) {
        // Login with username and password respectively
        const authentication = await ApiCore.login("username12", "password123#")
        // Check status of the authentication before accessing api resource
        if (authentication.ok) {
            const patients = await ApiClient.getJson('patients')
            if (patients.ok) console.log(patients.data)
        }
    }
} else {
  alert("Invalid host")
}

Error checking example

import { ApiCore, ClientError } from "his-api-client"

const sampleData = {
    first_name: "Test1",
    last_name: "Test1",
    gender: "Male"
}
// Post patient data
const request = await ApiCore.postJson("patient", sampleData)
// If the request is not ok, you can handle specific errors in your program
if (!request.ok) {
    switch(request.errorState) {
        case ClientError.AUTHENTICATION_ERROR:
            alert("You need to login")
            break;
        case ClientError.NO_CONNECTION:
            alert("Unable to reach the API")
        case ClientError.NOT_FOUND:
            alert("Invalid endpoint")
        default:
            alert("General Error")
    }
})

Validating user role example

import { ApiCore } from "his-api-client"

// Login first using user account
const authentication = await ApiCore.login("admin", "test123")

// Validate if login was successful and check if the logged in user has 
// a super user role
if (authentication.ok && ApiCore.userHasRoles(['Superuser'])) {
    // Deletes a record in the api by some id
    ApiCore.void("encounter/1234")
        .then((res) => {
            if (res.ok) {
                alert("Encounter has been Deleted!!")
            } else {
                alert("Unable to delete because of " + res.errorState)
            }
        })
}

Handling API responses globally example

import { ApiCore, ClientError, JsonRequestResponse } from "mahis-api-client";
import ScreenLoader from "html-example";

/**
 * Intercept requests globally so that a loader is initiated before each request.
 * @param {Request} req - The request being sent.
 * @returns {Request} - The modified request.
 */
ApiCore.interceptRequest = (req) => {
    ScreenLoader.start();
    console.log(req.url, req.config) // Reading request data
    return req;
};

/**
 * Stop the screen loader once the request is complete and handle various error cases.
 * If an authentication error occurs, redirect users to the login page.
 * @param {JsonRequestResponse} res - The response received from the API.
 * @returns {JsonRequestResponse} - The modified response.
 */
ApiCore.interceptResponse = (res: JsonRequestResponse) => {
    ScreenLoader.stop();
    
    if (!res.ok) {
        if (res.errorState === ClientError.AUTHENTICATION_ERROR) {
            document.location = '/login';
        } else {
            // Handle other error cases here or log them.
        }
    }
    
    return res;
};

Features

  1. Authentication
  2. Get, Post, Put and Delete functions provided
  3. Gracefully handling http requests
  4. Configurable Api host
  5. DDE, User, location, Drug, lab, patient, person, user property and global property services built in

Package Sidebar

Install

npm i emr-api-client

Weekly Downloads

1

Version

0.9.2

License

ISC

Unpacked Size

5.56 kB

Total Files

3

Last publish

Collaborators

  • amfune