mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
24 lines
549 B
TypeScript
24 lines
549 B
TypeScript
'use strict';
|
|
|
|
import { Injectable } from '@angular/core';
|
|
import { Subject } from 'rxjs/Subject';
|
|
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
|
|
|
@Injectable()
|
|
export class AppStateService {
|
|
samplesLanguage = new Subject<string>();
|
|
error = new BehaviorSubject<any>(null);
|
|
loading = new Subject<boolean>();
|
|
initialized = new BehaviorSubject<any>(false);
|
|
|
|
searchContainingPointers = new BehaviorSubject<string|null[]>([]);
|
|
|
|
startLoading() {
|
|
this.loading.next(true);
|
|
}
|
|
|
|
stopLoading() {
|
|
this.loading.next(false);
|
|
}
|
|
}
|