ModelFileManage.jsx 14.2 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1 2 3 4 5
/* eslint-disable no-nested-ternary */
/*
 * @Description:
 * @Author: leizhe
 * @Date: 2022-04-06 11:39:53
邓超's avatar
邓超 committed
6 7
 * @LastEditTime: 2022-08-18 16:40:47
 * @LastEditors: dengchao 754083046@qq.com
皮倩雯's avatar
皮倩雯 committed
8 9 10 11 12 13 14 15 16 17 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
 */
import React, { useState, useEffect } from 'react';
import {
  Button,
  Descriptions,
  Input,
  Card,
  Spin,
  Divider,
  Message,
  Tabs,
  Table,
  Space,
  Tooltip,
  Modal,
  Form,
  notification,
  message,
  Image,
  Pagination,
} from 'antd';
import {
  FormOutlined,
  DeleteOutlined,
  PlusOutlined,
  DownloadOutlined,
  UploadOutlined,
  SyncOutlined,
  PlusSquareFilled,
  CloudUploadOutlined,
} from '@ant-design/icons';
import {
  List,
  deleteByID,
  DownLoadSketchPadType,
  Export,
  CaseTemplate,
} from '@/services/ModelFileManage/api';
import styles from './ModelFileManage.less';
import EditModal from './EditModal';
import ImportModal from './ImportModal';

const ModelFileManage = () => {
  const [searchWord, setSearchWord] = useState(''); // 关键字
  const [tableData, setTableData] = useState('');
  const [tableLoading, setTableLoading] = useState(false);
  const [pickItem, setPickItem] = useState('');
  const [selectedRowKeys, setSelectedRowKeys] = useState([]);
  const [selectColor, setSelectColor] = useState({}); // 当前选中颜色,操作时设置
  const [showSearchStyle, setShowSearchStyle] = useState(false); // 是否显示模糊查询样式
  const { Search } = Input;
  const [total, setTotal] = useState();
  const [pageSize, setPageSize] = useState(20);
  const [currentPage, setCurrentPage] = useState(1);
  const [deleteVisible, setDeleteVisible] = useState(false);
  const [multDeleteVisible, setMultDeleteVisible] = useState(false);
  const [editVisible, setEditVisible] = useState(false);
  const [flag, setFlag] = useState(0);
  const [importVisible, setImportVisible] = useState(false);
  const [keepId, setKeepId] = useState([]);
  const [upgradeVisible, setUpgradeVisible] = useState(false);

  const setRowClassName = record =>
    record.userID === selectColor.userID ? styles.clickRowStyle : '';

  useEffect(() => {
    setSelectedRowKeys([]);
    setTableLoading(true);
    List({ version: '全部', pageIndex: 1, pageSize: 20 }).then(res => {
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
      setTableLoading(false);
      if (res.say.statusCode === '0000') {
        console.log(res.getMe);
        setTableData(res.getMe);
        setTotal(res.totalRcdNum);
        // let aa = [];
        // if (res.getMe.length > 0) {
        //   res.getMe.map(i => {
        //     aa.push(i.id);
        //   });
        // }
        // console.log(aa);
        // setKeepId(aa);
      }
    });
  }, [flag]);

  useEffect(() => {
    List({ version: '全部' }).then(res => {
皮倩雯's avatar
皮倩雯 committed
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
      setTableLoading(false);
      if (res.say.statusCode === '0000') {
        console.log(res.getMe);
        setTableData(res.getMe);
        setTotal(res.totalRcdNum);
        let aa = [];
        if (res.getMe.length > 0) {
          res.getMe.map(i => {
            aa.push(i.id);
          });
        }
        console.log(aa);
        setKeepId(aa);
      }
    });
111
  }, []);
皮倩雯's avatar
皮倩雯 committed
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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187

  const columns = [
    {
      title: '序号',
      dataIndex: 'ID',
      align: 'center',
      key: 'ID',
      width: 200,
      render: (text, record, index) => (
        <span>{`${currentPage * pageSize + index + 1 - pageSize}`}</span>
      ),
    },
    {
      title: '画板名称',
      dataIndex: 'name',
      align: 'center',
      key: 'name',
      render: item => searchStyle(item),
    },
    {
      title: '画板类型',
      dataIndex: 'templet',
      align: 'center',
      key: 'templet',
      render: (text, record, index) => (
        <span>
          {record.templet ? (
            <span
              style={{
                backgroundColor: '#cfcf71',
                width: '47px',
                height: '23px',
                display: 'inline-block',
                borderRadius: '5px',
                color: 'white',
              }}
            >
              样品
            </span>
          ) : record.isTemplate ? (
            <span
              style={{
                backgroundColor: '#95c6f3',
                width: '47px',
                height: '23px',
                display: 'inline-block',
                borderRadius: '5px',
                color: 'white',
              }}
            >
              案例
            </span>
          ) : (
            <span
              style={{
                backgroundColor: '#dda8a8',
                width: '47px',
                height: '23px',
                display: 'inline-block',
                borderRadius: '5px',
                color: 'white',
              }}
            >
              普通
            </span>
          )}
        </span>
      ),
    },
    {
      title: '图像',
      dataIndex: 'thumbnailURL',
      align: 'center',
      key: 'thumbnailURL',
      render: text => (
        <Image
邓超's avatar
邓超 committed
188
          src={window.location.origin + `/PandaConfiguration/Raw/File/Sketch/Preview/${text}`}
皮倩雯's avatar
皮倩雯 committed
189 190 191 192 193 194 195
          height="50px"
        />
      ),
    },
    {
      title: '操作',
      key: 'action',
196
      width: 200,
皮倩雯's avatar
皮倩雯 committed
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 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 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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 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 368 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 408 409 410 411 412 413 414 415
      align: 'center',
      render: record => (
        <Space size="middle">
          <Tooltip title="编辑">
            <FormOutlined
              onClick={() => onedit(record)}
              style={{ fontSize: '16px', color: '#1890FF' }}
            />
          </Tooltip>
          {record.isTemplate && !record.templet ? (
            <Tooltip title="升级产品">
              <CloudUploadOutlined
                onClick={() => onupgrade(record)}
                style={{ fontSize: '16px', color: '#1890FF' }}
              />
            </Tooltip>
          ) : (
            <></>
          )}
          <Tooltip title="删除">
            <DeleteOutlined
              onClick={() => ondelete(record)}
              style={{ fontSize: '16px', color: '#e86060' }}
            />
          </Tooltip>
        </Space>
      ),
    },
  ];

  const onedit = e => {
    console.log(e);
    setPickItem(e);
    setEditVisible(true);
  };

  const onupgrade = e => {
    console.log(e);
    setPickItem(e);
    setUpgradeVisible(true);
  };

  const ondelete = e => {
    console.log(e);
    setPickItem(e);
    setDeleteVisible(true);
  };
  // 复选框
  const rowSelection = {
    selectedRowKeys,
    onChange: (RowKeys, Rows) => {
      setSelectedRowKeys(RowKeys);
    },
  };

  // 模糊查询匹配的样式
  const searchStyle = val => {
    let n;
    if (showSearchStyle) {
      n = val.replace(new RegExp(searchWord, 'g'), `<span style='color:red'>${searchWord}</span>`);
    } else {
      n = val;
    }
    return <div dangerouslySetInnerHTML={{ __html: n }} />;
  };

  const submitSearchUser = () => {
    setSelectedRowKeys([]);
    setTableLoading(true);
    List({
      version: '全部',
      // pageIndex: currentPage,
      // pageSize: pageSize,
      queryInfo: searchWord,
    }).then(res => {
      setTableLoading(false);
      if (res.say.statusCode === '0000') {
        setShowSearchStyle(true);
        setTableData(res.getMe);
        setTotal(res.totalRcdNum);
      }
    });
  };

  const handleSearch = e => {
    setSearchWord(e.target.value);
  };

  // 监听分页
  const paginationChange = (page, pageSizes) => {
    setCurrentPage(page);
    setPageSize(pageSizes);
    setSelectedRowKeys([]);
    setTableLoading(true);
    List({ version: '全部', pageIndex: page, pageSize: pageSizes, queryInfo: searchWord }).then(
      res => {
        setTableLoading(false);
        if (res.say.statusCode === '0000') {
          setTableData(res.getMe);
          setTotal(res.totalRcdNum);
        }
      },
    );
  };

  const clearSearchWord = () => {
    setSearchWord('');
    setSelectedRowKeys([]);
    setTableLoading(true);
    List({
      version: '全部',
      pageIndex: currentPage,
      pageSize: pageSize,
      queryInfo: '',
    }).then(res => {
      setTableLoading(false);
      if (res.say.statusCode === '0000') {
        setTableData(res.getMe);
        setTotal(res.totalRcdNum);
      }
    });
  };

  const deleteData = () => {
    deleteByID({ ids: pickItem.id }).then(res => {
      if (res.statusCode === '0000') {
        setDeleteVisible(false);
        notification.success({
          message: '删除成功',
          duration: 2,
        });
        setFlag(flag + 1);
      } else {
        notification.error({
          message: '删除失败',
          description: res.info,
        });
      }
    });
  };

  const multDeleteData = () => {
    setMultDeleteVisible(true);
  };

  const multDelete = () => {
    deleteByID({ ids: selectedRowKeys.toString() }).then(res => {
      if (res.statusCode === '0000') {
        setMultDeleteVisible(false);
        notification.success({
          message: '删除成功',
          duration: 2,
        });
        setFlag(flag + 1);
      } else {
        notification.error({
          message: '删除失败',
          description: res.info,
        });
      }
    });
  };

  const ExportData = () => {
    if (selectedRowKeys.length == 0) {
      message.warning('请先选择导出的数据');
    } else {
      window.location.href = Export({ ids: selectedRowKeys.toString() });
    }
  };

  const MultExportData = () => {
    window.location.href = Export({ ids: keepId.toString() });
  };

  const onImportSubmit = () => {
    setImportVisible(false);
    setFlag(flag + 1);
  };

  const importFile = () => {
    setImportVisible(true);
  };

  const upgrade = () => {
    CaseTemplate({ ids: pickItem.id }).then(res => {
      if (res.statusCode === '0000') {
        setUpgradeVisible(false);
        notification.success({
          message: '升级成功',
          duration: 2,
        });
        setFlag(flag + 1);
      } else {
        notification.error({
          message: '升级失败',
          description: res.info,
        });
      }
    });
  };

  const onEditSubmit = () => {
    setImportVisible(false);
    setFlag(flag + 1);
  };
  return (
    <div className={styles.base_container}>
      <Card style={{ width: '100%', height: 'calc(100vh - 130px)' }}>
        <div
          style={{
            height: '41px',
            display: 'flex',
            justifyContent: 'space-between',
            alignItems: 'center',
          }}
        >
          <div>
            <span style={{ width: '200px', display: 'inline-block' }}>
416
              (已选{selectedRowKeys.length}条/共{total}条)
皮倩雯's avatar
皮倩雯 committed
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
            </span>
            <span style={{ lineHeight: '32px' }}>画板检索:</span>
            <Search
              style={{ width: 260 }}
              placeholder="请输入画板名称"
              onSearch={submitSearchUser}
              onChange={e => handleSearch(e)}
              enterButton
              value={searchWord}
            />
            <Button
              type="primary"
              icon={<SyncOutlined />}
              onClick={clearSearchWord}
              style={{ marginLeft: '20px' }}
            >
              重置
            </Button>
435 436
          </div>
          <div>
皮倩雯's avatar
皮倩雯 committed
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
            <Button
              type="primary"
              icon={<DeleteOutlined />}
              onClick={multDeleteData}
              style={{ marginLeft: '20px' }}
            >
              删除
            </Button>
            <Button
              type="primary"
              icon={<UploadOutlined />}
              onClick={importFile}
              style={{ marginLeft: '20px' }}
            >
              导入
            </Button>
            <Button
              type="primary"
              icon={<DownloadOutlined />}
              onClick={ExportData}
              style={{ marginLeft: '20px' }}
            >
              导出
            </Button>
            <Button
              type="primary"
              icon={<DownloadOutlined />}
              onClick={MultExportData}
              style={{ marginLeft: '20px' }}
            >
              导出全部
            </Button>
          </div>
        </div>
        <div style={{ marginTop: '10px' }}>
          <Table
            rowSelection={{
              type: 'checkbox',
              ...rowSelection,
            }}
            rowClassName={setRowClassName}
            size="small"
            rowKey={record => record.id}
            bordered
            onRow={record => ({
              // onDoubleClick: event => {
              //   event.stopPropagation();
              //   editEventType(record);
              // }, // 双击
              onClick: e => {
                setSelectColor(record);
              },
            })}
            columns={columns}
            dataSource={tableData}
            loading={tableLoading}
            scroll={{ x: 'max-content', y: 'calc(100vh - 270px)' }}
            pagination={false}
          />
        </div>
        <Pagination
          style={{ float: 'right', marginTop: '10px' }}
          total={total}
500
          showTotal={(aa, range) => `第${range[0]}-${range[1]} 条/共 ${total} 条`}
皮倩雯's avatar
皮倩雯 committed
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
          defaultPageSize={pageSize}
          defaultCurrent={1}
          pageSizeOptions={[10, 20, 40, 100]}
          current={currentPage}
          onChange={paginationChange}
          size="small"
          showQuickJumper
        />
      </Card>
      <Modal
        visible={deleteVisible}
        onCancel={() => setDeleteVisible(false)}
        title="删除"
        okText="确认"
        cancelText="取消"
        onOk={deleteData}
      >
        <span>是否删除该数据</span>
      </Modal>
      <Modal
        visible={multDeleteVisible}
        onCancel={() => setMultDeleteVisible(false)}
        title="批量删除"
        okText="确认"
        cancelText="取消"
        onOk={multDelete}
      >
        <span>是否批量删除所选数据</span>
      </Modal>
      <EditModal
        visible={editVisible}
        onCancel={() => setEditVisible(false)}
        pickItem={pickItem}
        callBackSubmit={onImportSubmit}
      />
      <ImportModal
        visible={importVisible}
        onCancel={() => setImportVisible(false)}
        callBackSubmit={onEditSubmit}
      />
      <Modal
        visible={upgradeVisible}
        onCancel={() => setUpgradeVisible(false)}
        title="升级产品"
        okText="确认"
        cancelText="取消"
        onOk={upgrade}
      >
        <span>是否升级为样品</span>
      </Modal>
    </div>
  );
};
export default ModelFileManage;