added new login API #8

Merged
ameye merged 1 commits from login-new-api into master 2024-05-02 16:59:18 +00:00
6 changed files with 42 additions and 21 deletions
@@ -13,9 +13,9 @@ const NEW_USER_ENDPOINT = import.meta.env.VITE_APP_USER_ENDPOINT
// .get(`${GET_USERS_URL}?${query}`)
// .then((d: AxiosResponse<UsersQueryResponse>) => d.data);
// };
const getStartedUsers = (query: string): Promise<UsersQueryResponse> => {
const getStartedUsers = (query: string): Promise<UsersQueryResponse> => { // FUNCTION TO GET USERS THAT HAVE STARTED LOAN APPLICATION
return axios
.get(`${NEW_USER_ENDPOINT}/loan/started?${query}`)
.get(`${NEW_USER_ENDPOINT}/loan/started`)
.then((d: AxiosResponse<UsersQueryResponse>) => d.data);
};
@@ -11,7 +11,7 @@ import {KTCardBody} from '../../../../../../_digifi/helpers'
const UsersTable = () => {
const users = useQueryResponseData()
// console.log('users', users)
console.log('users', users)
const isLoading = useQueryResponseLoading()
const data = useMemo(() => users, [users])
const columns = useMemo(() => usersColumns, [])
+3 -3
View File
@@ -53,9 +53,9 @@ export function setupAxios(axios: any) {
axios.interceptors.request.use(
(config: {headers: {Authorization: string}}) => {
const auth = getAuth()
if (auth && auth.api_token) {
config.headers.Authorization = `Bearer ${auth.api_token}`
}
// if (auth && auth.api_token) {
// config.headers.Authorization = `Bearer ${auth.api_token}`
// }
return config
},
+2 -2
View File
@@ -1,12 +1,12 @@
import axios from "axios";
export function postAuxEnd(uri:string, reqData:any):Promise<any> {
// const endPoint = process.env.REACT_APP_USERS_ENDPOINT + uri;
const endPoint = import.meta.env.VITE_APP_USER_ENDPOINT + uri;
const formData = new FormData();
for (let value in reqData) {
formData.append(value, reqData[value]);
}
return axios.post(uri, reqData)
return axios.post(endPoint, formData)
.then((response) => {
console.log(response);
// if (response.data.internal_return == "-9999") {
+21
View File
@@ -1,6 +1,18 @@
export interface AuthModel {
api_token: string
refreshToken?: string
message?: string
call_return?: string
username: string
token?: string
id?: string
first_name?: string
last_name?: string
email?: string
email_verified_at?: string
created_at?: string
updated_at?: string
}
export interface UserAddressModel {
@@ -64,4 +76,13 @@ export interface UserModel {
communication?: UserCommunicationModel
address?: UserAddressModel
socialNetworks?: UserSocialNetworksModel
api_token: string
refreshToken?: string
message?: string
call_return?: string
token?: string
email_verified_at?: string
created_at?: string
updated_at?: string
}
+13 -13
View File
@@ -5,9 +5,11 @@ import { postAuxEnd } from "./AxiosCallHelper";
const API_URL = import.meta.env.VITE_APP_API_URL;
export const GET_USER_BY_ACCESSTOKEN_URL = `${API_URL}/verify_token`;
export const LOGIN_URL = `${API_URL}/login`;
// export const LOGIN_URL = 'https://digifi-apidev.chiefsoft.net/digibko/v1/identity/token'
// export const GET_USER_BY_ACCESSTOKEN_URL = `${API_URL}/verify_token`;
// export const LOGIN_URL = `${API_URL}/login`;
export const GET_USER_BY_ACCESSTOKEN_URL = '/identity/verify_token'
export const LOGIN_URL = '/identity/token'
export const REGISTER_URL = `${API_URL}/register`;
export const REQUEST_PASSWORD_URL = `${API_URL}/forgot_password`;
@@ -17,13 +19,7 @@ export function login(email: string, password: string) {
// email,
// password,
// });
// let formData = new FormData()
// formData.append('username', email)
// formData.append('pass', password)
// return axios.post<AuthModel>(LOGIN_URL, formData);
return postAuxEnd(LOGIN_URL, {email, password})
return postAuxEnd(LOGIN_URL, {username:email, pass:password})
}
// Server should return AuthModel
@@ -50,8 +46,12 @@ export function requestPassword(email: string) {
});
}
// export function getUserByToken(token: string) {
// return axios.post<UserModel>(GET_USER_BY_ACCESSTOKEN_URL, {
// api_token: token,
// });
// }
export function getUserByToken(token: string) {
return axios.post<UserModel>(GET_USER_BY_ACCESSTOKEN_URL, {
api_token: token,
});
return postAuxEnd(GET_USER_BY_ACCESSTOKEN_URL, {token})
}