flowNode.jsx 15.3 KB
Newer Older
邓超's avatar
邓超 committed
1 2
import React, { useEffect, useState } from 'react';
import { useHistory } from 'react-router-dom';
邓超's avatar
邓超 committed
3
import { reloadFlowNodes, removeFlowNodeExtend } from '@/services/flow/flow';
4
import { Space, Table, Popconfirm, Tooltip, notification, message, Button, Spin, Tag } from 'antd';
5 6 7 8 9 10 11
import {
  RollbackOutlined,
  EditTwoTone,
  ControlOutlined,
  DeleteOutlined,
  EyeOutlined,
} from '@ant-design/icons';
12
import PageContainer from '@/components/BasePageContainer';
邓超's avatar
邓超 committed
13
import NodeEdit from './flowNodeComponents/NodeEdit';
邓超's avatar
邓超 committed
14
import AuxiliaryView from './flowNodeComponents/AuxiliaryView';
邓超's avatar
邓超 committed
15
import styles from './flowNode.less';
16 17
import start from '@/assets/images/icons/开始节点.png';
import end from '@/assets/images/icons/结束节点.png';
邓超's avatar
邓超 committed
18 19 20

const FlowNode = () => {
  const history = useHistory();
21
  const { flowName, pickItemIndex, allDisabled, searchValue } = history.location.state;
邓超's avatar
邓超 committed
22 23
  const [visible, setVisible] = useState({
    nodeEdit: false,
邓超's avatar
邓超 committed
24
    auxiliaryView: false,
邓超's avatar
邓超 committed
25 26
  }); // 弹窗显示
  const [tableData, setTableData] = useState([]); // 流程对应的回显的表格
邓超's avatar
邓超 committed
27
  const [expandedRowKeys, setExpandedRowKeys] = useState([]); // 展开的表格的key
邓超's avatar
邓超 committed
28
  const [nodeMsg, setNodeMsg] = useState(); // 保存节点信息
邓超's avatar
邓超 committed
29
  const [loading, setLoading] = useState(false);
邓超's avatar
邓超 committed
30 31 32 33 34 35 36 37 38
  useEffect(() => {
    getData();
  }, []);
  // 弹窗显示控制
  const showModal = (key, value) => {
    setVisible({ ...visible, [key]: value });
  };
  // 获取数据
  const getData = () => {
邓超's avatar
邓超 committed
39
    setLoading(true);
邓超's avatar
邓超 committed
40
    reloadFlowNodes({ flowName }).then(res => {
邓超's avatar
邓超 committed
41
      setLoading(false);
邓超's avatar
邓超 committed
42 43 44 45 46 47 48 49 50
      if (res.code === 0) {
        setTableData(res.data);
        // 存入需要展开得节点
        setExpandedRowKeys(res.data.map(item => item.GroupName));
      }
    });
  };
  // 清除节点
  const delNode = record => {
邓超's avatar
邓超 committed
51
    removeFlowNodeExtend({ flowNodeExtendID: record.extendID })
邓超's avatar
邓超 committed
52 53
      .then(res => {
        if (res.code === 0) {
邓超's avatar
邓超 committed
54
          getData();
邓超's avatar
邓超 committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
          notification.success({
            message: '提示',
            duration: 3,
            description: '清除成功',
          });
        } else {
          notification.error({
            message: '提示',
            duration: 3,
            description: res.msg,
          });
        }
      })
      .catch(() => {
        notification.error({
          message: '提示',
          duration: 3,
          description: '网络异常',
        });
      });
  };
  // 控制表格的展开跟收起
  const onUnfold = (expanded, record) => {
    const data = [...expandedRowKeys];
79
    let index = data.indexOf(record.GroupName);
邓超's avatar
邓超 committed
80 81 82 83 84 85 86
    if (expanded) {
      data.push(record.GroupName);
    } else {
      data.splice(index, 1);
    }
    setExpandedRowKeys(data);
  };
皮倩雯's avatar
皮倩雯 committed
87 88 89 90 91 92 93 94 95 96 97
  // 表格内文案样式
  const textStyleOne = (text, record) => {
    if (record.colorType === 2) {
      return 'red';
    }
    if (text === '(未配置)') {
      return 'grey';
    }
    return '000000D9';
  };

邓超's avatar
邓超 committed
98 99 100 101 102 103 104 105
  // 定义展开的表格
  const createUnfoldTable = itemTable => {
    const columns = [
      {
        title: '节点名称',
        dataIndex: 'name',
        width: 149,
        align: 'left',
106 107 108
        ellipsis: {
          showTitle: true,
        },
109 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
        render: (text, record) => {
          console.log(record);
          if (record.type == 1) {
            return (
              <div style={{ display: 'flex', justifyContent: 'center' }}>
                <img
                  src={start}
                  style={{ height: '18px', marginTop: '2px', marginRight: '5px' }}
                  alt=""
                />
                <div
                  style={{
                    color: record.colorType === 2 ? 'red' : '#000000D9',
                  }}
                >
                  {text}
                </div>
              </div>
            );
          }
          if (record.type == 2) {
            return (
              <div style={{ display: 'flex', justifyContent: 'center' }}>
                <img
                  src={end}
                  style={{ height: '18px', marginTop: '2px', marginRight: '5px' }}
                  alt=""
                />
                <div
                  style={{
                    color: record.colorType === 2 ? 'red' : '#000000D9',
                  }}
                >
                  {text}
                </div>
              </div>
            );
          }
          if (record.type == 0) {
            return (
              <div
                style={{
                  display: 'flex',
                  justifyContent: 'center',
                  color: record.colorType === 2 ? 'red' : '#000000D9',
                }}
              >
                {text}
              </div>
            );
          }
        },
邓超's avatar
邓超 committed
161 162 163
      },
      {
        title: '节点别名',
邓超's avatar
邓超 committed
164
        dataIndex: 'aliasName',
邓超's avatar
邓超 committed
165 166
        align: 'center',
        width: 80,
167 168 169 170 171 172 173 174
        ellipsis: {
          showTitle: true,
        },
        render: (text, record) => (
          <Tooltip placement="topLeft" title={text}>
            <span style={{ color: textStyleOne(text, record) }}>{text}</span>
          </Tooltip>
        ),
邓超's avatar
邓超 committed
175 176 177 178 179
      },
      {
        title: '移交方式',
        dataIndex: 'extendHandover',
        align: 'center',
180
        width: 100,
181
        render: (text, record) => <span style={{ color: textStyleOne(text, record) }}>{text}</span>,
邓超's avatar
邓超 committed
182
      },
183 184 185 186 187 188 189
      {
        title: '节点类型',
        dataIndex: 'extendNodeType',
        align: 'center',
        width: 80,
        render: (text, record) => <span style={{ color: textStyleOne(text, record) }}>{text}</span>,
      },
邓超's avatar
邓超 committed
190 191 192 193 194
      {
        title: '工单主表',
        dataIndex: 'extendTableName',
        width: 150,
        align: 'center',
195 196 197
        ellipsis: {
          showTitle: true,
        },
皮倩雯's avatar
皮倩雯 committed
198
        render: (text, record) => (
199
          <Tooltip placement="topLeft" title={text}>
皮倩雯's avatar
皮倩雯 committed
200
            <span style={{ color: textStyleOne(text, record) }}>{text}</span>
201
          </Tooltip>
邓超's avatar
邓超 committed
202 203
        ),
      },
204 205 206 207 208 209 210 211 212
      // {
      //   title: '查看字段',
      //   dataIndex: 'extendSeeFields',
      //   align: 'center',
      //   width: 80,
      //   render: (text, record) => (
      //     <span style={{ color: record.colorType === 2 ? 'red' : '#000000D9' }}>{text}</span>
      //   ),
      // },
邓超's avatar
邓超 committed
213 214 215 216 217
      {
        title: '字段',
        dataIndex: 'extendFields',
        align: 'center',
        width: 80,
皮倩雯's avatar
皮倩雯 committed
218
        render: (text, record) => (
219
          <span style={{ color: record.colorType === 2 ? 'red' : '#000000D9' }}>{text}</span>
邓超's avatar
邓超 committed
220 221
        ),
      },
222 223 224 225 226 227
      {
        title: '外部字段',
        dataIndex: 'outFields',
        key: 'outFields',
        align: 'center',
        width: 100,
228 229 230 231 232 233 234 235 236 237 238 239
        render: text => (
          <span
            style={{
              display: 'inline-block',
              width: '80px',
              color: Number(text) > 0 ? 'red' : '',
              backgroundColor: Number(text) > 0 ? 'yellow' : '',
            }}
          >
            {text}
          </span>
        ),
240
      },
邓超's avatar
邓超 committed
241

皮倩雯's avatar
皮倩雯 committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
      // {
      //   title: '补正',
      //   dataIndex: 'extendEditableLater',
      //   align: 'center',
      //   width: 80,
      //   render: (text, record) => {
      //     if (record.colorType === 2) {
      //       return <span style={{ color: 'red' }}>{text}</span>;
      //     }
      //     if (text == '是') {
      //       return <Tag color="success">{text}</Tag>;
      //     }
      //     if (text == '否') {
      //       return <Tag color="processing">{text}</Tag>;
      //     }
      //   },
      // },
邓超's avatar
邓超 committed
259 260 261 262 263
      {
        title: '可退',
        dataIndex: 'extendRollbackable',
        align: 'center',
        width: 80,
264 265 266 267 268 269 270 271 272 273 274
        render: (text, record) => {
          if (record.colorType === 2) {
            return <span style={{ color: 'red' }}>{text}</span>;
          }
          if (text == '是') {
            return <Tag color="success">{text}</Tag>;
          }
          if (text == '否') {
            return <Tag color="processing">{text}</Tag>;
          }
        },
邓超's avatar
邓超 committed
275
      },
276 277 278 279 280 281 282 283 284 285 286 287 288 289
      // {
      //   title: '退至',
      //   dataIndex: 'extendRollbackNode',
      //   align: 'center',
      //   width: 80,
      //   ellipsis: {
      //     showTitle: true,
      //   },
      //   render: (text, record) => (
      //     <Tooltip placement="topLeft" title={text}>
      //       <span style={{ color: record.colorType === 2 ? 'red' : '#000000D9' }}>{text}</span>
      //     </Tooltip>
      //   ),
      // },
邓超's avatar
邓超 committed
290
      {
291
        title: '转办',
邓超's avatar
邓超 committed
292 293 294
        dataIndex: 'tranferable',
        align: 'center',
        width: 80,
295 296 297 298 299 300 301 302 303 304 305
        render: (text, record) => {
          if (record.colorType === 2) {
            return <span style={{ color: 'red' }}>{text}</span>;
          }
          if (text == '是') {
            return <Tag color="success">{text}</Tag>;
          }
          if (text == '否') {
            return <Tag color="processing">{text}</Tag>;
          }
        },
邓超's avatar
邓超 committed
306
      },
307 308 309 310 311 312 313 314 315
      // {
      //   title: '显示事件信息',
      //   dataIndex: 'eventInformation',
      //   align: 'center',
      //   width: 80,
      //   render: (text, record) => (
      //     <span style={{ color: record.colorType === 2 ? 'red' : '#000000D9' }}>{text}</span>
      //   ),
      // },
邓超's avatar
邓超 committed
316 317 318 319 320 321 322 323
      {
        title: '操作',
        align: 'center',
        ellipsis: true,
        width: 150,
        render: record => (
          <>
            <Space>
邓超's avatar
邓超 committed
324 325
              {record.ID !== 0 && (
                <>
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
                  {allDisabled ? (
                    <Tooltip title="节点配置查看">
                      <EyeOutlined
                        onClick={() => {
                          showModal('nodeEdit', true);
                          setNodeMsg(record);
                        }}
                        style={{ fontSize: '16px', color: '#1890FF' }}
                      />
                    </Tooltip>
                  ) : (
                    <Tooltip title="节点配置">
                      <EditTwoTone
                        onClick={() => {
                          showModal('nodeEdit', true);
                          setNodeMsg(record);
                        }}
                        style={{ fontSize: '16px', color: '#1890FF' }}
                      />
                    </Tooltip>
                  )}
                  {allDisabled ? (
                    <Tooltip title="节点辅助视图查看">
                      <ControlOutlined
                        onClick={() => {
                          showModal('auxiliaryView', true);
                          setNodeMsg(record);
                        }}
                        style={{ fontSize: '16px', color: '#1890FF' }}
                      />
                    </Tooltip>
                  ) : (
                    <Tooltip title="节点辅助视图">
                      <ControlOutlined
                        onClick={() => {
                          showModal('auxiliaryView', true);
                          setNodeMsg(record);
                        }}
                        style={{ fontSize: '16px', color: '#1890FF' }}
                      />
                    </Tooltip>
                  )}
邓超's avatar
邓超 committed
368 369
                </>
              )}
370
              {allDisabled && record.groupName.includes('正常节点') ? null : (
371 372 373 374 375 376 377 378 379 380 381 382
                <Tooltip title="清除节点配置">
                  <Popconfirm
                    title="是否清除该节点配置?"
                    onConfirm={() => delNode(record)}
                    onCancel={() => message.error('取消清除')}
                    okText="是"
                    cancelText="否"
                  >
                    <DeleteOutlined style={{ fontSize: '16px', color: '#e86060' }} />
                  </Popconfirm>
                </Tooltip>
              )}
邓超's avatar
邓超 committed
383 384 385 386 387 388 389 390
            </Space>
          </>
        ),
      },
    ];
    return (
      <Table
        className={styles.unfoldTable}
邓超's avatar
邓超 committed
391
        rowKey={record => record.name}
邓超's avatar
邓超 committed
392 393 394 395 396 397 398 399
        columns={columns}
        bordered
        size="small"
        showHeader={false}
        dataSource={itemTable}
        pagination={false}
        onRow={record => ({
          onDoubleClick: () => {
邓超's avatar
邓超 committed
400 401 402 403
            if (record.ID !== 0) {
              showModal('nodeEdit', true);
              setNodeMsg(record);
            }
邓超's avatar
邓超 committed
404 405 406 407 408 409 410 411
          },
        })}
      />
    );
  };
  // 返回
  const backFlow = () => {
    history.push({
412
      pathname: '/biz/workflow/case',
413
      state: { pickItemIndex, searchValue, dataSource: true },
邓超's avatar
邓超 committed
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
    });
  };
  // 定义表格
  const columns = [
    {
      title: '节点名称',
      dataIndex: 'GroupName',
      width: 100,
      align: 'left',
      render: (text, record) => (
        <a style={{ fontWeight: 'bold' }}>
          {text}({record.Items.length ? record.Items.length : 0}个)
        </a>
      ),
    },
    {
      title: '节点别名',
      align: 'center',
      width: 80,
    },
    {
      title: '移交方式',
      align: 'center',
437
      width: 100,
邓超's avatar
邓超 committed
438
    },
439 440 441 442 443
    {
      title: '节点类型',
      align: 'center',
      width: 80,
    },
邓超's avatar
邓超 committed
444 445 446 447 448
    {
      title: '工单主表',
      align: 'center',
      width: 150,
    },
449 450 451 452 453
    // {
    //   title: '查看字段',
    //   width: 80,
    //   align: 'center',
    // },
邓超's avatar
邓超 committed
454 455 456 457 458
    {
      title: '字段',
      align: 'center',
      width: 80,
    },
459 460 461 462 463 464 465
    {
      title: '外部字段',
      dataIndex: 'outFields',
      key: 'outFields',
      align: 'center',
      width: 100,
    },
皮倩雯's avatar
皮倩雯 committed
466 467 468 469 470
    // {
    //   title: '补正',
    //   align: 'center',
    //   width: 80,
    // },
邓超's avatar
邓超 committed
471 472 473 474 475
    {
      title: '可退',
      align: 'center',
      width: 80,
    },
476 477 478 479 480
    // {
    //   title: '退至',
    //   align: 'center',
    //   width: 80,
    // },
邓超's avatar
邓超 committed
481
    {
482
      title: '转办',
邓超's avatar
邓超 committed
483 484 485
      align: 'center',
      width: 80,
    },
486 487 488 489 490
    // {
    //   title: '显示事件信息',
    //   align: 'center',
    //   width: 80,
    // },
邓超's avatar
邓超 committed
491 492 493 494 495 496 497 498
    {
      title: '操作',
      align: 'center',
      width: 150,
    },
  ];

  return (
499 500 501 502 503 504 505 506 507 508
    <PageContainer>
      <div className={styles.NodeContent}>
        <div className={styles.header}>
          <div className={styles.nodeTitle}>{flowName}-流程节点配置</div>
          <div className={styles.buttonBox}>
            <Button type="primary" onClick={() => backFlow()}>
              <RollbackOutlined />
              返回
            </Button>
          </div>
邓超's avatar
邓超 committed
509
        </div>
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
        <div style={{ height: 'calc(100% - 50px)', overflowY: 'scroll' }}>
          <Spin spinning={loading} tip="loading...">
            <Table
              dataSource={tableData}
              columns={columns}
              rowKey={record => record.GroupName}
              size="small"
              showHeader
              expandable={{
                expandedRowRender: record => createUnfoldTable(record.Items),
              }}
              expandedRowKeys={expandedRowKeys}
              onExpand={onUnfold}
              pagination={false}
            />
          </Spin>
        </div>
527 528 529 530 531 532 533 534

        <NodeEdit
          visible={visible.nodeEdit}
          msg={nodeMsg}
          handleCancel={() => showModal('nodeEdit', false)}
          onSubumit={() => {
            showModal('nodeEdit', false);
            getData();
邓超's avatar
邓超 committed
535
          }}
536
          allDisabled={allDisabled}
邓超's avatar
邓超 committed
537
        />
538 539 540 541
        <AuxiliaryView
          visible={visible.auxiliaryView}
          msg={nodeMsg}
          handleCancel={() => showModal('auxiliaryView', false)}
542
          allDisabled={allDisabled}
543 544 545
        />
      </div>
    </PageContainer>
邓超's avatar
邓超 committed
546 547 548 549
  );
};

export default FlowNode;