-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
navigation-container.native.js
170 lines (153 loc) · 3.69 KB
/
navigation-container.native.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/**
* External dependencies
*/
import { View, Easing } from 'react-native';
import { NavigationContainer, DefaultTheme } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
/**
* WordPress dependencies
*/
import {
useState,
useContext,
useMemo,
useCallback,
Children,
useRef,
cloneElement,
Platform,
} from '@wordpress/element';
import { usePreferredColorSchemeStyle } from '@wordpress/compose';
/**
* Internal dependencies
*/
import { performLayoutAnimation } from '../../layout-animation';
import {
BottomSheetNavigationContext,
BottomSheetNavigationProvider,
} from './bottom-sheet-navigation-context';
import styles from './styles.scss';
const AnimationSpec = {
animation: 'timing',
config: {
duration: 200,
easing: Easing.ease,
},
};
const fadeConfig = ( { current } ) => {
return {
cardStyle: {
opacity: current.progress,
},
};
};
const options = {
transitionSpec: {
open: AnimationSpec,
close: AnimationSpec,
},
headerShown: false,
gestureEnabled: false,
cardStyleInterpolator: fadeConfig,
};
const ANIMATION_DURATION = 190;
function BottomSheetNavigationContainer( {
children,
animate,
main,
theme,
style,
} ) {
const Stack = useRef( createStackNavigator() ).current;
const context = useContext( BottomSheetNavigationContext );
const [ currentHeight, setCurrentHeight ] = useState(
context.currentHeight || 1
);
const backgroundStyle = usePreferredColorSchemeStyle(
styles.background,
styles.backgroundDark
);
const _theme = theme || {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
background: backgroundStyle.backgroundColor,
},
};
const setHeight = useCallback(
( height ) => {
// The screen is fullHeight or changing from fullScreen to the default mode
if (
( typeof currentHeight === 'string' &&
typeof height !== 'string' ) ||
typeof height === 'string'
) {
// Animating the opacity for the initial modal results in the backdrop
// provided by react-native-modal to never transition from transparent
// to partially opaque black. The core issue was not idenfited, but it
// may relate to the experimental state of LayoutAnimation for Android.
// https://reactnative.dev/docs/layoutanimation
if ( ! Platform.isAndroid || currentHeight !== 1 ) {
performLayoutAnimation( ANIMATION_DURATION );
}
setCurrentHeight( height );
return;
}
if ( height > 1 ) {
if ( currentHeight === 1 ) {
setCurrentHeight( height );
} else if ( animate ) {
performLayoutAnimation( ANIMATION_DURATION );
setCurrentHeight( height );
} else {
setCurrentHeight( height );
}
}
},
[ currentHeight ]
);
const screens = useMemo( () => {
return Children.map( children, ( child ) => {
let screen = child;
const { name, ...otherProps } = child.props;
if ( ! main ) {
screen = cloneElement( child, {
...child.props,
isNested: true,
} );
}
return (
<Stack.Screen
name={ name }
{ ...otherProps }
children={ () => screen }
/>
);
} );
}, [ children ] );
return useMemo( () => {
return (
<View style={ [ style, { height: currentHeight } ] }>
<BottomSheetNavigationProvider
value={ {
setHeight,
currentHeight,
} }
>
{ main ? (
<NavigationContainer theme={ _theme }>
<Stack.Navigator screenOptions={ options }>
{ screens }
</Stack.Navigator>
</NavigationContainer>
) : (
<Stack.Navigator screenOptions={ options }>
{ screens }
</Stack.Navigator>
) }
</BottomSheetNavigationProvider>
</View>
);
}, [ currentHeight, _theme ] );
}
export default BottomSheetNavigationContainer;