You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
910 B
41 lines
910 B
import { FC, ReactNode, useContext, useMemo } from 'react'; |
|
|
|
import { DialogContext } from './Dialog'; |
|
import IconButton from '../IconButton'; |
|
import { PanelHeader } from '../Panels'; |
|
import sxstring from '../../lib/sxstring'; |
|
import { HeaderText } from '../Text'; |
|
|
|
const DialogHeader: FC<DialogHeaderProps> = (props) => { |
|
const { children, showClose } = props; |
|
|
|
const dialogContext = useContext(DialogContext); |
|
|
|
const title = useMemo<ReactNode>( |
|
() => sxstring(children, HeaderText), |
|
[children], |
|
); |
|
|
|
const close = useMemo<ReactNode>( |
|
() => |
|
showClose && ( |
|
<IconButton |
|
mapPreset="close" |
|
onClick={() => { |
|
dialogContext?.setOpen(false); |
|
}} |
|
size="small" |
|
/> |
|
), |
|
[dialogContext, showClose], |
|
); |
|
|
|
return ( |
|
<PanelHeader> |
|
{title} |
|
{close} |
|
</PanelHeader> |
|
); |
|
}; |
|
|
|
export default DialogHeader;
|
|
|