-
Notifications
You must be signed in to change notification settings - Fork 816
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
Update field style controls to use tools panel and live in the styles tab #42278
Update field style controls to use tools panel and live in the styles tab #42278
Conversation
Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.
Interested in more tips and information?
|
Thank you for your PR! When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:
This comment will be updated as you work on your PR and make changes. If you think that some of those checks are not needed for your PR, please explain why you think so. Thanks for cooperation 🤖 Follow this PR Review Process:
If you have questions about anything, reach out in #jetpack-developers for guidance! Jetpack plugin: No scheduled milestone found for this plugin. If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. |
Seems like the build is failing. Strangely I didn't have any issues with |
Code Coverage SummaryCoverage changed in 4 files.
2 files are newly checked for coverage.
Full summary · PHP report · JS report Coverage check overridden by
I don't care about code coverage for this PR
|
Should be working again now, it was an i18n issue. |
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.
Oh yes, thought it looked weird, but didn't realize it was missing something. 😄 |
1db8099
to
5b20287
Compare
I'm skipping the code coverage check for this PR.
I think it'd better to write end to end tests for blocks. 🤷 |
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.
Thanks for all the heavy lifting here @talldan 👍
Functionally, this is mostly testing well for me. There were only a couple of small issues e.g. the color palettes still needing fixing for the consent and checkbox fields, menu popover positioning due to copy/paste typo etc.
Other than that, it's only minor suggestions for improvement, which I've left as inline comments. Ignore the number of them, I just figured they'd help as a checklist and can be marked as resolved to suit.
As this PR will fix #41205 and address the ability to reset style controls, perhaps we can add fixes: #41205
to the PR description here too for discovery.
However I still had to implement two slightly custom 'Typography' panels for the labels and inputs.
...
It's difficult to combine label and field typography into one tools panel.
My initial thoughts were we should update the syncing of styles to be compatible with the core block supports' use of updateBlockAttributes
but you make a great point about the inability to appropriately label and differentiate some of the typography controls. Unlike colors, the typography panel doesn't lend itself well to multiple "sets" of styles.
I think two separate custom panels is an acceptable short-term option while we wait for form fields to be converted to inner blocks. Providing a consistent UX here would be an automatic benefit to adopting more atomic blocks.
That said, this compromise shouldn't block this PR as I believe it's still an improvement over trunk.
I think it'd better to write end to end tests for blocks
Agreed, at least covering the happy path this way sounds like a good place to start.
ColorGradientSettingsDropdown
doesn't work out of the box in a tools panel, seems like has to be wrapped in a div with some styles attached.
There's a long murky history with this component and its historical origin belonging to the PanelBody
component.
Functionally the component does work out of the box within a ToolsPanel
. Core's design direction was for the ToolsPanel
to default to a two column grid layout. At the same time core's color panel design was to be a single column. When ColorGradientSettingsDropdown
was being refactored to also support being in a ToolsPanelItem
it was deemed best to leave the styling up to the consumer.
It would've been nice to have a prop to opt into some default column widths/layouts etc. I believe the thinking there was to avoiding adding stuff to the end API that then had to be supported moving forward.
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-checkbox.js
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-checkbox.js
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-checkbox.js
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-checkbox.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-checkbox.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-controls.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-controls.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-controls.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-controls.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-controls.js
Outdated
Show resolved
Hide resolved
@ilonagl These two things are not introduced by this PR they also happen in trunk, but I can work on separate fixes. It also seems like for multi-choice / single-choice fields there's the opposite problem. Setting the text size scales the radio/checkbox, but not the text. |
5b20287
to
8e1e8bc
Compare
panelId={ clientId } | ||
dropdownMenuProps={ toolsPanelDropdownMenuProps } | ||
> | ||
{ ( isChoicesBlock || blockStyle === 'button' ) && ( |
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 replicates what's in trunk, but I'm a bit confused by this condition, because it looks like the 'button' style for is only available on 'choices' blocks (Multiple Choice / Single Choice), so the whole || blockStyle === 'button'
part is meaningless.
When the block style is something other than button, these button border styles have no effect, but I'm not sure if that's the fault of this condition (perhaps it should be an &&
?) or if the css is broken.
If you change the border style when the 'button' style is active, you can change the border width, but you can't set a border color, so in the theme I'm using it's a transparent border.
When you have a button style on a checkbox within a multiple choice field, the checkbox is still visible within the button:
This doesn't happen for the radio button.
I'll make sure to log these bugs if they're not already. All of these issues are happening in trunk for me.
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 went looking for legacy use cases for the button block style that weren't associated with the choice fields and didn't see any signs of it. I only went back as far as the PR that refactored all the choice fields (#39141). At that stage I didn't see it used for other fields.
So given that, I think you're right, this can be cleaned up. The bugs noted and the clean up sound like a good follow up to me.
Thanks for all the thorough reviews everyone, I believe I've addressed all the feedback now. |
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.
Thanks for addressing all that feedback @talldan 🚀
I've left some additional feedback on things that need tweaking via inline comments.
Those aside, I'm still not sold that we should be making end users adapt to consecutive UX changes. This isn't a problem per se with this PR more that it could pay to hold off on it until it's confirmed we won't be moving to inner blocks for form fields in the near future.
This concern could be mitigated some by the idea you shared in a sync call around levering the block editor setting that opts out of separate tabs display in the block inspector. In other words, we can keep all the styles controls within the same simple block inspector without tabs that the field blocks have now.
Did you end up exploring this at all?
If not, the block editor setting, blockInspectorTabs
, was stabilized in Gutenberg back in WordPress/gutenberg#47045. It does allow finer grained control on a per block basis too.
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-checkbox.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-checkbox.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-controls.js
Outdated
Show resolved
Hide resolved
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-controls.js
Outdated
Show resolved
Hide resolved
panelId={ clientId } | ||
dropdownMenuProps={ toolsPanelDropdownMenuProps } | ||
> | ||
{ ( isChoicesBlock || blockStyle === 'button' ) && ( |
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 went looking for legacy use cases for the button block style that weren't associated with the choice fields and didn't see any signs of it. I only went back as far as the PR that refactored all the choice fields (#39141). At that stage I didn't see it used for other fields.
So given that, I think you're right, this can be cleaned up. The bugs noted and the clean up sound like a good follow up to me.
projects/packages/forms/src/blocks/contact-form/components/jetpack-field-dimension-controls.js
Outdated
Show resolved
Hide resolved
596cdbf
to
3102562
Compare
@aaronrobertshaw There was a small convo about it here - p1741752319463899-slack-C086RGTJT1D. @simison felt it was fine to go ahead with the change. I do share some of the concerns though. Here's what a less disruptive alternative might look like - #42525. With all the settings and design tools in the same tab we might choose not to show some of the controls by default, but those are things that can be easily adjusted. edit: PR feedback should be addressed as well. |
Thanks for the context @talldan. Unfortunately, I think there were some flawed assumptions in that conversation.
The inner blocks won't have tabs in the inspector as they should only have styles controls. So this switch to using the styles tab wouldn't actually begin to smooth the change for users.
I think the approach you've taken in #42525 is probably more aligned with what inner block based fields would look like. If we end up with a different approach like somehow trying to use elements for Global Styles purposes (I don't think this is a good option though), that would still require ad hoc controls at this field level. Even then, #42525 would align with that without preventing us from still adopting the tabs later on as the sidebar became more overloaded. My personal opinion is we should probably leave all the input and label typography controls as optional (not displayed by default).
Ultimately, there are a range of efforts either blocked or in limbo until a final decision is made on the inner blocks approach. Given that, I believe that decision has to come in the very near future. If that time frame, is only a few days or a week, there is no harm in holding off on merging this. Alternatively, I think a reasonable compromise is to refine #42525 and merge it into this branch. The result will be to minimise UX changes for users yet progress or fix issues like being unable to reset some style fields. Edit: P.S. recent code changes addressing feedback LGTM 👍 |
Right! Yeah my bad and you're right; although some of the more elaborated blocks had settings/styles separated to tabs? Anyway, I'm still not concerned about continuous changes to forms, and trying to hold everything for one big change at once. Forms are "set once and be done" type action; customers aren't continuously returning to the sidebar and getting confused. Change is good too; it shows improving vs stalled product. The copy changes to the sync toggle here are excellent, make the toggle much clearer, so would love to get that in asap. |
Jumping in to offer a suggestion, but feel free to ignore. To me "Toggle off if you want to style this block only." doesn't make much sense since it's not aligned with the label. It mentions the opposite of what the label is doing resulting in conflicting instructions IMO. I'd suggest something like "Ensures all form fields share the same styling." and potentially adding the negative case afterwards: "Ensures all form fields share the same styling. Turn off to customize this block separately." If you want to keep the opposite case would suggest cleaning up the wording: “Turn off to customize this block separately." Also have a question about the position. What styles are synced across form fields? Would expect width to also be synced but given the toggle is below it, it doesn't seem like it does? |
Thanks @keoshi ! "Ensures all form fields share the same styling." sounds great and short. 👍 Will be great to have it in human language vs the technical "sync".
Nope, the width doesn't sync; only things below the toggle. That said, since it's more like an advanced setting that should be rarely needed, it might be better to place it at the end or within "Advanced" panel. For now current placement seems fine, above everything that syncs. ![]() |
FWIW I have a small concern about the wording of the sync toggle. Both "Apply styling to all fields" and "Ensures all form fields share the same styling" are inaccurate. This setting only opts this field into sharing styles with other fields that have also opted in. In other words, it might not be "all fields" or "all form fields". The proposed wording could also imply it's "all fields" across all forms. |
We can still limit the bumps in the road for end users by adopting #42525 for very little extra effort. |
Thank you for jumping in, @keoshi!
Great catch, @aaronrobertshaw! You're right. What about adding a small info icon near the header with a tooltip/popover explanation that clarifies what this means ('This setting only opts this field into sharing styles with other fields that have also opted in' or something similar) until we figure out a better way for this (especially if we do decide to use inner blocks and global styling)?
@aaronrobertshaw, you make a good point here. IMHO, it all depends on the timeline. If we introduce the style tab and then revert it within a week or two, I’m not sure it’s worth it. But if it's closer to a month, then @simison is right—it’s better to show that we’re making improvements, even if it might introduce some bumps along the way. |
I think anything is better than making a false promise with the copy.
That's the thing, we don't need to introduce the style tab at all. We can still make changes and improvements right now by adopting the simple addition to settings in #42525. |
If it's not too much effort, we can move forward with the tab-less alternative in #42525, and then once we see how we proceed with blocks-support, we can decide how the next step should look. |
Move color settings to styles tab in existing color panel Move JetpackFieldWidth to styles tab Rename JetpackFieldWidth to JetpackFieldDimensionControls to reflect the new top level component Move border controls to border tools panel Tidy up copy Ensure dropdowns open to left of inspector Remove isShownByDefault for many of the fields Move consent field color tools into style tab color tools panel Move checkbox field style controls to styles tab Avoid using the core InspectorControls groups due to resetAll not triggering styles sync. Mimic core panels using custom ToolsPanels Move typography tools panel above border Refactor consent field to use a standard tools panel instead of the block supports one Update checkbox field to use standard tools panel instead of block supports tools panel Fix resetting width Move field syncing to the style tab Fix border hasValue check against a value of 0 changelog Add 0 arg back to i18n call Show theme colors in color controls Update Consent and Checkbox blocks to include theme colors in color control Fix incorrect prop name - ensure tools panel dropdowns are positioned to the side of the sidebar Update copy to "Sync field styles" Sentence case panel headers Make the color control wrapper class a general purpose thing Update checkbox block typography panel copy Show font size controls by default Relocate and update copy for sync button Reset all resetAlls Switch to use using PanelBody for sync toggle and ensure Consent and Checkbox blocks have consistent implementations Move dimension control help text to ToggleGroupControl Fix multiline comment formatting Add docs for useToolsPanelResponsiveDropdownProps
3102562
to
8dfc3d7
Compare
I've cherry-picked that commit into this branch and also rebased the branch. I think that's all the feedback addressed? |
@simison - @aaronrobertshaw has mentioned privately that he still has reservations about merging this PR, due to conflicts it'll cause with his ongoing work on #42353 and also that it's still changing things for customers in quick succession. I think I'll abandon this, the longer it has taken the less it has become necessary with #42353 sounding like it's getting closer to something concrete. I'll need to find another way to unblock the layout PR I worked in #41805, it might have been forgotten along the way, but that was one of my main motivations for this PR. Hopefully I can just apply the change in #42525 to that PR and it should ensure the width controls on the field blocks don't appear in the styles tab on their own. |
Fixes #41205
Related #41805
Proposed changes:
Moves the Form Field style controls to the Styles tab in block inspector. Also switches these controls over to using ToolsPanels and ToolsPanelItems so that they can be reset and are consistent with other blocks.
The main reason for moving to the style tab is to support the changes in #41805. That will result in core's layout sizing control appearing on field blocks in the styles tab, and it then becomes unusual to have some design tools in the styles tab and others still in settings. After this change design tools will consistently be in the styles tab.
I've changed the organization of the panels so that they're more consistent with core blocks, with 'Dimension', 'Border', 'Color' panels. However I still had to implement two slightly custom 'Typography' panels for the labels and inputs. More on that later in the PR description.
The changes are mostly within the
JetpackFieldControls
file which is used by several form fields to render the inspector controls. The Consent and Checkbox fields don't use this component and have their own implementation. The width control is also a separate component.Issues and trade-offs
InspectorControls
groups. However these implement their own tools panel, and the reset functionality for those panels doesn't work with the field style syncing. @aaronrobertshaw mentioned that he worked on a refactor of the syncing to make that work in [PoC] Forms: Try using inner blocks for fields to aid styling via Global Styles #41281, so it might be an option to follow up with changes. As an alternative I've used custom tools panels for everything apart from width (which isn't synced so doesn't suffer from the issue).<FontSizePicker>
doesn't seem to accept alabel
, so there aren't many options for making the controls distinctive within one panel. I'm open to feedback, particularly design feedback on how this might be improved, or whether it's ok as it is.ColorGradientSettingsDropdown
doesn't work out of the box in a tools panel, seems like has to be wrapped in a div with some styles attached.Other information:
Does this pull request change what data or activity we track or use?
No
Testing instructions:
Screenshots