Caches records locally if connection to backend fails

This commit is contained in:
Aaron Louie 2020-10-19 11:57:00 -04:00
parent 25c999d7f2
commit 1a7c551dfa
7 changed files with 122 additions and 28 deletions

View File

@ -21,14 +21,16 @@ import {AppComponent} from './app.component';
import {CountComponent} from './count/count.component'; import {CountComponent} from './count/count.component';
import {FooterComponent} from './footer/footer.component'; import {FooterComponent} from './footer/footer.component';
import {HomeComponent} from './home/home.component'; import {HomeComponent} from './home/home.component';
import {LabelLayoutComponent} from './label-layout/label-layout.component';
import {LoadingComponent} from './loading/loading.component'; import {LoadingComponent} from './loading/loading.component';
import {NavbarComponent} from './navbar/navbar.component'; import {NavbarComponent} from './navbar/navbar.component';
import {PrintLayoutComponent} from './print-layout/print-layout.component';
import {PrintComponent} from './print/print.component'; import {PrintComponent} from './print/print.component';
import {SampleComponent} from './sample/sample.component'; import {SampleComponent} from './sample/sample.component';
import {ApiService} from './services/api.service'; import {ApiService} from './services/api.service';
import {CacheService} from './services/cache.service';
import {SettingsService} from './services/settings.service';
import {SettingsComponent} from './settings/settings.component'; import {SettingsComponent} from './settings/settings.component';
import { LabelLayoutComponent } from './label-layout/label-layout.component';
import { PrintLayoutComponent } from './print-layout/print-layout.component';
/** /**
* This function is used internal to get a string instance of the `<base href="" />` value from `index.html`. * This function is used internal to get a string instance of the `<base href="" />` value from `index.html`.
@ -48,16 +50,16 @@ export function getBaseHref(platformLocation: PlatformLocation): string {
@NgModule({ @NgModule({
declarations: [ declarations: [
AppComponent, AppComponent,
LoadingComponent,
FooterComponent,
NavbarComponent,
HomeComponent,
SampleComponent,
CountComponent, CountComponent,
SettingsComponent, FooterComponent,
PrintComponent, HomeComponent,
LabelLayoutComponent, LabelLayoutComponent,
LoadingComponent,
NavbarComponent,
PrintComponent,
PrintLayoutComponent, PrintLayoutComponent,
SampleComponent,
SettingsComponent,
], ],
imports: [ imports: [
BrowserAnimationsModule, BrowserAnimationsModule,
@ -65,25 +67,26 @@ export function getBaseHref(platformLocation: PlatformLocation): string {
FormlyModule, FormlyModule,
FormsModule, FormsModule,
HttpClientModule, HttpClientModule,
MatProgressSpinnerModule,
ReactiveFormsModule,
MatCardModule,
MatInputModule,
MatToolbarModule,
MatButtonModule, MatButtonModule,
MatIconModule, MatCardModule,
MatFormFieldModule, MatFormFieldModule,
QRCodeSVGModule, MatIconModule,
AppRoutingModule, MatInputModule,
MatOptionModule, MatOptionModule,
MatProgressSpinnerModule,
MatSelectModule, MatSelectModule,
// <-- This line MUST be last (https://angular.io/guide/router#module-import-order-matters) MatToolbarModule,
QRCodeSVGModule,
ReactiveFormsModule,
AppRoutingModule, // <-- This line MUST be last (https://angular.io/guide/router#module-import-order-matters)
], ],
providers: [ providers: [
{provide: MAT_FORM_FIELD_DEFAULT_OPTIONS, useValue: {appearance: 'outline'}},
ApiService, ApiService,
CacheService,
SettingsService,
{provide: 'APP_ENVIRONMENT', useClass: ThisEnvironment}, {provide: 'APP_ENVIRONMENT', useClass: ThisEnvironment},
{provide: APP_BASE_HREF, useFactory: getBaseHref, deps: [PlatformLocation]}, {provide: APP_BASE_HREF, useFactory: getBaseHref, deps: [PlatformLocation]},
{provide: MAT_FORM_FIELD_DEFAULT_OPTIONS, useValue: {appearance: 'outline'}},
], ],
bootstrap: [AppComponent], bootstrap: [AppComponent],
entryComponents: [] entryComponents: []

View File

@ -1,4 +1,6 @@
import {Component, OnInit} from '@angular/core'; import {Component, OnInit} from '@angular/core';
import {ApiService} from '../services/api.service';
import {CacheService} from '../services/cache.service';
@Component({ @Component({
selector: 'app-home', selector: 'app-home',
@ -7,9 +9,33 @@ import { Component, OnInit } from '@angular/core';
}) })
export class HomeComponent implements OnInit { export class HomeComponent implements OnInit {
constructor() { } constructor(
private cacheService: CacheService,
private apiService: ApiService,
) {
}
ngOnInit(): void { ngOnInit(): void {
const cachedRecords = this.cacheService.getRecords();
let numSuccess = 0;
if (cachedRecords && cachedRecords.length > 0) {
cachedRecords.forEach(r => {
this.apiService.addSample(r).subscribe(() => {
numSuccess++;
console.log('cachedRecords', cachedRecords);
console.log('numSuccess', numSuccess);
if (numSuccess === cachedRecords.length) {
console.log('Cache cleared.');
this.cacheService.clearCache();
}
}, error => {
console.log('Cannot connect to server. Cache not cleared.');
});
});
} else {
console.log('No cached records to upload.');
}
} }
} }

View File

@ -1,7 +1,7 @@
<mat-toolbar color="primary"> <mat-toolbar color="primary">
<mat-toolbar-row> <mat-toolbar-row>
<button id="nav_logo" mat-button routerLink="/" class="logo">BeSAFE</button> <button id="nav_logo" mat-button routerLink="/" class="logo">BeSAFE</button>
<button id="nav_location" mat-button routerLink="/settings">{{testingLocation ? testingLocation.name : 'No location found'}} ({{locationId}})</button> <button id="nav_location" mat-button routerLink="/settings">{{locationId === '0000' ? 'Click here to set location' : 'Location: ' + locationId}}</button>
<span fxFlex></span> <span fxFlex></span>
<button id="nav_home" mat-icon-button routerLink="/"><mat-icon>home</mat-icon></button> <button id="nav_home" mat-icon-button routerLink="/"><mat-icon>home</mat-icon></button>
<button id="nav_settings" mat-icon-button routerLink="/settings"><mat-icon>settings</mat-icon></button> <button id="nav_settings" mat-icon-button routerLink="/settings"><mat-icon>settings</mat-icon></button>

View File

@ -9,14 +9,15 @@ import {TestingLocation} from '../models/testingLocation.interface';
}) })
export class NavbarComponent implements OnInit { export class NavbarComponent implements OnInit {
@Input() testingLocation: TestingLocation; @Input() testingLocation: TestingLocation;
locationId: string;
constructor(private settingsService: SettingsService) { constructor(private settingsService: SettingsService) {
const settings = this.settingsService.getSettings();
this.locationId = settings.locationId;
} }
ngOnInit(): void { ngOnInit(): void {
} }
get locationId(): string {
const settings = this.settingsService.getSettings();
return settings.locationId;
}
} }

View File

@ -6,6 +6,7 @@ import {AppDefaults} from '../models/appDefaults.interface';
import {LabelLayout} from '../models/labelLayout.interface'; import {LabelLayout} from '../models/labelLayout.interface';
import {Sample} from '../models/sample.interface'; import {Sample} from '../models/sample.interface';
import {ApiService} from '../services/api.service'; import {ApiService} from '../services/api.service';
import {CacheService} from '../services/cache.service';
import {SettingsService} from '../services/settings.service'; import {SettingsService} from '../services/settings.service';
@Component({ @Component({
@ -26,7 +27,8 @@ export class PrintComponent implements AfterViewInit {
private api: ApiService, private api: ApiService,
private route: ActivatedRoute, private route: ActivatedRoute,
private changeDetector: ChangeDetectorRef, private changeDetector: ChangeDetectorRef,
private settingsService: SettingsService private settingsService: SettingsService,
private cacheService: CacheService,
) { ) {
this.dateCreated = new Date(); this.dateCreated = new Date();
this.route.queryParamMap.subscribe(queryParamMap => { this.route.queryParamMap.subscribe(queryParamMap => {
@ -86,6 +88,14 @@ export class PrintComponent implements AfterViewInit {
this.api.addSample(newSample).subscribe((result) => { this.api.addSample(newSample).subscribe((result) => {
console.log('addSample subscribe callback'); console.log('addSample subscribe callback');
callback(result); callback(result);
}, err => {
if (err) {
console.error(err);
}
const cachedRecords = this.cacheService.saveRecord(newSample);
console.log('cachedRecords', cachedRecords);
callback(newSample);
}); });
} }

View File

@ -34,11 +34,11 @@ export class ApiService {
} }
/** Add new sample */ /** Add new sample */
addSample(sample: Sample): Observable<Sample> { addSample(sample: Sample): Observable<null> {
const url = this.apiRoot + this.endpoints.sample; const url = this.apiRoot + this.endpoints.sample;
return this.httpClient return this.httpClient
.post<Sample>(url, sample) .post<null>(url, sample)
.pipe(catchError(err => this._handleError(err))); .pipe(catchError(err => this._handleError(err)));
} }

View File

@ -0,0 +1,54 @@
import {Injectable} from '@angular/core';
import serializeJs from 'serialize-javascript';
import {Sample} from '../models/sample.interface';
@Injectable({
providedIn: 'root'
})
export class CacheService {
// Default form field and data values
records: Sample[] = [];
// localStorage key
private localStorageKey = 'cachedRecords';
// Deserializes settings from local storage and returns AppDefaults instance
getStoredRecords(): Sample[] {
// tslint:disable-next-line:no-eval
return (eval(`(${localStorage.getItem(this.localStorageKey)})`) || []) as Sample[];
}
// Returns true if settings are found in local storage
hasStoredRecords(): boolean {
return this.getStoredRecords().length > 0;
}
// Returns records from local storage, or [] if none have been saved yet.
getRecords(): Sample[] {
if (this.hasStoredRecords()) {
return this.getStoredRecords();
} else {
return this.saveRecords(this.records);
}
}
// Serializes given record and adds it to cache in local storage
saveRecord(newRecord: Sample): Sample[] {
const records = this.getRecords();
records.push(newRecord);
return this.saveRecords(records);
}
// Serializes multiple given records and stores them in local storage
saveRecords(newRecords: Sample[]): Sample[] {
localStorage.setItem(this.localStorageKey, serializeJs(newRecords));
return newRecords;
}
// Clears cached records.
clearCache(): Sample[] {
return this.saveRecords([]);
}
}