Skip to content
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

Merged
merged 8 commits into from
Aug 31, 2022

Conversation

amannn
Copy link
Owner

@amannn amannn commented Aug 29, 2022

No description provided.

setValue(true);

// @ts-expect-error This should be an error as the value can be undefined
return value.valueOf();
Copy link
Owner Author

@amannn amannn Aug 29, 2022

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.

Copy link
Owner Author

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?

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<
Copy link
Owner Author

@amannn amannn Aug 29, 2022

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)

@amannn amannn changed the title [WIP] feat: Allow providing neither a controlled nor an initial value feat: Allow providing neither a controlled nor an initial value Aug 30, 2022
@amannn amannn changed the title feat: Allow providing neither a controlled nor an initial value [WIP] feat: Allow providing neither a controlled nor an initial value Aug 30, 2022
@amannn amannn requested a review from menelaos August 30, 2022 08:00
@amannn amannn changed the title [WIP] feat: Allow providing neither a controlled nor an initial value feat: Allow providing neither a controlled nor an initial value Aug 30, 2022
@@ -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)

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).

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 😉

Copy link
Owner Author

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

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...

@menelaos
Copy link

I think we can also drop this type assertion now (the !). The respective comment should probably be updated as well...

@amannn
Copy link
Owner Author

amannn commented Aug 31, 2022

I think we can also drop this type assertion now (the !). The respective comment should probably be updated as well...

Great point, thanks!

@amannn amannn merged commit b921d3e into main Aug 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants