@inclouded/fhir-provenance
v3.0.0
Published
``` npm install --save @inclouded/fhir-provenance ```
Downloads
20
Keywords
Readme
FHIR Provenance Firestore SDK
npm install --save @inclouded/fhir-provenance
Introduction
In the repository the Firebase Cloud Firestore SDK can be found that was made for the FHIR Provenance resource in an installable Angular folder form. The SDK can be installed for every Angular 2+ project. The SDK accomplishes the necessary CRUD operations.
Usage
For using the SDK an Angular 2+ project is needed, in which we can establish a connection to a Firestore database instance. (configured in environments.ts)
The SDK can be used in a Service in the following way:
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import { ProvenanceApi } from '@inclouded/fhir-provenance';
import { AngularFirestore } from '@angular/fire/firestore';
import { IProvenance } from '@ahryman40k/ts-fhir-types/lib/R4';
@Injectable()
export class ProvenanceService {
ProvenanceApi: ProvenanceApi;
constructor(private afs: AngularFirestore) {
this.ProvenanceApi = new ProvenanceApi(this.afs);
}
getProvenances(): Observable<IProvenance[]> {
return this.ProvenanceApi.getAll();
}
addProvenance(careteam: IProvenance) {
return this.ProvenanceApi.add(careteam);
}
deleteProvenance(careteamId: string) {
return this.ProvenanceApi.delete(careteamId);
}
updateProvenance(careteam: IProvenance) {
return this.ProvenanceApi.update(careteam);
}
getProvenancesbyTarget(target: string): Observable<IProvenance[]> {
return this.ProvenanceApi.getProvenancesbyTarget(target);
}
getProvenanceById(id: string): Observable<IProvenance[]> {
return this.ProvenanceApi.getById(id);
}
getProvenancesbyRecorded(recorded: Date): Observable<IProvenance[]> {
return this.ProvenanceApi.getProvenancesbyRecorded(recorded);
}
getProvenancesbyAgent(agent: string): Observable<IProvenance[]> {
return this.ProvenanceApi.getProvenancesbyAgent(agent);
}
getProvenancesbyEntity(entity: string): Observable<IProvenance[]> {
return this.ProvenanceApi.getProvenancesbyEntity(entity);
}
}
Usage with MongoDB
See in the description of FhirApi: a link
The Provenance class must be equal with the form.value, this way there's no need for building the object locally. For the usage of the more complex objects there are more available interfaces, the properties of Provenance that possess more complex objects build upon these.
Developer: Zoltán R. Jánki ([email protected]), Gábor Simon ([email protected])