-
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
Use ellipsis to denote when menu items have modals (secondary steps) #53696
base: trunk
Are you sure you want to change the base?
Conversation
Size Change: +57 B (0%) Total Size: 1.51 MB
ℹ️ View Unchanged
|
@@ -60,7 +60,7 @@ export default function BlockLockToolbar( { clientId, wrapperRef } ) { | |||
<ToolbarGroup className="block-editor-block-lock-toolbar"> | |||
<ToolbarButton | |||
icon={ lock } | |||
label={ __( 'Unlock' ) } | |||
label={ __( 'Unlock…' ) } |
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.
Probably not super helpful for block toolbar buttons which are hidden by default.
I also noticed that the "Locking/Unlocking" items are missing the aria-haspopup/aria-expanded
(#24796). I'll add those tomorrow.
It would be nice to get a11y feedback on this one.
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.
@alexstine thoughts on adding an ellipsis for the ToolbarButton text here?
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.
@richtabor It really doesn't change things much for screen readers. It will be highly depend it on how each screen reader decides to read "..." and this is also based on user controllable settings. Why not this for example?
label={ __( 'Unlock…' ) } | |
label={ __( 'Unlock, opens modal' ) } |
The ARIA attributes, aria-haspopup
should fix this for accessibility but not sure what you do here visually.
In general I'm a little reluctant to add this ellipsis, as to me it just makes this text look different than other text in the dropdown, and nothing about it says that it'll add a secondary action. At the same time, I'd hate for an icon to be added to denote the same, and if that's the alternative, I'd much prefer this typographic addition which is at least consistent, it appears, with what MacOS does. So I'd love a couple of more thoughts on this one! |
+1 for a simple typographical solution. I think the ellipsis communicates "there will be more to this" fairly effectively. That said, this feels like the sort of change that could create more confusion if it is not introduced holistically, and maintained programatically. It would be strange (imo) for this heuristic to exist only in the block toolbar, and not in the editor toolbar, Command Palette, and so forth. |
Something worth bringing up in the systems work? |
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
I remember discussing this with @ciampo at some point, but I don't recall where... maybe during the Iirc the upshot was that it would be difficult to automatically codify this behavior. Maybe there could be a prop that adds the ellipsis? This still feels like a good idea to me, it's just unclear how we can ensure consistent implementation. |
That could work fine imo. |
It was discussed in #61094 :) To recap, my take is the The component aims at being as flexible as possible and aims at doing so via composition, allowing its consumers to set any text label (or React node, FWIW) they want. Hence also why I'm hesitant to adding a prop on (cc @WordPress/gutenberg-components ) |
I'm strongly in favor of adding the ellipsis rule in the documented design guidelines. We should be careful of the language though, "opens a modal" is too specific in my opinion. For example, the HIG uses this verbiage:
How about we open an issue and discuss how to actualize this? There are definitely pros/cons to using a prop vs. relying directly on consumer-provided strings. I can imagine there being inconsistency between faux/real ellipses ( |
What?
Currently, you don't know if clicking a menu item within the block options toolbar will conduct an action, or open a modal instead. The expectation of requiring additional input is clearer, you don't have to know it requires additional input.
Testing Instructions
Visual
Recordings
Before
CleanShot.2023-08-15.at.14.16.55.mp4
After
CleanShot.2023-08-15.at.14.15.30.mp4