incident.jsx 17.1 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1 2 3 4 5 6 7 8 9
/* eslint-disable prettier/prettier */
/* eslint-disable eqeqeq */
/* eslint-disable no-shadow */
/* eslint-disable no-unused-vars */
/* eslint-disable array-callback-return */
/* eslint-disable react-hooks/rules-of-hooks */
/* eslint-disable camelcase */
/* eslint-disable guard-for-in */
/* eslint-disable no-restricted-syntax */
10
import React, { useState, useEffect } from 'react';
皮倩雯's avatar
皮倩雯 committed
11
import { useHistory } from 'react-router-dom';
12
import {
皮倩雯's avatar
皮倩雯 committed
13 14 15 16 17 18 19 20 21 22
  Form,
  Card,
  Space,
  Table,
  Popconfirm,
  Spin,
  Tooltip,
  notification,
  Tree,
  Button,
23 24 25
} from 'antd';

import {
皮倩雯's avatar
皮倩雯 committed
26 27 28 29 30 31 32 33 34
  DoubleLeftOutlined,
  DoubleRightOutlined,
  PlusSquareFilled,
  RightOutlined,
  EditTwoTone,
  DeleteOutlined,
  OrderedListOutlined,
  ApartmentOutlined,
  DesktopOutlined,
35
} from '@ant-design/icons';
皮倩雯's avatar
皮倩雯 committed
36 37 38 39 40 41
import {
  GetCM_Event_LoadEventTable,
  CM_Event_RemoveEventTable,
  CM_Event_ReOrder,
  GetCM_Event_LoadEventTypeTable,
} from '@/services/standingBook/api';
42
import classnames from 'classnames';
皮倩雯's avatar
皮倩雯 committed
43 44 45 46 47
import styles from './incident.less';
import AddModal from './AddModal';
import ProcessModal from './ProcessModal';
import SortModal from './SortModal';
import ViewModal from './ViewModal';
皮倩雯's avatar
皮倩雯 committed
48

49
const incident = () => {
皮倩雯's avatar
皮倩雯 committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  const history = useHistory();
  const [treeLoading, setTreeLoading] = useState(false);
  const [treeVisible, setTreeVisible] = useState(true); // 左边列表是否可见
  const [treeData, setTreeData] = useState([]); // 事件表数据
  const [tableData, setTableData] = useState([]); // 事件表
  const [addVisible, setAddvisible] = useState(false);
  const [processVisible, setProcessVisible] = useState(false);
  const [sortVisible, setSortVisible] = useState(false);
  const [viewVisible, setViewVisible] = useState(false);
  const [isType, setIsType] = useState(''); // 弹窗类型
  const [formObj, setFormObj] = useState('');
  const [flag, setFlag] = useState(0);
  const [title1, setTitle1] = useState('');
  const [title2, setTitle2] = useState('');
  const [select, setSelect] = useState('');
皮倩雯's avatar
皮倩雯 committed
65

皮倩雯's avatar
皮倩雯 committed
66 67 68
  const [sortData, setSortData] = useState([]);
  const [rember, setRember] = useState(0);
  const [rember1, setRember1] = useState();
皮倩雯's avatar
皮倩雯 committed
69

皮倩雯's avatar
皮倩雯 committed
70 71
  const [maxLength, setMaxLength] = useState(0);
  const [pickItem, setPickItem] = useState('');
72
  const [hoverItemIndex, setHoverItemIndex] = useState(0); // hover流程索引
73
  const [keepIdValue, setKeepIdValue] = useState([]);
皮倩雯's avatar
皮倩雯 committed
74

皮倩雯's avatar
皮倩雯 committed
75 76
  const columns = [
    {
77
      title: '事件类型',
皮倩雯's avatar
皮倩雯 committed
78 79 80
      dataIndex: 'name',
      key: 'name',
      width: 150,
81 82 83 84 85
      render: record => (
        <Tooltip placement="topLeft" title={record}>
          {record}
        </Tooltip>
      ),
皮倩雯's avatar
皮倩雯 committed
86 87 88 89 90 91
    },
    {
      title: '事件主表',
      dataIndex: 'tableName',
      key: 'tableName',
      width: 200,
92 93 94 95 96
      render: record => (
        <Tooltip placement="topLeft" title={record}>
          {record}
        </Tooltip>
      ),
皮倩雯's avatar
皮倩雯 committed
97 98 99 100 101
    },
    {
      title: '编码',
      dataIndex: 'code',
      key: 'code',
皮倩雯's avatar
皮倩雯 committed
102
      width: 80,
103 104 105 106 107
      render: record => (
        <Tooltip placement="topLeft" title={record}>
          {record}
        </Tooltip>
      ),
皮倩雯's avatar
皮倩雯 committed
108
    },
109 110 111 112 113 114 115 116 117 118 119
    // {
    //   title: '摘要字段',
    //   dataIndex: 'summaryFields',
    //   key: 'summaryFields',
    //   width: 100,
    //   render: record => (
    //     <Tooltip placement="topLeft" title={record}>
    //       {record}
    //     </Tooltip>
    //   ),
    // },
皮倩雯's avatar
皮倩雯 committed
120 121 122 123
    {
      title: '权限',
      dataIndex: 'roles',
      key: 'roles',
124
      width: 80,
125 126 127 128 129
      render: record => (
        <Tooltip placement="topLeft" title={record}>
          {record}
        </Tooltip>
      ),
皮倩雯's avatar
皮倩雯 committed
130
    },
131 132 133 134 135 136 137 138 139 140 141
    // {
    //   title: '流程',
    //   dataIndex: 'flowCount',
    //   key: 'flowCount',
    //   width: 80,
    //   render: record => (
    //     <Tooltip placement="topLeft" title={record}>
    //       {record}
    //     </Tooltip>
    //   ),
    // },
皮倩雯's avatar
皮倩雯 committed
142 143 144 145 146 147
    {
      title: '上报',
      dataIndex: 'reportable',
      key: 'reportable',
      width: 50,
    },
148 149 150 151 152 153 154 155 156 157 158 159
    // {
    //   title: '上报字段',
    //   dataIndex: 'reportFields',
    //   key: 'reportFields',
    //   width: 80,
    // },
    // {
    //   title: '显示字段',
    //   dataIndex: 'displayFields',
    //   key: 'displayFields',
    //   width: 80,
    // },
皮倩雯's avatar
皮倩雯 committed
160

皮倩雯's avatar
皮倩雯 committed
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
    {
      title: '编辑',
      dataIndex: 'editable',
      key: 'editable',
      width: 50,
      render: item => (
        <span style={{ color: 'grey' }} key={item}>
          {item}
        </span>
      ),
    },
    {
      title: '编辑字段',
      dataIndex: 'editableFields',
      key: 'editableFields',
皮倩雯's avatar
皮倩雯 committed
176
      width: 80,
皮倩雯's avatar
皮倩雯 committed
177 178 179 180 181
      render: item => (
        <div
          ref={r => {
            if (r) {
              r.innerHTML = item;
皮倩雯's avatar
皮倩雯 committed
182
            }
皮倩雯's avatar
皮倩雯 committed
183 184 185 186
          }}
        />
      ),
    },
187 188 189 190 191
    {
      title: '外部字段',
      dataIndex: 'outFields',
      key: 'outFields',
      align: 'center',
192
      width: 80,
193 194 195 196
      render: text => (
        <span
          style={{
            display: 'inline-block',
197
            width: '60px',
198 199 200 201
            color: Number(text) > 0 ? 'red' : '',
            backgroundColor: Number(text) > 0 ? 'yellow' : '',
          }}
        >
202
          {text == 0 ? '(无)' : text}
203 204
        </span>
      ),
205
    },
皮倩雯's avatar
皮倩雯 committed
206 207 208 209
    {
      title: '上报方式',
      dataIndex: 'createMode',
      key: 'createMode',
皮倩雯's avatar
皮倩雯 committed
210
      width: 80,
皮倩雯's avatar
皮倩雯 committed
211 212 213 214 215
    },
    {
      title: '操作',
      key: 'action',
      align: 'center',
216
      width: 150,
皮倩雯's avatar
皮倩雯 committed
217 218 219
      render: record => (
        <Space size="middle">
          <Tooltip title="编辑事件类型">
220
            <EditTwoTone onClick={() => editEventType(record)} style={{ fontSize: '16px' }} />
皮倩雯's avatar
皮倩雯 committed
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
          </Tooltip>
          <Tooltip title="删除事件类型">
            <Popconfirm
              placement="bottomRight"
              title={<p>即将删除事件类型表,是否确认删除?</p>}
              okText="确认"
              cancelText="取消"
              onConfirm={() => deleteEventType(record)}
            >
              <DeleteOutlined style={{ fontSize: '16px', color: '#e86060' }} />
            </Popconfirm>
          </Tooltip>
          <Tooltip title="受理流程">
            <ApartmentOutlined
              onClick={() => process1(record)}
              style={{ fontSize: '16px', color: '#1890FF' }}
            />
          </Tooltip>
          <Tooltip title="辅助视图">
            <DesktopOutlined
              onClick={() => auxiliaryView1(record)}
              style={{ fontSize: '16px', color: '#1890FF' }}
            />
          </Tooltip>
        </Space>
      ),
    },
  ];

  useEffect(() => {
    setTreeLoading(true);
    GetCM_Event_LoadEventTable().then(res => {
      setTreeLoading(false);
254
      if (res.code === 0) {
皮倩雯's avatar
皮倩雯 committed
255
        console.log(res.data);
皮倩雯's avatar
皮倩雯 committed
256
        setKeepIdValue(res.data);
皮倩雯's avatar
皮倩雯 committed
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
        // setMaxLength(res.data.root.length + 1)
        let arr = formateArrDataA(res.data, 'businessType');
        console.log(arr);
        let newArr = [];
        let newapp = [];
        let newabb = [];
        let aa = [];
        let zz = [];
        Object.keys(arr).map((item, index) => {
          newArr.push(item);
        });
        console.log(arr);
        Object.values(arr).map((item, index) => {
          newapp.push(item);
        });
        console.log(newapp);
        newapp.map((item, index) => {
          console.log(item);
          item.map((item1, index) => {
            newabb.push(item1.root);
            console.log(item1.root);
皮倩雯's avatar
皮倩雯 committed
278
          });
皮倩雯's avatar
皮倩雯 committed
279 280 281 282 283 284 285 286 287 288 289 290
        });
        console.log(newabb);
        newabb.map((item, index) => {
          console.log(item);
          aa.push(item);
        });
        console.log(aa);
        aa.map((item, index) => {
          console.log(item);
          item.map((item1, index) => {
            console.log(item1);
            zz.push({ ...item1 });
皮倩雯's avatar
皮倩雯 committed
291
          });
皮倩雯's avatar
皮倩雯 committed
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
        });
        console.log(zz);
        let arrr = formateArrDataA(zz, 'businessType');
        console.log(arrr);
        setTableData(arrr);
        console.log(history.location.state);
        if (history.location.state) {
          console.log(history);
          console.log(history.location.state.rember);
          setPickItem(newArr[history.location.state.rember]);
          setRember(history.location.state.rember);
          setRember1(newArr[history.location.state.rember]);
        } else {
          setPickItem(newArr[rember]);
          setRember1(newArr[0]);
        }
        console.log(rember);
        console.log(newArr[rember]);
        console.log(newArr, 'newArr');
        setTreeData(newArr);
312
      } else {
313 314 315 316 317
        notification.error({
          message: '提示',
          duration: 3,
          description: res.msg,
        });
皮倩雯's avatar
皮倩雯 committed
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
      }
    });
  }, [flag]);
  useEffect(() => {
    GetCM_Event_LoadEventTypeTable().then(res => {
      if (res.msg === 'Ok') {
        let arr = [];
        res.data.map((item, index) => {
          arr.push(item.text);
        });
        setSelect(arr);
      }
    });
  }, []);
  const formateArrDataA = (initialArr, name) => {
    console.log(initialArr);
    console.log(name);
    // 判定传参是否符合规则
    if (!(initialArr instanceof Array)) {
      return '请传入正确格式的数组';
皮倩雯's avatar
皮倩雯 committed
338
    }
皮倩雯's avatar
皮倩雯 committed
339 340
    if (!name) {
      return '请传入对象属性';
皮倩雯's avatar
皮倩雯 committed
341
    }
皮倩雯's avatar
皮倩雯 committed
342 343 344 345 346 347
    // 先获取一下这个数组中有多少个"name"
    let nameArr = [];
    for (let i in initialArr) {
      if (nameArr.indexOf(initialArr[i][`${name}`]) === -1) {
        nameArr.push(initialArr[i][`${name}`]);
      }
皮倩雯's avatar
皮倩雯 committed
348
    }
皮倩雯's avatar
皮倩雯 committed
349 350 351 352 353 354 355 356 357 358 359
    // 新建一个包含多个list的结果对象
    let tempObj = {};
    // 根据不同的"name"生成多个数组
    for (let k in nameArr) {
      for (let j in initialArr) {
        if (initialArr[j][`${name}`] == nameArr[k]) {
          // 每次外循环时新建一个对应"name"的数组, 内循环时当前数组不变
          tempObj[nameArr[k]] = tempObj[nameArr[k]] || [];
          tempObj[nameArr[k]].push(initialArr[j]);
        }
      }
360
    }
皮倩雯's avatar
皮倩雯 committed
361 362 363 364 365 366 367
    for (let keys in tempObj) {
      let arr = [];
      tempObj[keys].map((item, index) => {
        tempObj[keys] = arr;
        item.key = index;
        arr.push(item);
      });
368
    }
皮倩雯's avatar
皮倩雯 committed
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
    return tempObj;
  };
  // 添加事件
  const addIncident = () => {
    setAddvisible(true);
    setIsType('add');
  };
  // 修改事件类型
  const editEventType = record => {
    setFormObj(record);
    setIsType('edit');
    setAddvisible(true);
  };
  // 删除事件类型
  const deleteEventType = record => {
    CM_Event_RemoveEventTable(record.ID).then(res => {
      if (res.msg === '') {
        notification.success({
          message: '提示',
          duration: 3,
          description: '删除成功',
        });
        setFlag(flag + 1);
      } else {
        notification.error({
          message: '提示',
          duration: 3,
          description: res.msg,
        });
      }
    });
  };
  const sort = () => {
    setSortVisible(true);
    console.log(tableData);
    console.log(pickItem);
    console.log(tableData[pickItem]);
    setSortData(tableData[pickItem]);
  };
皮倩雯's avatar
皮倩雯 committed
408

皮倩雯's avatar
皮倩雯 committed
409 410
  const process1 = record => {
    history.push({
411
      pathname: '/biz/workflow/eventFlow',
皮倩雯's avatar
皮倩雯 committed
412 413 414
      state: { formObj: record, title1: record.name, rember },
    });
  };
415

皮倩雯's avatar
皮倩雯 committed
416 417
  const auxiliaryView1 = record => {
    history.push({
418
      pathname: '/biz/workflow/eventView',
皮倩雯's avatar
皮倩雯 committed
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
      state: { formObj: record, title2: record.name, rember },
    });
  };
  const onSubmit = () => {
    setAddvisible(false);
    setFlag(flag + 1);
  };
  const onOK = prop => {
    setSortVisible(false);
    let aa = prop.str.toString();
    console.log(aa);
    CM_Event_ReOrder(aa).then(res => {
      if (res.msg === 'Ok') {
        notification.success({
          message: '提示',
          duration: 3,
          description: '调整成功',
        });
        setFlag(flag + 1);
      } else {
        notification.error({
          message: '提示',
          duration: 3,
          description: res.msg,
        });
      }
    });
  };
  return (
    <div className={styles.incidentContainer}>
      <div className={styles.contentContainers}>
        {/* 左侧事件树 */}
        <Spin spinning={treeLoading} tip="loading...">
          <Card
            className={classnames({
              [styles.orgContainer]: true,
              [styles.orgContainerHide]: !treeVisible,
            })}
          >
458
            <div style={{ height: '100%', display: treeVisible ? 'block' : 'none' }}>
皮倩雯's avatar
皮倩雯 committed
459 460 461 462
              <span
                style={{
                  fontSize: '15px ',
                  fontWeight: 'bold',
463
                  marginLeft: '14px',
皮倩雯's avatar
皮倩雯 committed
464 465 466 467 468 469 470 471 472 473 474
                }}
              >
                事件列表
              </span>
              <Tooltip title="添加事件类型">
                <PlusSquareFilled
                  onClick={() => addIncident()}
                  style={{
                    color: '#1890FF',
                    fontSize: '25px',
                    verticalAlign: 'middle',
475
                    marginLeft: '51%',
皮倩雯's avatar
皮倩雯 committed
476 477 478 479
                  }}
                />
              </Tooltip>
              <hr style={{ width: '100%', color: '#eeecec' }} />
480 481
              <div
                style={{
482
                  height: 'calc(100% - 60px)',
483 484 485 486 487 488 489 490 491
                  overflowY: 'scroll',
                }}
              >
                {treeData.length > 0 &&
                  treeData.map((item, index) => (
                    <div
                      className={classnames({
                        [styles.listItem]: true,
                        [styles.pickItem]: item === pickItem,
492
                        [styles.listHover]: item !== pickItem && item === hoverItemIndex,
493 494 495 496 497 498
                      })}
                      onClick={e => {
                        setPickItem(item);
                        setRember(index);
                        setRember1(item);
                      }}
499 500 501 502 503 504
                      onMouseEnter={() => {
                        setHoverItemIndex(item);
                      }}
                      onMouseLeave={() => {
                        setHoverItemIndex('');
                      }}
505 506
                      key={index}
                    >
507 508 509 510 511 512 513 514 515 516 517 518 519
                      <div
                        style={{
                          width: '130px',
                          overflow: 'hidden',
                          whiteSpace: 'nowrap',
                          textOverflow: 'ellipsis',
                        }}
                      >
                        <Tooltip placement="top" title={item}>
                          {item}
                        </Tooltip>
                      </div>
{tableData[item] ? tableData[item].length : ''}
520 521 522
                    </div>
                  ))}
              </div>
皮倩雯's avatar
皮倩雯 committed
523 524 525
            </div>
            <div className={styles.switcher}>
              {treeVisible && (
皮倩雯's avatar
皮倩雯 committed
526
                <Tooltip title="隐藏事件列表">
皮倩雯's avatar
皮倩雯 committed
527 528 529 530
                  <DoubleLeftOutlined onClick={() => setTreeVisible(false)} />
                </Tooltip>
              )}
              {!treeVisible && (
皮倩雯's avatar
皮倩雯 committed
531
                <Tooltip title="显示事件列表">
皮倩雯's avatar
皮倩雯 committed
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
                  <DoubleRightOutlined onClick={() => setTreeVisible(true)} />
                </Tooltip>
              )}
            </div>
          </Card>
        </Spin>
        {/* 右侧 */}
        <div
          className={classnames({
            [styles.userContainer]: true,
            [styles.userContainerHide]: !treeVisible,
          })}
        >
          <div style={{ height: '50px' }}>
            <span style={{ float: 'right', marginRight: '10px' }}>
              <Button
                icon={<OrderedListOutlined className={styles.icon} />}
                onClick={sort}
                style={{
                  marginLeft: '30px',
                  verticalAlign: 'middle',
                  marginTop: '10px',
                }}
              >
                调序
              </Button>
            </span>
          </div>
皮倩雯's avatar
皮倩雯 committed
560

皮倩雯's avatar
皮倩雯 committed
561 562 563 564 565 566 567 568 569 570 571 572
          <Table
            size="small"
            rowKey="ID"
            bordered
            onRow={record => ({
              onDoubleClick: event => {
                event.stopPropagation();
                editEventType(record);
              }, // 双击
            })}
            columns={columns}
            dataSource={tableData[pickItem]}
573
            scroll={{ y: 'calc(100% - 50px)', x: 'max-content' }}
皮倩雯's avatar
皮倩雯 committed
574
            pagination={{
575
              showTotal: (total, range) => `第${range[0]}-${range[1]} 条/共 ${total} 条`,
皮倩雯's avatar
皮倩雯 committed
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
              pageSizeOptions: [10, 20, 50, 100],
              defaultPageSize: 20,
              showQuickJumper: true,
              showSizeChanger: true,
            }}
          />
        </div>
        {/* Modal弹框 */}
        {/* 添加事件 */}
        <AddModal
          visible={addVisible}
          type={isType}
          formObj={formObj}
          rember1={rember1}
          maxLength={maxLength}
          onClose={() => setAddvisible(false)}
          treeData={treeData}
          selectData={select}
          callBackSubmit={onSubmit}
          placement="right"
        />
        <SortModal
          title="调整顺序"
          visible={sortVisible}
          sortData1={sortData}
          pickItem={pickItem}
          onCancel={() => setSortVisible(false)}
          callBackSubmit={onOK}
皮倩雯's avatar
皮倩雯 committed
604
          keepIdValue={keepIdValue}
皮倩雯's avatar
皮倩雯 committed
605 606 607 608
        />
      </div>
    </div>
  );
609 610
};

皮倩雯's avatar
皮倩雯 committed
611
export default incident;