-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Revisions: Specify block level diff status via aria-label #77779
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
Open
himanshupathak95
wants to merge
12
commits into
WordPress:trunk
Choose a base branch
from
himanshupathak95:fix/77530-block-level-diff-aria-labels
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+56
−12
Open
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8afb2a8
create a block element reference handle
himanshupathak95 97e5f1a
set block level aria labels according to the diff
himanshupathak95 f58a0e5
add status aware aria labels for block diff statuses
himanshupathak95 1b202c9
set aria-label for block elements based on diff status
himanshupathak95 20e03c4
Add doc block for getDiffStatusLabel function
himanshupathak95 97aef97
remove aria-label from block elements when diff status is not present
himanshupathak95 7f5268e
improve line spacing
himanshupathak95 1564b71
streamline aria-label handling for block diff statuses
himanshupathak95 c07f0fa
enhance aria-label handling for paragraph block based on content state
himanshupathak95 3547840
update aria-label handling in useBlockProps to prioritize wrapperProps
himanshupathak95 877b4ac
use switch case for `getDiffStatusLabel`
himanshupathak95 b931940
update aria-label handling in ParagraphBlock to use dynamic block typ…
himanshupathak95 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
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.
We should be careful not to introduce a new API here. If it wasn't possible before for extenders to set an aria label, then I'm not sure if we should add that. Perhaps we can check the store if revisions mode is on, or add some React context?
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.
Hi @ellatrix, thanks for the feedback!
What do you think about using a private React context (e.g., BlockAriaLabelOverrideContext exported via lock-unlock)? We could provide the diff label from revisions-canvas.js and consume it directly in useBlockProps.
This approach lets us completely revert the changes to the paragraph block and avoids passing anything through wrapperProps.