-
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
Cover Block: Move Clear Media button from Inspector Controls to Block Controls. #64630
Cover Block: Move Clear Media button from Inspector Controls to Block Controls. #64630
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 Unlinked AccountsThe following contributors have not linked their GitHub and WordPress.org accounts: @rohitmathur-7. Contributors, please read how to link your accounts to ensure your work is properly credited in WordPress releases. 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. |
👋 Thanks for your first Pull Request and for helping build the future of Gutenberg and WordPress, @rohitmathur-7! In case you missed it, we'd love to have you join us in our Slack community. If you want to learn more about WordPress development in general, check out the Core Handbook full of helpful information. |
Thanks, @rohitmathur-7! Let's match other blocks like Featured Image that add control to the media replace dropdown. I'm also wondering if we should use "Reset" as a label instead of "Clear Media". cc @jasmussen Screenshot |
Good opportunity to clean things up. A quick audit: Site logo has Reset in the dropdown: As does Featured Image: Image does not have it: Neither does Cover: It seems fine to add "Reset" in the dropdown for both Image and Cover, but I'd not call it "Clear Media", or add it to the block toolbar. Thank you for the contribution! |
Thanks for the confirmation, @jasmussen! |
Created PR #64669 to add "Reset" option on image block. |
…of Replace button
Hii @Mamaduka @jasmussen , I have changed the name of |
Thank you, @rohitmathur-7! It looks like the Here's how to fix it:
Here's what the updated test should look like: test( 'clears media when clear media button clicked', async () => {
await setup( {
url: 'http://localhost/my-image.jpg',
} );
await selectBlock( 'Block: Cover' );
expect(
within( screen.getByLabelText( 'Block: Cover' ) ).getByRole(
'img'
)
).toBeInTheDocument();
await userEvent.click(
screen.getByRole( 'button', { name: 'Replace' } )
);
await userEvent.click(
screen.getByRole( 'menuitem', {
name: 'Reset',
} )
);
expect(
within( screen.getByLabelText( 'Block: Cover' ) ).queryByRole(
'img'
)
).not.toBeInTheDocument();
} ); |
…nd updated the test
Hii @Mamaduka , |
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, @rohitmathur-7!
Everything looks good 👍
Congratulations on your first merged pull request, @rohitmathur-7! We'd like to credit you for your contribution in the post announcing the next WordPress release, but we can't find a WordPress.org profile associated with your GitHub account. When you have a moment, visit the following URL and click "link your GitHub account" under "GitHub Username" to link your accounts: https://profiles.wordpress.org/me/profile/edit/ And if you don't have a WordPress.org account, you can create one on this page: https://login.wordpress.org/register Kudos! |
… Controls. (WordPress#64630) Unlinked contributors: rohitmathur-7. Co-authored-by: Mamaduka <mamaduka@git.wordpress.org> Co-authored-by: jasmussen <joen@git.wordpress.org> Co-authored-by: akasunil <sunil25393@git.wordpress.org> Co-authored-by: richtabor <richtabor@git.wordpress.org>
What?
Clear Media
button from Inspector Controls to Block Controls for better UX.Fixes: #64629
Why?
Replace
button so that all the buttons related to the media are present in one place only.How?
Testing Instructions
Clear Media
button is should now be present in Block Controls.Screenshots or screencast
Before (Clear Media button in Inspector Controls):
After (Clear Media button in Block Controls):