All files / src/helpers/httpClient/queries/auth useConnect.ts

15% Statements 3/20
0% Branches 0/11
16.66% Functions 1/6
15% Lines 3/20

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129                                                                                                4x                                                                                                   4x                                                       4x    
/**
 * @fileoverview useConnect hook is used to connect the user to the server.
 * @module useConnect
 * @requires react
 * @requires @tanstack/react-query
 */
import { useContext } from 'react'
import { useMutation } from '@tanstack/react-query'
import { Header } from '@global/types/httpClient/Header'
import { AccountContext, defaultAccount } from '@global/contexts/AccountProvider'
import ConnectJSON from '@global/types/httpClient/auth/Connection'
import { connect } from '@helpers/httpClient/queries/auth/auth'
import { AccountElevationEnum } from '@global/types/Account'
 
interface ConnectProps {
  url?: string
  formUsername: string
  password: string
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
  navigation: any
  headers?: Header
  setError: (error: string) => void
}
 
type LogUserProps = {
  id: number
  uuid: string
  username: string
  email: string
  picture: string | null
  telNumber: string | null
  role: string
  accessToken: string
  createdAt: string
  status: number
  message: string
}
 
/**
 * @function useConnect Handles the connection mutation
 * @param props The username, password, navigation, and setError function
 * @param props.formUsername The user's username
 * @param props.password The user's password
 * @param props.navigation The navigation object
 * @param props.setError The function to set the error
 * @returns The mutation object
 */
export default function useConnect({ formUsername, password, navigation, setError }: ConnectProps) {
  const { account, setAccount } = useContext(AccountContext)
 
  function giveRole(role: string): AccountElevationEnum {
    switch (role) {
      case 'ADMIN':
        return AccountElevationEnum.ADMIN
      case 'MANAGER':
        return AccountElevationEnum.MANAGER
      case 'MODERATOR':
        return AccountElevationEnum.MODERATOR
      case 'CREATOR':
        return AccountElevationEnum.CREATOR
      default:
        return AccountElevationEnum.USER
    }
  }
 
  function logUser({
    id,
    uuid,
    username,
    email,
    picture,
    telNumber,
    accessToken,
    role,
    createdAt,
    status,
    message,
  }: LogUserProps) {
    if (status === 201) {
      setAccount({
        ...account,
        accountID: id,
        uuid,
        email,
        username,
        image: picture ?? defaultAccount.image,
        phoneNumber: telNumber ?? '',
        elevation: giveRole(role),
        accessToken,
        createdAt: new Date(createdAt),
      })
      console.log(accessToken)
      navigation.navigate('AppRouter')
    } else {
      setError(message)
    }
  }
 
  const mutation = useMutation<ConnectJSON>({
    mutationFn: () => connect({ formUsername, password }),
    onSuccess: data => {
      try {
        logUser({
          id: data.json.id,
          uuid: data.json.uuid,
          username: data.json.username,
          email: data.json.email,
          picture: data.json.picture,
          telNumber: data.json.telNumber,
          role: data.json.role,
          accessToken: data.json.accessToken,
          createdAt: data.json.createdAt,
          status: data.status,
          message: data.message,
        })
      } catch (error) {
        console.log(error)
        // @ts-expect-error - error is a string
        setError(error.message)
      }
    },
    onError: error => {
      setError(error.message)
    },
  })
 
  return mutation
}