UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

160 lines (149 loc) 3.79 kB
/** * 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 StyleSheet from '../StyleSheet'; import createElement from '../createElement'; var ANIMATION_DURATION = 300; function getAnimationStyle(animationType, visible) { if (animationType === 'slide') { return visible ? animatedSlideInStyles : animatedSlideOutStyles; } if (animationType === 'fade') { return visible ? animatedFadeInStyles : animatedFadeOutStyles; } return visible ? styles.container : styles.hidden; } function ModalAnimation(props) { var animationType = props.animationType, children = props.children, onDismiss = props.onDismiss, onShow = props.onShow, visible = props.visible; var _React$useState = React.useState(false), isRendering = _React$useState[0], setIsRendering = _React$useState[1]; var wasVisible = React.useRef(false); var isAnimated = animationType && animationType !== 'none'; var animationEndCallback = React.useCallback(function (e) { if (e && e.currentTarget !== e.target) { // If the event was generated for something NOT this element we // should ignore it as it's not relevant to us return; } if (visible) { if (onShow) { onShow(); } } else { setIsRendering(false); if (onDismiss) { onDismiss(); } } }, [onDismiss, onShow, visible]); React.useEffect(function () { if (visible) { setIsRendering(true); } if (visible !== wasVisible.current && !isAnimated) { // Manually call `animationEndCallback` if no animation is used animationEndCallback(); } wasVisible.current = visible; }, [isAnimated, visible, animationEndCallback]); return isRendering || visible ? createElement('div', { style: isRendering ? getAnimationStyle(animationType, visible) : styles.hidden, onAnimationEnd: animationEndCallback, children: children }) : null; } var styles = StyleSheet.create({ container: { position: 'fixed', top: 0, right: 0, bottom: 0, left: 0, zIndex: 9999 }, animatedIn: { animationDuration: ANIMATION_DURATION + "ms", animationTimingFunction: 'ease-in' }, animatedOut: { pointerEvents: 'none', animationDuration: ANIMATION_DURATION + "ms", animationTimingFunction: 'ease-out' }, fadeIn: { opacity: 1, animationKeyframes: { '0%': { opacity: 0 }, '100%': { opacity: 1 } } }, fadeOut: { opacity: 0, animationKeyframes: { '0%': { opacity: 1 }, '100%': { opacity: 0 } } }, slideIn: { transform: [{ translateY: '0%' }], animationKeyframes: { '0%': { transform: [{ translateY: '100%' }] }, '100%': { transform: [{ translateY: '0%' }] } } }, slideOut: { transform: [{ translateY: '100%' }], animationKeyframes: { '0%': { transform: [{ translateY: '0%' }] }, '100%': { transform: [{ translateY: '100%' }] } } }, hidden: { opacity: 0 } }); var animatedSlideInStyles = [styles.container, styles.animatedIn, styles.slideIn]; var animatedSlideOutStyles = [styles.container, styles.animatedOut, styles.slideOut]; var animatedFadeInStyles = [styles.container, styles.animatedIn, styles.fadeIn]; var animatedFadeOutStyles = [styles.container, styles.animatedOut, styles.fadeOut]; export default ModalAnimation;