Task #44 - Create ApiService and ApiResponse classes for backend communication

This commit is contained in:
garrettmills
2020-02-07 22:19:35 -06:00
parent 944185d829
commit f3845b76b6
7 changed files with 92 additions and 3 deletions

View File

@@ -0,0 +1,58 @@
import { Injectable } from '@angular/core';
import { environment } from '../../environments/environment';
import {HttpClient} from '@angular/common/http';
import {Observable} from 'rxjs';
import ApiResponse from '../structures/ApiResponse';
@Injectable({
providedIn: 'root'
})
export class ApiService {
protected baseEndpoint: string = environment.backendBase;
constructor(
protected http: HttpClient,
) { }
public get(endpoint, params = {}): Observable<ApiResponse> {
return this.request(endpoint, params, 'get');
}
public post(endpoint, body = {}): Observable<ApiResponse> {
return this.request(endpoint, body, 'post');
}
public request(endpoint, params = {}, method: 'get'|'post' = 'get'): Observable<ApiResponse> {
return new Observable<ApiResponse>(sub => {
const data: any = {}
if ( method === 'get' ) {
data.params = params;
} else {
data.body = params;
}
this.http[method](this._build_url(endpoint), data).subscribe({
next: (response: any) => {
sub.next(new ApiResponse(response));
},
error: (err) => {
const response = {
status: err.status,
message: err.message,
data: err.error,
};
sub.next(new ApiResponse(response));
},
});
});
}
private _build_url(endpoint) {
if ( !endpoint.startsWith('/') ) {
endpoint = `/${endpoint}`;
}
return `${this.baseEndpoint.endsWith('/') ? this.baseEndpoint.slice(0, -1) : this.baseEndpoint}${endpoint}`;
}
}