Skip to content

Instantly share code, notes, and snippets.

View thisiszoaib's full-sized avatar

Zoaib thisiszoaib

View GitHub Profile
@limenutt
limenutt / loading.service.ts
Last active April 5, 2021 07:36
A naive Angular service to track the loading state
// from LinkedIn thread
// https://bit.ly/3up4oeK
@Injectable({
providedIn: 'root',
})
export class LoadingService {
private _loading = new BehaviorSubject<boolean>(false);
private _pendingOperations = 0;
protected get pendingOperations(): number {