1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
import {
Button,
type ButtonProps,
Dialog,
type DialogProps,
DialogTrigger,
IconLabel,
Modal,
} from '@umami/react-zen';
import type { CSSProperties, ReactNode } from 'react';
import { useMobile } from '@/components/hooks';
export interface DialogButtonProps extends Omit<ButtonProps, 'children'> {
icon?: ReactNode;
label?: ReactNode;
title?: ReactNode;
width?: string;
height?: string;
minWidth?: string;
minHeight?: string;
children?: DialogProps['children'];
}
export function DialogButton({
icon,
label,
title,
width,
height,
minWidth,
minHeight,
children,
...props
}: DialogButtonProps) {
const { isMobile } = useMobile();
const style: CSSProperties = {
width,
height,
minWidth,
minHeight,
maxHeight: 'calc(100dvh - 40px)',
padding: '32px',
};
if (isMobile) {
style.width = '100%';
style.height = '100%';
style.maxHeight = '100%';
style.overflowY = 'auto';
}
return (
<DialogTrigger>
<Button {...props}>
<IconLabel icon={icon} label={label} />
</Button>
<Modal placement={isMobile ? 'fullscreen' : 'center'}>
<Dialog variant={isMobile ? 'sheet' : undefined} title={title || label} style={style}>
{children}
</Dialog>
</Modal>
</DialogTrigger>
);
}
|