-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathresponsive-modal.tsx
31 lines (26 loc) · 1006 Bytes
/
responsive-modal.tsx
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
import { useIsMobile } from '@/hooks/use-mobile';
import { Dialog, DialogContent } from '@/components/ui/dialog';
import { Drawer, DrawerContent } from '@/components/ui/drawer';
import React from 'react';
interface ResponsiveModalProps {
children: React.ReactNode;
open: boolean;
onOpenChange: (open: boolean) => void;
}
export const ResponsiveModal = ({ children, onOpenChange, open }: ResponsiveModalProps) => {
const isMobile = useIsMobile();
if (isMobile) {
return (
<Drawer open={open} onOpenChange={onOpenChange}>
<DrawerContent>
<div className="hide-scrollbar max-h-[85vh] overflow-y-auto">{children}</div>
</DrawerContent>
</Drawer>
);
}
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="hide-scrollbar max-h-[85vh] w-full overflow-y-auto border-none sm:max-w-lg">{children}</DialogContent>
</Dialog>
);
};