Skip to content
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

fix(useFloatingWithInteractions): improve restoreFocus, add restoreFocus to anchor element #7806

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

EldarMuhamethanov
Copy link
Contributor

@EldarMuhamethanov EldarMuhamethanov commented Oct 22, 2024


  • Unit-тесты
  • Release notes

Описание

Нужно добавить возможность настройки элемента, куда будет возвращаться фокус после закрытия поповера по ховеру.

Изменения

В Popover и Tooltip расширил тип свойства restoreFocus. Теперь помимо boolean он может принимать следующие значения:

  • 'latest-active' - означает, что фокус будет возвращен на последний активный до открытия всплывающего окна элемент. По сути это поведение по умолчанию
  • 'anchor-element' - означает, что фокус будет возвращен на якорный элемент
  • HTMLElement - можно использовать ссылку на определенный html элемент

Также изменения затронули компонент FocusTrap:

  • Теперь в свойство restoreFocus можно прокинуть, помимо функции, возвращающей boolean, функцию, возвращающую HTMLElement(() => boolean | HTMLElement).

Теперь, чтобы поправить баг описанный в задаче необходимо для Popover с trigger="hover" прокинуть restoreFocus="anchor-element"

Release notes

Улучшения

  • Popover: расширен тип свойства restoreFocus до boolean | 'latest-active' | 'anchor-element' | HTMLElement для указания на какой элемент будет возвращен фокус после закрытия Popover. Полезно для кейса с Popover с trigger="hover", при установке restoreFocus="anchor-element" фокус всегда будет возвращаться в якорный элемент

@EldarMuhamethanov EldarMuhamethanov requested a review from a team as a code owner October 22, 2024 08:02
Copy link
Contributor

github-actions bot commented Oct 22, 2024

size-limit report 📦

Path Size
JS 383.33 KB (+0.08% 🔺)
JS (gzip) 122.66 KB (+0.1% 🔺)
JS (brotli) 101.59 KB (+0.07% 🔺)
JS import Div (tree shaking) 1.47 KB (0%)
CSS 342.2 KB (0%)
CSS (gzip) 49.32 KB (0%)
CSS (brotli) 39.95 KB (0%)

Copy link

codesandbox-ci bot commented Oct 22, 2024

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Copy link
Contributor

github-actions bot commented Oct 22, 2024

e2e tests

⚠️ Some screenshots were failed. See Playwright Report.

Playwright Report

Copy link
Contributor

github-actions bot commented Oct 22, 2024

👀 Docs deployed

Commit 5b9d4ea

Copy link

codecov bot commented Oct 22, 2024

Codecov Report

Attention: Patch coverage is 87.23404% with 6 lines in your changes missing coverage. Please review.

Project coverage is 95.29%. Comparing base (f198947) to head (5b9d4ea).

Files with missing lines Patch % Lines
...ingWithInteractions/useFloatingWithInteractions.ts 45.45% 6 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #7806      +/-   ##
==========================================
- Coverage   95.34%   95.29%   -0.05%     
==========================================
  Files         377      377              
  Lines       11054    11075      +21     
  Branches     3673     3682       +9     
==========================================
+ Hits        10539    10554      +15     
- Misses        515      521       +6     
Flag Coverage Δ
unittests 95.29% <87.23%> (-0.05%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@andrey-medvedev-vk andrey-medvedev-vk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@inomdzhon inomdzhon added patch Автоматизация: PR продублируется в ветку последнего минорного релиза для выпуска патча v6 Автоматизация: PR продублируется в ветку v6 labels Oct 24, 2024
@vkcom-publisher vkcom-publisher added the pr-needs-work Автоматизация: PR автоматически закроется через 14 дней при отсутствии активности label Nov 1, 2024
@EldarMuhamethanov EldarMuhamethanov removed the pr-needs-work Автоматизация: PR автоматически закроется через 14 дней при отсутствии активности label Nov 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
patch Автоматизация: PR продублируется в ветку последнего минорного релиза для выпуска патча v6 Автоматизация: PR продублируется в ветку v6
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: Восстановление фокуса после закрытия Popover по 'hover'
4 participants