Skip to content

Commit c09dc14

Browse files
committed
mobile - Successfully logged into Android app and clicked around screens
1 parent d8f7974 commit c09dc14

File tree

4 files changed

+36
-43
lines changed

4 files changed

+36
-43
lines changed

.merlin

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
####{BSB GENERATED: NO EDIT
2-
FLG -ppx '/Users/jbadaczewski/Source/other/act/node_modules/rescript/darwin/bsc.exe -as-ppx -bs-jsx 3'
3-
S /Users/jbadaczewski/Source/other/act/node_modules/rescript/lib/ocaml
4-
B /Users/jbadaczewski/Source/other/act/node_modules/rescript/lib/ocaml
2+
FLG -ppx '/Users/joebad/Source/act/node_modules/rescript/darwin/bsc.exe -as-ppx -bs-jsx 3'
3+
S /Users/joebad/Source/act/node_modules/rescript/lib/ocaml
4+
B /Users/joebad/Source/act/node_modules/rescript/lib/ocaml
55
FLG -w +a-4-9-20-40-41-42-50-61-102
6-
S /Users/jbadaczewski/Source/other/act/node_modules/@mobily/stacks/lib/ocaml
7-
B /Users/jbadaczewski/Source/other/act/node_modules/@mobily/stacks/lib/ocaml
8-
S /Users/jbadaczewski/Source/other/act/node_modules/@rescript/react/lib/ocaml
9-
B /Users/jbadaczewski/Source/other/act/node_modules/@rescript/react/lib/ocaml
10-
S /Users/jbadaczewski/Source/other/act/node_modules/rescript-react-native/lib/ocaml
11-
B /Users/jbadaczewski/Source/other/act/node_modules/rescript-react-native/lib/ocaml
12-
S /Users/jbadaczewski/Source/other/act/node_modules/@rescript-react-native/paper/lib/ocaml
13-
B /Users/jbadaczewski/Source/other/act/node_modules/@rescript-react-native/paper/lib/ocaml
14-
S /Users/jbadaczewski/Source/other/act/node_modules/wonka/lib/ocaml
15-
B /Users/jbadaczewski/Source/other/act/node_modules/wonka/lib/ocaml
16-
S /Users/jbadaczewski/Source/other/act/node_modules/rescript-react-navigation/lib/ocaml
17-
B /Users/jbadaczewski/Source/other/act/node_modules/rescript-react-navigation/lib/ocaml
6+
S /Users/joebad/Source/act/node_modules/@mobily/stacks/lib/ocaml
7+
B /Users/joebad/Source/act/node_modules/@mobily/stacks/lib/ocaml
8+
S /Users/joebad/Source/act/node_modules/@rescript/react/lib/ocaml
9+
B /Users/joebad/Source/act/node_modules/@rescript/react/lib/ocaml
10+
S /Users/joebad/Source/act/node_modules/rescript-react-native/lib/ocaml
11+
B /Users/joebad/Source/act/node_modules/rescript-react-native/lib/ocaml
12+
S /Users/joebad/Source/act/node_modules/@rescript-react-native/paper/lib/ocaml
13+
B /Users/joebad/Source/act/node_modules/@rescript-react-native/paper/lib/ocaml
14+
S /Users/joebad/Source/act/node_modules/wonka/lib/ocaml
15+
B /Users/joebad/Source/act/node_modules/wonka/lib/ocaml
16+
S /Users/joebad/Source/act/node_modules/rescript-react-navigation/lib/ocaml
17+
B /Users/joebad/Source/act/node_modules/rescript-react-navigation/lib/ocaml
1818
S apps/mobile/re
1919
B lib/bs/apps/mobile/re
2020
####BSB GENERATED: NO EDIT}

apps/mobile/babel.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ module.exports = function (api) {
88
],
99
plugins: [
1010
['@babel/plugin-proposal-decorators', { legacy: true }],
11-
'babel-plugin-transform-typescript-metadata'
11+
'babel-plugin-transform-typescript-metadata',
12+
'react-native-reanimated/plugin'
1213
]
1314
};
1415
};

apps/mobile/src/app/App.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import {
99
import Bugsnag from '@bugsnag/react-native';
1010
import Config from 'react-native-config';
1111
import { StacksProvider } from '@mobily/stacks';
12-
import {configureFonts, Provider, Title} from 'react-native-paper';
12+
import { configureFonts, Provider } from 'react-native-paper';
13+
import { Root } from '../../re/Index.bs';
1314

1415
if (Config.ENABLE_BUGSNAG) {
1516
Bugsnag.start();
@@ -105,9 +106,7 @@ export default () => (
105106
<EnvironmentProvider>
106107
<SyncProvider>
107108
<SettingsProvider>
108-
<Title style={{ alignSelf: 'center' }}>
109-
Hey
110-
</Title>
109+
<Root.make />
111110
</SettingsProvider>
112111
</SyncProvider>
113112
</EnvironmentProvider>

apps/mobile/src/app/Entry.tsx

+16-23
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
createStackNavigator,
1111
StackHeaderProps
1212
} from '@react-navigation/stack';
13+
import { getHeaderTitle } from '@react-navigation/elements';
1314
import { Appbar, useTheme } from 'react-native-paper';
1415
import CheckinBuilder from './screens/CheckinBuilder';
1516
import Achievements from './screens/Achievements';
@@ -26,19 +27,18 @@ import {
2627
} from './shared/camera/camera';
2728

2829
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);
3838

3939
const NavBar: (
4040
props: StackHeaderProps & { theme: ReactNativePaper.Theme }
41-
) => ReactElement = ({ scene, previous, navigation }) => {
41+
) => ReactElement = ({ navigation, route, options, back }) => {
4242
const [showSearch, setShowSearch] = useState<boolean>(false);
4343

4444
const {
@@ -48,16 +48,10 @@ const NavBar: (
4848
} = useContext(HeaderContext);
4949
const { sync } = useSync();
5050

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);
5852

5953
const [showSearchBar, showSearchIcon] = ((): [boolean, boolean] => {
60-
if (scene.route.name !== 'Achievements') {
54+
if (route.name !== 'Achievements') {
6155
return [false, false];
6256
}
6357

@@ -70,7 +64,7 @@ const NavBar: (
7064

7165
return (
7266
<Appbar.Header>
73-
{previous ? (
67+
{back ? (
7468
<Appbar.BackAction onPress={navigation.goBack} />
7569
) : null}
7670
{showSearchBar ? (
@@ -95,7 +89,7 @@ const NavBar: (
9589
onPress={() => setShowSearch(true)}
9690
/>
9791
)}
98-
{scene.route.name === 'PendingApprovals' && (
92+
{route.name === 'PendingApprovals' && (
9993
<Appbar.Action
10094
icon="checkbox-multiple-marked-circle"
10195
onPress={() =>
@@ -105,13 +99,13 @@ const NavBar: (
10599
}
106100
/>
107101
)}
108-
{scene.route.name === 'Uploads' && (
102+
{route.name === 'Uploads' && (
109103
<Appbar.Action
110104
icon="file-image-outline"
111105
onPress={() => launchImageLibrary(sync)}
112106
/>
113107
)}
114-
{scene.route.name === 'Uploads' && (
108+
{route.name === 'Uploads' && (
115109
<Appbar.Action
116110
icon="camera-iris"
117111
onPress={() => launchCamera(sync)}
@@ -145,7 +139,6 @@ const EntryStack = () => {
145139
>
146140
<Stack.Navigator
147141
initialRouteName="Achievements"
148-
headerMode="float"
149142
screenOptions={{
150143
header: (props) => <NavBar {...props} theme={theme} />
151144
}}

0 commit comments

Comments
 (0)