[Trunk|Library]: Remove subject from curators service.
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@55998 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
779be7dd43
commit
8b8c02eab9
|
@ -1,6 +1,6 @@
|
|||
import {Injectable} from '@angular/core';
|
||||
import {HttpClient} from '@angular/common/http';
|
||||
import {BehaviorSubject, Observable} from 'rxjs';
|
||||
import {Observable} from 'rxjs';
|
||||
import {Curator} from '../../utils/entities/CuratorInfo';
|
||||
import {EnvProperties} from '../../utils/properties/env-properties';
|
||||
import {CustomOptions} from "../../services/servicesUtils/customOptions.class";
|
||||
|
@ -8,29 +8,11 @@ import {CustomOptions} from "../../services/servicesUtils/customOptions.class";
|
|||
@Injectable()
|
||||
export class CuratorService {
|
||||
|
||||
private curatorsSubject: BehaviorSubject<Curator[]> = new BehaviorSubject([]);
|
||||
|
||||
constructor(private http: HttpClient) {
|
||||
}
|
||||
|
||||
public initCurators(properties: EnvProperties, url: string): void {
|
||||
this.http.get<Curator[]>((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url).
|
||||
subscribe((curators) => {
|
||||
this.curatorsSubject.next(curators);
|
||||
});
|
||||
}
|
||||
|
||||
public get curators(): Observable<Curator[]> {
|
||||
return this.curatorsSubject.asObservable();
|
||||
}
|
||||
|
||||
public updateCurators(curator: Curator) {
|
||||
const curators = this.curatorsSubject.value;
|
||||
if (curators && curator) {
|
||||
curator._id = null;
|
||||
curators.push(curator);
|
||||
this.curatorsSubject.next(curators);
|
||||
}
|
||||
public getCurators(properties: EnvProperties, url: string): Observable<Curator[]> {
|
||||
return this.http.get<Curator[]>((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url);
|
||||
}
|
||||
|
||||
public updateCurator(url: string, curator: Curator) {
|
||||
|
|
Loading…
Reference in New Issue