2.0.2 • Published 5 years ago

@hisptz/ngx-dhis2-http-client v2.0.2

Weekly downloads
-
License
-
Repository
-
Last release
5 years ago

DHIS2 Http Client library

DHIS2 Http Client is angular 6 library that exposes services for fetching, posting, updating and deleting dhis2 resources, simple configurable index DB support for dhis2 APIs

installation

npm install @hisptz/ngx-dhis2-http-client --save

Content

ngx-dhis2-http-client exposes two services .i.e NgxHttpClientService and ManifestService

  • NgxHttpClientService: This service exposes all REST-API methods .i.e. GET, POST, PUT, DELETE

    • GET: get(url: string, httpConfig: HttpConfig)

    • POST: post(url: string, data: any, httpConfig: HttpConfig)

    • PUT: put(url: string, data: any, httpConfig: HttpConfig)

    • DELETE delete(url: string, httpConfig: HttpConfig)

    where HttpConfig has a data model of

     {
      includeVersionNumber?: boolean;
      preferPreviousApiVersion?: boolean;
      useRootUrl?: boolean;
      isExternalLink?: boolean;
      useIndexDb?: boolean;
      indexDbConfig?: {
        schema: IndexDbSchema;
        key?: string | number;
        arrayKey?: string;
      };
    }

    and IndexDbSchema with model

    {
      name: string;
      keyPath: string;
    }
  • ManifestService: This service exposes manifest two methods getManifest and getRootUrl

    • getManifest: This returns payload with the format
  {
    name: string;
    version: number | string;
    description: string;
    launch_path: string;
    appType: string;
    icons: {
      16: string;
      48: string;
      128: string;
    };
    developer: {
      name: string;
      url: string;
    };
    default_locale: string;
    activities: {
    dhis: {
      href: string;
      namespace: string;
      };
    };
    authorities: Array<string>;
}
  • getRootUrl: This method returns rootUrl as specified in the manifest file in activities.dhis.href. This method will return ../../../ if manifest file could not be loaded or href is not specified

Usage

Inject NgxHttpClientService or ManifestService any where in constructor in your angular application eg

 import { NgxDhis2HttpClientService } from 'ngx-dhis2-http-client';
 ...
 constructor(private http: NgxDhis2HttpClientService) {
  }
 ...

NOTE: This library uses HttpClientModule from angular, make sure to import it in your app.module or any module you wish to use this library

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago