-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: Allow providing neither a controlled nor an initial value #10
Conversation
setValue(true); | ||
|
||
// @ts-expect-error This should be an error as the value can be undefined | ||
return value.valueOf(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be an error but isn't unfortunately.
Something seems off with the undefined checks (my playground for testing).
I'm wondering when in doubt if we should rather go for a potential undefined
returned here. It needs additional checks, but is safer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@menelaos Do you have an idea by chance?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just tried for quite a bit, but couldn't find a solution 😞 I would also suggest to proceed with the potential undefined
for now.
/** | ||
* Enables a component state to be either controlled or uncontrolled. | ||
*/ | ||
export default function useOptionallyControlledState<Value>({ | ||
export default function useOptionallyControlledState< |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO:
- Rename to
useOptionalState
as it delivers the same meaning ("controlled" means there's no intermediate state)
@@ -5,7 +5,7 @@ A collection of commonly used hooks for React apps. | |||
**Packages:** | |||
|
|||
- [`use-promised`](./packages/use-promised) | |||
- [`use-optionally-controlled-state`](./packages/use-optionally-controlled-state) | |||
- [`use-optional-state`](./packages/use-optional-state) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -18,21 +18,21 @@ When implementing a component, it's sometimes hard to choose one or the other si | |||
|
|||
This hook helps you to support both patterns in your components, increasing flexibility while also ensuring ease of use. | |||
|
|||
Since the solution can be applied on a per-prop basis, you can even enable this behaviour for multiple props that are orthogonal (e.g. a `<Prompt isOpen inputValue="" />` component). | |||
Since the solution can be applied on a per-prop basis, you can also enable this behaviour for multiple props that are orthogonal (e.g. a `<Prompt isOpen inputValue="" />` component). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that the initial excitement has worn off 😉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haha, right 😆. I found it unnecessarily salesy on a second look 😁
@@ -102,3 +110,73 @@ it('throws when switching from controlled to uncontrolled mode', () => { | |||
/Can not change from controlled to uncontrolled mode./ | |||
); | |||
}); | |||
|
|||
/** | |||
* Type signature tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, clever! I haven't seen this before...
I think we can also drop this type assertion now (the |
Great point, thanks! |
No description provided.