-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Automatic watchers #3
Comments
Something like Redux DevTools does for the NgRx - that would be a killer feature! |
I think that it would be hard to distinguish between different observables for example source1.pipe(
filter(),
map()
).subscribe()
source2.pipe(
switchmap(() => source3),
filter()
).subscribe() We would need to show 6 marble diagrams for source1 and source2 and also on every emitted value from source2 it needs to create new marble diagram. We would not have any label for them so it would be very hard to find out what we want. |
I agree, this is a complicated thing. I'm not familiar with the capabilities of Chrome DevTools plugin, but I have an idea, that a list would get created and you could select the streams that you're interested in labeled by the filename and line in the source code. |
I wonder if this would be possible to achieve with a decorator that could take an optional name, e.g |
It would be great if this tool could automatically watch observables, so we could just plug a module into the app and then filter out interesting streams through the DevTools.
The text was updated successfully, but these errors were encountered: