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(NativeDatePicker): Exclude monthNames prop from passed props #6386

Conversation

mendrew
Copy link
Contributor

@mendrew mendrew commented Jan 16, 2024

Описание

Eсли смотреть компонент DatePicker с переданным monthNames на тач устройствах, то cвойство monthNames встает html-аттрибутом. В режиме локальной разработки есть реакт-варнинг.

Изменения

Не передаем monthNames в компоненты ниже NativeDatePicker.

Otherwise we could receive a warning on mobile touch device
when we use DatePicker with monthNames property.
@mendrew mendrew self-assigned this Jan 16, 2024
Copy link
Contributor

github-actions bot commented Jan 16, 2024

size-limit report 📦

Path Size
JS 348.09 KB (+0.01% 🔺)
JS (gzip) 106.5 KB (+0.02% 🔺)
JS (brotli) 87.97 KB (+0.02% 🔺)
JS import Div (tree shaking) 1.43 KB (0%)
CSS 256.67 KB (0%)
CSS (gzip) 33.63 KB (0%)
CSS (brotli) 27.34 KB (0%)

Copy link

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 1b24512:

Sandbox Source
VKUI TypeScript Configuration

Copy link
Contributor

e2e tests

Playwright Report

Copy link
Contributor

github-actions bot commented Jan 16, 2024

👀 Docs deployed

Commit 1b24512

Copy link

codecov bot commented Jan 16, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (22111f7) 81.26% compared to head (1b24512) 81.29%.
Report is 15 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #6386      +/-   ##
==========================================
+ Coverage   81.26%   81.29%   +0.03%     
==========================================
  Files         326      326              
  Lines       10108    10127      +19     
  Branches     3397     3406       +9     
==========================================
+ Hits         8214     8233      +19     
  Misses       1894     1894              
Flag Coverage Δ
unittests 81.29% <ø> (+0.03%) ⬆️

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 January 16, 2024 14:14
@mendrew mendrew requested a review from a team as a code owner January 16, 2024 14:14
@inomdzhon inomdzhon added this to the v6.1.0 milestone Jan 16, 2024
@inomdzhon inomdzhon added the patch Автоматизация: PR продублируется в ветку последнего минорного релиза для выпуска патча label Jan 16, 2024
@mendrew mendrew merged commit 488bd20 into master Jan 17, 2024
49 checks passed
@mendrew mendrew deleted the mendrew/fix/NativeDatePicker/exclude-monthNames-from-passed-props branch January 17, 2024 08:14
vkcom-publisher pushed a commit that referenced this pull request Jan 17, 2024
Eсли смотреть компонент `DatePicker` с переданным `monthNames` на тач устройствах, то cвойство `monthNames` встает html-аттрибутом. В режиме локальной разработки есть реакт-варнинг.

Не передаем `monthNames` в компоненты ниже `NativeDatePicker`.
mendrew added a commit that referenced this pull request Jan 19, 2024
Eсли смотреть компонент `DatePicker` с переданным `monthNames` на тач устройствах, то cвойство `monthNames` встает html-аттрибутом. В режиме локальной разработки есть реакт-варнинг.

Не передаем `monthNames` в компоненты ниже `NativeDatePicker`.
@mendrew mendrew mentioned this pull request Jan 19, 2024
mendrew added a commit that referenced this pull request Jan 19, 2024
…#6409)

Eсли смотреть компонент `DatePicker` с переданным `monthNames` на тач устройствах, то cвойство `monthNames` встает html-аттрибутом. В режиме локальной разработки есть реакт-варнинг.

Не передаем `monthNames` в компоненты ниже `NativeDatePicker`.
mendrew added a commit that referenced this pull request Jan 19, 2024
…#6409)

Eсли смотреть компонент `DatePicker` с переданным `monthNames` на тач устройствах, то cвойство `monthNames` встает html-аттрибутом. В режиме локальной разработки есть реакт-варнинг.

Не передаем `monthNames` в компоненты ниже `NativeDatePicker`.
mendrew added a commit that referenced this pull request Jan 19, 2024
…#6409) (#6410)

Eсли смотреть компонент `DatePicker` с переданным `monthNames` на тач устройствах, то cвойство `monthNames` встает html-аттрибутом. В режиме локальной разработки есть реакт-варнинг.

Не передаем `monthNames` в компоненты ниже `NativeDatePicker`.
@SevereCloud SevereCloud modified the milestones: v6.1.0, v6.0.1 Jan 22, 2024
@vkcom-publisher
Copy link
Contributor

v5.10.1 🎉

@vkcom-publisher
Copy link
Contributor

v6.0.1 🎉

mendrew added a commit that referenced this pull request Mar 12, 2024
В тех местах, где при определённых условиях под капотом используется нативный компонент, мы, бывает, забываем исключать новые свойства необходимые только в кастомных компонентах. В итоге неспользуемые свойства оказываются в DOM. (#6663, #6386).

Добавил тип, как посоветовал @inomdzhon в #6663 (comment), чтобы при добавлении нового свойства линтер ругался если для нативного компонента это свойство не нужно.
vkcom-publisher pushed a commit that referenced this pull request Mar 12, 2024
В тех местах, где при определённых условиях под капотом используется нативный компонент, мы, бывает, забываем исключать новые свойства необходимые только в кастомных компонентах. В итоге неспользуемые свойства оказываются в DOM. (#6663, #6386).

Добавил тип, как посоветовал @inomdzhon в #6663 (comment), чтобы при добавлении нового свойства линтер ругался если для нативного компонента это свойство не нужно.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cmp:date-picker patch Автоматизация: PR продублируется в ветку последнего минорного релиза для выпуска патча type:bug v5.10.1
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

4 participants