File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,12 @@ export default class DocAlgoliaSearchComponent extends Component {
58
58
detachedCancelButtonText : 'Close' , // https://www.algolia.com/doc/ui-libraries/autocomplete/api-reference/autocomplete-js/autocomplete/#param-translations
59
59
} ,
60
60
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 ;
61
63
// used to reset the query to an empty state/string when the modal is closed (via "click" or "esc" key)
62
64
if ( ! state . isOpen && prevState . isOpen ) {
63
65
autocompleteInstance . setQuery ( '' ) ;
66
+ document . getElementById ( 'search-button' ) . focus ( ) ;
64
67
}
65
68
} ,
66
69
// onSubmit: ({ state, setQuery, setIsOpen, refresh }) => {
@@ -244,7 +247,6 @@ export default class DocAlgoliaSearchComponent extends Component {
244
247
document . addEventListener ( 'keydown' , ( event ) => {
245
248
if ( event . metaKey && event . key === 'k' ) {
246
249
autocompleteInstance . setIsOpen ( ! this . isModalOpen ) ;
247
- this . isModalOpen = ! this . isModalOpen ;
248
250
}
249
251
} ) ;
250
252
Original file line number Diff line number Diff line change 16
16
<Doc::Page::Header::NavItem @label =" Components" @route =" components" @currentTopRoute ={{ @currentTopRoute }} />
17
17
<Doc::Page::Header::NavItem @label =" Patterns" @route =" patterns" @currentTopRoute ={{ @currentTopRoute }} />
18
18
<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 >
23
24
<button
24
25
type =" button"
25
26
class =" doc-page-header__desktop-icon-item"
26
27
data-doc-algolia-search-autocomplete-secondary-trigger
27
- aria-describedby =" search-button"
28
+ aria-describedby =" search-button-help "
28
29
aria-label =" Search"
30
+ id =" search-button"
29
31
>
30
32
<Hds::Icon @name =" search" @size =" 24" />
31
33
</button >
You can’t perform that action at this time.
0 commit comments