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(CustomSelect/DateInput): placement configuration #8332

Merged

Conversation

andrey-medvedev-vk
Copy link
Contributor

@andrey-medvedev-vk andrey-medvedev-vk commented Mar 6, 2025

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

Описание

CustomSelect:

Было замечено, что при наличии переноса в опции, и при недостатке места по вертикали, CustomSelect может отрендерить список сбоку от инпута. По дизайну у нас нету такой поддержки, и стили выглядят странно.
file kFIIHv

Пример кода
import {
  CustomSelect,
  FormItem,
  Group,
  Panel,
  PanelHeader,
  SimpleCell,
  View,
} from "@vkontakte/vkui";

export default function App() {
  const options = [
    {
      value: "1",
      label:
        "Lorem Ipsum is simply dummy text of the printing and typesetting industry",
    },
    {
      value: "2",
      label: "Lorem Ipsum",
    },
  ];

  return (
    <View activePanel="profile">
      <Panel id="profile">
        <PanelHeader>VKUI</PanelHeader>
        <div
          style={{
            width: "360px",
          }}
        >
          <FormItem>
            <CustomSelect options={options} />
          </FormItem>
        </div>
      </Panel>
    </View>
  );
}

В качестве решения отключил возможность рендерить дропдаун сбоку от инпута. Только сверху или снизу.

Кроме того, заметил, что у нас существует конфликт между flip и shift middlewares. Добавил crossAxis: false во flip, чтобы при использовании вместе с shift() приоритом был shift, а потом уже в крайнем случае flip.

DateInput/DateRangeInput:

Календарь меняет свою высоту в зависимости от количества дней в месяце.
При переключении месяцев календарь может прыгать, позициионируясь то сверху, то снизу от инпута.
Это очень не удобно, если требуется продолжать перекючать месяцы.
Допустимо, чтобы календарь один раз менял свою позицию, запомнил свою последнюю удачную и больше не прыгал.

Screen.Recording.2025-03-06.at.18.55.10.mov
Пример кода:
import {
  DateInput,
  Group,
  Panel,
  PanelHeader,
  SimpleCell,
  View,
} from "@vkontakte/vkui";

export default function App() {
  return (
    <View activePanel="profile">
      <Panel id="profile">
        <PanelHeader>VKUI</PanelHeader>
        <div
          style={{
            position: "absolute",
            bottom: "340px",
          }}
        >
          <DateInput value={new Date("2024-11-01")} />
        </div>
      </Panel>
    </View>
  );
}

В качестве решения мы запонимаем последнюю удачную позицию в стейте.

Release notes

  • Исправления

  • CustomSelect: при нехватке места запрещаем позиционирование доропдауна сбоку
  • DateInput: исправляем постоянную смену позиции календаря при переключении месяца
  • DateRangeInput: исправляем постоянную смену позиции календаря при переключении месяца

Sometimes if space in horizonal axis is enough custom select
can try to put dropdown on the right/left side, which is
not correct for custom select design and looks weird
It sholdn't allow to place dropdown on perpendicular to mainAxis axis
Calendar popper can change height durin month switching,
which leads to jumping of calendar from one place to another.
The best solution is to keep latest best position to allow
user to keep switching months without searching for calendar
next time it changes position.
@andrey-medvedev-vk andrey-medvedev-vk self-assigned this Mar 6, 2025
@github-actions github-actions bot added the ci:cherry-pick:patch Автоматизация: PR продублируется в ветку последнего минорного релиза для выпуска патча label Mar 6, 2025
@andrey-medvedev-vk andrey-medvedev-vk added this to the v7.2.0 milestone Mar 6, 2025
Copy link
Contributor

github-actions bot commented Mar 6, 2025

size-limit report 📦

Path Size
JS 397.67 KB (+0.08% 🔺)
JS (gzip) 120.65 KB (+0.07% 🔺)
JS (brotli) 99.23 KB (+0.08% 🔺)
JS import Div (tree shaking) 1.56 KB (0%)
CSS 348.65 KB (0%)
CSS (gzip) 43.17 KB (0%)
CSS (brotli) 34.43 KB (0%)

Copy link

codesandbox-ci bot commented Mar 6, 2025

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 Mar 6, 2025

e2e tests

Playwright Report

Copy link
Contributor

github-actions bot commented Mar 6, 2025

👀 Docs deployed

Commit b84c64b

Copy link

codecov bot commented Mar 6, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 95.44%. Comparing base (de20a81) to head (b84c64b).
Report is 33 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #8332      +/-   ##
==========================================
- Coverage   95.46%   95.44%   -0.02%     
==========================================
  Files         406      409       +3     
  Lines       11610    11634      +24     
  Branches     3844     3850       +6     
==========================================
+ Hits        11083    11104      +21     
- Misses        527      530       +3     
Flag Coverage Δ
unittests 95.44% <100.00%> (-0.02%) ⬇️

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.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@andrey-medvedev-vk andrey-medvedev-vk marked this pull request as ready for review March 6, 2025 16:18
@andrey-medvedev-vk andrey-medvedev-vk requested a review from a team as a code owner March 6, 2025 16:18
Copy link
Contributor

@EldarMuhamethanov EldarMuhamethanov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@andrey-medvedev-vk andrey-medvedev-vk merged commit df5e607 into master Mar 14, 2025
55 checks passed
@andrey-medvedev-vk andrey-medvedev-vk deleted the mendrew/popper-placement/fix-flip-customization branch March 14, 2025 10:57
@vkcom-publisher
Copy link
Contributor

❌ Patch

Не удалось автоматически применить исправление на ветке 7.1-stable.

Дальнейшие действия выполняют контрибьютеры из группы @VKCOM/vkui-core

Чтобы изменение попало в ветку 7.1-stable, выполните следующие действия:

  1. Создайте новую ветку от 7.1-stable и примените изменения используя cherry-pick
git stash # опционально
git fetch origin 7.1-stable
git checkout -b patch/pr8332 origin/7.1-stable

git cherry-pick --no-commit df5e607794b93b2b88df9ef5d17fe30cbdb06423
git checkout HEAD **/__image_snapshots__/*.png
git diff --quiet HEAD || git commit --no-verify --no-edit
  1. Исправьте конфликты, следуя инструкциям из терминала
  2. Отправьте ветку на GitHub и создайте новый PR с веткой 7.1-stable (установка лейбла не требуется!)
git push --set-upstream origin patch/pr8332
gh pr create --base 7.1-stable --title "patch: pr8332" --body "- patch #8332"

@andrey-medvedev-vk andrey-medvedev-vk removed the ci:cherry-pick:patch Автоматизация: PR продублируется в ветку последнего минорного релиза для выпуска патча label Mar 14, 2025
@andrey-medvedev-vk
Copy link
Contributor Author

☝️ Проигнорирую ошибку применения патча, так как планируем выпустить в минорном релизе.

@vkcom-publisher
Copy link
Contributor

v7.2.0 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

4 participants