()
| 410 | } |
| 411 | |
| 412 | function openSearchModal() { |
| 413 | if (!searchModal || !searchInput) return; |
| 414 | if (helpModal?.open) closeDialog(); |
| 415 | if (mobileMenu?.open) closeMobileMenu(false); |
| 416 | |
| 417 | lastFocusedElement = |
| 418 | document.activeElement instanceof HTMLElement |
| 419 | ? document.activeElement |
| 420 | : null; |
| 421 | |
| 422 | if (!searchModal.open) searchModal.showModal(); |
| 423 | renderSearchResults(); |
| 424 | requestAnimationFrame(() => { |
| 425 | searchInput.focus(); |
| 426 | searchInput.select(); |
| 427 | }); |
| 428 | } |
| 429 | |
| 430 | function closeSearchModal() { |
| 431 | if (!searchModal) return; |
no test coverage detected