Set focus to the generated title text area upon modal open and completion - #901
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. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #901 +/- ##
==========================================
Coverage 80.18% 80.18%
Complexity 2526 2526
==========================================
Files 106 106
Lines 10240 10240
==========================================
Hits 8211 8211
Misses 2029 2029
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
What?
Automatically sets focus to the generated title
<textarea>inside the Title Generation modal when the modal opens and after a new title suggestion is regenerated.Why?
When opening the Title Generation modal or clicking the "Regenerate" button, focus was not automatically placed on the generated title text field.
How?
focusOnMount="firstInputElement"to the WordPressModalcomponent inTitleToolbar.tsx.textAreaRefattached to theTextareaControlcomponent.handleRegenerate(), scheduledtextAreaRef.current?.focus()viasetTimeout(..., 0)tracked infocusTimeoutRef.currentso focus is set to the text area once state updates complete and the input is re-enabled.Use of AI Tools
AI assistance: Yes
Tool(s): Claude
Model(s): Sonnet 4.6
Used for: Code review, PR description
Testing Instructions
Screencast:
Before:
Screen.Recording.2026-07-28.at.4.21.28.PM.mov
After:
Screen.Recording.2026-07-28.at.4.10.53.PM.mov
Changelog Entry