@@ -10,6 +10,7 @@ import {
10
10
createStackNavigator ,
11
11
StackHeaderProps
12
12
} from '@react-navigation/stack' ;
13
+ import { getHeaderTitle } from '@react-navigation/elements' ;
13
14
import { Appbar , useTheme } from 'react-native-paper' ;
14
15
import CheckinBuilder from './screens/CheckinBuilder' ;
15
16
import Achievements from './screens/Achievements' ;
@@ -26,19 +27,18 @@ import {
26
27
} from './shared/camera/camera' ;
27
28
28
29
const Stack = createStackNavigator ( ) ;
29
- export const HeaderContext =
30
- createContext < {
31
- excludedPendingApprovals : Set < string > ;
32
- setExcludedPendingApprovals : React . Dispatch <
33
- React . SetStateAction < Set < string > >
34
- > ;
35
- searchCriteria : string ;
36
- setSearchCriteria : React . Dispatch < React . SetStateAction < string > > ;
37
- } > ( undefined ) ;
30
+ export const HeaderContext = createContext < {
31
+ excludedPendingApprovals : Set < string > ;
32
+ setExcludedPendingApprovals : React . Dispatch <
33
+ React . SetStateAction < Set < string > >
34
+ > ;
35
+ searchCriteria : string ;
36
+ setSearchCriteria : React . Dispatch < React . SetStateAction < string > > ;
37
+ } > ( undefined ) ;
38
38
39
39
const NavBar : (
40
40
props : StackHeaderProps & { theme : ReactNativePaper . Theme }
41
- ) => ReactElement = ( { scene , previous , navigation } ) => {
41
+ ) => ReactElement = ( { navigation , route , options , back } ) => {
42
42
const [ showSearch , setShowSearch ] = useState < boolean > ( false ) ;
43
43
44
44
const {
@@ -48,16 +48,10 @@ const NavBar: (
48
48
} = useContext ( HeaderContext ) ;
49
49
const { sync } = useSync ( ) ;
50
50
51
- const { options } = scene . descriptor ;
52
- const title =
53
- options . headerTitle !== undefined
54
- ? options . headerTitle
55
- : options . title !== undefined
56
- ? options . title
57
- : scene . route . name ;
51
+ const title = getHeaderTitle ( options , route . name ) ;
58
52
59
53
const [ showSearchBar , showSearchIcon ] = ( ( ) : [ boolean , boolean ] => {
60
- if ( scene . route . name !== 'Achievements' ) {
54
+ if ( route . name !== 'Achievements' ) {
61
55
return [ false , false ] ;
62
56
}
63
57
@@ -70,7 +64,7 @@ const NavBar: (
70
64
71
65
return (
72
66
< Appbar . Header >
73
- { previous ? (
67
+ { back ? (
74
68
< Appbar . BackAction onPress = { navigation . goBack } />
75
69
) : null }
76
70
{ showSearchBar ? (
@@ -95,7 +89,7 @@ const NavBar: (
95
89
onPress = { ( ) => setShowSearch ( true ) }
96
90
/>
97
91
) }
98
- { scene . route . name === 'PendingApprovals' && (
92
+ { route . name === 'PendingApprovals' && (
99
93
< Appbar . Action
100
94
icon = "checkbox-multiple-marked-circle"
101
95
onPress = { ( ) =>
@@ -105,13 +99,13 @@ const NavBar: (
105
99
}
106
100
/>
107
101
) }
108
- { scene . route . name === 'Uploads' && (
102
+ { route . name === 'Uploads' && (
109
103
< Appbar . Action
110
104
icon = "file-image-outline"
111
105
onPress = { ( ) => launchImageLibrary ( sync ) }
112
106
/>
113
107
) }
114
- { scene . route . name === 'Uploads' && (
108
+ { route . name === 'Uploads' && (
115
109
< Appbar . Action
116
110
icon = "camera-iris"
117
111
onPress = { ( ) => launchCamera ( sync ) }
@@ -145,7 +139,6 @@ const EntryStack = () => {
145
139
>
146
140
< Stack . Navigator
147
141
initialRouteName = "Achievements"
148
- headerMode = "float"
149
142
screenOptions = { {
150
143
header : ( props ) => < NavBar { ...props } theme = { theme } />
151
144
} }
0 commit comments