-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
UnitControl
: show unit label when units
prop has only one unit
#40784
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5da089b
Fix controlled value of `unit` when the `units` prop only has one unit
ciampo 0a8df80
Restore simpler Storybook "single unit" example
ciampo 1cee4e3
Add one more test to check behaviour of component when single units
ciampo c86a634
CHANGELOG
ciampo 35f2e35
Update packages/components/src/unit-control/index.tsx
ciampo 8252bcf
Merge branch 'trunk' into fix/unit-control-single-unit-label
ciampo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,12 +135,7 @@ describe( 'UnitControl', () => { | |
} ); | ||
|
||
it( 'should render label if single units', () => { | ||
render( | ||
<UnitControl | ||
units={ [ { value: '%', label: '%' } ] } | ||
value="30%" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing |
||
/> | ||
); | ||
render( <UnitControl units={ [ { value: '%', label: '%' } ] } /> ); | ||
|
||
const select = screen.queryByRole( 'combobox' ); | ||
const label = screen.getByText( '%' ); | ||
|
@@ -319,6 +314,36 @@ describe( 'UnitControl', () => { | |
expect.anything() | ||
); | ||
} ); | ||
|
||
it( 'should update value correctly when typed and blurred when a single unit is passed', async () => { | ||
const onChangeSpy = jest.fn(); | ||
render( | ||
<> | ||
<button>Click me</button> | ||
<UnitControl | ||
units={ [ { value: '%', label: '%' } ] } | ||
onChange={ onChangeSpy } | ||
/> | ||
</> | ||
); | ||
|
||
const input = getInput(); | ||
await user.type( input, '62' ); | ||
|
||
expect( onChangeSpy ).toHaveBeenLastCalledWith( | ||
'62%', | ||
expect.anything() | ||
); | ||
|
||
// Start counting again calls to `onChangeSpy`. | ||
onChangeSpy.mockClear(); | ||
|
||
// Clicking on the button should cause the `onBlur` callback to fire. | ||
const button = screen.getByRole( 'button' ); | ||
await user.click( button ); | ||
|
||
expect( onChangeSpy ).not.toHaveBeenCalled(); | ||
} ); | ||
} ); | ||
|
||
describe( 'Unit', () => { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Just undoing some Storybook changes that were left from previous work on #40697