cic-staff-client/src/app/_services/location.service.ts

23 lines
715 B
TypeScript
Raw Normal View History

2020-12-05 07:29:18 +01:00
import { Injectable } from '@angular/core';
import {BehaviorSubject} from 'rxjs';
import {environment} from '@src/environments/environment';
2020-12-05 07:29:18 +01:00
import {first} from 'rxjs/operators';
2021-03-15 06:53:33 +01:00
import {HttpWrapperService} from '@app/_services/http-wrapper.service';
2020-12-05 07:29:18 +01:00
@Injectable({
providedIn: 'root'
})
export class LocationService {
locations: any = '';
private locationsList = new BehaviorSubject<any>(this.locations);
locationsSubject = this.locationsList.asObservable();
constructor(
private httpWrapperService: HttpWrapperService,
2020-12-05 07:29:18 +01:00
) { }
getLocations(): void {
this.httpWrapperService.get(`${environment.cicCacheUrl}/locations`).pipe(first()).subscribe(res => this.locationsList.next(res.body));
2020-12-05 07:29:18 +01:00
}
}