@tamagui/react-native-web-lite
Version:
React Native for Web
180 lines (166 loc) • 3.99 kB
JavaScript
/**
* Copyright (c) Nicolas Gallagher.
* Copyright (c) Meta Platforms, Inc. and 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 '@tamagui/react-native-web-internals'
import createElement from '../createElement/index'
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(
(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(() => {
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,
})
: 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