Projekt

Obecné

Profil

Stáhnout (1.39 KB) Statistiky
| Větev: | Tag: | Revize:
1 4bcef705 Hung Hoang
import {Injectable} from '@angular/core';
2
import {HttpClient, HttpErrorResponse, HttpParams} from '@angular/common/http';
3 41741550 Hung Hoang
import {throwError} from 'rxjs';
4 fd5ab42e Hung Hoang
import {environment} from '../../../environments/environment';
5 1d169f6d Hung Hoang
import {MatSnackBar} from '@angular/material';
6 5d32cbea Václav Jirák
import {TranslateService} from '@ngx-translate/core';
7 41741550 Hung Hoang
@Injectable({
8
  providedIn: 'root'
9
})
10
export class BasicService {
11 b919891c Hung Hoang
  protected baseUrl = environment.apiUrl;
12 41741550 Hung Hoang
13 5d32cbea Václav Jirák
  constructor(protected http: HttpClient, protected snackBar: MatSnackBar, protected translateService: TranslateService) { }
14 4bcef705 Hung Hoang
15 41741550 Hung Hoang
  protected handleError(error: HttpErrorResponse) {
16 5d32cbea Václav Jirák
    let errMsg;
17
    if (!error.error.error) {
18
      this.translateService.get('error.serverCommunication').subscribe((res: string) => {
19
        errMsg = res;
20
      });
21 41741550 Hung Hoang
    } else {
22 5d32cbea Václav Jirák
      errMsg = error.error.message;
23 41741550 Hung Hoang
    }
24 1d169f6d Hung Hoang
25 5d32cbea Václav Jirák
    this.snackBar.open(errMsg, 'X');
26
27
    return throwError(errMsg);
28 41741550 Hung Hoang
  }
29
30 30989178 Hung Hoang
  /**
31
   * Creates http parameters (query for request) for given
32
   * object (parameter - value), if the value is null
33
   * it's not added into the query
34
   * @param params object from which the query is created
35
   */
36 4bcef705 Hung Hoang
  protected createParams(params: any) {
37
    let httpParams = new HttpParams();
38
    for (const key in params) {
39
      if (params.hasOwnProperty(key)) {
40
        if (params[key] != null) {
41
          httpParams = httpParams.set(key, params[key]);
42
        }
43
      }
44
    }
45
46
    return httpParams;
47
  }
48 41741550 Hung Hoang
}