import { walletActionUrl } from "./IlinkConstants"; import { fetchWalletListPending, fetchWalletListSuccess, fetchWalletListError } from "../redux/actions/WalletActions"; import { store } from "../redux/store"; import axios from "axios"; const getWalletActivated = (userID) => { const auth = store.getState().authKeyReducer; const authKey = auth !== null ? `${auth.authKey.token_type} ${auth.authKey.access_token}` : ''; return dispatch => { dispatch(fetchWalletListPending()); axios({ url: `${walletActionUrl}/${userID}/activated`, method: 'GET', headers: { 'Authorization': authKey } }) .then(response => { dispatch(fetchWalletListSuccess(response)); }) .catch(error => { dispatch(fetchWalletListError(error.message)); if (error.response) dispatch(fetchWalletListError(error.response)); else if (error.request) dispatch(fetchWalletListError(error.request)) else dispatch(fetchWalletListError(error.message)) }); } } export default getWalletActivated;