We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I would like to contribute an RxJs Operator which will take a underlying (async) source and emits some stateful values.
Example
http = inject(http) // will emit: // {value: undefined, error:undefined, isLoading:true} // {value: T, error:undefined, isLoading:false} data$ = this.http.get(...).pipe( stateful() )
This can also be combined with the derivedLoading-operator/behavior I contributed recently
derivedLoading
The text was updated successfully, but these errors were encountered:
See #56 for original ask and discussion. #354 is similar too, with a slightly different usage API.
For some of my projects, I maintain a custom RxJs operator for this but would love to have something more standard.
Sorry, something went wrong.
I see. As far as I can see there's so far no conclusion if this feature should be implemented?
No branches or pull requests
Hi, I would like to contribute an RxJs Operator which will take a underlying (async) source and
emits some stateful values.
Example
This can also be combined with the
derivedLoading
-operator/behavior I contributed recentlyThe text was updated successfully, but these errors were encountered: