AugurProject/augur-ui

View on GitHub
src/modules/reporting/containers/reporting-header.js

Summary

Maintainability
A
0 mins
Test Coverage
import { connect } from "react-redux";

import ReportingHeader from "modules/reporting/components/reporting-header/reporting-header";

import { loadReportingWindowBounds } from "modules/reports/actions/load-reporting-window-bounds";
import { sendFinalizeMarket } from "modules/markets/actions/finalize-market";
import { updateModal } from "modules/modal/actions/update-modal";

const mapStateToProps = state => ({
  reportingWindowStats: state.reportingWindowStats,
  isMobile: state.appStatus.isMobile,
  repBalance: state.loginAccount.rep || "0",
  forkingMarket: state.universe.forkingMarket,
  currentTime: state.blockchain.currentAugurTimestamp,
  doesUserHaveRep: state.loginAccount.rep > 0,
  forkReputationGoal: state.universe.forkReputationGoal,
  isForkingMarketFinalized: state.universe.isForkingMarketFinalized,
  isLogged: state.authStatus.isLogged,
  universe: (state.universe || {}).id
});

const mapDispatchToProps = dispatch => ({
  loadReportingWindowStake: () => {
    /* TODO */
  },
  loadReportingWindowBounds: () => dispatch(loadReportingWindowBounds()),
  updateModal: modal => dispatch(updateModal(modal)),
  finalizeMarket: marketId => dispatch(sendFinalizeMarket(marketId))
});

const mergeProps = (sP, dP, oP) => ({
  ...oP,
  ...sP,
  ...dP
});

export default connect(
  mapStateToProps,
  mapDispatchToProps,
  mergeProps
)(ReportingHeader);