create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
68 lines (66 loc) • 1.83 kB
JavaScript
/**
* Copyright (c) Nicolas Gallagher.
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*
*/
import * as React from 'react';
import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment';
import View from '../View';
import StyleSheet from '../StyleSheet';
var ModalContent = /*#__PURE__*/React.forwardRef(function (props, forwardedRef) {
var active = props.active,
children = props.children,
onRequestClose = props.onRequestClose,
transparent = props.transparent;
React.useEffect(function () {
if (canUseDOM) {
var closeOnEscape = function closeOnEscape(e) {
if (active && e.key === 'Escape') {
e.stopPropagation();
if (onRequestClose) {
onRequestClose();
}
}
};
document.addEventListener('keyup', closeOnEscape, false);
return function () {
return document.removeEventListener('keyup', closeOnEscape, false);
};
}
}, [active, onRequestClose]);
var style = React.useMemo(function () {
return [styles.modal, transparent ? styles.modalTransparent : styles.modalOpaque];
}, [transparent]);
return /*#__PURE__*/React.createElement(View, {
accessibilityRole: active ? 'dialog' : null,
"aria-modal": true,
ref: forwardedRef,
style: style
}, /*#__PURE__*/React.createElement(View, {
style: styles.container
}, children));
});
var styles = StyleSheet.create({
modal: {
position: 'fixed',
top: 0,
right: 0,
bottom: 0,
left: 0
},
modalTransparent: {
backgroundColor: 'transparent'
},
modalOpaque: {
backgroundColor: 'white'
},
container: {
top: 0,
flex: 1
}
});
export default ModalContent;