-
Notifications
You must be signed in to change notification settings - Fork 131
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
base: next
Are you sure you want to change the base?
Conversation
@@ -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'); |
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.
console.log('componentDidUpdate'); кажется что лишнее)
public componentDidUpdate(prevProps: SidePageProps) { | ||
console.log('componentDidUpdate'); | ||
if (prevProps.blockBackground !== this.props.blockBackground) { | ||
// по пропсам обновляем состояние |
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.
комменты тоже не нужно
@@ -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; |
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.
через строчку выше уже есть const {} = this.props; -- лучше объединить
|
||
await this.browser | ||
.actions({ bridge: true }) | ||
.click(this.browser.findElement({ css: '[data-comp-name~="SidePage.Footer"] button' })) |
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.
лучше сделать data-tid для этих элементов, от "data-comp-name" нам бы постепенно избавляться, чтобы отключить скрипт sleniumtesting в будущем было безболезненно
|
||
await this.browser | ||
.actions({ bridge: true }) | ||
.click(this.browser.findElement({ css: '[data-comp-name~="SidePage.Footer"] button' })) |
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.
тут таже про data-comp-name
Проблема
Внешне: При динамическом изменении ignoreBackgroundClick и blockBackground, сайдпейдж "зависал", все кнопки оказывались недоступными.
Выяснилось, что проблемы здесь даже две:
Решение
При получении нового blockBackground вызывается componentDidUpdate и state.hasBackground присваивается значение blockBackground.
Вместо одинакового ZIndex у вуали и у тела сайдпейджа, создала:
Просто создать ZIndex'ы вуали и телу сайдпейджа без ZIndex'а для всего сайдпейджа было нельзя, так как при таком сценарии сломалась бы последовательность из нескольких сайдпейджей -- все вуали были бы ниже всех сайдпейджей.
Добавила тест на динамическое переключение ignoreBackgroundClick и blockBackground
Ссылки
IF-2050
Чек-лист перед запросом ревью
Добавлены тесты на все изменения
⬜ unit-тесты для логики
✅ скриншоты для верстки и кросс-браузерности
⬜ нерелевантно
Добавлена (обновлена) документация
⬜ styleguidist для пропов и примеров использования компонентов
⬜ jsdoc для утилит и хелперов
⬜ комментарии для неочевидных мест в коде
⬜ прочие инструкции (
README.md
,contributing.md
и др.)✅ нерелевантно
Изменения корректно типизированы
✅ без использования
any
(см. PR2856
)⬜ нерелевантно
Прочее
✅ все тесты и линтеры на CI проходят
✅ в коде нет лишних изменений
✅ заголовок PR кратко и доступно отражает суть изменений (он попадет в changelog)