-
Notifications
You must be signed in to change notification settings - Fork 85
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
Suggestion: use object for input
instead of tuple
#99
Comments
Another idea: the inputs could be provided as separate observables. This way, users don't have to destructure the observable, nor do they have to worry about adding useObservable(
inputs => {
const { dispatch$ } = inputs;
/* … */
},
200,
{ dispatch$: props.dispatch }
); |
I think const dispatch$ = useObservable(pluckFirst, [props.dispatch]); and then use that inside any closure. |
I like the idea of each prop being an observable, but that could get somewhat complex when listening to many of them. |
Re. #99 (comment)
This is a start: https://stackblitz.com/edit/react-ts-p7ueqk. @Brooooooklyn What do you think to this idea? |
When passing in many inputs, it's awkward to remember the indexes inside the input tuple when you're trying to read/destructure a specific input, e.g:
If the inputs were represented as an object instead, they would be much easier to destructure.
The text was updated successfully, but these errors were encountered: