import React, { PureComponent } from 'react'; import { connect } from 'dva'; import { Row, Col, Card } from 'antd'; import numeral from 'numeral'; import { NumberInfo, MiniArea, Pie, WaterWave, Gauge } from '../../components/Charts'; import MapChart from '../../components/MapChart'; import TagCloud from '../../components/TagCloud'; import Countdown from '../../components/Countdown'; import ActiveChart from '../../components/ActiveChart'; import { fixedZero } from '../../utils/utils'; import styles from './Monitor.less'; const MapData = []; for (let i = 0; i < 50; i += 1) { MapData.push({ x: Math.floor(Math.random() * 600), y: Math.floor(Math.random() * 400), value: Math.floor(Math.random() * 1000) + 500, }); } const targetTime = new Date().getTime() + 3900000; @connect(state => ({ monitor: state.monitor, })) export default class Monitor extends PureComponent { componentDidMount() { this.props.dispatch({ type: 'monitor/fetchTags', }); } render() { const { monitor } = this.props; const { tags } = monitor; return (