157 lines
4.4 KiB
TypeScript
157 lines
4.4 KiB
TypeScript
import { RefObject } from 'react';
|
|
import React, { FC, useEffect, useRef } from '../../lib/teact/teact';
|
|
|
|
import useShowTransition from '../../hooks/useShowTransition';
|
|
import useKeyboardListNavigation from '../../hooks/useKeyboardListNavigation';
|
|
import useVirtualBackdrop from '../../hooks/useVirtualBackdrop';
|
|
import useEffectWithPrevDeps from '../../hooks/useEffectWithPrevDeps';
|
|
import captureEscKeyListener from '../../util/captureEscKeyListener';
|
|
import buildClassName from '../../util/buildClassName';
|
|
import { dispatchHeavyAnimationEvent } from '../../hooks/useHeavyAnimationCheck';
|
|
import useHistoryBack from '../../hooks/useHistoryBack';
|
|
import { preventMessageInputBlurWithBubbling } from '../middle/helpers/preventMessageInputBlur';
|
|
import { IS_BACKDROP_BLUR_SUPPORTED, IS_COMPACT_MENU } from '../../util/environment';
|
|
|
|
import './Menu.scss';
|
|
|
|
type OwnProps = {
|
|
ref?: RefObject<HTMLDivElement>;
|
|
containerRef?: RefObject<HTMLElement>;
|
|
isOpen: boolean;
|
|
id?: string;
|
|
className?: string;
|
|
style?: string;
|
|
bubbleStyle?: string;
|
|
ariaLabelledBy?: string;
|
|
transformOriginX?: number;
|
|
transformOriginY?: number;
|
|
positionX?: 'left' | 'right';
|
|
positionY?: 'top' | 'bottom';
|
|
autoClose?: boolean;
|
|
shouldSkipTransition?: boolean;
|
|
footer?: string;
|
|
noCloseOnBackdrop?: boolean;
|
|
noCompact?: boolean;
|
|
onKeyDown?: (e: React.KeyboardEvent<any>) => void;
|
|
onCloseAnimationEnd?: () => void;
|
|
onClose: () => void;
|
|
onMouseEnter?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
onMouseLeave?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
const ANIMATION_DURATION = 200;
|
|
|
|
const Menu: FC<OwnProps> = ({
|
|
ref,
|
|
containerRef,
|
|
isOpen,
|
|
id,
|
|
className,
|
|
style,
|
|
bubbleStyle,
|
|
ariaLabelledBy,
|
|
children,
|
|
transformOriginX,
|
|
transformOriginY,
|
|
positionX = 'left',
|
|
positionY = 'top',
|
|
autoClose = false,
|
|
footer,
|
|
noCloseOnBackdrop = false,
|
|
noCompact,
|
|
onCloseAnimationEnd,
|
|
onClose,
|
|
onMouseEnter,
|
|
onMouseLeave,
|
|
shouldSkipTransition,
|
|
}) => {
|
|
// eslint-disable-next-line no-null/no-null
|
|
let menuRef = useRef<HTMLDivElement>(null);
|
|
if (ref) {
|
|
menuRef = ref;
|
|
}
|
|
const backdropContainerRef = containerRef || menuRef;
|
|
|
|
const {
|
|
transitionClassNames,
|
|
} = useShowTransition(
|
|
isOpen,
|
|
onCloseAnimationEnd,
|
|
shouldSkipTransition,
|
|
undefined,
|
|
shouldSkipTransition,
|
|
);
|
|
|
|
useEffect(
|
|
() => (isOpen ? captureEscKeyListener(onClose) : undefined),
|
|
[isOpen, onClose],
|
|
);
|
|
|
|
useHistoryBack({
|
|
isActive: isOpen,
|
|
onBack: onClose,
|
|
shouldBeReplaced: true,
|
|
});
|
|
|
|
useEffectWithPrevDeps(([prevIsOpen]) => {
|
|
if (isOpen || (!isOpen && prevIsOpen === true)) {
|
|
dispatchHeavyAnimationEvent(ANIMATION_DURATION);
|
|
}
|
|
}, [isOpen]);
|
|
|
|
const handleKeyDown = useKeyboardListNavigation(menuRef, isOpen, autoClose ? onClose : undefined, undefined, true);
|
|
|
|
useVirtualBackdrop(
|
|
isOpen,
|
|
backdropContainerRef,
|
|
noCloseOnBackdrop ? undefined : onClose,
|
|
);
|
|
|
|
const bubbleClassName = buildClassName(
|
|
'bubble menu-container custom-scroll',
|
|
positionY,
|
|
positionX,
|
|
footer && 'with-footer',
|
|
transitionClassNames,
|
|
);
|
|
|
|
const transformOriginYStyle = transformOriginY !== undefined ? `${transformOriginY}px` : undefined;
|
|
const transformOriginXStyle = transformOriginX !== undefined ? `${transformOriginX}px` : undefined;
|
|
|
|
return (
|
|
<div
|
|
id={id}
|
|
className={buildClassName(
|
|
'Menu no-selection',
|
|
!noCompact && IS_COMPACT_MENU && 'compact',
|
|
!IS_BACKDROP_BLUR_SUPPORTED && 'no-blur',
|
|
className,
|
|
)}
|
|
style={style}
|
|
aria-labelledby={ariaLabelledBy}
|
|
role={ariaLabelledBy ? 'menu' : undefined}
|
|
onKeyDown={isOpen ? handleKeyDown : undefined}
|
|
onMouseEnter={onMouseEnter}
|
|
onMouseLeave={isOpen ? onMouseLeave : undefined}
|
|
>
|
|
{isOpen && (
|
|
// This only prevents click events triggering on underlying elements
|
|
<div className="backdrop" onMouseDown={preventMessageInputBlurWithBubbling} />
|
|
)}
|
|
<div
|
|
ref={menuRef}
|
|
className={bubbleClassName}
|
|
style={`transform-origin: ${transformOriginXStyle || positionX} ${transformOriginYStyle || positionY};${
|
|
bubbleStyle || ''}`}
|
|
onClick={autoClose ? onClose : undefined}
|
|
>
|
|
{children}
|
|
{footer && <div className="footer">{footer}</div>}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Menu;
|