Merge branch 'login-new-api' of DigiFi/digifi-bko into master
This commit is contained in:
@@ -13,9 +13,9 @@ const NEW_USER_ENDPOINT = import.meta.env.VITE_APP_USER_ENDPOINT
|
|||||||
// .get(`${GET_USERS_URL}?${query}`)
|
// .get(`${GET_USERS_URL}?${query}`)
|
||||||
// .then((d: AxiosResponse<UsersQueryResponse>) => d.data);
|
// .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
|
return axios
|
||||||
.get(`${NEW_USER_ENDPOINT}/loan/started?${query}`)
|
.get(`${NEW_USER_ENDPOINT}/loan/started`)
|
||||||
.then((d: AxiosResponse<UsersQueryResponse>) => d.data);
|
.then((d: AxiosResponse<UsersQueryResponse>) => d.data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import {KTCardBody} from '../../../../../../_digifi/helpers'
|
|||||||
|
|
||||||
const UsersTable = () => {
|
const UsersTable = () => {
|
||||||
const users = useQueryResponseData()
|
const users = useQueryResponseData()
|
||||||
// console.log('users', users)
|
console.log('users', users)
|
||||||
const isLoading = useQueryResponseLoading()
|
const isLoading = useQueryResponseLoading()
|
||||||
const data = useMemo(() => users, [users])
|
const data = useMemo(() => users, [users])
|
||||||
const columns = useMemo(() => usersColumns, [])
|
const columns = useMemo(() => usersColumns, [])
|
||||||
|
|||||||
@@ -53,9 +53,9 @@ export function setupAxios(axios: any) {
|
|||||||
axios.interceptors.request.use(
|
axios.interceptors.request.use(
|
||||||
(config: {headers: {Authorization: string}}) => {
|
(config: {headers: {Authorization: string}}) => {
|
||||||
const auth = getAuth()
|
const auth = getAuth()
|
||||||
if (auth && auth.api_token) {
|
// if (auth && auth.api_token) {
|
||||||
config.headers.Authorization = `Bearer ${auth.api_token}`
|
// config.headers.Authorization = `Bearer ${auth.api_token}`
|
||||||
}
|
// }
|
||||||
|
|
||||||
return config
|
return config
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export function postAuxEnd(uri:string, reqData:any):Promise<any> {
|
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();
|
const formData = new FormData();
|
||||||
for (let value in reqData) {
|
for (let value in reqData) {
|
||||||
formData.append(value, reqData[value]);
|
formData.append(value, reqData[value]);
|
||||||
}
|
}
|
||||||
return axios.post(uri, reqData)
|
return axios.post(endPoint, formData)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
// if (response.data.internal_return == "-9999") {
|
// if (response.data.internal_return == "-9999") {
|
||||||
|
|||||||
@@ -1,6 +1,18 @@
|
|||||||
export interface AuthModel {
|
export interface AuthModel {
|
||||||
api_token: string
|
api_token: string
|
||||||
refreshToken?: 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 {
|
export interface UserAddressModel {
|
||||||
@@ -64,4 +76,13 @@ export interface UserModel {
|
|||||||
communication?: UserCommunicationModel
|
communication?: UserCommunicationModel
|
||||||
address?: UserAddressModel
|
address?: UserAddressModel
|
||||||
socialNetworks?: UserSocialNetworksModel
|
socialNetworks?: UserSocialNetworksModel
|
||||||
|
|
||||||
|
api_token: string
|
||||||
|
refreshToken?: string
|
||||||
|
message?: string
|
||||||
|
call_return?: string
|
||||||
|
token?: string
|
||||||
|
email_verified_at?: string
|
||||||
|
created_at?: string
|
||||||
|
updated_at?: string
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,9 +5,11 @@ import { postAuxEnd } from "./AxiosCallHelper";
|
|||||||
|
|
||||||
const API_URL = import.meta.env.VITE_APP_API_URL;
|
const API_URL = import.meta.env.VITE_APP_API_URL;
|
||||||
|
|
||||||
export const GET_USER_BY_ACCESSTOKEN_URL = `${API_URL}/verify_token`;
|
// export const GET_USER_BY_ACCESSTOKEN_URL = `${API_URL}/verify_token`;
|
||||||
export const LOGIN_URL = `${API_URL}/login`;
|
// 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 = '/identity/verify_token'
|
||||||
|
export const LOGIN_URL = '/identity/token'
|
||||||
export const REGISTER_URL = `${API_URL}/register`;
|
export const REGISTER_URL = `${API_URL}/register`;
|
||||||
export const REQUEST_PASSWORD_URL = `${API_URL}/forgot_password`;
|
export const REQUEST_PASSWORD_URL = `${API_URL}/forgot_password`;
|
||||||
|
|
||||||
@@ -17,13 +19,7 @@ export function login(email: string, password: string) {
|
|||||||
// email,
|
// email,
|
||||||
// password,
|
// password,
|
||||||
// });
|
// });
|
||||||
|
return postAuxEnd(LOGIN_URL, {username:email, pass: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})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Server should return AuthModel
|
// 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) {
|
export function getUserByToken(token: string) {
|
||||||
return axios.post<UserModel>(GET_USER_BY_ACCESSTOKEN_URL, {
|
return postAuxEnd(GET_USER_BY_ACCESSTOKEN_URL, {token})
|
||||||
api_token: token,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user