Library was deprecated in favor of @fullerstack/ngx-cachify
A simple http cache module for Angular applications
npm i @nwx/http-cache |OR| yarn add @nwx/http-cache
// In your environment{prod,staging}.ts
import { AppCfg, TargetPlatform } from '@nwx/cfg';
import { LogLevels } from '@nwx/logger';
export const environment: AppCfg = {
// app name
appName: '@nwx/http-cache',
// target (browser, mobile, desktop)
target: TargetPlatform.web,
// production, staging or development
production: false,
log: {
// log level (application-wide)
level: LogLevels.debug
},
http-cache: {
// estimate expiry time of http cache (in seconds)
ttl: 60,
}
};
// In your app.module.ts
import { CfgModule } from '@nwx/cfg';
import { LoggerModule } from '@nwx/logger';
import { http-cacheModule } from '@nwx/http-cache';
import { environment } from '../environments/environment';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
CfgModule.forRoot(environment), // make the environment injectable
LoggerModule,
HttpCacheModule
],
bootstrap: [AppComponent]
})
export class AppModule {}
// In your app.component.ts
import { Component, OnInit, OnDestroy } from '@angular/core';
import { Subject } from 'rxjs';
@Component({
selector: 'app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent implements OnInit, OnDestroy {
title = 'Neekware';
options = {};
destroy$ = new Subject();
constructor(
private http: HttpClient,
private httpCache: HttpCacheService
) {
this.title = this.cfg.options.appName;
console.log('AppComponent loaded ...');
}
ngOnInit() {
// create a state path into our store - also used as internal cache key
const portfolioStatePath = new OrderedStatePath()
.append('user', 1)
.append('portfolio', 2)
.toString());
// select on the state path to be notified of any change
this.httpCache.store
.select<Portfolio>(portfolioStatePath)
.pipe(takeUntil(this.destroy$))
.subscribe({
next: portfolio => {
console.log('Portfolio via Select', portfolio);
},
});
this.makePortfolioRequest('1', '2'); // calls the api
setTimeout(() => {
this.makePortfolioRequest('1', '2'); // uses the cache response
}, 4)
setTimeout(() => {
this.makePortfolioRequest('1', '2'); // calls the api
}, 6)
}
makePortfolioRequest(uId: string, pId: string) {
const cacheKey = new OrderedStatePath()
.append('user', uId)
.append('portfolio', pId)
.toString();
const httpHeaders = addMetaToHttpHeaders({
policy: HttpCacheFetchPolicy.CacheFirst,
key: cacheKey,
ttl: 5,
});
this.http.get<Portfolio>(`/api/user/${uId}/portfolio/${pId}`, { headers: httpHeaders })
.pipe(takeUntil(this.destroy$))
.subscribe(portfolio => {
console.log('Portfolio via Http', portfolio);
});
}
ngOnDestroy() {
this.destory$.next();
this.destroy$.complete();
}
}
To run the tests against the current environment:
npm run ci:all
Released under a (MIT) license.
X.Y.Z Version
`MAJOR` version -- making incompatible API changes
`MINOR` version -- adding functionality in a backwards-compatible manner
`PATCH` version -- making backwards-compatible bug fixes