-
Notifications
You must be signed in to change notification settings - Fork 186
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(Avatar): keepAspectRation=true by default #7838
fix(Avatar): keepAspectRation=true by default #7838
Conversation
size-limit report 📦
|
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. |
e2e tests |
👀 Docs deployed
Commit fc089c2 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #7838 +/- ##
==========================================
+ Coverage 95.14% 95.16% +0.01%
==========================================
Files 377 377
Lines 11092 11096 +4
Branches 3687 3691 +4
==========================================
+ Hits 10554 10560 +6
+ Misses 538 536 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -87,6 +87,7 @@ export const Avatar: React.FC<AvatarProps> & { | |||
initials, | |||
fallbackIcon: fallbackIconProp, | |||
children, | |||
keepAspectRatio = true, |
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.
Тогда можно переименовать в disableAspectRatio
или что-то вроде того. Я думаю, что Вика это имела ввиду.
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.
Тогда можно переименовать в
disableAspectRatio
или что-то вроде того. Я думаю, что Вика это имела ввиду.
Как вариант
@qurle напомни, почему в целом хочется сделать true
?
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.
@qurle напомни, почему в целом хочется сделать true?
Мне кажется, что я мог неправильно понять назначение пропа, приду в личку.
Обсудили и решили, что эта доработка не нужна |
Простите братья |
Описание
Нужно для компонента Avatar сделать keepAspectRation=true по дефолту
Изменения
Сделал keepAspectRation=true для Avatar по дефолту.
Заметил, что keepAspectRatio работает неправильно в Avatar, когда не задан widthSize и heightSize и доработал этот момент
Codmod как мне кажется не нужен, так как аватары итак обычно одинаковые по ширине и высоте
Release notes
Улучшения
keepAspectRation
теперьtrue
by default