I an using ngrx/data in my app and am trying to figure out how to use the error$
stream to display an error in a component. Basically I am using a modal pop up with a form to create an entity and I am using the error$
stream to display any error that occurs when saving it. The problem I am having is that if an error occurs and it is displayed and the pop up is closed the next time it is opened the previous error is displayed. This is the code for the error$
selector
this.entityActionErrors$ = actions.pipe(
filter(
(ea: EntityAction) =>
ea.payload &&
ea.payload.entityOp &&
ea.payload.entityOp.endsWith(OP_ERROR)
),
shareReplay(1)
);
The problem is with the shareReplay(1)
. I am trying to figure how to ignore or filter out the previous error when the modal is reopened and the error$ stream is subscribed to again.
Is there a way in rxjs to ignore or filter out the previous emission from a sharedReplay subject?
Skipping stored value is simple:
errors$.pipe(skipUntil(timer(0)));
.It works because stored value is provided synchronously.
You can also play with asyncScheduler.