here you go loewy

This commit is contained in:
Andy Malkin 2024-02-07 16:59:11 -08:00
parent b9221fa949
commit 3a476e0db4
5 changed files with 69 additions and 54 deletions

View File

@ -30,7 +30,7 @@ module.exports = {
rules: {
// Best Practices
eqeqeq: ["error", "always"], // Enforce '===' instead of '=='
curly: "error", // Require curly braces for all control statements
curly: ["error", "multi-line", "consistent"], // Require curly braces for all control statements
"no-unused-vars": "warn", // Warn about variables that are declared but not used
// React Specific

View File

@ -38,6 +38,8 @@ export const onAuthStateChanged = (
return auth().onAuthStateChanged(callback);
};
export const currentUser = () => auth().currentUser;
export const getCurrentUserToken = async (): Promise<string | null> => {
const user = auth().currentUser;
if (user) {

View File

@ -1,6 +1,6 @@
import {
confirmCode,
getCurrentUserToken,
currentUser,
handleSignInWithPhoneNumber,
handleSignOut,
onAuthStateChanged,
@ -8,7 +8,7 @@ import {
export {
confirmCode,
getCurrentUserToken,
currentUser,
handleSignInWithPhoneNumber,
handleSignOut,
onAuthStateChanged,

View File

@ -1,8 +1,7 @@
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 { currentUser, handleSignOut, onAuthStateChanged } from "../auth";
import { useAuthHeader } from "../graphql/client";
interface AuthContextType {
@ -19,26 +18,45 @@ export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({
}) => {
const { setAuthHeader } = useAuthHeader();
const [user, setUser] = useState<FirebaseAuthTypes.User | null>(null);
const [contextUser, setContextUser] = 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);
const _completeAuthentication = (
user: FirebaseAuthTypes.User,
token: string,
isLoggedIn: boolean,
) => {
setAuthHeader({ key: "Authorization", value: token });
setContextUser(user);
setIsLoggedIn(isLoggedIn);
setIsLoading(false);
};
const authStateChangeCallback = async (user: FirebaseAuthTypes.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)
}
_completeAuthentication(user, token, true);
} else {
setIsLoggedIn(false);
_completeAuthentication(undefined, undefined, false);
}
};
useEffect(() => {
let unsubscribe = () => {
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
}, []);
useEffect(() => {
const setAuthAsync = async () => {
console.log("running");
@ -52,22 +70,14 @@ export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({
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 }}>
<AuthContext.Provider
value={{ isLoggedIn, isLoading, user: contextUser, logOut }}
>
{children}
</AuthContext.Provider>
);

View File

@ -1,8 +1,8 @@
import React, { createContext, useEffect, useState } from 'react';
import { ActivityIndicator, StyleSheet, View } from 'react-native';
import React, { createContext, useEffect, useState } from "react";
import { ActivityIndicator, StyleSheet, View } from "react-native";
import { colors } from '../../styles';
import AsyncStorage from '@react-native-async-storage/async-storage';
import AsyncStorage from "@react-native-async-storage/async-storage";
import { colors } from "../../styles";
const LoadingContext = createContext<boolean>(false);
@ -11,17 +11,20 @@ export default function Loading({ children }) {
useEffect(() => {
const checkHasToken = async () => {
const hasToken = await AsyncStorage.getItem('token');
const hasToken = await AsyncStorage.getItem("token");
// needs to connect to app state
return hasToken
}
return hasToken;
};
checkHasToken()
.then(() => setLoading(false))
checkHasToken().then(() => setLoading(false));
}, []);
if (!loading) {
return <LoadingContext.Provider value={loading}>{children}</LoadingContext.Provider>;
return (
<LoadingContext.Provider value={loading}>
{children}
</LoadingContext.Provider>
);
}
return (
@ -32,5 +35,5 @@ export default function Loading({ children }) {
}
const s = StyleSheet.create({
container: { flex: 1, justifyContent: 'center', alignItems: 'center' }
container: { flex: 1, justifyContent: "center", alignItems: "center" },
});