-
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
Editor topbar: reorder the actions on the right #65163
Conversation
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. |
Size Change: +93 B (+0.01%) Total Size: 1.78 MB
ℹ️ View Unchanged
|
@@ -74,11 +74,11 @@ function Editor( { | |||
<EditorInterface { ...props }> | |||
{ extraContent } | |||
</EditorInterface> | |||
{ children } |
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.
<Sidebar>
is the settings sidebar, which renders the settings toggle in the topbar.
The global styles toggle is rendered through the children, so moving the children to render first should reorder the items.
My main concern though is that it might still allow plugins to render toggles before/after the items inconsistently. I need to do some more testing around that.
Flaky tests detected in 6bb0ea0. 🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/10777367704
|
Very nice. |
This looks like a good first step. We can see if order of plugins is a major concern in which we probably should move out the sidebar panel toggle. |
Nice one! |
What?
Addresses part of #64339
Moves the Save/Publish buttons to the right of the Settings and Global Styles (pinned items) buttons.
Also reorders the Global Styles and Settings buttons, though I'm not sure how reliable this is when plugins register items (see the comment), so I'm still experimenting and looking for feedback on that change.
Why?
As mentioned in the issue, the way the buttons change order can be confusing for users
How?
Swap some lines of code around
Testing Instructions
Test the Post, Site, or Widget editors
Screenshots or screencast
Before
After