crane-cloud/frontend

View on GitHub
src/redux/actions/getTransactions.js

Summary

Maintainability
A
0 mins
Test Coverage
F
55%
import axios from "../../axios";
import {
  GETTING_TRANSACTIONS,
  TRANSACTIONS_FAIL,
  TRANSACTIONS_SUCCESS,
  CLEAR_TRANSACTIONS,
} from "./actionTypes";

const startFetchingDatabases = () => ({
  type: GETTING_TRANSACTIONS,
});

const getTransactionsSuccess = (response) => ({
  type: TRANSACTIONS_SUCCESS,
  payload: response.data.data.transaction,
});

const getTransactionsFailed = (error) => ({
  type: TRANSACTIONS_FAIL,
  payload: {
    status: false,
    error: error.status,
  },
});

export const clearTransactions = () => ({
  type: CLEAR_TRANSACTIONS,
});

export const getTransactions = (projectID) => (dispatch) => {
  dispatch(startFetchingDatabases());

  return axios
    .get(`/projects/${projectID}/transactions`)
    .then((response) => {
      dispatch(getTransactionsSuccess(response));
    })
    .catch((error) => {
      dispatch(getTransactionsFailed(error));
    });
};

export default getTransactions;