wip: almost there, needs dev mode sorted + loading
This commit is contained in:
parent
07db6e21db
commit
b9221fa949
39
App.tsx
39
App.tsx
@ -1,43 +1,14 @@
|
|||||||
import React, { useEffect } from "react";
|
import React from "react";
|
||||||
import { ClientProvider, useAuthHeader } from "./src/graphql/client";
|
import { AuthProvider } from "./src/context";
|
||||||
|
import { ClientProvider } from "./src/graphql/client";
|
||||||
import AppNavigator from "./src/navigation/app-navigator";
|
import AppNavigator from "./src/navigation/app-navigator";
|
||||||
|
|
||||||
import { DEV_USER_ID } from "@env";
|
|
||||||
import AsyncStorage from "@react-native-async-storage/async-storage";
|
|
||||||
import Loading from "./src/lib/loading";
|
|
||||||
|
|
||||||
// TODO: move to different file?
|
|
||||||
const SetAuthHeaderBasedOnEnv = () => {
|
|
||||||
const { setAuthHeader } = useAuthHeader();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const setAuthAsync = async () => {
|
|
||||||
if (DEV_USER_ID) {
|
|
||||||
console.log("Setting fake authorization user to: ", DEV_USER_ID);
|
|
||||||
setAuthHeader({ key: "user_id", value: DEV_USER_ID });
|
|
||||||
} else {
|
|
||||||
// Fetch token for authenticated users in production
|
|
||||||
const token = await AsyncStorage.getItem("token"); // get from not firebase auth ASYNC
|
|
||||||
if (token) {
|
|
||||||
console.log("Setting firebase auth token");
|
|
||||||
setAuthHeader({ key: "Authorization", value: `Bearer ${token}` });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
setAuthAsync();
|
|
||||||
}, [setAuthHeader]);
|
|
||||||
|
|
||||||
return null;
|
|
||||||
};
|
|
||||||
|
|
||||||
const App: React.FC = () => {
|
const App: React.FC = () => {
|
||||||
return (
|
return (
|
||||||
<ClientProvider>
|
<ClientProvider>
|
||||||
<Loading>
|
<AuthProvider>
|
||||||
<SetAuthHeaderBasedOnEnv />
|
|
||||||
<AppNavigator />
|
<AppNavigator />
|
||||||
</Loading>
|
</AuthProvider>
|
||||||
</ClientProvider>
|
</ClientProvider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
"main": "node_modules/expo/AppEntry.js",
|
"main": "node_modules/expo/AppEntry.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "NODE_ENV=development && expo start",
|
"start": "NODE_ENV=development && expo start",
|
||||||
"start:test": "NODE_ENV=development && expo start",
|
|
||||||
"start:android": "expo start --android",
|
"start:android": "expo start --android",
|
||||||
"start:ios": "expo start --ios",
|
"start:ios": "expo start --ios",
|
||||||
"android": "expo run:android",
|
"android": "expo run:android",
|
||||||
@ -12,7 +11,7 @@
|
|||||||
"android:test": "node ./start.js test",
|
"android:test": "node ./start.js test",
|
||||||
"ios": "expo run:ios",
|
"ios": "expo run:ios",
|
||||||
"ios:dev": "NODE_ENV=development expo run:ios",
|
"ios:dev": "NODE_ENV=development expo run:ios",
|
||||||
"ios:prod": "NODE_ENV=production expo run:ios",
|
"ios:prod": "NODE_ENV=test expo run:ios",
|
||||||
"web": "expo start --web",
|
"web": "expo start --web",
|
||||||
"lint": "eslint . --ext .js,.ts,.tsx",
|
"lint": "eslint . --ext .js,.ts,.tsx",
|
||||||
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import AsyncStorage from "@react-native-async-storage/async-storage";
|
|
||||||
import auth, { FirebaseAuthTypes } from "@react-native-firebase/auth";
|
import auth, { FirebaseAuthTypes } from "@react-native-firebase/auth";
|
||||||
import { Alert } from "react-native";
|
import { Alert } from "react-native";
|
||||||
|
|
||||||
@ -47,7 +46,6 @@ export const getCurrentUserToken = async (): Promise<string | null> => {
|
|||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const handleSignOut = async (): Promise<void> => {
|
export const handleSignOut = (): Promise<void> => {
|
||||||
await AsyncStorage.removeItem("token");
|
return auth().signOut();
|
||||||
await auth().signOut();
|
|
||||||
};
|
};
|
||||||
|
@ -1,18 +1,16 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { Button } from "react-native";
|
import { Button } from "react-native";
|
||||||
import { handleSignOut } from "../../auth";
|
import { useAuth } from "../../context";
|
||||||
import { useAuthHeader } from "../../graphql/client";
|
import { useAuthHeader } from "../../graphql/client";
|
||||||
|
|
||||||
export default function SignOutButton(): React.JSX.Element {
|
export default function SignOutButton(): React.JSX.Element {
|
||||||
|
const { logOut } = useAuth();
|
||||||
const { setAuthHeader } = useAuthHeader();
|
const { setAuthHeader } = useAuthHeader();
|
||||||
|
|
||||||
return (
|
const handleSignOut = async () => {
|
||||||
<Button
|
await logOut();
|
||||||
title={"Sign out"}
|
|
||||||
onPress={async () => {
|
|
||||||
setAuthHeader({ key: "Authorization", value: "" });
|
setAuthHeader({ key: "Authorization", value: "" });
|
||||||
await handleSignOut();
|
};
|
||||||
}}
|
|
||||||
/>
|
return <Button title={"Sign out"} onPress={handleSignOut} />;
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
82
src/context/auth-context.tsx
Normal file
82
src/context/auth-context.tsx
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
import { DEV_USER_ID } from "@env";
|
||||||
|
import AsyncStorage from "@react-native-async-storage/async-storage";
|
||||||
|
import { FirebaseAuthTypes } from "@react-native-firebase/auth";
|
||||||
|
import React, { createContext, useContext, useEffect, useState } from "react";
|
||||||
|
import { handleSignOut, onAuthStateChanged } from "../auth/firebase-auth";
|
||||||
|
import { useAuthHeader } from "../graphql/client";
|
||||||
|
|
||||||
|
interface AuthContextType {
|
||||||
|
isLoggedIn: boolean;
|
||||||
|
isLoading: boolean;
|
||||||
|
user: FirebaseAuthTypes.User | null;
|
||||||
|
logOut: () => Promise<void>;
|
||||||
|
}
|
||||||
|
|
||||||
|
const AuthContext = createContext<AuthContextType | undefined>(undefined);
|
||||||
|
|
||||||
|
export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({
|
||||||
|
children,
|
||||||
|
}) => {
|
||||||
|
const { setAuthHeader } = useAuthHeader();
|
||||||
|
|
||||||
|
const [user, setUser] = useState<FirebaseAuthTypes.User | null>(null);
|
||||||
|
const [isLoggedIn, setIsLoggedIn] = useState<boolean>(false);
|
||||||
|
const [isLoading, setIsLoading] = useState<boolean>(true); // this is for a LoadingContext (auth, app reloads, foreground etc)
|
||||||
|
|
||||||
|
const authStateChangeCallback = async (user) => {
|
||||||
|
console.log("user:", user);
|
||||||
|
if (user) {
|
||||||
|
const token = await user.getIdToken();
|
||||||
|
if (token) {
|
||||||
|
await AsyncStorage.setItem("token", token);
|
||||||
|
setAuthHeader({ key: "Authorization", value: token });
|
||||||
|
setUser(user);
|
||||||
|
setIsLoggedIn(true);
|
||||||
|
setIsLoading(false)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setIsLoggedIn(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const setAuthAsync = async () => {
|
||||||
|
console.log("running");
|
||||||
|
if (DEV_USER_ID) {
|
||||||
|
console.log("Setting fake authorization user to: ", DEV_USER_ID);
|
||||||
|
setAuthHeader({ key: "user_id", value: DEV_USER_ID });
|
||||||
|
setIsLoggedIn(true);
|
||||||
|
setIsLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
setAuthAsync();
|
||||||
|
}, [setAuthHeader]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let unsubscribe: () => void = () => console.log('Dev mode unsubscribe - really dense fn')
|
||||||
|
if (!DEV_USER_ID) {
|
||||||
|
unsubscribe = onAuthStateChanged(authStateChangeCallback);
|
||||||
|
}
|
||||||
|
return unsubscribe;
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const logOut = async () => {
|
||||||
|
await AsyncStorage.removeItem("token");
|
||||||
|
await handleSignOut();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AuthContext.Provider value={{ isLoggedIn, isLoading, user, logOut }}>
|
||||||
|
{children}
|
||||||
|
</AuthContext.Provider>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const useAuth = () => {
|
||||||
|
const context = useContext(AuthContext);
|
||||||
|
if (context === undefined) {
|
||||||
|
throw new Error("useAuth must be used within an AuthProvider");
|
||||||
|
}
|
||||||
|
return context;
|
||||||
|
};
|
3
src/context/index.ts
Normal file
3
src/context/index.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import { AuthProvider, useAuth } from "./auth-context";
|
||||||
|
|
||||||
|
export { AuthProvider, useAuth };
|
@ -6,13 +6,13 @@ import {
|
|||||||
import { createNativeStackNavigator } from "@react-navigation/native-stack";
|
import { createNativeStackNavigator } from "@react-navigation/native-stack";
|
||||||
import { useColorScheme } from "react-native";
|
import { useColorScheme } from "react-native";
|
||||||
|
|
||||||
|
import { useAuth } from "../context";
|
||||||
import Login from "../screens/login";
|
import Login from "../screens/login";
|
||||||
import Tabs from "./tab-navigator";
|
import Tabs from "./tab-navigator";
|
||||||
import AsyncStorage from "@react-native-async-storage/async-storage";
|
|
||||||
|
|
||||||
const Stack = createNativeStackNavigator();
|
const Stack = createNativeStackNavigator();
|
||||||
|
|
||||||
const ScreensStack = () => (
|
const AppStack = () => (
|
||||||
<Stack.Navigator>
|
<Stack.Navigator>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name="Tabs"
|
name="Tabs"
|
||||||
@ -31,18 +31,13 @@ const ScreensStack = () => (
|
|||||||
export default function AppNavigator(): React.JSX.Element {
|
export default function AppNavigator(): React.JSX.Element {
|
||||||
// useColorScheme get's the theme from device settings
|
// useColorScheme get's the theme from device settings
|
||||||
const scheme = useColorScheme();
|
const scheme = useColorScheme();
|
||||||
const getToken = async () => {
|
const { isLoggedIn } = useAuth();
|
||||||
const token = await AsyncStorage.getItem('token')
|
|
||||||
console.log('token', token)
|
|
||||||
return token
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NavigationContainer theme={scheme === "dark" ? DarkTheme : DefaultTheme}>
|
<NavigationContainer theme={scheme === "dark" ? DarkTheme : DefaultTheme}>
|
||||||
<Stack.Navigator screenOptions={{ headerShown: false }}>
|
<Stack.Navigator screenOptions={{ headerShown: false }}>
|
||||||
{getToken ? (
|
{isLoggedIn ? (
|
||||||
<Stack.Screen name="App" component={ScreensStack} />
|
<Stack.Screen name="App" component={AppStack} />
|
||||||
) : (
|
) : (
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name="Login"
|
name="Login"
|
||||||
@ -50,8 +45,6 @@ export default function AppNavigator(): React.JSX.Element {
|
|||||||
options={{ headerShown: false }}
|
options={{ headerShown: false }}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
||||||
</Stack.Navigator>
|
</Stack.Navigator>
|
||||||
</NavigationContainer>
|
</NavigationContainer>
|
||||||
);
|
);
|
||||||
|
@ -1,51 +1,24 @@
|
|||||||
// Login.tsx
|
// Login.tsx
|
||||||
import AsyncStorage from "@react-native-async-storage/async-storage";
|
|
||||||
import { FirebaseAuthTypes } from "@react-native-firebase/auth";
|
import { FirebaseAuthTypes } from "@react-native-firebase/auth";
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useState } from "react";
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
Keyboard,
|
Keyboard,
|
||||||
Text,
|
|
||||||
TextInput,
|
TextInput,
|
||||||
TouchableWithoutFeedback,
|
TouchableWithoutFeedback,
|
||||||
View,
|
View,
|
||||||
} from "react-native";
|
} from "react-native";
|
||||||
import {
|
import { confirmCode, handleSignInWithPhoneNumber } from "../auth";
|
||||||
confirmCode,
|
|
||||||
handleSignInWithPhoneNumber,
|
|
||||||
onAuthStateChanged,
|
|
||||||
} from "../auth";
|
|
||||||
import SignOutButton from "../component/buttons/sign-out";
|
|
||||||
import { useAuthHeader } from "../graphql/client";
|
|
||||||
|
|
||||||
export default function Login({ navigation }) {
|
export default function Login() {
|
||||||
const [phoneNumber, setPhoneNumber] = useState<string>("");
|
const [phoneNumber, setPhoneNumber] = useState<string>("");
|
||||||
const [code, setCode] = useState<string>("");
|
const [code, setCode] = useState<string>("");
|
||||||
const [user, setUser] = useState<FirebaseAuthTypes.User | null>(null);
|
|
||||||
const [confirm, setConfirm] =
|
const [confirm, setConfirm] =
|
||||||
useState<FirebaseAuthTypes.ConfirmationResult | null>(null);
|
useState<FirebaseAuthTypes.ConfirmationResult | null>(null);
|
||||||
const { authHeader, setAuthHeader } = useAuthHeader();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const unsubscribe = onAuthStateChanged(async (user) => {
|
|
||||||
setUser(user);
|
|
||||||
if (user) {
|
|
||||||
const token = await user.getIdToken();
|
|
||||||
if (token) {
|
|
||||||
await AsyncStorage.setItem("token", token);
|
|
||||||
setAuthHeader({ key: "Authorization", value: token });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return unsubscribe;
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
console.log(authHeader.value);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<TouchableWithoutFeedback onPress={() => Keyboard.dismiss()}>
|
<TouchableWithoutFeedback onPress={() => Keyboard.dismiss()}>
|
||||||
<View style={{ alignItems: "center" }}>
|
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
|
||||||
<TextInput
|
<TextInput
|
||||||
style={{
|
style={{
|
||||||
width: "50%",
|
width: "50%",
|
||||||
@ -86,24 +59,6 @@ export default function Login({ navigation }) {
|
|||||||
: confirm && confirmCode(confirm, code)
|
: confirm && confirmCode(confirm, code)
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<Text>
|
|
||||||
{authHeader.key}: {authHeader.value}
|
|
||||||
</Text>
|
|
||||||
{user && (
|
|
||||||
<>
|
|
||||||
<Text style={{ marginTop: 10 }}>
|
|
||||||
Display name: {user?.displayName}
|
|
||||||
</Text>
|
|
||||||
<Text>Phone number: {user?.phoneNumber}</Text>
|
|
||||||
|
|
||||||
<SignOutButton />
|
|
||||||
<Button
|
|
||||||
color="orange"
|
|
||||||
title="Go to app"
|
|
||||||
onPress={() => navigation.push("Tabs")}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</View>
|
</View>
|
||||||
</TouchableWithoutFeedback>
|
</TouchableWithoutFeedback>
|
||||||
);
|
);
|
||||||
|
@ -1,14 +1,33 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { StyleSheet, View } from "react-native";
|
import { StyleSheet, Text, View } from "react-native";
|
||||||
import { graph_data_two_measures } from "../../test/mock/charts/mock-data";
|
import { graph_data_two_measures } from "../../test/mock/charts/mock-data";
|
||||||
|
import SignOutButton from "../component/buttons/sign-out";
|
||||||
import BarGraph from "../component/charts/bar-graph/bar-graph";
|
import BarGraph from "../component/charts/bar-graph/bar-graph";
|
||||||
|
import { useAuth } from "../context";
|
||||||
|
import { useAuthHeader } from "../graphql/client";
|
||||||
|
|
||||||
// Session Mock - can be used for session summary screen using a query handler component
|
// Session Mock - can be used for session summary screen using a query handler component
|
||||||
// BarGraph component using mocked data currently
|
// BarGraph component using mocked data currently
|
||||||
export default function SessionScreen() {
|
export default function SessionScreen() {
|
||||||
|
const { user } = useAuth();
|
||||||
|
const { authHeader } = useAuthHeader();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={StyleSheet.absoluteFill}>
|
<View style={StyleSheet.absoluteFill}>
|
||||||
<BarGraph data={graph_data_two_measures} />
|
<BarGraph data={graph_data_two_measures} />
|
||||||
|
|
||||||
|
{user && (
|
||||||
|
<>
|
||||||
|
<Text style={{ marginTop: 10 }}>
|
||||||
|
Display name: {user?.displayName}
|
||||||
|
</Text>
|
||||||
|
<Text>Phone number: {user?.phoneNumber}</Text>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
<SignOutButton />
|
||||||
|
<Text>
|
||||||
|
{authHeader.key}: {authHeader.value}
|
||||||
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user