ilink-world/webservice/WalletApi.js

35 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-04-18 23:19:11 +00:00
2020-04-18 19:59:05 +00:00
import { walletActionUrl } from "./IlinkConstants";
import { fetchWalletListPending, fetchWalletListSuccess, fetchWalletListError } from "../redux/actions/WalletActions";
2020-04-18 23:19:11 +00:00
import fetchQuery from "./FetchQuery";
import { store } from "../redux/store";
import axios from "axios";
2020-04-18 19:59:05 +00:00
const getWalletActivated = (userID) => {
2020-04-18 23:19:11 +00:00
const auth = store.getState().authKeyReducer;
const authKey = auth !== null ? `${auth.authKey.token_type} ${auth.authKey.access_token}` : '';
console.log('AUTHKEY', authKey);
2020-04-18 19:59:05 +00:00
return dispatch => {
dispatch(fetchWalletListPending());
2020-04-18 23:19:11 +00:00
axios({
url: `${walletActionUrl}/${userID}/activated`,
method: 'GET',
headers: {
'Authorization': authKey
}
})
2020-04-18 19:59:05 +00:00
.then(response => {
console.log(response);
dispatch(fetchWalletListSuccess(response));
})
.catch(error => {
dispatch(fetchWalletListError(error.message));
});
}
}
export default getWalletActivated;