Skip to content

A data visualization library for SMART-on-FHIR healthcare applications. For the most current version, see https://github.com/elimuinformatics/charts-on-fhir/.

License

Notifications You must be signed in to change notification settings

AHRQ-CDS/charts-on-fhir

 
 

Repository files navigation

Charts-on-FHIR

A data visualization library for SMART-on-FHIR healthcare applications.

Building your own app

Explore the Documentation for Getting Started guides, API docs, and examples.

Projects in this repository

Library

Applications

Utilities

Running the Applications

  1. Run npm start <project> to start the local development server. For example: npm start showcase will start the showcase app.
  2. Navigate to http://localhost:4200/. The application will automatically reload if you change any of the source files.

Logica Open FHIR Server

When running in Angular development server, if no EHR launch context is detected then the showcase app will connect to an open FHIR server using the configuration in environment.logica-open.ts.

Mock FHIR Server

A mock FHIR server can also be used for offline development when Logica is unavailable. This server only works with the showcase app.

  1. npm run generate-patient (at least once)
  2. npm run mock-fhir-install (first time only)
  3. npm run mock-fhir
  4. npm start showcase -- --configuration=mock

EHR Launch

To test an EHR launch with the Angular development server, you need an EHR simulator that allows using unsecured HTTP on localhost. The app should be registered with the following configuration:

  • Launch URI: http://localhost:4200/launch.html
  • Redirect URI: http://localhost:4200
  • Client ID: must match the one in launch.html
  • Scopes: should match the ones in launch.html

Building the library

Run npm run build ngx-charts-on-fhir to build the library. The build artifacts will be stored in the dist/libs/ngx-charts-on-fhir directory.

Running unit tests

Run npm test <project> to execute the unit tests via Karma.

Running a Docker container

Any of the sample applications in this workspace can be built as a self-contained Docker image that runs NGINX webserver. This uses a production build configuration suitable for deployment. The Dockerfile accepts a build-arg for the app name. To build an image for the showcase app:

docker build --build-arg app=showcase -t showcase .

The app's SMART clientId must be provided by an environment variable when starting the container. To run the container on http://localhost:4200:

  1. export CLIENT_ID=client_id_that_is_registered_with_the_ehr
  2. docker run -p 4200:80 -e CLIENT_ID showcase

About

A data visualization library for SMART-on-FHIR healthcare applications. For the most current version, see https://github.com/elimuinformatics/charts-on-fhir/.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 88.6%
  • HTML 7.0%
  • CSS 1.7%
  • JavaScript 1.4%
  • SCSS 0.8%
  • Shell 0.3%
  • Dockerfile 0.2%