AugurProject/augur-ui

View on GitHub
src/modules/markets/actions/load-create-market-history.js

Summary

Maintainability
A
0 mins
Test Coverage
import { augur } from "services/augurjs";
import logError from "utils/log-error";
import { addMarketCreationTransactions } from "modules/transactions/actions/add-transactions";
import { loadMarketsInfoIfNotLoaded } from "modules/markets/actions/load-markets-info";

export function loadCreateMarketHistory(options = {}, callback = logError) {
  return (dispatch, getState) => {
    const { universe, loginAccount } = getState();
    if (!loginAccount.address) return callback(null);
    augur.markets.getMarkets(
      { ...options, creator: loginAccount.address, universe: universe.id },
      (err, marketsCreatedByUser) => {
        // note: marketsCreatedByUser is an array of market IDs
        if (err) return callback(err);
        if (
          marketsCreatedByUser == null ||
          (Array.isArray(marketsCreatedByUser) &&
            marketsCreatedByUser.length === 0)
        )
          return callback(null);
        dispatch(
          loadMarketsInfoIfNotLoaded(marketsCreatedByUser, err => {
            if (err) return callback(err);
            dispatch(addMarketCreationTransactions(marketsCreatedByUser));
            // TODO save markets created by user to state
            callback(null, marketsCreatedByUser);
          })
        );
      }
    );
  };
}