const Plotly = require('react-plotlyjs'); const ReactRedux = require('react-redux'); const React = require('react'); const { connect } = ReactRedux; const PlotlyGraph = React.createClass({ render: function() { const { data = [] } = this.props; const cpu = data.map((d) => Math.floor(d.cpu)); const datatime = data.map((d, i) => i); const graphTypes = [{ type: 'scatter', mode: 'lines+markers' }, { type: 'bar' }]; const graphs = graphTypes.map((graphType, i) => { const data = { type: graphType.type, mode: graphType.mode, x: datatime, y: cpu }; const layout = { barmode: graphType.mode } return ( ); }); return (
{graphs}
) } }); const mapStateToProps = ({ data }) => { return { data }; }; module.exports = connect(mapStateToProps)(PlotlyGraph);