ES6 Plato on Github
Report Home
Summary Display
containers/DOIContainer.js
Maintainability
77.83
Lines of code
47
Difficulty
20.57
Estimated Errors
0.29
Function weight
By Complexity
By SLOC
import React, { Component } from 'react'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; import { fetchInvestigationsWithDOI} from '../actions/investigations.js'; import InvestigationTable from "../components/Investigation/InvestigationTable.js"; class DOIContainer extends Component { constructor(props) { super(props); this.state = { investigations : this.props.doi.investigations, error : null, username : this.props.user.username, sessionId : this.props.user.sessionId, } } componentDidMount(){ this.props.fetchInvestigationsWithDOI(this.state.sessionId, this.state.username); } render() { if ((!this.props.user) || (!this.props.user.sessionId) || (!this.props.investigations)) { return null; } return (<InvestigationTable data={this.props.doi}></InvestigationTable>); } } function mapStateToProps(state) { return { user: state.user, doi: state.doi }; } function mapDispatchToProps(dispatch) { return { fetchInvestigationsWithDOI: bindActionCreators(fetchInvestigationsWithDOI, dispatch) }; } export default connect( mapStateToProps, mapDispatchToProps )(DOIContainer);