Created
February 8, 2020 15:58
-
-
Save andrewarosario/827012e2de60f8c5502cfc7426424257 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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