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(SimpleCell): Get rid of selector complexity to define icon color #5873

Merged
merged 6 commits into from
Sep 28, 2023

Conversation

mendrew
Copy link
Contributor

@mendrew mendrew commented Sep 26, 2023

Описание

Выставление color явно в .SimpleCell__before перебивает цвет заданный в вышестоящем компоненте, таком как CellButton. В итоге влияет иконку без класса .vkuiIcon.

.CellButton--mode-danger {
color: var(--vkui--color_text_negative);
}
.CellButton--mode-danger :global(.vkuiIcon) {
color: var(--vkui--color_icon_negative);
}

Корзина должна быть красная, даже если нету класса vkuiIcon у иконки

Изменения

  • избавляемся от зависимости цвета от селекторов с .vkuiIcon классом
  • используем css-переменную --vkui_internal--icon_color которую задаём в CellButton и использем в .SimpleCell__before и .SimpleCell__after с фоллбэком на цвета SimpleCell.
  • это позволило также избавится от селекторов в ImageBase в случае когда ImageBase передается в .CellButton (что также было сломано, иконки внутри ImageBase в примере CellButton не принимали цвет заданный в CellButton).

Otherwise we might override color specified in
upper components like CellButton, especially in
icons passed without .vkuiIcon class
@github-actions
Copy link
Contributor

github-actions bot commented Sep 26, 2023

size-limit report 📦

Path Size
JS 317.17 KB (-0.03% 🔽)
JS (gzip) 96.78 KB (-0.02% 🔽)
JS (brotli) 80.12 KB (+0.06% 🔺)
JS import Div (tree shaking) 2.95 KB (0%)
CSS 276.99 KB (-0.09% 🔽)
CSS (gzip) 36.1 KB (-0.08% 🔽)
CSS (brotli) 28.62 KB (+0.07% 🔺)

@codesandbox-ci
Copy link

codesandbox-ci bot commented Sep 26, 2023

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 517d903:

Sandbox Source
VKUI TypeScript Configuration

@github-actions
Copy link
Contributor

github-actions bot commented Sep 26, 2023

e2e tests

Playwright Report

@github-actions
Copy link
Contributor

github-actions bot commented Sep 26, 2023

👀 Docs deployed

Commit 517d903

@codecov
Copy link

codecov bot commented Sep 26, 2023

Codecov Report

All modified lines are covered by tests ✅

Comparison is base (11c3e0a) 81.18% compared to head (517d903) 81.19%.
Report is 2 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #5873   +/-   ##
=======================================
  Coverage   81.18%   81.19%           
=======================================
  Files         299      299           
  Lines        9190     9189    -1     
  Branches     3121     3120    -1     
=======================================
  Hits         7461     7461           
+ Misses       1729     1728    -1     
Flag Coverage Δ
unittests 81.19% <100.00%> (+<0.01%) ⬆️

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

Files Coverage Δ
...ages/vkui/src/components/CellButton/CellButton.tsx 100.00% <100.00%> (+10.00%) ⬆️

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

@mendrew mendrew self-assigned this Sep 27, 2023
@mendrew mendrew marked this pull request as ready for review September 27, 2023 08:11
@mendrew mendrew requested a review from a team as a code owner September 27, 2023 08:11
@mendrew mendrew requested a review from SevereCloud September 27, 2023 08:12
From one :global() to another, though
Define the variable in the CellButton
Fix CellButton case with ImageBase where
the color is no longer changes with Image base
is using inside CellButton
Simplify ImageBase icon color setup
Seems like nothing is messing with it
@mendrew
Copy link
Contributor Author

mendrew commented Sep 27, 2023

Красота, только токен стоит более конкретнее сделать

@SevereCloud
Я сделал, сначала, но потом увидел, что это и в ImageBase надо, и решил менее конкретно сделать.

Как-будто будет удобно ImageBase задавать через менее конкретный токен из других компонентов в будущем.
ImageBase ведь не так привязан к SimpleCell как Cell или CellButton.

P.S. я вижу что ты и сам это заметил, но я оставлю для истории.

@mendrew mendrew changed the title fix(SimpleCell): Rollback to old color setup in SimpleCell fix(SimpleCell): Get rid of selector complexity to define icon color Sep 27, 2023
@mendrew mendrew added this to the v5.9.0 milestone Sep 28, 2023
@mendrew mendrew added the v5 Автоматизация: PR продублируется в ветку v5 label Sep 28, 2023
@mendrew mendrew merged commit 2815c3b into master Sep 28, 2023
@mendrew mendrew deleted the mendrew/fix/CellButton/SimpleCell/before-icon-color branch September 28, 2023 07:51
vkcom-publisher pushed a commit that referenced this pull request Sep 28, 2023
…5873)

* Описание

- related to #5794  [SimpleCell.module.css](https://github.com/VKCOM/VKUI/pull/5794/files#diff-cde505330a0123c800ac2efb02f954a76b39dfafaa0c5250dfb355bafddb7596)

Выставление `color` явно в `.SimpleCell__before` перебивает цвет заданный в вышестоящем компоненте, таком как `CellButton`. В итоге влияет иконку без класса `.vkuiIcon`.
https://github.com/VKCOM/VKUI/blob/e560f5306928f680ce8f060520edefae4fa7de83/packages/vkui/src/components/CellButton/CellButton.module.css#L51-L57

<img width="390" alt="Корзина должна быть красная, даже если нету класса vkuiIcon у иконки" src="https://github.com/VKCOM/VKUI/assets/5443359/9fb2114e-266a-4168-8077-dc27eeba661b">

* Изменения
- избавляемся от зависимости цвета от селекторов с .vkuiIcon классом
- используем css-переменную `--vkui_internal--icon_color` которую задаём в `CellButton` и использем в `.SimpleCell__before` и `.SimpleCell__after` с фоллбэком на цвета SimpleCell.
- это позволило также избавится от селекторов в `ImageBase` в случае когда `ImageBase` передается в `.CellButton `(что также было сломано, иконки внутри `ImageBase` в примере `CellButton` не принимали цвет заданный в `CellButton`).
@vkcom-publisher
Copy link
Contributor

v5.9.0 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
v5 Автоматизация: PR продублируется в ветку v5
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

4 participants