Skip to content

Commit

Permalink
fix(Popup): fix tests in related components
Browse files Browse the repository at this point in the history
  • Loading branch information
amje committed Dec 6, 2024
1 parent 539b90a commit 0e19709
Show file tree
Hide file tree
Showing 19 changed files with 100 additions and 82 deletions.
1 change: 0 additions & 1 deletion src/components/ActionTooltip/ActionTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export function ActionTooltip(props: ActionTooltipProps) {
anchorElement={anchorElement}
disableEscapeKeyDown
disableOutsideClick
disableLayer
qa={qa}
>
<div className={b('content', contentClassName)}>
Expand Down
18 changes: 13 additions & 5 deletions src/components/ActionTooltip/__tests__/ActionTooltip.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';

import userEvent from '@testing-library/user-event';

import {createEvent, fireEvent, render, screen} from '../../../../test-utils/utils';
import {createEvent, fireEvent, render, screen, waitFor} from '../../../../test-utils/utils';
import {ActionTooltip} from '../ActionTooltip';

export function fireAnimationEndEvent(el: Node | Window, animationName = 'animation') {
Expand Down Expand Up @@ -46,7 +46,9 @@ test('should show tooltip on hover and hide on un hover', async () => {

fireAnimationEndEvent(tooltip);

expect(tooltip).not.toBeInTheDocument();
await waitFor(() => {
expect(tooltip).not.toBeInTheDocument();
});
});

test('should show tooltip on focus and hide on blur', async () => {
Expand All @@ -71,7 +73,9 @@ test('should show tooltip on focus and hide on blur', async () => {
fireAnimationEndEvent(tooltip);

expect(button).not.toHaveFocus();
expect(tooltip).not.toBeInTheDocument();
await waitFor(() => {
expect(tooltip).not.toBeInTheDocument();
});
});

test('should hide on press Escape', async () => {
Expand All @@ -96,7 +100,9 @@ test('should hide on press Escape', async () => {
fireAnimationEndEvent(tooltip);

expect(button).toHaveFocus();
expect(tooltip).not.toBeInTheDocument();
await waitFor(() => {
expect(tooltip).not.toBeInTheDocument();
});
});

test('should show on focus and hide on un hover', async () => {
Expand Down Expand Up @@ -124,5 +130,7 @@ test('should show on focus and hide on un hover', async () => {
fireAnimationEndEvent(tooltip);

expect(button).toHaveFocus();
expect(tooltip).not.toBeInTheDocument();
await waitFor(() => {
expect(tooltip).not.toBeInTheDocument();
});
});
1 change: 0 additions & 1 deletion src/components/Dialog/DialogFooter/DialogFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ export class DialogFooter extends React.Component<DialogFooterInnerProps> {
open={showError}
anchorRef={this.errorTooltipRef}
placement={['bottom', 'top']}
disableLayer
disablePortal
hasArrow
>
Expand Down
15 changes: 11 additions & 4 deletions src/components/DropdownMenu/DropdownMenuPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,19 @@ export const DropdownMenuPopup = <T,>({
const handleMouseEnter = React.useCallback(
(event: React.MouseEvent<HTMLDivElement>) => {
setActiveMenuPath(path);
popupProps?.onMouseEnter?.(event);
(popupProps?.floatingProps?.onMouseEnter as React.MouseEventHandler | undefined)?.(
event,
);
},
[path, popupProps, setActiveMenuPath],
);

const handleMouseLeave = React.useCallback(
(event: React.MouseEvent<HTMLDivElement>) => {
activateParent();
popupProps?.onMouseLeave?.(event);
(popupProps?.floatingProps?.onMouseLeave as React.MouseEventHandler | undefined)?.(
event,
);
},
[activateParent, popupProps],
);
Expand Down Expand Up @@ -144,8 +148,11 @@ export const DropdownMenuPopup = <T,>({
onClose={onClose}
placement="bottom-start"
{...popupProps}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
floatingProps={{
...popupProps?.floatingProps,
onMouseEnter: handleMouseEnter,
onMouseLeave: handleMouseLeave,
}}
>
{children || (
<Menu className={cnDropdownMenu('menu')} size={size} {...menuProps}>
Expand Down
12 changes: 5 additions & 7 deletions src/components/Popover/Popover.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,11 @@ $block: '.#{variables.$ns}popover';
--_--close-offset: 8px;
--_--close-size: 24px;

&-popup-content {
box-sizing: border-box;
min-height: 40px;
max-width: var(--g-popover-max-width, 300px);
padding: var(--g-popover-padding, var(--_--padding));
cursor: default;
}
box-sizing: border-box;
min-height: 40px;
max-width: var(--g-popover-max-width, 300px);
padding: var(--g-popover-padding, var(--_--padding));
cursor: default;

&-title {
@include mixins.text-subheader-3();
Expand Down
9 changes: 2 additions & 7 deletions src/components/Popover/Popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export const Popover = React.forwardRef<PopoverInstanceProps, PopoverProps & QAP
offset = {},
tooltipOffset,
tooltipClassName,
tooltipContentClassName,
theme = 'info',
size = 's',
hasArrow = true,
Expand All @@ -64,7 +63,6 @@ export const Popover = React.forwardRef<PopoverInstanceProps, PopoverProps & QAP
focusTrap,
autoFocus,
restoreFocusRef,
middlewares,
},
ref,
) {
Expand Down Expand Up @@ -138,19 +136,16 @@ export const Popover = React.forwardRef<PopoverInstanceProps, PopoverProps & QAP
},
tooltipClassName,
)}
contentClassName={cnPopover('tooltip-popup-content', tooltipContentClassName)}
open={isOpen}
placement={popupPlacement}
hasArrow={hasArrow}
offset={tooltipOffset}
onClose={hasAnchor ? undefined : closeTooltip}
qa={qa ? `${qa}-tooltip` : ''}
disablePortal={disablePortal}
focusTrap={focusTrap}
autoFocus={autoFocus}
restoreFocus={true}
restoreFocusRef={restoreFocusRef || controlRef}
middlewares={middlewares}
modalFocus={focusTrap}
returnFocus={restoreFocusRef}
aria-labelledby={title ? popoverTitleId : undefined}
>
<React.Fragment>
Expand Down
1 change: 0 additions & 1 deletion src/components/Popover/__stories__/Popover.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ const meta: Meta<typeof Popover> = {
tooltipCancelButton: {control: 'object'},
tooltipOffset: {control: 'object'},
tooltipClassName: {control: 'text'},
tooltipContentClassName: {control: 'text'},
className: {control: 'text'},
onClick: {action: 'onClick'},
onOpenChange: {action: 'onOpenChange'},
Expand Down
8 changes: 5 additions & 3 deletions src/components/Popover/__tests__/Popover.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import {setupTimersMock} from '../../../../test-utils/setupTimersMock';
import {act, fireEvent, render, screen} from '../../../../test-utils/utils';
import {act, fireEvent, render, screen, waitFor} from '../../../../test-utils/utils';
import {Popover} from '../Popover';
import {PopoverBehavior, delayByBehavior} from '../config';
import type {PopoverProps} from '../types';
Expand Down Expand Up @@ -32,11 +32,13 @@ const checkIfPopoverOpened = () => {
expect(popover).toHaveClass('g-popup_open');
};

const checkIfPopoverClosed = () => {
const checkIfPopoverClosed = async () => {
const popover = screen.queryByTestId('popover-tooltip');

if (popover) {
expect(popover).not.toHaveClass('g-popup_open');
await waitFor(() => {
expect(popover).not.toHaveClass('g-popup_open');
});
} else {
expect(true).toBe(true);
}
Expand Down
4 changes: 1 addition & 3 deletions src/components/Popover/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ export interface PopoverExternalProps {
tooltipOffset?: PopupOffset;
/** Tooltip's css class */
tooltipClassName?: string;
/** Tooltip's content css class */
tooltipContentClassName?: string;
/** css class for the control */
className?: string;
/**
Expand Down Expand Up @@ -124,7 +122,7 @@ export type PopoverDefaultProps = {

export type PopoverProps = Pick<
PopupProps,
'anchorElement' | 'anchorRef' | 'strategy' | 'placement' | 'middlewares'
'anchorElement' | 'anchorRef' | 'strategy' | 'placement'
> &
PopoverExternalProps &
PopoverBehaviorProps &
Expand Down
2 changes: 1 addition & 1 deletion src/components/Popup/Popup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $transition-distance: 10px;
transition-property: opacity, transform;
transition-timing-function: ease-out;

&_mounted {
&_open {
visibility: visible;
}

Expand Down
27 changes: 20 additions & 7 deletions src/components/Popup/Popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,12 @@ export interface PopupProps extends DOMProps, AriaLabelingProps, QAProps {
id?: string;
/** CSS property `z-index` */
zIndex?: number;
/** Callback called when `Popup` is opened and "in" transition is started */
onTransitionIn?: () => void;
/** Callback called when `Popup` is opened and "in" transition is completed */
onTransitionInComplete?: () => void;
/** Callback called when `Popup` is closed and "out" transition is started */
onTransitionOut?: () => void;
/** Callback called when `Popup` is closed and "out" transition is completed */
onTransitionOutComplete?: () => void;
}
Expand Down Expand Up @@ -160,6 +164,8 @@ export function Popup({
id,
role: roleProp,
zIndex = 1000,
onTransitionIn,
onTransitionOut,
onTransitionInComplete,
onTransitionOutComplete,
...restProps
Expand Down Expand Up @@ -231,8 +237,8 @@ export function Popup({
});

const role = useRole(context, {
enabled: Boolean(roleProp),
role: roleProp,
enabled: Boolean(roleProp || modalFocus),
role: roleProp ?? (modalFocus ? 'dialog' : undefined),
});
const dismiss = useDismiss(context, {
enabled: !disableOutsideClick || !disableEscapeKeyDown,
Expand Down Expand Up @@ -274,19 +280,25 @@ export function Popup({
[status, onTransitionInComplete],
);

// Cannot use transitionend event for "out" transition due to unmounting from the DOM
// Cannot use transitionend event for these callbacks due to unmounting from the DOM
React.useEffect(() => {
if (status === 'initial' && previousStatus === 'unmounted') {
onTransitionIn?.();
}
if (status === 'close' && previousStatus === 'open') {
onTransitionOut?.();
}
if (status === 'unmounted' && previousStatus === 'close') {
onTransitionOutComplete?.();
}
}, [status, previousStatus, onTransitionOutComplete]);
}, [status, previousStatus, onTransitionIn, onTransitionOut, onTransitionOutComplete]);

return isMounted || keepMounted ? (
<Portal disablePortal={disablePortal}>
<FloatingFocusManager
context={context}
disabled={!autoFocus}
modal={modalFocus}
disabled={!autoFocus || !isMounted}
modal={modalFocus && isMounted}
initialFocus={initialFocus ?? initialFocusRef}
returnFocus={returnFocus}
visuallyHiddenDismiss={disableFocusVisuallyHiddenDismiss ? false : i18n('close')}
Expand All @@ -305,11 +317,12 @@ export function Popup({
}}
data-floating-ui-placement={finalPlacement}
data-floating-ui-status={status}
aria-modal={modalFocus && isMounted ? true : undefined}
{...getFloatingProps({...floatingProps, onTransitionEnd: handleTransitionEnd})}
>
<div
ref={contentRef}
className={b({mounted: isMounted}, className)}
className={b({open: isMounted}, className)}
style={style}
data-qa={qa}
id={id}
Expand Down
22 changes: 7 additions & 15 deletions src/components/Popup/__tests__/Popup.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,6 @@ describe('Popup', () => {
expect(popup).toHaveClass(arbitratyClassName);
});

test('should pass arbitraty className to content', () => {
const arbitratyClassName = 'arbitratyClassName';
render(<Popup open qa={qaId} contentClassName={arbitratyClassName}></Popup>);
const popup = screen.getByTestId(qaId);
/* eslint-disable-next-line testing-library/no-node-access */
expect(popup.firstChild).toHaveClass(arbitratyClassName);
});

test('should open on click', async () => {
const btnText = 'Click me';
function Test() {
Expand All @@ -57,27 +49,27 @@ describe('Popup', () => {
expect(popup).not.toHaveAttribute('role');
});

test('should set aria-modal to true and role to dialog if focusTrap is true', async () => {
render(<Popup open focusTrap />);
test('should set aria-modal to true and role to dialog if modalFocus is true', async () => {
render(<Popup open autoFocus modalFocus />);
const popup = screen.getByRole('dialog');
expect(popup).toHaveAttribute('aria-modal', 'true');
});

test('should use role from props if focusTrap is true', async () => {
render(<Popup open focusTrap role="alertdialog" />);
test('should use role from props if modalFocus is true', async () => {
render(<Popup open autoFocus modalFocus role="alertdialog" />);
const popup = screen.getByRole('alertdialog');
expect(popup).toHaveAttribute('aria-modal', 'true');
});

test('should use aria-modal from props if focusTrap is true', async () => {
render(<Popup open qa={qaId} focusTrap aria-modal={false} />);
test('should not set aria-modal from props if modalFocus is true', async () => {
render(<Popup open qa={qaId} autoFocus modalFocus={false} />);
const popup = screen.getByTestId(qaId);
expect(popup).not.toHaveAttribute('aria-modal');
expect(popup).not.toHaveAttribute('role');
});

test('should remove aria-modal if popup is closed', async () => {
render(<Popup aria-modal keepMounted />);
render(<Popup keepMounted autoFocus modalFocus />);
const popup = screen.getByRole('dialog');
expect(popup).not.toHaveAttribute('aria-modal');
});
Expand Down
15 changes: 7 additions & 8 deletions src/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,14 +221,6 @@ export const Select = React.forwardRef<HTMLButtonElement, SelectProps>(function
disabled: filterable,
});

React.useEffect(() => {
if (open) {
if (filterable) {
filterRef.current?.focus();
}
}
}, [open, filterable]);

const mods: CnMods = {
...(width === 'max' && {width}),
};
Expand Down Expand Up @@ -355,6 +347,13 @@ export const Select = React.forwardRef<HTMLButtonElement, SelectProps>(function
virtualized={virtualized}
mobile={mobile}
placement={popupPlacement}
onAfterOpen={
filterable
? () => {
filterRef.current?.focus();
}
: undefined
}
onAfterClose={
filterable
? () => {
Expand Down
Loading

0 comments on commit 0e19709

Please sign in to comment.