Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created February 8, 2020 15:58
Show Gist options
  • Save andrewarosario/827012e2de60f8c5502cfc7426424257 to your computer and use it in GitHub Desktop.
Save andrewarosario/827012e2de60f8c5502cfc7426424257 to your computer and use it in GitHub Desktop.
@Injectable()
export class RecordsFacade {
private records$: Observable<Record[]>;
constructor(private recordApi: RecordApi) {
this.records$ = this.recordApi
.getRecords()
.pipe(shareReplay(1)); // armazena os dados em cache
}
getRecords() {
return this.records$;
}
// projeta os dados cacheados para o componente
getRecordsFromPeriod(period?: Period): Observable<Record[]> {
return this.records$
.pipe(map(records => records.filter(record => record.inPeriod(period))));
}
searchRecords(search: string): Observable<Record[]> {
return this.recordApi.searchRecords(search);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment