-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathDialog.tsx
191 lines (179 loc) · 5.23 KB
/
Dialog.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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import * as React from 'react';
import {
Animated,
Platform,
StyleProp,
StyleSheet,
ViewStyle,
} from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import DialogActions from './DialogActions';
import DialogContent from './DialogContent';
import DialogIcon from './DialogIcon';
import DialogScrollArea from './DialogScrollArea';
import DialogTitle from './DialogTitle';
import { useInternalTheme } from '../../core/theming';
import overlay from '../../styles/overlay';
import type { ThemeProp } from '../../types';
import Modal from '../Modal';
export type Props = {
/**
* Determines whether clicking outside the dialog dismiss it.
*/
dismissable?: boolean;
/**
* Determines whether clicking Android hardware back button dismiss dialog.
*/
dismissableBackButton?: boolean;
/**
* Callback that is called when the user dismisses the dialog.
*/
onDismiss?: () => void;
/**
* Determines Whether the dialog is visible.
*/
visible: boolean;
/**
* Content of the `Dialog`.
*/
children: React.ReactNode;
style?: Animated.WithAnimatedValue<StyleProp<ViewStyle>>;
/**
* @optional
*/
theme?: ThemeProp;
/**
* testID to be used on tests.
*/
testID?: string;
};
const DIALOG_ELEVATION: number = 24;
/**
* Dialogs inform users about a specific task and may contain critical information, require decisions, or involve multiple tasks.
* To render the `Dialog` above other components, you'll need to wrap it with the [`Portal`](../../Portal) component.
*
* ## Usage
* ```js
* import * as React from 'react';
* import { View } from 'react-native';
* import { Button, Dialog, Portal, PaperProvider, Text } from 'react-native-paper';
*
* const MyComponent = () => {
* const [visible, setVisible] = React.useState(false);
*
* const showDialog = () => setVisible(true);
*
* const hideDialog = () => setVisible(false);
*
* return (
* <PaperProvider>
* <View>
* <Button onPress={showDialog}>Show Dialog</Button>
* <Portal>
* <Dialog visible={visible} onDismiss={hideDialog}>
* <Dialog.Title>Alert</Dialog.Title>
* <Dialog.Content>
* <Text variant="bodyMedium">This is simple dialog</Text>
* </Dialog.Content>
* <Dialog.Actions>
* <Button onPress={hideDialog}>Done</Button>
* </Dialog.Actions>
* </Dialog>
* </Portal>
* </View>
* </PaperProvider>
* );
* };
*
* export default MyComponent;
* ```
*/
const Dialog = ({
children,
dismissable = true,
dismissableBackButton = dismissable,
onDismiss,
visible = false,
style,
theme: themeOverrides,
testID,
}: Props) => {
const { right, left } = useSafeAreaInsets();
const theme = useInternalTheme(themeOverrides);
const { isV3, dark, mode, colors, roundness } = theme;
const borderRadius = (isV3 ? 7 : 1) * roundness;
const backgroundColorV2 =
dark && mode === 'adaptive'
? overlay(DIALOG_ELEVATION, colors?.surface)
: colors?.surface;
const backgroundColor = isV3
? theme.colors.elevation.level3
: backgroundColorV2;
return (
<Modal
dismissable={dismissable}
dismissableBackButton={dismissableBackButton}
onDismiss={onDismiss}
visible={visible}
contentContainerStyle={[
{
borderRadius,
backgroundColor,
marginHorizontal: Math.max(left, right, 26),
},
styles.container,
style,
]}
theme={theme}
testID={testID}
>
{React.Children.toArray(children)
.filter((child) => child != null && typeof child !== 'boolean')
.map((child, i) => {
if (isV3) {
if (i === 0 && React.isValidElement(child)) {
return React.cloneElement(child as React.ReactElement<any>, {
style: [{ marginTop: 24 }, child.props.style],
});
}
}
if (
i === 0 &&
React.isValidElement(child) &&
child.type === DialogContent
) {
// Dialog content is the first item, so we add a top padding
return React.cloneElement(child as React.ReactElement<any>, {
style: [{ paddingTop: 24 }, child.props.style],
});
}
return child;
})}
</Modal>
);
};
// @component ./DialogContent.tsx
Dialog.Content = DialogContent;
// @component ./DialogActions.tsx
Dialog.Actions = DialogActions;
// @component ./DialogTitle.tsx
Dialog.Title = DialogTitle;
// @component ./DialogScrollArea.tsx
Dialog.ScrollArea = DialogScrollArea;
// @component ./DialogIcon.tsx
Dialog.Icon = DialogIcon;
const styles = StyleSheet.create({
container: {
/**
* This prevents the shadow from being clipped on Android since Android
* doesn't support `overflow: visible`.
* One downside for this fix is that it will disable clicks on the area
* of the shadow around the dialog, consequently, if you click around the
* dialog (44 pixel from the top and bottom) it won't be dismissed.
*/
marginVertical: Platform.OS === 'android' ? 44 : 0,
elevation: DIALOG_ELEVATION,
justifyContent: 'flex-start',
},
});
export default Dialog;