0.0.9 • Published 3 years ago

@wenzl/data-request-service v0.0.9

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

Data-Request-Service

This is a tiny data service I use quite often and for easier reuse - decided to publish it. It acts as a helper method to reduce the need of Injecting environment values in to multiple libraries.

Installation

npm i @wenzl/data-request-service
// environment.ts
export const environment = {
  production: false,
  backend: {
    baseUrl: 'http://localhost:5000',
    apiPath: 'api'
  }
};
// app.module.ts
NgxHlprDataRequestServiceModule.forRoot({
  backend: {
    baseUrl: environment.backend.baseUrl,
    apiPath: environment.backend.apiPath
  },
});

Usage

I usually then create for different services that require rest calls a service that used the NgxHlprDataService. Its code duplication but with bigger projects - I find it much easier to work with such an API:

// document-rest.service.ts
@Injectable({
  providedIn: 'root',
})
export class DocumentRestService {
  path = 'documents';

  constructor(private _dataService: NgxHlprDataService) {}

  getAll(): Observable<IDocument[]> {
    return this._dataService.getAll<IDocument>(this.path);
  }

  get(id: string): Observable<IDocument> {
    return this._dataService.get<IDocument>(this.path, id);
  }
}

What have I gained you might ask?

I can use this in multiple libraries and do not need to inject the environment in the individual modules. On build time the service takes the correct backend api. Depending on the configuration.

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago