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

chore(): fix sidepage dynamic change ignoreBackgroundClick and blockBackground #3580

Open
wants to merge 3 commits into
base: next
Choose a base branch
from

Conversation

SchwJ
Copy link
Member

@SchwJ SchwJ commented Dec 27, 2024

Проблема

Внешне: При динамическом изменении ignoreBackgroundClick и blockBackground, сайдпейдж "зависал", все кнопки оказывались недоступными.

Выяснилось, что проблемы здесь даже две:

  1. При прокидывании новых значений ignoreBackgroundClick и blockBackground сайдпейдж не перерендеривался.
  2. Вуаль отображалась над сайдпейджем и закрывала его.

Решение

  1. При получении нового blockBackground вызывается componentDidUpdate и state.hasBackground присваивается значение blockBackground.

  2. Вместо одинакового ZIndex у вуали и у тела сайдпейджа, создала:

  • ZIndex всему сайдпейджу (аналогичный тому, что был у тела), чтобы сайдпейдж отображался корректно с другими элементами.
  • Отдельные ZIndex'ы вуали и телу сайдпейджа, чтобы они правильно позиционировались между собой
    Просто создать ZIndex'ы вуали и телу сайдпейджа без ZIndex'а для всего сайдпейджа было нельзя, так как при таком сценарии сломалась бы последовательность из нескольких сайдпейджей -- все вуали были бы ниже всех сайдпейджей.

Добавила тест на динамическое переключение ignoreBackgroundClick и blockBackground

Ссылки

IF-2050

Чек-лист перед запросом ревью

  1. Добавлены тесты на все изменения
    ⬜ unit-тесты для логики
    ✅ скриншоты для верстки и кросс-браузерности
    ⬜ нерелевантно

  2. Добавлена (обновлена) документация
    ⬜ styleguidist для пропов и примеров использования компонентов
    ⬜ jsdoc для утилит и хелперов
    ⬜ комментарии для неочевидных мест в коде
    ⬜ прочие инструкции (README.md, contributing.md и др.)
    ✅ нерелевантно

  3. Изменения корректно типизированы
    ✅ без использования any (см. PR 2856)
    ⬜ нерелевантно

  4. Прочее
    ✅ все тесты и линтеры на CI проходят
    ✅ в коде нет лишних изменений
    ✅ заголовок PR кратко и доступно отражает суть изменений (он попадет в changelog)

@SchwJ SchwJ changed the title chore(): fix sidepage background chore(): fix sidepage dynamic change ignoreBackgroundClick and blockBackground Dec 28, 2024
@@ -117,6 +117,16 @@ export class SidePage extends React.Component<SidePageProps, SidePageState> {
this.stackSubscription = ModalStack.add(this, this.handleStackChange);
}

public componentDidUpdate(prevProps: SidePageProps) {
console.log('componentDidUpdate');
Copy link
Member

Choose a reason for hiding this comment

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

console.log('componentDidUpdate'); кажется что лишнее)

public componentDidUpdate(prevProps: SidePageProps) {
console.log('componentDidUpdate');
if (prevProps.blockBackground !== this.props.blockBackground) {
// по пропсам обновляем состояние
Copy link
Member

Choose a reason for hiding this comment

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

комменты тоже не нужно

@@ -156,14 +166,34 @@ export class SidePage extends React.Component<SidePageProps, SidePageState> {
private renderMain() {
const { blockBackground, onOpened } = this.props;
const disableAnimations = this.getProps().disableAnimations;

const { width, fromLeft, 'aria-label': ariaLabel } = this.props;
Copy link
Member

Choose a reason for hiding this comment

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

через строчку выше уже есть const {} = this.props; -- лучше объединить


await this.browser
.actions({ bridge: true })
.click(this.browser.findElement({ css: '[data-comp-name~="SidePage.Footer"] button' }))
Copy link
Member

Choose a reason for hiding this comment

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

лучше сделать data-tid для этих элементов, от "data-comp-name" нам бы постепенно избавляться, чтобы отключить скрипт sleniumtesting в будущем было безболезненно


await this.browser
.actions({ bridge: true })
.click(this.browser.findElement({ css: '[data-comp-name~="SidePage.Footer"] button' }))
Copy link
Member

Choose a reason for hiding this comment

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

тут таже про data-comp-name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants