Skip to content

Commit 4251504

Browse files
feat: blur effect on the overlay of dialog component (#157)
add: blur effect on the overlay of dialog component
1 parent cd0169e commit 4251504

File tree

3 files changed

+81
-18
lines changed

3 files changed

+81
-18
lines changed

apps/www/content/primitives/components/dialog.mdx

+65-13
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,51 @@ radix:
99
## Preview
1010

1111
<Preview>
12-
<Dialog>
13-
<Dialog.Trigger asChild>
14-
<Button variant="ghost" size="small">Dialog button</Button>
15-
</Dialog.Trigger>
16-
<Dialog.Content close>
17-
<Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}>Dialog Heading</Text>
18-
<Text size="3" style={{ lineHeight: '25px' }}>
19-
There are 5 variants to choose from. Use is for positive states. This is a link
20-
Traditional business literature won’t help you solve it- most of that stuff is
21-
focused on life after product/market fit, after the Trough of Sorrow.
22-
</Text>
23-
</Dialog.Content>
24-
</Dialog>
12+
<Flex
13+
style={{
14+
flexDirection: 'column',
15+
alignItems: 'center',
16+
gap: '12px',
17+
}}
18+
>
19+
<Dialog>
20+
<Dialog.Trigger asChild>
21+
<Button variant="ghost" size="small">
22+
Dialog button
23+
</Button>
24+
</Dialog.Trigger>
25+
<Dialog.Content close>
26+
<Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}>
27+
Dialog Heading
28+
</Text>
29+
<Text size="3" style={{ lineHeight: '25px' }}>
30+
There are 5 variants to choose from. Use is for positive states. This
31+
is a link Traditional business literature won’t help you solve it-
32+
most of that stuff is focused on life after product/market fit, after
33+
the Trough of Sorrow.
34+
</Text>
35+
</Dialog.Content>
36+
</Dialog>
37+
38+
<Dialog>
39+
<Dialog.Trigger asChild>
40+
<Button variant="ghost" size="small">
41+
Dialog with blur button
42+
</Button>
43+
</Dialog.Trigger>
44+
<Dialog.Content overlayBlur={true} close>
45+
<Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}>
46+
Dialog Heading
47+
</Text>
48+
<Text size="3" style={{ lineHeight: '25px' }}>
49+
There are 5 variants to choose from. Use is for positive states. This
50+
is a link Traditional business literature won’t help you solve it-
51+
most of that stuff is focused on life after product/market fit, after
52+
the Trough of Sorrow.
53+
</Text>
54+
</Dialog.Content>
55+
</Dialog>
56+
</Flex>
2557
</Preview>
2658

2759
## Installation
@@ -53,5 +85,25 @@ import { Dialog } from '@raystack/apsara'
5385
</Text>
5486
</Dialog.Content>
5587
</Dialog>
88+
89+
<Dialog>
90+
<Dialog.Trigger asChild>
91+
<Button variant="ghost" size="small">
92+
Dialog with blur button
93+
</Button>
94+
</Dialog.Trigger>
95+
<Dialog.Content overlayBlur={true} close>
96+
<Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}>
97+
Dialog Heading
98+
</Text>
99+
<Text size="3" style={{ lineHeight: '25px' }}>
100+
There are 5 variants to choose from. Use is for positive states. This
101+
is a link Traditional business literature won’t help you solve it-
102+
most of that stuff is focused on life after product/market fit, after
103+
the Trough of Sorrow.
104+
</Text>
105+
</Dialog.Content>
106+
</Dialog>
107+
56108
`} border />
57109
</LiveProvider>

packages/raystack/dialog/dialog.module.css

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
border: 1px solid var(--border-subtle);
1616
}
1717

18+
.overlayBlur {
19+
backdrop-filter: blur(2px);
20+
}
21+
1822
.dialogContent:focus {
1923
outline: none;
2024
}

packages/raystack/dialog/dialog.tsx

+12-5
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@ export const DialogContent = forwardRef<
2222
close?: boolean;
2323
overlayStyle?: React.CSSProperties;
2424
overlayClassname?: string;
25+
overlayBlur?: boolean;
2526
}
2627
>(
2728
(
28-
{ className, children, close, overlayStyle, overlayClassname, ...props },
29+
{ className, children, close, overlayStyle, overlayClassname, overlayBlur, ...props },
2930
forwardedRef
3031
) => {
3132
return (
3233
<DialogPrimitive.Portal>
33-
<Overlay className={overlayClassname} style={overlayStyle}>
34+
<Overlay className={overlayClassname} style={overlayStyle} blur={overlayBlur}>
3435
<DialogPrimitive.Content
3536
{...props}
3637
ref={forwardedRef}
@@ -49,18 +50,24 @@ export const DialogContent = forwardRef<
4950
}
5051
);
5152

52-
const overlay = cva(styles.overlay);
53+
const overlay = cva(styles.overlay, {
54+
variants: {
55+
blur: {
56+
true: styles.overlayBlur,
57+
},
58+
},
59+
});
5360
export interface OverlayProps
5461
extends ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>,
5562
VariantProps<typeof overlay> {}
5663

5764
const Overlay = forwardRef<
5865
ElementRef<typeof DialogPrimitive.Overlay>,
5966
OverlayProps
60-
>(({ className, ...props }, ref) => (
67+
>(({ className, blur, ...props }, ref) => (
6168
<DialogPrimitive.Overlay
6269
ref={ref}
63-
className={overlay({ className })}
70+
className={overlay({ className, blur })}
6471
{...props}
6572
/>
6673
));

0 commit comments

Comments
 (0)