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

Hide ImageBase__img when img is loaded #6847

Conversation

mendrew
Copy link
Contributor

@mendrew mendrew commented Apr 23, 2024


  • Unit-тесты
  • e2e-тесты
  • Дизайн-ревью
  • Документация фичи

Описание

Согласно #6850 иногда фон ImageBase выглядывает из-за изображение, особенно, если фон ImageBase отличается по цвету от фона контейнера.

Довольно интересная особенность, проявляющаяся при абсолютном позиционировании img внутри ImageBase, когда у родительский элемент ImageBase обрезает края с помощью border-radius и overflow: hidden.
Проблема связана со сглаживанием углов в бразузерах. Проблема старая и красивого решения для неё нет.
В хроме сработало бы выставление фона на самом компоненте img, но это не работает в Firefox.
Как вариант мы могли бы немного уменьшать фон, чтобы он так не выглядывал, но с разным значением border-radius надо добавлять разные отступы для фона.
Лучше всего просто фон убирать, если изображение загрузилось.

Изменения

В качестве решения мы убираем фон после загрузки изображения.

Изображения

До После Diff

Copy link
Contributor

github-actions bot commented Apr 23, 2024

size-limit report 📦

Path Size
JS 366.07 KB (0%)
JS (gzip) 112.34 KB (0%)
JS (brotli) 92.73 KB (0%)
JS import Div (tree shaking) 1.42 KB (0%)
CSS 273.9 KB (+0.01% 🔺)
CSS (gzip) 35.61 KB (+0.02% 🔺)
CSS (brotli) 28.83 KB (-0.04% 🔽)

Copy link

codesandbox-ci bot commented Apr 23, 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 Apr 23, 2024

e2e tests

Playwright Report

Copy link
Contributor

github-actions bot commented Apr 23, 2024

👀 Docs deployed

Commit e434451

Copy link

codecov bot commented Apr 23, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 83.35%. Comparing base (118d0c7) to head (e434451).

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #6847      +/-   ##
==========================================
- Coverage   83.35%   83.35%   -0.01%     
==========================================
  Files         351      351              
  Lines       10470    10469       -1     
  Branches     3475     3475              
==========================================
- Hits         8727     8726       -1     
  Misses       1743     1743              
Flag Coverage Δ
unittests 83.35% <ø> (-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.

@mendrew mendrew marked this pull request as ready for review April 24, 2024 14:24
@mendrew mendrew requested a review from a team as a code owner April 24, 2024 14:24
@SevereCloud
Copy link
Contributor

Тест флакнул и похоже все еще вылезает

image

@mendrew
Copy link
Contributor Author

mendrew commented Apr 25, 2024

Тест флакнул и похоже все еще вылезает

О, кстати, метко подмечено, у меня глаз замылился в связке с AppereanceProvder valuer="dark", а ведь в AppereanceProvider value="light" border всё также обрезается. Немного другая проблема, но тоже важная. Надо подумать.
Тест для светлой темы тоже надо добавить.

Спасибо!

@mendrew mendrew marked this pull request as draft April 25, 2024 09:49
@vkcom-publisher vkcom-publisher added the pr-needs-work Автоматизация: PR автоматически закроется через 14 дней при отсутствии активности label May 2, 2024
@vkcom-publisher
Copy link
Contributor

PR закрыт из-за отсутствия активности в течение последних 14 дней. Если это произошло по ошибке или изменения все ещё актуальны, откройте PR повторно.

@mendrew mendrew reopened this May 13, 2024
@vkcom-publisher vkcom-publisher removed the pr-needs-work Автоматизация: PR автоматически закроется через 14 дней при отсутствии активности label May 14, 2024
mendrew and others added 7 commits May 15, 2024 10:41
For some reasone when grandparent of ImageBase__img has
border-radius and overflow: hidden we see background
of ImageBase at the corner behind ImageBase__img, especially
it is visible when the ImageBase__img has same colors as page
background.

Seems like this is due to ImageBase__image is absolutely positioned,
so, parent background is partly visible at corners.

The solution is to make ImageBase__img static.
This is actully how it used to be in Avatar component
before it has been refactored to ImageBase.
see ae00ed7 and cdc74df
where .Avatar__img has been relatively positioned.

Also, we remove negative z-index from img as it doesn't change much
results in e2e tests. Negative z-index was introduced in 9d47c34
To avoid antializing issue with background
we show background on theparent element of img (.ImageBase)
while img is loading or in case there is no src at all.
But when img is loaded we disable background on .ImageBase
and show background on img itself
@mendrew mendrew force-pushed the mendrew/fix/BaseImage/make-img-static-to-fix-background-arc-of-parent branch from b5bdfa1 to ee2ea96 Compare May 15, 2024 10:51
@mendrew mendrew marked this pull request as ready for review May 15, 2024 12:34
@mendrew mendrew changed the title Make ImageBase__img static to fully hide parent background Hide ImageBase__img when img is loaded May 21, 2024
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.

🚀

@mendrew mendrew merged commit 0a1ef51 into master May 21, 2024
26 checks passed
@mendrew mendrew deleted the mendrew/fix/BaseImage/make-img-static-to-fix-background-arc-of-parent branch May 21, 2024 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
5 participants