From 08782f1304dc18f748a79f4e2788339c616448a3 Mon Sep 17 00:00:00 2001 From: sumitdaga Date: Wed, 16 Jan 2019 17:05:26 +0530 Subject: [PATCH] add mock network delay --- src/app/services/http-helper.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/services/http-helper.service.ts b/src/app/services/http-helper.service.ts index a47ca93..975e2b9 100755 --- a/src/app/services/http-helper.service.ts +++ b/src/app/services/http-helper.service.ts @@ -3,7 +3,7 @@ import {Observable, throwError, of} from 'rxjs'; import {HttpClient, HttpHeaders} from '@angular/common/http'; import * as _ from 'lodash'; import {environment} from '../../environments/environment'; -import {catchError} from 'rxjs/operators'; +import {catchError, delay} from 'rxjs/operators'; export const API_BASE_URL = environment.URI; @@ -24,7 +24,7 @@ export class HttpHelperService { get(url: string, options?: any): Observable { return this.http .get(API_BASE_URL + url, this.requestOptions(options)) - .pipe(catchError(err => this.catchError(err))); + .pipe(delay(1000), catchError(err => this.catchError(err))); } /** @@ -38,7 +38,7 @@ export class HttpHelperService { post(url: string, body: any, options?: any, isUpload?: boolean): Observable { return this.http .post(API_BASE_URL + url, body, this.requestOptions(options, isUpload)) - .pipe(catchError(err => this.catchError(err))); + .pipe(delay(1000), catchError(err => this.catchError(err))); } /** pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy