index.js 9.93 KB
Newer Older
1
import React, { useState, useEffect, useContext, useMemo } from 'react';
涂茜's avatar
涂茜 committed
2 3 4
import PropTypes from 'prop-types';
import Empty from '@wisdom-components/empty';
import classNames from 'classnames';
5
import { Modal, Button, Tabs, Input, Radio, ConfigProvider, message } from 'antd';
涂茜's avatar
涂茜 committed
6
import BasicTable from '@wisdom-components/basictable';
7 8 9 10 11 12
import {
  getMonitorConfig,
  getSensorType,
  getDeviceRealInfo,
  getPointAddressEntry,
  getPointAddress,
陈龙's avatar
陈龙 committed
13
} from './apis';
涂茜's avatar
涂茜 committed
14 15 16 17
import './index.less';

const { TabPane } = Tabs;

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
const defaultColumns = [
  {
    title: '序号',
    dataIndex: 'index',
    width: 60,
  },
  {
    title: '指标名称',
    dataIndex: 'name',
    width: 150,
  },
  {
    title: '最新指标',
    dataIndex: 'value',
    render: (text) => <a>{text}</a>,
  },
  {
    title: '单位',
    dataIndex: 'unit',
  },
  {
    title: '指标类型',
    dataIndex: 'type',
  },
  {
    title: '数据描述',
    dataIndex: 'desc',
  },
  {
    title: '更新时间',
    dataIndex: 'time',
  },
];

涂茜's avatar
涂茜 committed
52 53 54 55
const RealTimeInfo = (props) => {
  const { getPrefixCls } = useContext(ConfigProvider.ConfigContext);
  const prefixCls = getPrefixCls('realtime-info');

56
  const { deviceParams, user, placeholder, defaultTargetValue, modalTitle, buttonText } = props;
涂茜's avatar
涂茜 committed
57 58 59 60 61 62

  const [isModalVisible, setIsModalVisible] = useState(false);
  const [targetValue, setTargetValue] = useState(defaultTargetValue); // 重点/全部
  const [searchValue, setSearchValue] = useState(''); // 搜索框内容
  const [tabKey, setTabKey] = useState('');
  const [guid, setGuid] = useState('');
涂茜's avatar
涂茜 committed
63
  const [deviceConf, setDeviceConf] = useState([]); // 设备配置
涂茜's avatar
涂茜 committed
64
  const [deviceInfo, setDeviceInfo] = useState({}); // 设备实时数据
65
  const [sensorType, setSensorType] = useState([]); // sensorType
涂茜's avatar
涂茜 committed
66 67
  const [pointAddress, setPointAddress] = useState([]); // pointAddress

68 69
  const tabData = useMemo(() => {
    const data = deviceInfo;
涂茜's avatar
涂茜 committed
70
    let tData = [];
71
    if (!data) return tData;
涂茜's avatar
涂茜 committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
    tData.push({
      key: data.code,
      title: data.name,
      guid: data.guid,
      versionID: data.versionID,
      deviceType: data.aName,
    });
    if (data.child && data.child.length) {
      data.child.forEach((child) => {
        tData.push({
          key: child.code,
          title: data.name + child.name,
          guid: child.guid,
          versionID: child.versionID,
          deviceType: child.aName,
        });
      });
    }
90 91
    return tData;
  }, [deviceInfo]);
涂茜's avatar
涂茜 committed
92

93 94
  // 过滤重点指标(带搜索)
  const filterEmphasis = (dataSource, searchValue) => {
涂茜's avatar
涂茜 committed
95 96 97 98
    const cur = tabData.filter((item) => item.key === tabKey);
    const conf =
      cur.length > 0 ? deviceConf.filter((item) => item.deviceType === cur[0].deviceType) : [];
    const dPoints = conf.length > 0 && conf[0].dPoints ? conf[0].dPoints.split(',') : [];
99 100 101 102 103 104 105 106 107 108 109
    const data = dataSource.filter((item) =>
      searchValue
        ? dPoints.indexOf(searchValue) > -1 && dPoints.includes(item.name)
        : dPoints.includes(item.name),
    );
    return data;
  };

  // 过滤普通指标(带搜索)
  const filterSearch = (dataSource, searchValue) => {
    return !searchValue ? dataSource : dataSource.filter((item) => item.name.includes(searchValue));
涂茜's avatar
涂茜 committed
110 111
  };

112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
  const getData = () => {
    const deviceType =
      deviceParams.length > 0
        ? Array.from(new Set(deviceParams.map((item) => item.deviceType))).join(',')
        : '二供泵房,二供机组';
    const configReq = getMonitorConfig({
      params: {
        user,
        showAll: true,
        deviceType,
      },
    });
    const sensorReq = getSensorType();
    const realDataReq = getDeviceRealInfo({
      data: {
        pageIndex: 1,
        pageSize: 200,
        param: deviceParams,
        useID: user,
      },
    });
    Promise.all([configReq, sensorReq, realDataReq])
      .then((results) => {
        if (results.some((item) => item.code !== 0)) message.error('获取数据失败');
        const [configRes, sensorRes, realDataRes] = results;
        setSensorType(sensorRes.data);
        setDeviceConf(configRes.data);
        setDeviceInfo(realDataRes.data.list[0]);
        setTabKey(realDataRes?.data?.list?.[0]?.code);
      })
      .catch((err) => {
        message.error('获取数据失败');
      });
  };

  useEffect(() => {
    if (!isModalVisible || !deviceParams || !deviceParams.length) return;
    getData();
  }, [deviceParams, user, isModalVisible]);

  const GetPointAddressEntry = () => {
    const cur = tabData.filter((item) => item.key === tabKey);
    !!cur.length &&
      getPointAddressEntry({
        params: {
          versionId: cur[0].versionID,
        },
      }).then((res) => {
        if (res.code === 0 && res.data.length) {
          setPointAddress(res.data);
涂茜's avatar
涂茜 committed
162 163 164 165
        }
      });
  };

166 167 168
  useEffect(() => {
    if (!tabKey || !tabData || !tabData.length) return;
    GetPointAddressEntry();
169 170
    const g = tabData.filter((item) => item.key === tabKey);
    setGuid(g?.[0]?.guid);
171 172 173 174 175
  }, [tabKey]);

  const formatData = (data = [], sensorType = [], deviceInfo = {}) => {
    if (!deviceInfo) return [];
    let time = deviceInfo.pt;
涂茜's avatar
涂茜 committed
176
    if (time) time = time.slice(5, 19).replace('-', '/');
177
    let newData = data.map((item, index) => {
涂茜's avatar
涂茜 committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191
      return {
        id: item.id,
        key: item.id,
        index: index + 1,
        name: item.name,
        value: 0,
        unit: '--',
        type: '--',
        time: time,
        desc: item.valDesc || '--',
        ...item,
      };
    });
    newData.forEach((item) => {
192 193
      let curData1 = sensorType.filter((child) => child.id == item.sensorTypeID);
      let curData2 = deviceInfo.dataList.filter((child) => child.paid == item.id);
涂茜's avatar
涂茜 committed
194 195 196 197 198 199 200 201
      if (curData1.length) {
        item.unit = curData1[0].unit || '--';
        item.type = curData1[0].name || '--';
      }
      if (curData2.length) {
        item.value = curData2[0].pv || '--';
      }
    });
202
    return newData;
涂茜's avatar
涂茜 committed
203 204
  };

205 206 207
  const tableData = useMemo(() => {
    // 过滤数据
    let points = [];
涂茜's avatar
涂茜 committed
208
    if (targetValue === 'emphasis') {
209
      points = filterEmphasis(pointAddress, searchValue);
涂茜's avatar
涂茜 committed
210
    } else {
211
      points = filterSearch(pointAddress, searchValue);
涂茜's avatar
涂茜 committed
212
    }
213 214 215 216 217 218 219 220 221 222 223 224

    const deviceData =
      deviceInfo.code === tabKey
        ? deviceInfo
        : deviceInfo?.child?.find((item) => item.code === tabKey);
    const newData = formatData(points, sensorType, deviceData);
    return newData;
  }, [targetValue, searchValue, pointAddress, deviceInfo]);

  const columns = useMemo(() => {
    return defaultColumns;
  }, []);
涂茜's avatar
涂茜 committed
225 226 227 228 229 230 231 232 233 234 235 236 237

  const showModal = () => {
    setIsModalVisible(true);
  };

  const handleOk = () => {
    setIsModalVisible(false);
  };

  const handleCancel = () => {
    setIsModalVisible(false);
  };

238 239 240 241 242
  const changeSearch = (e) => {
    e.target && e.target.value === '' && setSearchValue('');
  };

  const onSearch = (value) => {
涂茜's avatar
涂茜 committed
243
    // 前端搜索
244
    setSearchValue(value);
涂茜's avatar
涂茜 committed
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
  };

  const onTabChange = (key) => {
    setTabKey(key);
  };

  const onRadioChange = (e) => {
    setTargetValue(e.target.value);
  };

  const renderTitle = () => {
    return (
      <div className={classNames(`${prefixCls}-modal-title`)}>
        <Tabs
          tabBarExtraContent={{ left: <h3 style={{ fontWeight: 'bold' }}>{modalTitle}</h3> }}
          activeKey={tabKey}
          onChange={onTabChange}
          centered
        >
          {tabData.map((item) => (
            <TabPane tab={item.title} key={item.key} />
          ))}
        </Tabs>
      </div>
    );
  };

  return (
    <div className={classNames(prefixCls)}>
      <Button type="link" onClick={showModal}>
        {buttonText}
      </Button>
      <Modal
        className={classNames(`${prefixCls}-modal`)}
        width={915}
        title={renderTitle()}
        footer={null}
        visible={isModalVisible}
        onOk={handleOk}
        onCancel={handleCancel}
      >
        <div className={classNames(`${prefixCls}-modal-content`)}>
          <div className={classNames(`${prefixCls}-search-wrap`)}>
            <div className={classNames(`${prefixCls}-search`)}>
              <div className={classNames(`${prefixCls}-label`)}>搜索:</div>
290
              <Input.Search placeholder={placeholder} onSearch={onSearch} onChange={changeSearch} />
涂茜's avatar
涂茜 committed
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
            </div>
            <div className={classNames(`${prefixCls}-target`)}>
              <div className={classNames(`${prefixCls}-label`)}>指标:</div>
              <Radio.Group onChange={onRadioChange} defaultValue={targetValue}>
                <Radio.Button value="emphasis">重点指标</Radio.Button>
                <Radio.Button value="all">全部</Radio.Button>
              </Radio.Group>
            </div>
          </div>
          <div className={classNames(`${prefixCls}-code-wrap`)}>
            <div>采集编码:{guid || '--'}</div>
            <div>更新时间:{(tableData.length && tableData[0].time) || '--'}</div>
          </div>
          <div className={classNames(`${prefixCls}-modal-table`)}>
            <BasicTable
              bordered
              columns={columns}
              locale={{ emptyText: <Empty /> }}
              pagination={false}
310
              dataSource={tableData}
涂茜's avatar
涂茜 committed
311 312 313 314 315 316 317 318 319 320 321 322 323 324
              {...props}
            />
          </div>
        </div>
      </Modal>
    </div>
  );
};

RealTimeInfo.defaultProps = {
  buttonText: '查看更多',
  modalTitle: '实时指标监控',
  placeholder: '输入指标名称等',
  defaultTargetValue: 'emphasis',
涂茜's avatar
涂茜 committed
325
  user: null,
326
  deviceParams: [],
涂茜's avatar
涂茜 committed
327 328 329 330 331 332 333 334 335 336 337 338
  deviceRealInfoParams: {},
  deviceConfService: () => {},
  pointAddressEntryService: () => {},
  sensorTypeService: () => {},
  deviceRealInfoService: () => {},
};

RealTimeInfo.propTypes = {
  buttonText: PropTypes.string,
  modalTitle: PropTypes.string,
  placeholder: PropTypes.string,
  defaultTargetValue: PropTypes.string,
339 340
  user: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
  deviceParams: PropTypes.array,
涂茜's avatar
涂茜 committed
341 342 343 344 345 346 347 348
  deviceRealInfoParams: PropTypes.object,
  deviceConfService: PropTypes.func,
  pointAddressEntryService: PropTypes.func,
  sensorTypeService: PropTypes.func,
  deviceRealInfoService: PropTypes.func,
};

export default RealTimeInfo;