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

23 lines
662 B
TypeScript
Raw Normal View History

2020-12-05 07:29:18 +01:00
import { Injectable } from '@angular/core';
import {BehaviorSubject} from 'rxjs';
import {HttpClient} from '@angular/common/http';
import {environment} from '@src/environments/environment';
2020-12-05 07:29:18 +01:00
import {first} from 'rxjs/operators';
@Injectable({
providedIn: 'root'
})
export class LocationService {
locations: any = '';
private locationsList = new BehaviorSubject<any>(this.locations);
locationsSubject = this.locationsList.asObservable();
constructor(
private http: HttpClient
) { }
getLocations(): void {
this.http.get(`${environment.cicCacheUrl}/locations`).pipe(first()).subscribe(locations => this.locationsList.next(locations));
}
}