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

a11y(CardScroll): fix a11y, ul>li combination #8140

Merged
merged 10 commits into from
Jan 28, 2025

Conversation

EldarMuhamethanov
Copy link
Contributor

@EldarMuhamethanov EldarMuhamethanov commented Jan 10, 2025


  • Unit-тесты
  • e2e-тесты
  • Release notes

Описание

Сейчас в компоненте CardScroll есть проблема с доступностью. Карточки li не являются прямыми потомками ul. Нужно придумать как решить эту проблему

Изменения

  • Поменял значение по умолчанию у свойство Component с 'ul' на 'div'(как было раньше). Почему это не breaking change? Потому что по идее это баг, текущее поведение все равно не работало как задумывалось
  • Добавил свойство CardsListComponent, которое позволяет поменять тег используемый для списка карточек. Значение по умолчанию "ul"
  • Сделал рефакторинг CardsScroll, чтобы уменьшить количество нод DOM дерева. Сделал падинги по бокам через псевдоэлементы after/before.
  • В компоненте HorizontalScroll добавил свойства ContentWrapperComponent, contentWrapperRef и contentWrapperClassName для кастомизации обертки над контентом, прокинутом в children. Это было сделано, чтобы в CardsScroll и других возможных местах не создавать доп обертку над контентом и уменьшить количество нод.
  • В тестах убрал отключение тестов a11y - теперь они проходят

Release notes

Улучшения

  • HorizontalScroll: Добавлены свойства ContentWrapperComponent, contentWrapperRef и contentWrapperClassName для кастомизации обертки над контентом, прокинутом в children
  • CardScroll: Добавлено свойство CardsListComponent, которое позволяет поменять тег используемый для списка карточек

Исправления

  • CardScroll:
    • Поправлена проблема с доступностью компонента, теперь li(карточки) являются прямыми потомками ul(списка карточек)
    • Изменено значение по умолчанию для свойства Component с "ul", на "div". Для правильно семантики тегов нужно использовать свойство CardsListComponent, которое по умолчанию теперь "ul"

@EldarMuhamethanov EldarMuhamethanov requested a review from a team as a code owner January 10, 2025 12:53
Copy link
Contributor

github-actions bot commented Jan 10, 2025

size-limit report 📦

Path Size
JS 393.26 KB (+0.03% 🔺)
JS (gzip) 119.3 KB (+0.05% 🔺)
JS (brotli) 98.17 KB (+0.13% 🔺)
JS import Div (tree shaking) 1.56 KB (0%)
CSS 344.77 KB (+0.07% 🔺)
CSS (gzip) 42.72 KB (+0.02% 🔺)
CSS (brotli) 34.11 KB (+0.28% 🔺)

Copy link

codesandbox-ci bot commented Jan 10, 2025

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 Jan 10, 2025

e2e tests

Playwright Report

Copy link

codecov bot commented Jan 10, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 95.49%. Comparing base (7a953d8) to head (4cc1e54).
Report is 3 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #8140   +/-   ##
=======================================
  Coverage   95.49%   95.49%           
=======================================
  Files         403      403           
  Lines       11503    11505    +2     
  Branches     3812     3812           
=======================================
+ Hits        10985    10987    +2     
  Misses        518      518           
Flag Coverage Δ
unittests 95.49% <100.00%> (+<0.01%) ⬆️

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

github-actions bot commented Jan 10, 2025

👀 Docs deployed

Commit 4cc1e54

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.

Красота 👏 👏 👏 !

@vkcom-publisher vkcom-publisher added the pr-needs-work Автоматизация: PR автоматически закроется через 14 дней при отсутствии активности label Jan 18, 2025
Copy link
Contributor

@inomdzhon inomdzhon left a comment

Choose a reason for hiding this comment

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

PS: в Realese note опечаточки

@vkcom-publisher vkcom-publisher removed the pr-needs-work Автоматизация: PR автоматически закроется через 14 дней при отсутствии активности label Jan 24, 2025
# Conflicts:
#	packages/vkui/src/components/HorizontalScroll/HorizontalScroll.tsx
@EldarMuhamethanov EldarMuhamethanov marked this pull request as draft January 27, 2025 08:10
@EldarMuhamethanov EldarMuhamethanov marked this pull request as ready for review January 27, 2025 12:02
inomdzhon
inomdzhon previously approved these changes Jan 28, 2025
…/fix-card-scroll-a11y

# Conflicts:
#	packages/vkui/src/components/CardScroll/CardScroll.test.tsx
@EldarMuhamethanov EldarMuhamethanov merged commit a7b278b into master Jan 28, 2025
29 checks passed
@EldarMuhamethanov EldarMuhamethanov deleted the e.muhamethanov/8135/fix-card-scroll-a11y branch January 28, 2025 10:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug][CardScroll]: ul тег по умолчанию нарушает семантику ul>li
4 participants