import * as React from "react"; import { Platform, StyleProp, StyleSheet, ViewStyle } from "react-native"; import { Modalbk as Modal } from "../Modal"; import DialogContent from "./DialogContent"; import DialogActions from "./DialogActions"; // eslint-disable-next-line @typescript-eslint/no-unused-vars import DialogTitle, { DialogTitle as _DialogTitle } from "./DialogTitle"; import DialogScrollArea from "./DialogScrollArea"; import overlay from "../theme/overlay"; import { DefaultTheme, ThemeContext } from "styled-components"; type Props = { /** * Determines whether clicking outside the dialog dismiss it. */ dismissable?: 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?: StyleProp; /** * @optional */ theme?: DefaultTheme; }; const DIALOG_ELEVATION = 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.html) component. * *
* * *
* * ## Usage * ```js * import * as React from 'react'; * import { View } from 'react-native'; * import Button from 'react-native-simple-elements/components/Button'; * import { Paragraph } from "react-native-simple-elements/components/Text"; * import Portal from "react-native-simple-elements/components/Portal"; * import Dialog from "react-native-simple-elements/components/Dialog"; * * const MyComponent = () => { * const [visible, setVisible] = React.useState(false); * * const showDialog = () => setVisible(true); * * const hideDialog = () => setVisible(false); * * return ( * * * * * Alert * * This is simple dialog * * * * * * * * ); * }; * * export default MyComponent; * ``` */ const Dialog = ({ children, dismissable = true, onDismiss, visible = false, style, }: Props) => { const theme = React.useContext(ThemeContext); return ( {React.Children.toArray(children) .filter((child) => child != null && typeof child !== "boolean") .map((child, i) => { 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, { style: [{ paddingTop: 24 }, child.props.style], }); } return child; })} ); }; // @component ./DialogContent.tsx Dialog.Content = DialogContent; // @component ./DialogActions.tsx Dialog.Actions = DialogActions; // @component ./DialogTitle.tsx Dialog.Title = DialogTitle; // @component ./DialogScrollArea.tsx Dialog.ScrollArea = DialogScrollArea; 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, marginHorizontal: 26, elevation: DIALOG_ELEVATION, justifyContent: "flex-start", }, }); export default Dialog;