Projekt

Obecné

Profil

Stáhnout (1.39 KB) Statistiky
| Větev: | Tag: | Revize:
1
import {Injectable} from '@angular/core';
2
import {HttpClient, HttpErrorResponse, HttpParams} from '@angular/common/http';
3
import {throwError} from 'rxjs';
4
import {environment} from '../../../environments/environment';
5
import {MatSnackBar} from '@angular/material';
6
import {TranslateService} from '@ngx-translate/core';
7
@Injectable({
8
  providedIn: 'root'
9
})
10
export class BasicService {
11
  protected baseUrl = environment.apiUrl;
12

    
13
  constructor(protected http: HttpClient, protected snackBar: MatSnackBar, protected translateService: TranslateService) { }
14

    
15
  protected handleError(error: HttpErrorResponse) {
16
    let errMsg;
17
    if (!error.error.error) {
18
      this.translateService.get('error.serverCommunication').subscribe((res: string) => {
19
        errMsg = res;
20
      });
21
    } else {
22
      errMsg = error.error.message;
23
    }
24

    
25
    this.snackBar.open(errMsg, 'X');
26

    
27
    return throwError(errMsg);
28
  }
29

    
30
  /**
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
  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
}
(1-1/5)