Skip to content

Commit 378b642

Browse files
authoredFeb 13, 2025
fix: refocus website search button when the dialog is closed (#2702)
1 parent 9fce665 commit 378b642

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed
 

‎website/app/components/doc/page/header/algolia-search/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,12 @@ export default class DocAlgoliaSearchComponent extends Component {
5858
detachedCancelButtonText: 'Close', // https://www.algolia.com/doc/ui-libraries/autocomplete/api-reference/autocomplete-js/autocomplete/#param-translations
5959
},
6060
onStateChange: ({ state, prevState }) => {
61+
// keep tracked state in sync with internal state so cmd+k properly opens/closes the dialog
62+
this.isModalOpen = state.isOpen;
6163
// used to reset the query to an empty state/string when the modal is closed (via "click" or "esc" key)
6264
if (!state.isOpen && prevState.isOpen) {
6365
autocompleteInstance.setQuery('');
66+
document.getElementById('search-button').focus();
6467
}
6568
},
6669
// onSubmit: ({ state, setQuery, setIsOpen, refresh }) => {
@@ -244,7 +247,6 @@ export default class DocAlgoliaSearchComponent extends Component {
244247
document.addEventListener('keydown', (event) => {
245248
if (event.metaKey && event.key === 'k') {
246249
autocompleteInstance.setIsOpen(!this.isModalOpen);
247-
this.isModalOpen = !this.isModalOpen;
248250
}
249251
});
250252

‎website/app/components/doc/page/header/index.hbs

+7-5
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,18 @@
1616
<Doc::Page::Header::NavItem @label="Components" @route="components" @currentTopRoute={{@currentTopRoute}} />
1717
<Doc::Page::Header::NavItem @label="Patterns" @route="patterns" @currentTopRoute={{@currentTopRoute}} />
1818
<li class="doc-page-header__nav-item-generic doc-page-header__nav-item--split">
19-
<div class="sr-only" id="search-button">This button opens a dialog containing an input field and some additional
20-
information that you may wish to explore. An automatic search will be performed as you type text into the
21-
search field, but the results may not be announced. Exploring the additional items in the modal will help you
22-
discover the search results.</div>
19+
<div class="sr-only" id="search-button-help">
20+
This button opens a dialog containing an input field and some additional information that you may wish to
21+
explore. An automatic search will be performed as you type text into the search field, but the results may not
22+
be announced. Exploring the additional items in the modal will help you discover the search results.
23+
</div>
2324
<button
2425
type="button"
2526
class="doc-page-header__desktop-icon-item"
2627
data-doc-algolia-search-autocomplete-secondary-trigger
27-
aria-describedby="search-button"
28+
aria-describedby="search-button-help"
2829
aria-label="Search"
30+
id="search-button"
2931
>
3032
<Hds::Icon @name="search" @size="24" />
3133
</button>

0 commit comments

Comments
 (0)
Failed to load comments.