UNPKG

react-native-paper

Version:
75 lines (74 loc) 3.53 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(require("react")); var _reactNative = require("react-native"); var _theming = require("../../core/theming"); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } /** * A component to show a list of actions in a Dialog. * * ## Usage * ```js * import * as React from 'react'; * import { Button, Dialog, Portal } from 'react-native-paper'; * * const MyComponent = () => { * const [visible, setVisible] = React.useState(false); * * const hideDialog = () => setVisible(false); * * return ( * <Portal> * <Dialog visible={visible} onDismiss={hideDialog}> * <Dialog.Actions> * <Button onPress={() => console.log('Cancel')}>Cancel</Button> * <Button onPress={() => console.log('Ok')}>Ok</Button> * </Dialog.Actions> * </Dialog> * </Portal> * ); * }; * * export default MyComponent; * ``` */ const DialogActions = props => { const { isV3 } = (0, _theming.useInternalTheme)(props.theme); const actionsLength = React.Children.toArray(props.children).length; return /*#__PURE__*/React.createElement(_reactNative.View, _extends({}, props, { style: [isV3 ? styles.v3Container : styles.container, props.style] }), React.Children.map(props.children, (child, i) => /*#__PURE__*/React.isValidElement(child) ? /*#__PURE__*/React.cloneElement(child, { compact: true, uppercase: !isV3, style: [isV3 && { marginRight: i + 1 === actionsLength ? 0 : 8 }, child.props.style] }) : child)); }; DialogActions.displayName = 'Dialog.Actions'; const styles = _reactNative.StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', justifyContent: 'flex-end', padding: 8 }, v3Container: { flexDirection: 'row', flexGrow: 1, alignItems: 'center', justifyContent: 'flex-end', paddingBottom: 24, paddingHorizontal: 24 } }); var _default = DialogActions; exports.default = _default; //# sourceMappingURL=DialogActions.js.map