ReportsManage.js 60.5 KB
Newer Older
陈龙's avatar
陈龙 committed
1 2 3 4 5 6 7 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
/**
 * * 轻量化报表通用配置页面 * create by ChenLong on 2022/6/22 *
 * 功能路径:src\pages\product\ReportsManage\ReportsManage.js * 菜单参数列表:*变量名*(变量说明,数据类型,是否必填,取值范围)
 *
 * @changelog:
 *  editComponentVisible && detailsComponentVisible  共同作用组件的显示
 */
/**
 * @description: 功能描述:参考台账概念,重新定义
 * @tips: 1. 如果需要对字段进行处理,增加功能之类的。需要提前确定返回值的类型.
 *         2. 如果要用customerState来控制页面按钮等,需要按照给定的权限值进行配置
 * @params: <ReportManage
 *     params={{reportName,pageSize,filterFields,filterValues,state,customerState}}>
 *
 *
 *
 *     reportName: 报表名称;
 *           pageSize: 按需配置,默认加载100;
 *
 *
 *
 *     ***************filterFields/filterValues多用于以组件的形式嵌入,将需要过滤的条件传入********************
 *
 *
 *
 *     filterFields: 需要默认加载的过滤条件的field,用|分割,与filterValues一一对应;
 *           filterValues:
 *
 *
 *     需要默认加载的过滤条件的value,用|分割,与filterFields一一对应;当某个字段的filterValues为多个时,控件必须配置成多选才可生效;
 *
 *
 *
 *     *************************************************************************************************
 *
 *
 *
 *                    state: delete|edit|scan 各种权限;
 *           customerState:
 *
 *
 *     ['filters','sortBtn','exportBtn','editBtn','deleteBtn','pagination'];
 *
 *     sortFields:
 *
 *        '排序字段1,排序字段2,排序字段3'
 *
 *
 *
 *     ---------------------------------------权限过滤-----------------------------------------
 *
 *
 *
 *     permissionType: 部门|站点|用户
 *           permissionField: 【字段名】
 *
 *
 *
 *     ---------------------------------------------------------------------------------------
 * @config:
 *  【数值】 [prefix]_d%|0.00|_d%[suffix]|金额 = 前缀|精度|后缀|金额类的数据(千分位),可分别设置。
 *  【标签】 split=,
 *
 *     分隔符。
 *
 *     【功能】 功能配置框内,配置需要跳转功能所需参数,type、url是必须功能,需要type判断类型,需要通过url去解析加载组件。
 * @type:
 *  【文本】普通文本
 *  【数值】数值类型的文本
 *  【标签】文本渲染成标签,具有不同颜色;
 *  【功能】“功能”会在当前页内去展示,会卸载掉列表页,加载功能组件。配置 type +
 *
 *
 *          url + 自定义字段 的配置项,自行解析加载即可;
 *   -------------------- 待需求提出后开发 -----------------
 *
 *
 *
 *     【链接】内链外链,点击可跳转;配置规则:配置链接即可;
 *  【弹窗】modal弹窗弹出,弹窗内的具体业务自行配置;配置规则:[function_name];[...params];
 *
 *
 *
 *          ------------------------------------------------------
 *  【附件】
 * @table:
 *  表头:表头需要支持多级表头、合并;
 *  列:列支持设置筛选;
 *  固定行、固定列:可根据配置生成固定行、列;
 * @control:
 *  固定筛选:拥有固定筛选框,根据配置显示可搜索字段;
 *
 *
 *
 *     可配置筛选框:根据字段配置,将字段设置成筛选条件,枚举出该字段所有值,提供用户进行选择,然后进行筛选;筛选框具体形态可根据配置字段来渲染;
 *  导出功能:各类导出功能按钮;
 *
 *
 *
 *     时间筛选框:单表唯一;需要变更,支持多时间参数的筛选
 * @state: 参考台账权限 delete 全部权限
 *  edit   除删除外的权限
 *  scan   查看权限
104
 * */
陈龙's avatar
陈龙 committed
105
import React, {forwardRef, useEffect, useImperativeHandle, useMemo, useRef, useState} from 'react';
106 107 108 109 110 111 112 113 114 115 116 117 118
import {
  DeleteOutlined,
  DownOutlined,
  ExportOutlined,
  FormOutlined,
  HeartOutlined,
  HeartTwoTone,
  MinusCircleOutlined,
  PlusOutlined,
  QuestionCircleOutlined,
  SortAscendingOutlined,
} from '@ant-design/icons';
import BasicTable from '@wisdom-components/basictable';
陈龙's avatar
陈龙 committed
119 120
import {
  Button,
121
  Dropdown,
陈龙's avatar
陈龙 committed
122
  Form,
123 124 125
  Input,
  Menu,
  message,
陈龙's avatar
陈龙 committed
126
  Modal,
127 128
  Popconfirm,
  Row,
陈龙's avatar
陈龙 committed
129
  Select,
130
  Space,
陈龙's avatar
陈龙 committed
131
  Spin,
132
  Table,
陈龙's avatar
陈龙 committed
133 134 135
  Tooltip,
} from 'antd';
import moment from 'moment';
136 137 138 139 140

import { connect } from 'react-redux';
import { exportJPG } from '../api/service/report';

import ReturnControlComponent from './Components/Control';
陈龙's avatar
陈龙 committed
141
import DetailsComponent from './extra/detailsComponent';
142 143
import ReportEditForm from './ReportEditForm';
import style from './ReportsManage.less';
陈龙's avatar
陈龙 committed
144 145 146
import {
  handleDateString,
  handleDateTimeString,
147 148 149 150
  handleLink,
  handleModal,
  handleNumber,
  handleNumberTag,
陈龙's avatar
陈龙 committed
151 152
  handlePageSize,
  handleSortFields,
153 154 155
  handleTag,
  handleText,
  handleWidget,
陈龙's avatar
陈龙 committed
156
} from './utils/handlers';
157 158 159 160 161
import {
  hasMoney,
  isArray,
  isString,
  returnHandledNumber,
陈龙's avatar
陈龙 committed
162
  returnSummaryNumber,
163 164 165 166 167
} from './utils/utils';
import { reportService } from '../api/index';
import { exportAccountData, reportFilesDownload } from '../api/service/report';
import { DownloadAccountFiles } from '../api/service/workflow';
import DatePickerGroup from '../components/DatePickerGroup';
陈龙's avatar
陈龙 committed
168 169
import Print from './Components/Print';

170
const ControlsType = ['下拉', '多选', '日期', '复选框'];
陈龙's avatar
陈龙 committed
171 172 173 174 175 176 177 178 179 180 181 182 183
const fieldSplitStr = '-'; // fieldGroup用来分割
const { Option } = Select;
const dateFormat = 'YYYY-MM-DD'; // 日期格式化
const initDateModel = 'all';
let timer = null;
const PERMISSION = {
  delete: [
    'addBtn',
    'filters',
    'pagination',
    // 操作条按钮
    'sortBtn',
    'exportBtn',
陈龙's avatar
陈龙 committed
184
    'printBtn',
陈龙's avatar
陈龙 committed
185 186 187 188 189 190 191 192 193 194
    // 操作列
    'editBtn',
    'deleteBtn',
  ],
  edit: [
    'addBtn',
    'filters',
    'pagination',
    'sortBtn',
    'exportBtn',
陈龙's avatar
陈龙 committed
195
    'printBtn',
陈龙's avatar
陈龙 committed
196 197 198 199 200
    // 操作列
    'editBtn',
  ],
  scan: ['filters', 'pagination', 'sortBtn'],
};
201
const USER_ID = window?.globalConfig?.userInfo?.OID || 0;
陈龙's avatar
陈龙 committed
202
const MODEL = ['all', 'year', 'quarter', 'month', 'week', 'day'];
陈龙's avatar
陈龙 committed
203 204
const ReportsManage = forwardRef((props, ref) => {
  const { trigger } = props;
陈龙's avatar
陈龙 committed
205 206 207 208 209 210 211 212 213 214
  const {
    reportName,
    pageSize,
    filterFields,
    filterValues,
    state,
    customState,
    sortFields,
    permissionType,
    permissionField,
215
    waterMark,
陈龙's avatar
陈龙 committed
216
    rowSelect,
陈龙's avatar
陈龙 committed
217 218 219 220 221 222 223 224
  } = props.params;
  const handleCustomerState = (customState) => {
    if (isArray(customState)) {
      return customState;
    } else if (isString(customState)) {
      return customState.split(',');
    }
  };
225
  const permission = customState
陈龙's avatar
陈龙 committed
226 227
      ? handleCustomerState(customState)
      : PERMISSION[state || 'delete'];
228
  const waterMarkCustom = props.params.waterMark === undefined ? false : true;
陈龙's avatar
陈龙 committed
229 230 231 232 233

  const tableWrapperRef = useRef();
  const controlRef = useRef();
  if (!reportName)
    return (
陈龙's avatar
陈龙 committed
234 235 236
        <div className={style.lackParams}>
          未配置reportName,请完善配置并重新登陆后查看页面!
        </div>
陈龙's avatar
陈龙 committed
237 238 239 240 241 242 243 244 245 246 247
    );
  const [isInit, setIsInit] = useState(true);
  const [firstToGetData, setFirstToGetData] = useState(false);
  const [tableStruct, setTableStruct] = useState([]); // 临时使用,看后续是否需要保留
  const [columns, setColumns] = useState([]); // 表头设置
  const [tableData, setTableData] = useState([]); // 表数据
  const [reportConfigs, setReportConfigs] = useState([]); // 表设置
  const [pagination, setPagination] = useState({
    current: 1,
    total: 0,
    pageSize: handlePageSize(pageSize) || 100,
248 249 250
    pageSizeOptions: [
      ...new Set([20, 50, 100].concat(handlePageSize(pageSize))),
    ]
陈龙's avatar
陈龙 committed
251 252
        .filter((item) => Number(item))
        .sort((a, b) => Number(a) - Number(b)),
陈龙's avatar
陈龙 committed
253 254 255 256 257 258 259 260 261 262 263
    showQuickJumper: true,
    showSizeChanger: true,
  });
  const [controls, setControls] = useState([]); // 用来存储操作控件
  const [searchContent, setSearchContent] = useState(''); // 搜索框内的值
  const [searchPlaceholder, setSearchPlaceholder] = useState([]); // 搜索框的placeholder
  const [filterObject, setFilterObject] = useState({}); // 存控制条中,选了筛选条件的值
  const [modalVisible, setModalVisible] = useState(false);
  const [allSortFields, setAllSortFields] = useState([]); // 设置所有列表
  const [selectedSortFields, setSelectedSortFields] = useState([
    {
264
      // 用来存储配置的排序字段;
陈龙's avatar
陈龙 committed
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
      label: '主要排序',
      value: '',
      sort: 'asc',
    },
  ]);
  const [summaryArray, setSummaryArray] = useState([]); // 总结栏,包括小计、总计
  const [tableY, setTableY] = useState(500);
  const [tableX, setTableX] = useState(1820);
  const [listHeight, setListHeight] = useState(0);
  const [tableHeaderLevel, setTableHeaderLevel] = useState(null);
  const [exportLoading, setExportLoading] = useState(false);
  const [extraModal, setExtraModal] = useState(false);
  const [hasTotal, setHasTotal] = useState(false);
  const [hasSinglePage, setHasSinglePage] = useState(false);
  const [tableLoading, setTableLoading] = useState(false);
280
  const [selectedRows, setSelectedRows] = useState([]); // 选中的表格行
陈龙's avatar
陈龙 committed
281
  // const
282
  const [timeFrom, setTimeFrom] = useState(
陈龙's avatar
陈龙 committed
283
      moment().startOf(initDateModel).format(dateFormat),
284 285
  );
  const [timeTo, setTimeTo] = useState(
陈龙's avatar
陈龙 committed
286
      moment().endOf(initDateModel).format(dateFormat),
287
  );
陈龙's avatar
陈龙 committed
288
  const [extra, setExtra] = useState(<></>);
陈龙's avatar
陈龙 committed
289
  const [showSortBtn, setShowSortBtn] = useState(false);
陈龙's avatar
陈龙 committed
290 291 292 293 294
  const [currentReportId, setCurrentReportId] = useState(null);
  const [hasDatePicker, setHasDatePicker] = useState('');
  const [defaultDateConfig, setDefaultDateConfig] = useState({
    defaultModel: 'year',
    defaultDate: null,
295
    showModels: ['all', 'month', 'quarter', 'year', 'custom'],
陈龙's avatar
陈龙 committed
296 297 298 299 300 301 302
  });
  const [dateModel, setDateMode] = useState('all');

  const [detailsComponentVisible, setDetailsComponentVisible] = useState(false); // 是否显示详情组件
  const [modalType, setModalType] = useState('');
  const [currentData, setCurrentData] = useState({}); // 设置当前编辑数据
  const [sorterObject, setSorterObject] = useState({});
303 304 305 306 307
  const [detailConfig, setDetailConfig] = useState({
    url: '',
    type: '',
    params: {},
  });
陈龙's avatar
陈龙 committed
308 309 310
  const [controlsHeight, setControlsHeight] = useState(44);
  const [getNewData, setGetNewData] = useState(false);
  const [isLocalDataSource, setIsLocalDataSource] = useState(0); // 如果是本地数据源,那么值为0;反之,则是外部数据源
311 312
  const [showWaterMarkModal, setShowWaterMarkModal] = useState(false);
  const [waterMarkContent, setWaterMarkContent] = useState(waterMark); // 水印内容
陈龙's avatar
陈龙 committed
313 314 315 316 317 318
  useImperativeHandle(ref, () => {
    let _a = selectedRows;
    return {
      getData: () => ({ selectedRows }),
    };
  }, [selectedRows.length]);
陈龙's avatar
陈龙 committed
319 320 321 322
  const menu = () => {
    const _item = [
      {
        label: (
陈龙's avatar
陈龙 committed
323 324 325 326 327 328 329 330 331
            <Button
                size="middle"
                loading={exportLoading}
                type="text"
                onClick={() => exportModule('pdf', 'pdf')}
                icon={<ExportOutlined/>}
            >
              导出pdf
            </Button>
陈龙's avatar
陈龙 committed
332 333 334 335 336
        ),
        key: 'exportPdf',
      },
      {
        label: (
陈龙's avatar
陈龙 committed
337 338 339 340 341 342 343 344 345
            <Button
                size="middle"
                loading={exportLoading}
                type="text"
                onClick={() => exportModule('excel', 'xls')}
                icon={<ExportOutlined/>}
            >
              导出Excel
            </Button>
陈龙's avatar
陈龙 committed
346 347 348 349 350
        ),
        key: 'exportExcel',
      },
      {
        label: (
陈龙's avatar
陈龙 committed
351 352 353 354 355 356 357 358 359
            <Button
                size="middle"
                loading={exportLoading}
                type="text"
                onClick={() => exportImage()}
                icon={<ExportOutlined/>}
            >
              导出JPG
            </Button>
陈龙's avatar
陈龙 committed
360 361 362 363
        ),
        key: 'excelPdf',
      },
    ];
364 365
    let exportFilesItem = {
      label: (
陈龙's avatar
陈龙 committed
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
          <Button
              size="middle"
              loading={exportLoading}
              type="text"
              onClick={() =>
                  selectedRows.length === 0
                      ? message.warning('请选择导出数据!')
                      : // 配置有waterMark字段,但是没有设置默认值时,弹出弹窗,输入水印内容;如果有默认值,则使用默认水印
                      !!waterMarkCustom && !waterMark
                          ? setShowWaterMarkModal(true)
                          : exportFiles()
              }
              icon={<ExportOutlined/>}
          >
            批量导出
          </Button>
382 383 384
      ),
      key: 'exportGroup',
    };
陈龙's avatar
陈龙 committed
385
    if (rowSelect === 'true') _item.push(exportFilesItem);
386
    return <Menu items={_item}/>;
陈龙's avatar
陈龙 committed
387 388 389 390 391 392 393 394 395 396
  };
  const exportModule = (type, extension) => {
    setExportLoading(true);
    let _data = addFilterAndSearchParams({
      reportName,
      pageIndex: 0,
      pageSize: 0,
      userId: USER_ID,
    });
    exportAccountData({ responseType: 'blob' }, { exportType: type }, _data)
陈龙's avatar
陈龙 committed
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
        .then((res) => {
          const file = new FileReader();
          file.readAsText(res, 'utf-8');
          file.onload = function() {
            // 接口返回的是blob类型,需转换为json判断code值
            const messageInfo = isSuccess(file.result);
            if (messageInfo.code !== 0) {
              message.warning(
                  messageInfo.code === -1 && messageInfo.msg
                      ? messageInfo.msg
                      : '下载失败!',
              );
              setExportLoading(false);
            } else {
              const url = window.URL.createObjectURL(
                  new Blob([res], {
                    type: 'application/octet-stream;charset=UTF-8',
                  }),
              );
              const a = document.createElement('a');
              a.href = url;
              a.target = '_blank';
              a.download =
                  `${reportName}${moment()
                      .format('YYYY-MM-DD-HH-mm-ss')
                      .replaceAll('-', '')}.` + extension;
              a.click();
              a.remove();
              setExportLoading(false);
            }
          };
        })
        .catch((err) => {
          setExportLoading(false);
        });
陈龙's avatar
陈龙 committed
432 433 434 435 436 437 438 439 440
  };
  const exportImage = () => {
    let _data = addFilterAndSearchParams({
      reportName,
      pageIndex: 0,
      pageSize: 0,
      userId: USER_ID,
    });
    exportJPG({ responseType: 'blob' }, _data).then((res) => {
441 442 443 444 445 446 447
      const file = new FileReader();
      file.readAsText(res, 'utf-8');
      file.onload = function() {
        // 接口返回的是blob类型,需转换为json判断code值
        const messageInfo = isSuccess(file.result);
        if (messageInfo.code !== 0) {
          message.warning(
陈龙's avatar
陈龙 committed
448 449 450
              messageInfo.code === -1 && messageInfo.msg
                  ? messageInfo.msg
                  : '下载失败!',
451 452 453 454
          );
          setExportLoading(false);
        } else {
          const url = window.URL.createObjectURL(
陈龙's avatar
陈龙 committed
455
              new Blob([res], { type: 'application/zip;charset=UTF-8' }),
456 457 458 459 460
          );
          const a = document.createElement('a');
          a.href = url;
          a.target = '_blank';
          a.download = `${reportName}${moment()
陈龙's avatar
陈龙 committed
461 462
              .format('YYYY-MM-DD-HH-mm-ss')
              .replaceAll('-', '')}.zip`;
463 464 465 466 467 468 469 470 471 472 473 474
          a.click();
          a.remove();
          setExportLoading(false);
        }
      };
    });
  };
  // 添加批量导出文件功能  --edit by zhangzhiwei  2023/06/26
  const exportFiles = () => {
    if (!!waterMarkCustom && !waterMarkContent)
      return message.warning('请输入水印内容!');
    setExportLoading(true);
475
    let keyItems = selectedRows.map((item) => item.key);
476 477 478 479 480 481 482 483 484
    let _data = addFilterAndSearchParams({
      reportName,
      pageIndex: 0,
      pageSize: 0,
      userId: USER_ID,
      keys: keyItems,
      watermark: waterMarkContent, // 文件水印内容
    });
    reportFilesDownload(
陈龙's avatar
陈龙 committed
485 486 487
        { responseType: 'blob' },
        { exportType: 'application/zip;charset=UTF-8' },
        _data,
488 489 490 491 492 493 494
    ).then((res) => {
      const file = new FileReader();
      file.readAsText(res, 'utf-8');
      file.onload = function() {
        const messageInfo = isSuccess(file.result);
        if (messageInfo.code !== 0) {
          message.warning(
陈龙's avatar
陈龙 committed
495 496 497
              messageInfo.code === -1 && messageInfo.msg
                  ? messageInfo.msg
                  : '下载失败!',
498 499 500 501
          );
          setExportLoading(false);
        } else {
          const url = window.URL.createObjectURL(
陈龙's avatar
陈龙 committed
502
              new Blob([res], { type: 'application/octet-stream;charset=UTF-8' }),
503 504 505 506 507
          );
          const a = document.createElement('a');
          a.href = url;
          a.target = '_blank';
          a.download = `${reportName}${moment()
陈龙's avatar
陈龙 committed
508 509
              .format('YYYY-MM-DD-HH-mm-ss')
              .replaceAll('-', '')}.zip`;
510 511 512 513 514 515 516 517 518 519 520 521 522
          a.click();
          a.remove();
          setExportLoading(false);
          if (!!showWaterMarkModal) setShowWaterMarkModal(false);
        }
      };
    });
  };

  //下载台账附件
  // 添加附件下载功能  --edit by zhangzhiwei  2023/06/27
  const downloadAccountFiles = (path) => {
    let isZip = path.includes(',');
陈龙's avatar
陈龙 committed
523
    let fileName = path.includes('\\') ? path.split('\\')[1] : path.split('/')[1];
524 525 526 527 528 529 530 531 532 533 534 535 536 537
    let fileType = path.split('.')[1];
    let _data = {
      files: path,
    };
    DownloadAccountFiles(_data, {
      responseType: 'blob',
      exportType: fileType,
    }).then((res) => {
      const file = new FileReader();
      file.readAsText(res, 'utf-8');
      file.onload = function() {
        const messageInfo = isSuccess(file.result);
        if (messageInfo.code !== 0) {
          message.warning(
陈龙's avatar
陈龙 committed
538 539 540
              messageInfo.code === -1 && messageInfo.msg
                  ? messageInfo.msg
                  : '下载失败!',
541 542 543 544
          );
          setExportLoading(false);
        } else {
          const url = window.URL.createObjectURL(
陈龙's avatar
陈龙 committed
545
              new Blob([res], { type: 'application/zip;charset=UTF-8' }),
546 547 548 549 550 551 552 553 554 555 556
          );
          const a = document.createElement('a');
          a.href = url;
          a.target = '_blank';
          a.download = isZip ? `${moment().format('MM-DD')}.zip` : `${moment().format('YY-MM-DD')}_${fileName}`;
          a.click();
          a.remove();
          setExportLoading(false);
          if (!!showWaterMarkModal) setShowWaterMarkModal(false);
        }
      };
陈龙's avatar
陈龙 committed
557 558
    });
  };
559 560 561 562 563 564 565 566 567 568 569 570 571 572

  // 判断返回值是否为0
  const isSuccess = (value) => {
    let _messageInfo = null;
    try {
      _messageInfo = JSON.parse(value);
    } catch {
      _messageInfo = {
        code: 0,
      };
    }
    return _messageInfo;
  };

陈龙's avatar
陈龙 committed
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
  const searchData = (e) => {
    getData(pagination);
  };
  const controlSelectChange = (fieldAlias, e) => {
    let _filterArray = { ...filterObject };
    _filterArray[fieldAlias] = e;
    setFilterObject(_filterArray);
  };
  const searchInputChange = (e) => {
    setSearchContent(e.target.value);
  };
  const setConfig = (config) => {
    getControlsBarConfig(config);
    getTableLevel(config);
  };
  const addFilterAndSearchParams = (data) => {
    let _data = { ...data };
    // 搜索框是否有值
    if (searchContent) _data.content = searchContent;
    // filterObject是存起来的控制栏的过滤条件
    let _filters = Object.keys(filterObject)
陈龙's avatar
陈龙 committed
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
        .filter((key) => {
          let _value = filterObject[key];
          return (
              (isString(_value) && _value) || (isArray(_value) && _value.length)
          );
        })
        .map((key) => {
          let _value = filterObject[key];
          if (isString(_value) && _value)
            return {
              fieldAlias: key,
              fieldValue: _value,
            };
          if (isArray(_value) && _value.length)
            return {
              fieldAlias: key,
              fieldValue: _value.join(','),
            };
          return false;
        });
陈龙's avatar
陈龙 committed
614 615 616 617 618 619 620 621
    // 加上时间过滤参数
    if (dateModel !== 'all' && hasDatePicker && timeFrom && timeTo) {
      _filters.push({
        fieldAlias: hasDatePicker,
        fieldValue: `${timeFrom} 00:00:00,${timeTo} 23:59:59`,
      });
    }
    // 合并手动传入的filters;当配置为筛选框时,筛选框选择值后,会优先取筛选框值
622
    if (
陈龙's avatar
陈龙 committed
623 624
        filterFields &&
        !_filters.find((item) => item.fieldAlias === filterFields)
625 626 627
    ) {
      let _customerFilterArray = filterFields?.split('|') || [];
      let _customerValueArray = filterValues?.split('|') || [];
陈龙's avatar
陈龙 committed
628 629 630 631 632 633 634 635 636 637
      _customerFilterArray.forEach((item, index) => {
        _filters.push({
          fieldAlias: item,
          fieldValue: _customerValueArray[index] || '',
        });
      });
    }
    // 表格上的自定义排序的按钮
    if (sorterObject && sorterObject.order) {
      _data.sortFields = `${sorterObject.columnKey} ${
陈龙's avatar
陈龙 committed
638
          sorterObject.order === 'ascend' ? 'asc' : 'desc'
陈龙's avatar
陈龙 committed
639 640 641 642 643 644 645 646 647 648 649 650 651
      }`;
    }
    // 增加权限过滤的参数
    if (permissionType && permissionField) {
      _data.filterType = permissionType;
      _data.filterField = permissionField;
    }
    // 并入 _data
    if (_filters.length) _data.filters = _filters;
    return _data;
  };
  // 排序字符串处理成数组
  const handleSortString = (sortString) => {
陈龙's avatar
陈龙 committed
652 653 654 655 656 657
    let _sortStringArray = sortString.map((item, index) => {
      return {
        label: index === 0 ? '主要排序' : '次要排序',
        value: item.fieldAlias,
        sort: item.sortType,
      };
陈龙's avatar
陈龙 committed
658 659 660
    });
    setSelectedSortFields(_sortStringArray);
  };
661 662 663
  /**
   * @Description: 根据是否向下合并处理数据,返回合并的key的数组
   * */
陈龙's avatar
陈龙 committed
664 665 666
  const returnMergeArray = (config) => {
    return config.filter((item) => item.isMerge).map((item) => item.fieldAlias);
  };
667 668 669
  /**
   *  @Description: 根据配置和数据,计算出该合并的字段和每一行是否合并
   * */
陈龙's avatar
陈龙 committed
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
  const handleDataToGetRowSpanArray = (config, data) => {
    let _arr = returnMergeArray(config);
    let _merge = {};
    // _merge:{爱好:[[0,3],[3,5]]}
    _arr.forEach((key) => {
      _merge[key] = {};
      let _currentIndex = 0;
      data.forEach((item, index) => {
        if (index > 0) {
          if (item[key] === data[index - 1][key]) {
            _merge[key][_currentIndex] += 1;
            _merge[key][index] = 0;
          } else {
            _currentIndex = index;
            _merge[key][index] = 1;
          }
        } else {
          _merge[key][0] = 1;
        }
      });
    });
    return _merge;
  };
  const getData = (pagination) => {
    setTableLoading(true);
    const { pageSize, current } = pagination;
    // 搜索条件附加到params
    let _data = addFilterAndSearchParams({
      reportName: reportName,
      pageIndex: current,
      pageSize: pageSize,
      userId: USER_ID,
    });
    reportService
陈龙's avatar
陈龙 committed
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
        .getReportInfo(_data)
        .then((res) => {
          if (res.code === 0) {
            let _statisticalValues = res.data?.statisticalValues;
            // webAPIData 存在值时使用webAPIData,否则使用原始数据
            let _tableData = res?.data?.data?.list || [];
            if (isInit) {
              setIsInit(false);
            }
            getTableSummaryConfig(reportConfigs, _statisticalValues);
            getTableHeaderConfig(reportConfigs, _tableData);
            let _pagination = { ...pagination };
            _pagination.total = res.data.data?.totalCount || 0;
            setPagination(_pagination);
            setTableData(_tableData);
            // 处理排序字段
            if (_tableData) {
              setShowSortBtn(true);
            } else {
              setShowSortBtn(false);
724
            }
陈龙's avatar
陈龙 committed
725
          } else {
陈龙's avatar
陈龙 committed
726 727 728 729 730 731 732
            setShowSortBtn(false);
            message.error('未能查询到报表数据!');
            let _pagination = { ...pagination };
            _pagination.total = 0;
            _pagination.current = 1;
            setPagination(_pagination);
            setTableData([]);
陈龙's avatar
陈龙 committed
733
          }
陈龙's avatar
陈龙 committed
734 735 736 737 738 739
          if (isInit) setIsInit(false);
          setTableLoading(false);
        })
        .catch((err) => {
          setTableLoading(false);
        });
陈龙's avatar
陈龙 committed
740
  };
陈龙's avatar
陈龙 committed
741 742 743 744 745 746 747 748 749 750 751 752 753 754
  const getConfigs = async () => {
    let _configs = await reportService.getReportDetails({ reportName });
    if (_configs.code === 0) {
      let _data = _configs.data.data;
      setReportConfigs(_data);
      setIsLocalDataSource(_configs.data.sourceID);
      setConfig(_data);
      setColumns(returnColumn(_data));
      setTableStruct(_data);
      setCurrentReportId(_configs.data.reportId);
      setFirstToGetData(true);
      let _sortFields = await reportService.getReportSortFields({ reportId: _configs.data.reportId });
      if (_sortFields.code === 0) {
        handleSortString(_sortFields.data);
陈龙's avatar
陈龙 committed
755
      }
陈龙's avatar
陈龙 committed
756 757 758
    } else {
      message.error('获取配置失败!');
    }
陈龙's avatar
陈龙 committed
759
  };
760 761 762
  /**
   * @Description: 在配置项中,isFilter: true 用来渲染控制框;filterRule: 下拉/文本/多选
   * */
陈龙's avatar
陈龙 committed
763 764 765 766
  const getControlsBarConfig = (config) => {
    let _data = config.filter((item) => item.isFilter);
    let _searchPlaceholder = [];
    _data
陈龙's avatar
陈龙 committed
767 768
        .filter((item) => item.filterRule === '文本')
        .forEach((item) => _searchPlaceholder.push(item.fieldAlias));
陈龙's avatar
陈龙 committed
769
    setSearchPlaceholder(_searchPlaceholder);
770
    let _controls = _data.filter((item) =>
陈龙's avatar
陈龙 committed
771
        ControlsType.includes(item.filterRule),
772
    );
陈龙's avatar
陈龙 committed
773 774 775 776 777
    setControls(_controls);
    handleControls(_controls); // 处理控制条,设定默认值
    handleDate(_controls); // 处理日期, 设定默认值
  };
  const getTableHeaderConfig = (config, data) => {
陈龙's avatar
陈龙 committed
778 779 780
    // 上一版本,下两句代码是被注释了,注释后影响了向下合并功能;如果发现其他问题,请排查此处代码
    setTableStruct(config);
    setColumns(returnColumn(config, data));
陈龙's avatar
陈龙 committed
781 782 783 784 785 786 787 788 789 790 791 792 793
    setAllSortFields(returnSortFields(config));
  };
  const getTableSummaryConfig = (config, summary) => {
    if (summary.length === 0) {
      setSummaryArray([]);
      return false;
    }
    let _summaryConfig = {};
    let _configLength = config.length; // 需要判断
    // 合并列
    let _colSpan = -1;
    let _index = 0;
    config
陈龙's avatar
陈龙 committed
794 795 796 797 798 799 800 801 802 803 804 805 806
        .filter((item) => item.isShow)
        .forEach((item, index) => {
          if (item.isStatistics) {
            _index += 1;
            _colSpan = -1;
            _summaryConfig[item.fieldAlias] = {
              fieldName: item.fieldAlias,
              index,
              alignType: item.alignType,
              type: item.statisticsRule,
              isMoney: item.type === '数值' && !!hasMoney(item.configItems),
              configItems: item.configItems,
            };
陈龙's avatar
陈龙 committed
807
          } else {
陈龙's avatar
陈龙 committed
808 809 810 811 812 813 814 815 816 817
            let _name = `空值行${_index}`;
            if (_colSpan === -1) {
              _colSpan = 1;
            } else {
              _colSpan += 1;
            }
            _summaryConfig[_name] = {
              fieldName: _name,
              colSpan: _colSpan,
            };
陈龙's avatar
陈龙 committed
818
          }
陈龙's avatar
陈龙 committed
819
        });
陈龙's avatar
陈龙 committed
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
    summary.forEach((item) => {
      switch (item.totalType) {
        case '全部':
          setHasTotal(true);
          break;
        case '单页':
          setHasSinglePage(true);
          break;
        default:
          break;
      }
      if (_summaryConfig[item.fieldName]) {
        _summaryConfig[item.fieldName][item.totalType] = item.fieldValue;
      }
    });
    // 增加操作列,总结栏最后一个单元格需要延伸一格
    let _sumArr = Object.values(_summaryConfig);
    if (_sumArr && _sumArr.length)
      _sumArr = _sumArr.map((item, index) => {
        let _item = { ...item };
        if (index === _sumArr.length - 1) _item.colSpan += 1;
        return _item;
      });
    setSummaryArray(_sumArr);
  };

  const changeDate = ({ dateFrom, dateTo }, mode) => {
    setTimeFrom(dateFrom);
    setTimeTo(dateTo);
    setDateMode(mode);
  };
  const mapHandleType = (type) => {
    const _map = {
      文本: handleText,
      多行文本: handleText,
      数值: handleNumber,
      数值标签: handleNumberTag,
      标签: handleTag,
      链接: handleLink,
      功能: handleWidget,
      弹窗: handleModal,
      日期: handleDateString,
      日期时间: handleDateTimeString,
    };
    return _map[type] || _map['文本'];
  };
  const returnSortFields = (data) => {
    return data.map((item) => item.fieldAlias);
  };
  // 处理表格数据,生成表头
  const returnColumn = (config, data) => {
    //0. 常规数据
    //1. 合并表头;
    //2. 四类形态的渲染处理;
    //3. 多列表头排序;剔除掉原有图标,需要自己实现排序的按钮
    let _config = [...config].filter((item) => item.isShow);

    function dataStruct(keyArray, dataIndex, obj, dataObj) {
      if (dataIndex < keyArray.length - 1) {
        if (!obj[keyArray[dataIndex]]) {
          obj[keyArray[dataIndex]] = {};
        }
        let _dataIndex = dataIndex + 1;
        dataStruct(keyArray, _dataIndex, obj[keyArray[dataIndex]], dataObj);
      } else if (dataIndex === keyArray.length - 1) {
        obj[keyArray[dataIndex]] = dataObj;
      }
    }

    let _tempObj = {};
890
    let _fieldAliasArray = data
陈龙's avatar
陈龙 committed
891 892
        ? handleDataToGetRowSpanArray(_config, data)
        : false; // 需要向下合并的字段
陈龙's avatar
陈龙 committed
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
    _config.forEach((item) => {
      let _item = {
        title: item.fieldAlias,
        dataIndex: item.fieldAlias,
        key: item.fieldAlias,
        ellipsis: true,
        onCell: (record, rowIndex) => {
          // 1. 如果该字段是需要向下合并的,则进入判断
          let _obj = {};
          if (_fieldAliasArray && _fieldAliasArray[item.fieldAlias]) {
            _obj.rowSpan = _fieldAliasArray[item.fieldAlias][rowIndex];
          }
          return _obj;
        },
        render: (value, record) => {
          // 文本、标签、链接、数值
          // @params: item 当前的config数据,提供该字段的各类配置
          //          value 当前单元格的值
          //          record 点击单元格的整行数据
          let rest = [];
          if (item.type === '功能') {
            /*            rest = {
                          showComponent: setDetailsComponentVisible,
                          setDetailsConfig: setDetailConfig,
                        };    */
            rest = [setDetailsComponentVisible, setDetailConfig];
          } else if (item.type === '弹窗') {
            /*            rest = {
                          showModal: setModalVisible,
                          setExtra: setExtra,
                        };*/
            rest = [setModalVisible, setExtra];
925 926
          } else if (item.type === '附件') {
            // 附件支持点击下载  --- edit by zhangzhiwei  on 2023/06/27
陈龙's avatar
陈龙 committed
927 928 929 930 931 932
            let _value = '';
            if (value && value.includes('\\')) {
              _value = value.split('\\')[1];
            } else if (value && value.includes('/')) {
              _value = value.split('/')[1];
            }
933
            return (
陈龙's avatar
陈龙 committed
934 935 936 937 938 939 940 941 942 943
                _value && (
                    <div
                        className={style.link}
                        onClick={() => {
                          downloadAccountFiles(value);
                        }}
                    >
                      {_value}
                    </div>
                )
944
            );
陈龙's avatar
陈龙 committed
945 946
          }
          return mapHandleType(item.type)(
陈龙's avatar
陈龙 committed
947 948 949 950
              item,
              [undefined, null].includes(value) ? '' : value,
              record,
              ...rest,
陈龙's avatar
陈龙 committed
951 952 953
          );
        },
      };
954
      _item.width =
陈龙's avatar
陈龙 committed
955
          (!isNaN(Number(item.columnWidth)) && item.columnWidth) || 200; // 列宽,不设置时默认给200;
陈龙's avatar
陈龙 committed
956 957
      if (item.fixedColumn) _item.fixed = item.fixedColumn; // 固定位置
      _item.align = item.alignType || 'left'; // 单元格内对齐方式
958
      let _keyArray = (
陈龙's avatar
陈龙 committed
959 960 961
          item.fieldGroup ||
          item.fieldAlias ||
          item.fieldName
962
      ).split(fieldSplitStr);
陈龙's avatar
陈龙 committed
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
      // 自定义排序
      let _sortFields = handleSortFields(sortFields);
      if (_sortFields.includes(item.fieldAlias)) {
        _item.sorter = true;
      }
      dataStruct(_keyArray, 0, _tempObj, _item);
      return _item;
    });
    let _tempArray = [];

    function handleObject2Array(obj, arr) {
      Object.keys(obj).forEach((key, index) => {
        if (obj[key].title && obj[key].title === key) {
          arr.push(obj[key]);
        } else {
          arr.push({ title: key, children: [] });
          handleObject2Array(obj[key], arr[index].children);
        }
      });
    }

    handleObject2Array(_tempObj, _tempArray);
    // 增加序号
    _tempArray.unshift({
      title: '序号',
      dataIndex: 'r',
      key: 'r',
      width: 60,
      fixed: 'left',
    });
    // 增加操作列
    if (permission.includes('editBtn') || permission.includes('deleteBtn')) {
      _tempArray.push({
        title: '操作',
        align: 'center',
        width: permission.reduce((final, curr) => {
          if (['editBtn', 'deleteBtn'].includes(curr)) {
            final += 30;
          }
          return final;
        }, 30),
        fixed: 'right',
        render: (text, record) => {
          return (
陈龙's avatar
陈龙 committed
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
              <Space className={style.handleColumnWrapper}>
                {record.IsAllow ? (
                    <Popconfirm
                        placement="topRight"
                        title={'确认取消关注吗'}
                        icon={<QuestionCircleOutlined/>}
                        onConfirm={() => focusProject(record)}
                    >
                      <Tooltip title={'点击取消关注'}>
                        <HeartTwoTone twoToneColor="#eb2f96"/>
                      </Tooltip>
                    </Popconfirm>
                ) : (
                    <Popconfirm
                        placement="topRight"
                        title={'确认关注项目吗'}
                        icon={<QuestionCircleOutlined/>}
                        onConfirm={() => focusProject(record)}
                    >
                      <Tooltip title={'点击添加关注'}>
                        <HeartOutlined/>
                      </Tooltip>
                    </Popconfirm>
                )}
                {permission.includes('editBtn') && !isLocalDataSource ? (
                    <FormOutlined
                        className={style.editButton}
                        onClick={() => {
                          // setEditComponentVisible(true);
                          setModalType('编辑');
                          setCurrentData(record);
                        }}
                    />
                ) : (
                    ''
                )}
                {permission.includes('deleteBtn') && !isLocalDataSource ? (
                    <DeleteOutlined
                        disabled
                        className={style.deleteButton}
                        onClick={() => {
                          Modal.confirm({
                            content: '你确定要删除该数据吗?',
                            onOk: () => {
                              reportService
                                  .delReportData({
                                    reportName: reportName,
                                    userId: USER_ID,
                                    key: record.key,
                                  })
                                  .then((res) => {
                                    if (res.code === 0) {
                                      message.success('删除成功!');
                                      setGetNewData(!getNewData);
                                    }
                                  });
                            },
陈龙's avatar
陈龙 committed
1064
                          });
陈龙's avatar
陈龙 committed
1065 1066 1067 1068 1069 1070
                        }}
                    />
                ) : (
                    ''
                )}
              </Space>
陈龙's avatar
陈龙 committed
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
          );
        },
      });
    }
    // 统计宽度
    let _x = _tempArray.reduce((final, curr) => {
      return (final += curr.width);
    }, 0);
    setTableX(_x);
    return _tempArray;
  };
1082 1083 1084
  // 返回表格数据
  const returnTable = useMemo(() => {
    return (
陈龙's avatar
陈龙 committed
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
        <BasicTable
            rowKey={'key'}
            bordered
            loading={tableLoading}
            dataSource={tableData}
            columns={columns}
            onChange={(p, filters, sorter, extra) => {
              // 2023年4月7日,报表当前未实现filter功能,该参数暂未使用
              const { action } = extra;
              if (action === 'paginate') {
                let _pagination = { ...pagination };
                _pagination.current = p.current;
                _pagination.pageSize = p.pageSize;
                setPagination(_pagination);
              }
              if (action === 'sort') {
                setSorterObject(sorter);
              }
            }}
            // 添加表格行勾选功能  --edit by zhangzhiwei on 2023/06/26
            rowSelection={
              rowSelect === 'true'
                  ? {
                    type: 'checkbox',
                    selectedRowKeys: selectedRows.map((item) => item.key),
                    onChange: (selectedRowKeys, selectedRows) => {
                      setSelectedRows(selectedRows);
                    },
                  }
                  : false
1115
            }
陈龙's avatar
陈龙 committed
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
            pagination={permission.includes('pagination') ? pagination : false}
            // 237是内置图片高度
            scroll={{
              y: tableData && tableData.length ? `calc(100% - 44px)` : 237,
              x: tableX,
            }}
            summary={(pageData) => {
              if (summaryArray.length && tableData && tableData.length)
                return (
                    <Table.Summary fixed>
                      <Table.Summary.Row>
                        {hasSinglePage
                            ? summaryArray.map((item, index) => {
                              if (item.fieldName === '空值行0') {
                                return (
                                    <Table.Summary.Cell
                                        key={`summary_${index}`}
                                        index={0}
                                        colSpan={item.colSpan + (rowSelect === 'true' ? 2 : 1)}
                                    >
1136
                              <span
陈龙's avatar
陈龙 committed
1137 1138 1139 1140 1141
                                  style={{
                                    display: 'inline-block',
                                    width: '100%',
                                    textAlign: 'center',
                                  }}
1142 1143 1144
                              >
                                小计
                              </span>
陈龙's avatar
陈龙 committed
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
                                    </Table.Summary.Cell>
                                );
                              } else if (item.fieldName.includes('空值行')) {
                                return (
                                    <Table.Summary.Cell
                                        key={`summary_${index}`}
                                        index={0}
                                        colSpan={item.colSpan}
                                    />
                                );
                              } else {
                                return (
                                    <Table.Summary.Cell
                                        key={`summary_${index}`}
                                        index={0}
                                    >
1161
                              <span
陈龙's avatar
陈龙 committed
1162 1163 1164 1165 1166
                                  style={{
                                    display: 'inline-block',
                                    width: '100%',
                                    textAlign: item.alignType,
                                  }}
1167 1168
                              >
                                {item.type.replace('', '')}:{' '}
陈龙's avatar
陈龙 committed
1169 1170 1171 1172
                                {returnSummaryNumber(
                                    item.configItems,
                                    item['单页'],
                                    true,
1173 1174
                                )}
                              </span>
陈龙's avatar
陈龙 committed
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
                                    </Table.Summary.Cell>
                                );
                              }
                            })
                            : ''}
                      </Table.Summary.Row>
                      <Table.Summary.Row>
                        {hasTotal
                            ? summaryArray.map((item) => {
                              if (item.fieldName === '空值行0') {
                                return (
                                    <Table.Summary.Cell
                                        index={0}
                                        colSpan={item.colSpan + (rowSelect === 'true' ? 2 : 1)}
                                    >
1190
                              <span
陈龙's avatar
陈龙 committed
1191 1192 1193 1194 1195
                                  style={{
                                    display: 'inline-block',
                                    width: '100%',
                                    textAlign: 'center',
                                  }}
1196 1197 1198
                              >
                                总计
                              </span>
陈龙's avatar
陈龙 committed
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
                                    </Table.Summary.Cell>
                                );
                              } else if (item.fieldName.includes('空值行')) {
                                return (
                                    <Table.Summary.Cell
                                        index={0}
                                        colSpan={item.colSpan}
                                    />
                                );
                              } else {
                                return (
                                    <Table.Summary.Cell index={0}>
1211
                              <span
陈龙's avatar
陈龙 committed
1212 1213 1214 1215 1216
                                  style={{
                                    display: 'inline-block',
                                    width: '100%',
                                    textAlign: item.alignType,
                                  }}
1217 1218
                              >
                                {item.type.replace('', '')}:{' '}
陈龙's avatar
陈龙 committed
1219 1220 1221 1222
                                {returnSummaryNumber(
                                    item.configItems,
                                    item['全部'],
                                    true,
1223 1224
                                )}
                              </span>
陈龙's avatar
陈龙 committed
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
                                    </Table.Summary.Cell>
                                );
                              }
                            })
                            : ''}
                      </Table.Summary.Row>
                    </Table.Summary>
                );
            }}
        />
1235 1236
    );
  }, [columns, tableLoading, tableData, selectedRows]);
陈龙's avatar
陈龙 committed
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
  const changeSortField = (value, index, key) => {
    let _selectedSortFields = [...selectedSortFields];
    _selectedSortFields[index][key] = value;
    setSelectedSortFields(_selectedSortFields);
  };
  const addOtherSortFields = () => {
    let _selectedSortFields = [...selectedSortFields];
    _selectedSortFields.push({
      label: '次要排序',
      value: '',
      sort: 'asc',
    });
    setSelectedSortFields(_selectedSortFields);
  };
  const deleteSortField = (index) => {
    let _selectedSortFields = [...selectedSortFields];
    _selectedSortFields.splice(index, 1);
    setSelectedSortFields(_selectedSortFields);
  };
  const setTableHeight = () => {
    if (!tableWrapperRef.current) return;
    const clientHeight = tableWrapperRef.current?.clientHeight || 0;
    const clientWidth = tableWrapperRef.current?.clientWidth || 0;
    const _height = controlRef.current?.clientHeight; // 控制条的高度
    const paginationHeight = 75; // 分页部分的高度
    const tableHeaderHeight = tableHeaderLevel * 40; // 表头高度
1263
    const summaryHeight = summaryArray.length
陈龙's avatar
陈龙 committed
1264 1265
        ? 40 * (Number(hasTotal) + Number(hasSinglePage))
        : 0; // 总结栏的高度
陈龙's avatar
陈龙 committed
1266
    const _minus =
陈龙's avatar
陈龙 committed
1267 1268 1269 1270 1271 1272 1273 1274
        clientHeight -
        _height -
        16 -
        4 -
        tableHeaderHeight -
        paginationHeight -
        summaryHeight -
        10;
陈龙's avatar
陈龙 committed
1275 1276 1277 1278 1279
    setListHeight(clientHeight - _height - paginationHeight - 4 - 6 - 16 - 2);
    setTableY(_minus);
  };
  const getTableLevel = (config) => {
    let _level =
陈龙's avatar
陈龙 committed
1280 1281 1282
        config.reduce((final, curr) => {
          return (final = curr.level > final ? curr.level : final);
        }, 1) || 1;
陈龙's avatar
陈龙 committed
1283 1284 1285 1286
    setTableHeaderLevel(_level);
  };
  const saveReportListSortFields = (callback) => {
    reportService
陈龙's avatar
陈龙 committed
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
        .saveReportListSortFields({
          reportId: currentReportId,
          sortFields: selectedSortFields
              .filter((item) => item.value)
              .map((item) => ({
                fieldAlias: item.value,
                sortType: item.sort,
              })),
        })
        .then((res) => {
          if (res.code === 0) {
            message.success('排序保存成功!');
            callback();
          } else {
            message.error(res.msg);
          }
        });
陈龙's avatar
陈龙 committed
1304
  };
1305 1306 1307
  /**
   *  @Description: 判断是否存在【时间】类型的选择,并返回组件;并记录默认值
   * */
陈龙's avatar
陈龙 committed
1308 1309 1310 1311 1312 1313 1314
  const handleControls = (controls) => {
    // 过滤出非日期的字段,存储默认值
    let _controls = controls.filter((item) => item.type !== '日期');
    _controls.forEach((item) => {
      let _configItems = item.configItems.split('|');
      _configItems.forEach((str) => {
        if (str.includes('defaultValue=')) {
1315
          controlSelectChange(
陈龙's avatar
陈龙 committed
1316 1317
              item.fieldAlias,
              str.replace('defaultValue=', ''),
1318
          );
陈龙's avatar
陈龙 committed
1319 1320 1321 1322 1323 1324 1325 1326
        }
      });
    });
  };
  const handleDate = (obj) => {
    let _typeObj = obj.find((item) => item.filterRule === '日期');
    setHasDatePicker(_typeObj ? _typeObj.fieldAlias : '');
    const _configItems = _typeObj?.configItems.split('|') || [''];
1327
    let _showModels = _configItems
陈龙's avatar
陈龙 committed
1328 1329 1330
        .find((item) => item.includes('showModels='))
        ?.replace('showModels=', '')
        ?.split(',');
陈龙's avatar
陈龙 committed
1331
    let _defaultDate = _configItems
陈龙's avatar
陈龙 committed
1332 1333 1334
        .find((item) => item.includes('defaultDate='))
        ?.replace('defaultDate=', '')
        ?.split(',');
陈龙's avatar
陈龙 committed
1335
    let _defaultModel =
陈龙's avatar
陈龙 committed
1336 1337 1338
        _configItems
            .find((item) => item.includes('defaultModel='))
            ?.replace('defaultModel=', '') || 'year';
陈龙's avatar
陈龙 committed
1339 1340
    _defaultDate = MODEL.includes(_defaultModel) ? _defaultDate : 'year'; // 确保值符合要求
    if (_defaultDate && _defaultDate.length > 1) {
1341 1342 1343 1344
      _defaultDate = {
        dateFrom: moment(_defaultDate[0]),
        dateTo: moment(_defaultDate[1]),
      };
陈龙's avatar
陈龙 committed
1345
    } else if (_defaultDate && _defaultDate.length === 1) {
1346 1347 1348 1349
      _defaultDate = {
        dateFrom: moment(_defaultDate[0]),
        dateTo: moment(_defaultDate[0]),
      };
陈龙's avatar
陈龙 committed
1350 1351 1352 1353 1354
    } else {
      _defaultDate = { dateFrom: moment(), dateTo: moment() };
    }
    // 给定默认值,初始化时可以加载
    changeDate(
陈龙's avatar
陈龙 committed
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
        {
          dateFrom: _defaultDate?.dateFrom
              .clone()
              .startOf(_defaultModel)
              .format(dateFormat),
          dateTo: _defaultDate?.dateTo
              .clone()
              .endOf(_defaultModel)
              .format(dateFormat),
        },
        _defaultModel,
陈龙's avatar
陈龙 committed
1366 1367 1368 1369
    );
    setDefaultDateConfig({
      defaultDate: _defaultDate?.dateFrom,
      defaultModel: _defaultModel,
1370
      showModels: _showModels,
陈龙's avatar
陈龙 committed
1371 1372 1373 1374
    });
  };
  const focusProject = (record) => {
    reportService
陈龙's avatar
陈龙 committed
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
        .setReportAllow({
          userId: USER_ID,
          reportName: reportName,
          reportKey: record.key,
        })
        .then((res) => {
          if (res.code === 0) {
            message.success(`${record.IsAllow ? '取消' : '关注'}成功!`);
            getData(pagination);
          } else {
            message.error(`${record.IsAllow ? '取消' : '关注'}失败!`);
          }
        });
  };
  const printTable = () => {
    let _columns = columns.filter(item => item.title !== '操作');
    Print({ tableData, columns: _columns, name: reportName }, 'simple_table');
陈龙's avatar
陈龙 committed
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
  };

  function getRefHeight() {
    if (timer) clearTimeout(timer);
    timer = setTimeout(() => {
      let _height = controlRef?.current.clientHeight;
      setControlsHeight(_height);
    }, 100);
  }

  useEffect(() => {
1403 1404 1405
    if (firstToGetData) {
      getData(pagination);
    }
陈龙's avatar
陈龙 committed
1406 1407 1408 1409 1410 1411
    getRefHeight();
  }, [firstToGetData]);
  useEffect(() => {
    if (tableHeaderLevel) setTableHeight();
  }, [tableHeaderLevel]);
  useEffect(() => {
1412 1413 1414 1415 1416 1417 1418 1419 1420
    if (!isInit) {
      let _pagination = { ...pagination };
      if (_pagination.current === 1) {
        getData(pagination);
      } else {
        _pagination.current = 1;
        setPagination(_pagination);
      }
    }
陈龙's avatar
陈龙 committed
1421
  }, [timeFrom, timeTo, sorterObject, filterObject, getNewData]);
1422 1423 1424 1425 1426
  useEffect(() => {
    if (firstToGetData) {
      getData(pagination);
    }
  }, [pagination.current, pagination.pageSize]);
陈龙's avatar
陈龙 committed
1427
  useEffect(() => {
陈龙's avatar
陈龙 committed
1428
    getConfigs();
陈龙's avatar
陈龙 committed
1429 1430
    window.addEventListener('resize', getRefHeight);
    return () => window.removeEventListener('resize', getRefHeight);
1431
  }, []);
陈龙's avatar
陈龙 committed
1432 1433 1434
  useEffect(() => {
    trigger?.('selectedRows');
  }, [selectedRows]);
陈龙's avatar
陈龙 committed
1435
  return (
陈龙's avatar
陈龙 committed
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
      <div className={style.reportManage} style={{ ...(props.style ?? {}) }} ref={tableWrapperRef}>
        {/* 预留容器,提供给点击后的功能显示 */}
        {detailsComponentVisible ? (
            <div
                className={style.contentWrapper}
                style={{
                  position: 'absolute',
                  zIndex: 100,
                  width: 'calc(100% - 16px)',
                  height: 'calc(100% - 16px)',
                }}
            >
              <DetailsComponent
                  url={detailConfig.url}
                  params={detailConfig.params}
                  onCancel={() => setDetailsComponentVisible(false)}
              />
            </div>
        ) : (
            ''
        )}
        {/* 为方便阅读,分开两部分代码 */}
陈龙's avatar
陈龙 committed
1458
        <div
陈龙's avatar
陈龙 committed
1459 1460
            className={style.contentWrapper}
            style={{ zIndex: detailsComponentVisible ? -1 : 'auto' }}
陈龙's avatar
陈龙 committed
1461
        >
陈龙's avatar
陈龙 committed
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
          <Row className={style.controlRow} ref={controlRef}>
            <Space style={{ flex: 1 }} size={8} wrap={true}>
              {/*时间搜索控件,确保时间搜索控件在第一个,单独匹配*/}
              {hasDatePicker &&
              defaultDateConfig.defaultDate !== null &&
              permission.includes('filters') ? (
                  <DatePickerGroup
                      showModels={defaultDateConfig.showModels}
                      onChange={changeDate}
                      format={dateFormat}
                      defaultModel={defaultDateConfig.defaultModel}
                      defaultDate={defaultDateConfig.defaultDate}
                  />
              ) : (
                  ''
              )}
              {controls && controls.length && permission.includes('filters')
                  ? controls
                      .filter((control) =>
                          ['下拉', '多选', '复选框'].includes(control.filterRule),
                      )
                      .map((control) => {
                        return (
                            <Form.Item
                                label={control.fieldAlias}
                                key={control.fieldAlias}
                            >
                              <ReturnControlComponent
                                  style={{ width: 240 }}
                                  type={control.filterRule}
                                  reportName={reportName}
                                  fieldAlias={control.fieldAlias}
                                  configItems={control.configItems}
                                  onChange={(e) =>
                                      controlSelectChange(control.fieldAlias, e)
                                  }
                                  filterFields={filterFields}
                                  filterValues={filterValues}
                                  filterObject={addFilterAndSearchParams({
                                    reportName: reportName,
                                    userId: USER_ID,
                                  })}
                              />
                            </Form.Item>
                        );
                      })
                  : ''}
              {permission.includes('filters') ? (
                  <Form.Item
                      label={
                        searchPlaceholder && searchPlaceholder.length
                            ? '快速索引'
                            : ''
                      }
                      key={'快速搜索控件'}
                  >
                    {searchPlaceholder && searchPlaceholder.length ? (
                        <ReturnControlComponent
                            placeholder={`请输入${
                                searchPlaceholder.length
                                    ? searchPlaceholder.join('')
                                    : '关键字'
                            }搜索`}
                            style={{ width: 240 }}
                            type={'文本'}
                            onChange={(e) => {
                              searchInputChange(e);
                            }}
                            onSearch={searchData}
                        />
                    ) : (
                        <Button type={'primary'} onClick={searchData}>
                          搜索
                        </Button>
                    )}
                  </Form.Item>
              ) : (
                  ''
              )}
            </Space>
            {permission.includes('sortBtn') ||
            permission.includes('exportBtn') ||
            permission.includes('addBtn') ? (
                <div style={{ width: 'auto', textAlign: 'end' }}>
                  <Space size={8} nowrap>
                    {permission.includes('addBtn') && !isLocalDataSource ? (
                        <Form.Item>
                          <Button
                              type={'primary'}
                              title={'自定义排序'}
                              icon={<PlusOutlined/>}
                              onClick={() => {
                                setModalType('新增');
                                setCurrentData({});
                              }}
                          >
                            添加
                          </Button>
                        </Form.Item>
                    ) : (
                        ''
                    )}
                    {showSortBtn && permission.includes('sortBtn') ? (
                        <Form.Item>
                          <Button
                              type={'primary'}
                              title={'自定义排序'}
                              icon={<SortAscendingOutlined/>}
                              onClick={() => setModalVisible(true)}
                          >
                            排序
                          </Button>
                        </Form.Item>
                    ) : (
                        ''
                    )}
                    {permission.includes('printBtn') ? (
                        <Form.Item>
                          <Button
                              type={'primary'}
                              title={'打印当前页'}
                              onClick={printTable}
                          >
                            打印
                          </Button>
                        </Form.Item>
                    ) : (
                        ''
                    )}
                    {permission.includes('exportBtn') ? (
                        <Form.Item>
                          <Dropdown style={{ float: 'right' }} overlay={menu}>
                            <Button>
                              <Space>
                                导出
                                <DownOutlined/>
                              </Space>
                            </Button>
                          </Dropdown>
                        </Form.Item>
                    ) : (
                        ''
                    )}
                  </Space>
                </div>
陈龙's avatar
陈龙 committed
1607
            ) : (
陈龙's avatar
陈龙 committed
1608
                ''
陈龙's avatar
陈龙 committed
1609
            )}
陈龙's avatar
陈龙 committed
1610 1611 1612 1613 1614 1615 1616
          </Row>
          <div
              className={style.tableContent}
              style={{ height: `calc(100% - ${controlsHeight || 0}px)` }}
          >
            {columns && columns.length ? (
                returnTable
陈龙's avatar
陈龙 committed
1617
            ) : (
陈龙's avatar
陈龙 committed
1618 1619 1620
                <div className={style.spinWrapper}>
                  <Spin/>
                </div>
陈龙's avatar
陈龙 committed
1621
            )}
陈龙's avatar
陈龙 committed
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
          </div>
        </div>
        <Modal
            title={'自定义排序字段'}
            visible={modalVisible}
            onCancel={() => setModalVisible(false)}
            footer={
              <div style={{ display: 'flex', justifyContent: 'space-between' }}>
                <div>
                  <Button type={'link'} onClick={() => addOtherSortFields()}>
                    增加次要排序
                  </Button>
                </div>
                <div>
                  <Button onClick={() => setModalVisible(false)}>取消</Button>
                  <Button
陈龙's avatar
陈龙 committed
1638 1639
                      type={'primary'}
                      onClick={() => {
陈龙's avatar
陈龙 committed
1640 1641
                        saveReportListSortFields(() => getData(pagination));
                        setModalVisible(false);
陈龙's avatar
陈龙 committed
1642
                      }}
陈龙's avatar
陈龙 committed
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658
                  >
                    确认
                  </Button>
                </div>
              </div>
            }
        >
          {selectedSortFields.map((item, index) => (
              <Row key={'label'} className={style.controlRow}>
                <Space size={8} wrap={true}>
                  <Form.Item label={item.label}>
                    <Select
                        style={{ width: 240 }}
                        defaultValue={item.value}
                        value={item.value}
                        onChange={(e) => changeSortField(e, index, 'value')}
陈龙's avatar
陈龙 committed
1659
                    >
陈龙's avatar
陈龙 committed
1660 1661 1662 1663 1664
                      <Option value="">未选择</Option>
                      {allSortFields.map((item) => (
                          <Option value={item} key={item}>{item}</Option>
                      ))}
                    </Select>
陈龙's avatar
陈龙 committed
1665 1666
                  </Form.Item>
                  <Form.Item>
陈龙's avatar
陈龙 committed
1667 1668 1669 1670 1671
                    <Select
                        style={{ width: 120 }}
                        defaultValue={item.sort}
                        value={item.sort}
                        onChange={(e) => changeSortField(e, index, 'sort')}
陈龙's avatar
陈龙 committed
1672
                    >
陈龙's avatar
陈龙 committed
1673 1674 1675
                      <Option value={'asc'}>升序</Option>
                      <Option value={'desc'}>降序</Option>
                    </Select>
陈龙's avatar
陈龙 committed
1676
                  </Form.Item>
陈龙's avatar
陈龙 committed
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
                  {index !== 0 ? (
                      <Form.Item>
                        <MinusCircleOutlined
                            style={{ color: 'rgba(0,0,0,.65)' }}
                            onClick={() => deleteSortField(index)}
                        />
                      </Form.Item>
                  ) : (
                      ''
                  )}
                </Space>
              </Row>
          ))}
        </Modal>
        <Modal
            visible={extraModal}
            onCancel={() => setExtraModal(false)}
            destroyOnClose
            width={800}
陈龙's avatar
陈龙 committed
1696
        >
陈龙's avatar
陈龙 committed
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707
          {extra}
        </Modal>
        {/* 编辑表单 */}
        <Modal
            title={`${modalType}报表信息`}
            visible={!!modalType}
            width={'80%'}
            footer={null}
            // visible={true}
            destroyOnClose
            onCancel={() => setModalType('')}
1708
        >
陈龙's avatar
陈龙 committed
1709 1710 1711 1712 1713 1714 1715 1716 1717
          <ReportEditForm
              modalType={modalType}
              reportDetails={tableStruct}
              reportData={currentData}
              onCancel={() => {
                setModalType('');
                getData(pagination);
              }}
              reportName={reportName}
1718
          />
陈龙's avatar
陈龙 committed
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
        </Modal>
        {/* 编辑水印 */}
        <Modal
            title={`添加水印`}
            visible={showWaterMarkModal}
            destroyOnClose
            onCancel={() => setShowWaterMarkModal(false)}
            onOk={exportFiles}
        >
          <Form.Item
              label="水印内容"
              name="水印内容"
              rules={[
                {
                  required: true,
                  message: '请输入水印内容...!',
                },
              ]}
          >
            <Input
                placeholder="请输入水印内容..."
                onChange={(e) => {
                  setWaterMarkContent(e.target.value);
                }}
            />
          </Form.Item>
        </Modal>
      </div>
陈龙's avatar
陈龙 committed
1747
  );
陈龙's avatar
陈龙 committed
1748
});
陈龙's avatar
陈龙 committed
1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
const mapStateToProps = (state) => {
  const allWidgets = state.getIn(['global', 'globalConfig', 'allWidgets']);
  let _flatWidgets = [];
  const flatWidgets = (arr) => {
    arr.forEach((item) => {
      if (item.widgets && item.widgets.length) {
        flatWidgets(item.widgets);
      } else {
        _flatWidgets.push(item);
      }
    });
  };
  flatWidgets(allWidgets);
  return {
    allWidgets: _flatWidgets,
  };
};
陈龙's avatar
陈龙 committed
1766
export default ReportsManage;