-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Search Block: Fix problem with buttons not outputting primary status #51529
Merged
Conversation
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
t-hamano
added
[Type] Bug
An existing feature does not function as intended
[Block] Buttons
Affects the Buttons Block
labels
Jun 15, 2023
Size Change: +1 B (0%) Total Size: 1.4 MB
ℹ️ View Unchanged
|
skorasaurus
added
[Block] Search
Affects the Search Block - used to display a search field
and removed
[Block] Buttons
Affects the Buttons Block
labels
Jun 15, 2023
apeatling
approved these changes
Jun 15, 2023
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.
Good spot, tested and working as expected now ✅
carolinan
approved these changes
Jun 16, 2023
Thanks for the review! |
sethrubenstein
pushed a commit
to pewresearch/gutenberg
that referenced
this pull request
Jul 13, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
[Block] Search
Affects the Search Block - used to display a search field
[Type] Bug
An existing feature does not function as intended
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.
What?
This PR fixes a problem where the width value matches the value of one of the buttons, but does not become the
primary
status.Why?
This issue is very strange. As far as the code base is concerned, if the value set matches one of the buttons and the unit is a percentage, it should be
"primary"
.gutenberg/packages/block-library/src/search/edit.js
Lines 442 to 447 in 12a01d5
However, the actual value that the
Button
component receives in thevariant
prop is the number zero.I am wondering why it is a numeric zero and not a
primary
string. At least as of #24666, when this feature was implemented, it appears that the primary state was correctly applied.As far as the built source is concerned, it is indeed replaced by zero. This may be due to an update to
babel
.How?
After much trial and error, I found that comparing each variable individually, without comparing concatenated strings, correctly outputs the primary status.
Testing Instructions
When any button is pressed or a number or unit is changed, make sure that the corresponding button becomes the primary status.
Screenshots or screencast
d31453614a375b54978e8c90ed9d92eb.mp4