mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-19 17:52:45 +02:00
* refactor: update mui packages * refactor: run mui codemods * refactor: format files after codemods * refactor: fix broken types * refactor: clean up theme * refactor: fix broken tests * refactor: replace @mui/styles with tss-react * refactor: move breakpoints into classes for tss * refactor: fix crash on missing feature description * refactor: remove void classNames * refactor: adjust styles to new defaults * refactor: remove broken rollout slider e2e test * refactor: fix duplicate e2e testid * refactor: update makeStyles after rebase * refactor: add missing snapshot after rebase * refactor: fix TableCellSortable focus styles * refactor: use 1.4 as the default line-height * refactor: hide webkit search field icons * refactor: fix select box label * refactor: make AutocompleteBox smaller * refactor: make heading smaller * refactor: fix toast close icon color * refactor: update snapshots * refactor: add missing test event awaits * refactor: fix default button line-height
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
import { ReactNode } from 'react';
|
|
import { Modal, Backdrop } from '@mui/material';
|
|
import Fade from '@mui/material/Fade';
|
|
import { useStyles } from 'component/common/SidebarModal/SidebarModal.styles';
|
|
import { SIDEBAR_MODAL_ID } from 'utils/testIds';
|
|
|
|
interface ISidebarModalProps {
|
|
open: boolean;
|
|
onClose: () => void;
|
|
label: string;
|
|
children: ReactNode;
|
|
}
|
|
|
|
const TRANSITION_DURATION = 250;
|
|
|
|
export const SidebarModal = ({
|
|
open,
|
|
onClose,
|
|
label,
|
|
children,
|
|
}: ISidebarModalProps) => {
|
|
const { classes: styles } = useStyles();
|
|
|
|
return (
|
|
<Modal
|
|
open={open}
|
|
onClose={onClose}
|
|
closeAfterTransition
|
|
aria-label={label}
|
|
BackdropComponent={Backdrop}
|
|
BackdropProps={{ timeout: TRANSITION_DURATION }}
|
|
data-testid={SIDEBAR_MODAL_ID}
|
|
>
|
|
<Fade timeout={TRANSITION_DURATION} in={open}>
|
|
<div className={styles.modal}>{children}</div>
|
|
</Fade>
|
|
</Modal>
|
|
);
|
|
};
|