-
Notifications
You must be signed in to change notification settings - Fork 184
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
feature(Cell): Allow to handle onClick when mode="removable" #5745
feature(Cell): Allow to handle onClick when mode="removable" #5745
Conversation
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. Latest deployment of this branch, based on commit af7b358:
|
size-limit report 📦
|
e2e tests |
👀 Docs deployed
Commit af7b358 |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #5745 +/- ##
==========================================
+ Coverage 81.96% 82.04% +0.07%
==========================================
Files 296 296
Lines 9819 9839 +20
Branches 3107 3121 +14
==========================================
+ Hits 8048 8072 +24
+ Misses 1771 1767 -4
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. |
With exception for iOS platform. onClick works only if content is not shifted, but if user clicks on "remove" toggle button and content shifted - onClick is ignored till user clicks outside.
000fc7e
to
094b727
Compare
Disable hover state
In Removable mode Cell consists of Removable component with SimpleCell inside. So, SimpleCell hover/active effect doesn't change background on the part that Removable elements occupy. In order to make sure Removable delete button is on top of SimpleCell we make Removable action button is absolutely positioned. So, SimpleCell takes full Cell width and hightlight the whole cell in active state.
As we alredy handle this space by padding on Cell content
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏽
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏽
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤝
* Описание Добавляем возможность обработки клика на контент Cell в режиме `removable`. * Изменения - в режиме `removable` `SimpleCell` внутри `Cell` `disabled`, если нету обработчика `onClick`. - поддерживается только `active` состояние при нажании, `hover` не поддерживатеся. - в `active` состоянии подсвечивается вся область `Сell`, включая зоны `Removable`. - особо обрабатываем режим `removable` для iOS. `onClick` работает, но только до тех пор пока пользователь не кликнул на иконку удаления. После этого контент `Cell` сдвигается и появляется "настоящая" кнопка удаления. В этот момент `onClick` не работает, чтобы позволить пользователю отменить режим удаления кликом по контенту Cell. - В активном состоянии вся область Cell активная. Дело в том, что реализации removable подразумевает то, что SimpleCell внутри Cell обернут в Removable компонент, который съедает часто пространства SimpleCell для расположения кнопок удаления. Чтобы вся область Cell подсвечивалась в активном состоянии мы абсолютно позиционируем активные элементы Removable, такие как кнопка удаления, чтобы они были поверх SimpleCell, но не мешали активному состоянию, что в итоге позволяет SimpleCell занять всю ширину Cell.
resolves: #5741
Описание
Добавляем возможность обработки клика на контент Cell в режиме
removable
.Изменения
removable
SimpleCell
внутриCell
disabled
, если нету обработчикаonClick
.active
состояние при нажании,hover
не поддерживатеся.active
состоянии подсвечивается вся областьСell
, включая зоныRemovable
.removable
для iOS.onClick
работает, но только до тех пор пока пользователь не кликнул на иконку удаления. После этого контентCell
сдвигается и появляется "настоящая" кнопка удаления. В этот моментonClick
не работает, чтобы позволить пользователю отменить режим удаления кликом по контенту Cell.Пытался добавить скриншотные тесты для активного состояния, хотя бы на mousedown, но в скриншот стабильно не попадает состояние при mousedown.
Видео
При клике на контент видно эффект компонента Tappable, но эффект отсутствует после клика на иконку удаления.
2023-09-07.12.18.49.mov