Skip to content

Commit

Permalink
fix(Alert): call onClose after item's action (#7546)
Browse files Browse the repository at this point in the history
h2. Описание

Цитата:

> Недавно столкнулся с проблемой, что в модалке основное действие не отрабатывало. В нашем компоненте мы используем компонент `Alert` и храним нужные данные в объекте, который сетим при открытии и уничтожаем при закрытии модалки, а в основном действии используем этот объект. Оказалось, что при выборе подтверждающего действия компонент `Alert` сначала вызывает `onClose`, а только потом само главное действие, из-за чего к моменту, когда нам нужен наш объект он оказывается уже удалённым. Решил проблему, отложив удаление нашего объекта в `onClose` на следующий цикл, но выглядит так, что лучше это иcправить на вашей стороне.

h2. Release notes

h2. Исправления

- Alert: `onClose` теперь вызывается после `action`
  • Loading branch information
inomdzhon authored Sep 10, 2024
1 parent 81c79a3 commit 3ad055d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions packages/vkui/src/components/Alert/Alert.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,30 @@ describe('Alert', () => {
});
expect(onClose).toHaveBeenCalledTimes(1);
});

it('should call onClose last', async () => {
const callOrder: Array<'action' | 'onClose'> = [];
const action = jest.fn().mockImplementation(() => callOrder.push('action'));
const onClose = jest.fn().mockImplementation(() => callOrder.push('onClose'));
const result = render(
<Alert
onClose={onClose}
actions={[
{
action,
'title': 'Item',
'data-testid': '__action__',
'mode': 'default',
},
]}
/>,
);
await userEvent.click(result.getByTestId('__action__'));
await waitCSSKeyframesAnimation(result.getByRole('alertdialog'), {
runOnlyPendingTimers: true,
});
expect(callOrder).toEqual(['action', 'onClose']);
});
});

describe('calls action after close by default', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/vkui/src/components/Alert/Alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ export const Alert = ({
closing ? 'exit' : 'enter',
{
onExited() {
onClose();
itemActionCallbackRef.current();
itemActionCallbackRef.current = noop;
onClose();
},
},
);
Expand Down

0 comments on commit 3ad055d

Please sign in to comment.