Skip to content

Commit 34b7f5e

Browse files
committed
feat: created auth hook to authentication with discord in app
1 parent a17b1b8 commit 34b7f5e

File tree

7 files changed

+38
-1
lines changed

7 files changed

+38
-1
lines changed

App.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
import { Routes } from './src/routes';
1313
import { theme } from './src/config';
1414
import { Background } from './src/components';
15+
import { AuthProvider } from './src/hooks';
1516

1617
SplashScreen.preventAutoHideAsync();
1718

@@ -45,7 +46,9 @@ export default function App() {
4546
translucent
4647
/>
4748

48-
<Routes />
49+
<AuthProvider>
50+
<Routes />
51+
</AuthProvider>
4952
</SafeAreaView>
5053
</SafeAreaProvider>
5154
</Background>

src/@types/hooks/Auth.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
export interface UserProps {
2+
id: string;
3+
token: string;
4+
email: string;
5+
username: string;
6+
firstName: string;
7+
avatar: string;
8+
}
9+
10+
export interface AuthContextData {
11+
user: UserProps;
12+
}

src/@types/hooks/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './Auth';

src/@types/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export * from './components';
2+
export * from './hooks';
23
export * from './screens';
34
export * from './utils';

src/hooks/Auth.tsx

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { PropsWithChildren, createContext, useContext, useState } from 'react';
2+
import { AuthContextData, UserProps } from '../@types';
3+
4+
const AuthContext = createContext({} as AuthContextData);
5+
6+
export function AuthProvider({ children }: Required<PropsWithChildren>) {
7+
const [user, setUser] = useState<UserProps>({} as UserProps);
8+
9+
return (
10+
<AuthContext.Provider value={{ user }}>{children}</AuthContext.Provider>
11+
);
12+
}
13+
14+
export function useAuth() {
15+
return useContext(AuthContext);
16+
}

src/hooks/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './Auth';

src/screens/SignIn/index.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ import { useNavigation } from '@react-navigation/native';
33

44
import { Background, ButtonIcon } from '../../components';
55
import { ILLUSTRATION } from '../../config';
6+
import { useAuth } from '../../hooks';
7+
68
import { styles } from './styles';
79

810
export function SignIn() {
11+
const {} = useAuth();
912
const navigation = useNavigation();
1013

1114
function handleSignIn(): void {

0 commit comments

Comments
 (0)