signal-desktop/ts/components/Modal.tsx

150 lines
4.1 KiB
TypeScript
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2021-08-06 00:17:05 +00:00
import React, { useRef, useState, ReactElement, ReactNode } from 'react';
import Measure, { ContentRect, MeasuredComponentProps } from 'react-measure';
import classNames from 'classnames';
import { noop } from 'lodash';
import { LocalizerType } from '../types/Util';
import { ModalHost } from './ModalHost';
import { Theme } from '../util/theme';
2021-05-11 00:50:43 +00:00
import { getClassNamesFor } from '../util/getClassNamesFor';
import { useHasWrapped } from '../util/hooks';
type PropsType = {
children: ReactNode;
2021-08-06 00:17:05 +00:00
hasStickyButtons?: boolean;
hasXButton?: boolean;
i18n: LocalizerType;
2021-04-21 16:31:12 +00:00
moduleClassName?: string;
2021-05-28 16:15:17 +00:00
noMouseClose?: boolean;
onClose?: () => void;
title?: ReactNode;
theme?: Theme;
};
2021-05-11 00:50:43 +00:00
const BASE_CLASS_NAME = 'module-Modal';
export function Modal({
children,
2021-08-06 00:17:05 +00:00
hasStickyButtons,
hasXButton,
i18n,
2021-04-21 16:31:12 +00:00
moduleClassName,
2021-05-28 16:15:17 +00:00
noMouseClose,
onClose = noop,
title,
theme,
}: Readonly<PropsType>): ReactElement {
2021-08-06 00:17:05 +00:00
const modalRef = useRef<HTMLDivElement | null>(null);
const [scrolled, setScrolled] = useState(false);
2021-08-06 00:17:05 +00:00
const [hasOverflow, setHasOverflow] = useState(false);
const hasHeader = Boolean(hasXButton || title);
2021-05-11 00:50:43 +00:00
const getClassName = getClassNamesFor(BASE_CLASS_NAME, moduleClassName);
2021-08-06 00:17:05 +00:00
function handleResize({ scroll }: ContentRect) {
const modalNode = modalRef?.current;
if (!modalNode) {
return;
}
if (scroll) {
setHasOverflow(scroll.height > modalNode.clientHeight);
}
}
return (
2021-05-28 16:15:17 +00:00
<ModalHost noMouseClose={noMouseClose} onClose={onClose} theme={theme}>
{/* We don't want the click event to propagate to its container node. */}
{/* eslint-disable jsx-a11y/no-static-element-interactions */}
{/* eslint-disable jsx-a11y/click-events-have-key-events */}
<div
className={classNames(
2021-05-11 00:50:43 +00:00
getClassName(''),
2021-08-06 00:17:05 +00:00
getClassName(hasHeader ? '--has-header' : '--no-header'),
hasStickyButtons && getClassName('--sticky-buttons')
)}
2021-08-06 00:17:05 +00:00
ref={modalRef}
onClick={event => {
event.stopPropagation();
}}
>
{/* eslint-enable jsx-a11y/no-static-element-interactions */}
{/* eslint-enable jsx-a11y/click-events-have-key-events */}
{hasHeader && (
2021-05-11 00:50:43 +00:00
<div className={getClassName('__header')}>
{hasXButton && (
<button
aria-label={i18n('close')}
type="button"
2021-05-11 00:50:43 +00:00
className={getClassName('__close-button')}
tabIndex={0}
onClick={() => {
onClose();
}}
/>
)}
{title && (
<h1
className={classNames(
2021-05-11 00:50:43 +00:00
getClassName('__title'),
hasXButton ? getClassName('__title--with-x-button') : null
)}
>
{title}
</h1>
)}
</div>
)}
2021-08-06 00:17:05 +00:00
<Measure scroll onResize={handleResize}>
{({ measureRef }: MeasuredComponentProps) => (
<div
className={classNames(
getClassName('__body'),
scrolled ? getClassName('__body--scrolled') : null,
hasOverflow || scrolled
? getClassName('__body--overflow')
: null
)}
onScroll={event => {
setScrolled((event.target as HTMLDivElement).scrollTop > 2);
}}
ref={measureRef}
>
{children}
</div>
2021-05-11 00:50:43 +00:00
)}
2021-08-06 00:17:05 +00:00
</Measure>
</div>
</ModalHost>
);
}
Modal.ButtonFooter = function ButtonFooter({
children,
2021-05-11 00:50:43 +00:00
moduleClassName,
}: Readonly<{
children: ReactNode;
moduleClassName?: string;
}>): ReactElement {
const [ref, hasWrapped] = useHasWrapped<HTMLDivElement>();
const className = getClassNamesFor(
BASE_CLASS_NAME,
moduleClassName
)('__button-footer');
return (
<div
className={classNames(
className,
hasWrapped ? `${className}--one-button-per-line` : undefined
)}
ref={ref}
>
{children}
</div>
);
};