ImportUtil.js 14.5 KB
Newer Older
徐立's avatar
徐立 committed
1
import React, { Fragment } from 'react';
钟是志's avatar
钟是志 committed
2
import { Button, Steps, Upload, Icon, Tabs, Table } from 'antd';
徐立's avatar
徐立 committed
3 4
import styles from './ImportUtil.less';
import ButtonDiy from './ButtonDiy/ButtonDiy';
5
import { getToken } from '../utils/token';
tb53863844's avatar
tb53863844 committed
6
import FormdataWrapper from '../utils/object-to-formdata-custom';
chscls@163.com's avatar
chscls@163.com committed
7
import config from '@/webPublic/one_stop_public/config';
徐立's avatar
徐立 committed
8
import { connect } from 'dva';
钟是志's avatar
钟是志 committed
9
import { getMessage, getModal } from '@/webPublic/one_stop_public/utils/utils';
10
import { giveFilePostDataInfoForTrue } from '@/webPublic/one_stop_public/Base16';
11
import { getTransformApi } from '@/webPublic/one_stop_public/2022beidianke/localstorageTransform';
12
import ProgressDiy from './ProgressDiy';
13

钟是志's avatar
钟是志 committed
14 15
const Modal = getModal();
const message = getMessage();
徐立's avatar
徐立 committed
16 17
const Step = Steps.Step;
const TabPane = Tabs.TabPane;
18 19
let tempCallback = () => {
};
徐立's avatar
徐立 committed
20

21 22 23 24 25 26
@connect(({
            DataObj,
            loading,
          }) => ({
  DataObj,
  loading: loading.models.DataObj,
徐立's avatar
徐立 committed
27 28
}))
export default class ImportUtil extends React.PureComponent {
29 30
  constructor(props) {
    super(props);
31
    tempCallback = this.props.callback || tempCallback;
32

33 34 35 36 37 38 39 40 41 42 43 44 45
    this.state = {
      ch: false,
      currentKey: '1',
      visible: false,
      current: 0,
      isShow: true,
      fileCacheKey: '',
      sucData: [],
      errData: [],
      column: [],
      confirmLoading: false,
      openProgress: false,
      // exportTemplateUrl,
46

47 48 49
      isNextDisabled: false,
    };
  }
50

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
  showModal = () => {
    this.setState({
      sucData: [],
      errData: [],
      column: [],
      current: 0,
      isShow: true,
      isNextDisabled: false,
      fileCacheKey: '',
      visible: true,
    });
  };
  handleOk = (e) => {
    this.setState({
      visible: false,
    });
  };
  handleCancel = (e) => {
    this.setState({
      visible: false,
    });
  };
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
  next() {
    const current = this.state.current + 1;
    if (current === 2) {
      this.setState({
        current: current,
        isShow: false,
      });
      if (this.state.errData.lenth > 0) {
        message.error('请检查数据');
        return;
      } else {
        this.import();
      }
    }
    if (current === 3) { // 导入完成后
      console.log('current === 3');
      this.setState(
        {
          current: current,
          isShow: true,
        },
        () => {
          if (tempCallback && typeof tempCallback === 'function') {
            tempCallback();
            tempCallback = null;
          }
        },
      );
    }
  }
xuli's avatar
xuli committed
104

105 106 107 108
  prev() {
    const current = this.state.current - 1;
    this.setState({ current });
  }
xuli's avatar
xuli committed
109

110 111 112
  changeOpenProgress = (v) => {
    if (v === false) {
      this.next();
113
      message.success('导入成功', 1);
114 115 116 117
      this.setState({
        current: 3,
        isShow: true,
        visible: false,
钟是志's avatar
钟是志 committed
118
        openProgress: false,
119 120 121
      });
    }
  };
徐立's avatar
徐立 committed
122

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
  import() {
    const {
      dispatch,
      importParams,
    } = this.props;
    dispatch({
      type: 'DataObj/importExecute',
      payload: {
        ...(importParams || {}),
        cacheKey: this.state.fileCacheKey,
        objId: this.props.objId,
      },
      callback: (res) => {
        if (res && res.sync === false && res.total) {
          // 23013 学生事务/学生医保管理/学生平安险/保险办理,2001010248 高职界面已购买 导入 报错【接口超时】
          this.setState({
            openProgress: res,
          });
          return;
        }
143

144
        this.next();
145
        message.success('导入成功', 1);
146 147 148 149 150
        this.setState({
          current: 3,
          isShow: true,
          visible: false,
        });
徐立's avatar
徐立 committed
151

152 153 154
      },
    });
  }
徐立's avatar
徐立 committed
155

156 157 158 159 160 161 162 163 164 165 166 167
  getCachKey = (filePath) => {
    const {
      dispatch,
      importParams,
      importConfig,
    } = this.props;
    dispatch({
      type: 'DataObj/importAnalyse',
      payload: {
        ...(importParams || {}),
        isLocal: false,
        filePath,
徐立's avatar
徐立 committed
168

169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
        importConfig: importConfig ? JSON.stringify(importConfig) : null,
        objId: this.props.objId,
      },
      callback: (res) => {
        this.setState({
          fileCacheKey: res.cacheKey,
        });
        this.queryFile(res.cacheKey);
      },
    });
  };
  queryFile = (cacheKey) => {
    const {
      dispatch,
      importParams,
    } = this.props;
    dispatch({
      type: 'DataObj/importDataQuery',
      payload: {
        ...(importParams || {}),
        cacheKey,
        objId: this.props.objId,
      },
      callback: (res) => {
        this.setState({
          current: 1,
          isShow: false,
徐立's avatar
徐立 committed
196

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
          sucData: res.pass,
          errData: res.noPass,
          column: res.column,
        });
        if (res.noPass && res.noPass.length === 0) {
          if (res.pass.length === 0) {
            message.error('当前没有验证成功的数据,无法导入。');
            this.setState({
              currentKey: '1',
              ch: !this.state.ch,
              isNextDisabled: true,
            });
          } else {
            message.success('所有数据验证通过,请确认后点击下一步。');
            this.setState({
              currentKey: '2',
              ch: !this.state.ch,
              isNextDisabled: false,
            });
          }
        } else {
          message.error('当前存在未验证通过的数据,请按错误提示检测更正导入文件');
          this.setState({
            currentKey: '1',
            ch: !this.state.ch,
            isNextDisabled: true,
          });
        }
      },
    });
  };
徐立's avatar
徐立 committed
228

229 230 231
  changePane = (activeKey) => {
    this.setState({ currentKey: activeKey });
  };
232

xuli's avatar
xuli committed
233

234 235
  downloadFile = async () => {
    this.setState({ confirmLoading: true });
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
    const {
      objId,
      fileName,
      importParams,
      importConfig,
    } = this.props;
    const params = {
      ...importParams,
      importConfig: importConfig ? JSON.stringify(importConfig) : null,
      objId,
      fileName,
    };
    let url = `${config.httpServer}/DataObjApi/importTemplateDownload`;
    let newParams = giveFilePostDataInfoForTrue(params, url);
    if (newParams && newParams.datas) {
      newParams.datas.token = getToken();
    }
    const {
      transformApi,
      headersApi,
    } = await getTransformApi(newParams.url);
    fetch(transformApi, {
      method: 'POST',
      body: FormdataWrapper(newParams.datas),
    })
      .then((res) => {
        console.log(res.status);
        if (res.status != 200 && res.status !== 202) {
          return res.json();
        } else {
          return res.blob();
        }
      })
      .then((data) => {
        if (data instanceof Blob) {
          let a = document.createElement('a');
          let url = window.URL.createObjectURL(data);
          let filename =
            (this.props.fileName ? this.props.fileName : '导入模板.') + (this.props.ext || 'xlsx');
          a.href = url;
          a.download = filename;
          a.click();
          window.URL.revokeObjectURL(url);
          a = null;
        } else {
          message.error(`文件导出错误`);
        }
      })
      .catch((err) => {
        console.error(err);
        message.error(`网络请求超时`);
      })
      .finally(() => {
        this.setState({ confirmLoading: false });
      });
  };
xuli's avatar
xuli committed
293

294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
  render() {
    const props = {
      name: 'file',
      action: config.uploadUrl,
      headers: {
        Authorization: `bearer ${getToken()}`,
      },
      data: {
        token: getToken(),
      },
      accept: '.xlsx',
      showUploadList: false,
      onChange: (info) => {
        if (info.file.status !== 'uploading') {
        }
        if (info.file.status === 'done') {
          message.success(`${info.file.name} 上传成功`);
          let x = info.file.response;
312

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
          this.getCachKey(x);
        } else if (info.file.status === 'error') {
          message.error(`${info.file.name} 上传失败`);
        }
      },
    };
    const steps = [
      {
        title: '上传Excel',
      },
      {
        title: '验证数据',
      },
      {
        title: '数据导入',
      },
      {
        title: '导入完成',
      },
    ];
徐立's avatar
徐立 committed
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
    const {
      current,
      openProgress,
      fileCacheKey,
    } = this.state;
    const { name } = this.props;
    const column1 = this.state.column
      ? [
        {
          title: '序号',
          dataIndex: 'index',
          fixed: 'left',
          width: 50,
          render: (v, r, i) => i + 1,
        },
        {
          title: '数据行数',
          dataIndex: 'row_index',
          width: 50,
        },
        ...this.state.column,
      ]
      : [];
    let column2 = this.state.column ? [{
      title: '数据行数',
      dataIndex: 'row_index',
      width: 50,
    }, ...this.state.column] : [];
    if (column1.length > 1) {
      column1[1].render = (val) => <span style={{ color: 'red' }}>{val}</span>;
    }
xuli's avatar
xuli committed
365

366 367 368 369 370 371 372 373 374 375 376 377
    if (column2) {
      let xuhao = column2.find((g) => g.dataIndex === '序号');
      if (!xuhao) {
        column2.unshift({
          title: '序号',
          fixed: 'left',
          width: 50,
          render: (v, r, i) => i + 1,
          dataIndex: '序号',
        });
      }
    }
378

379 380 381 382 383 384 385 386 387
    const btn = {
      name: name || '批量导入',
      type: 'default',
      className: 'defaultBlue',
      ...(this.props.btn ? this.props.btn : {}),
    };

    return (
      <span>
388 389
				<ButtonDiy {...btn} handleClick={this.showModal} />
				<Modal
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 416 417 418 419 420 421 422
          visible={this.state.visible}
          onOk={this.handleOk}
          maskClosable={false}
          destroyOnClose
          onCancel={this.handleCancel}
          title={null}
          footer={null}
          width={'80%'}>
          {
            !!openProgress ? <ProgressDiy fileCacheKey={fileCacheKey}
                                          {...openProgress}
                                          changeOpenProgress={this.changeOpenProgress}
              /> :
              <div className={styles.nomal}>
                <p className={styles.import}>EXCEL导入向导</p>
                <div style={{ margin: 'auto 23px' }}>
                  <Steps current={current}>
                    {steps.map((item) => (
                      <Step key={item.title} title={item.title} />
                    ))}
                  </Steps>
                  <div className='steps-content'>{steps[this.state.current].content}</div>
                  <div className={styles.button}>
                    {this.state.current < steps.length - 1 &&
                    this.state.current !== 0 && (
                      <ButtonDiy
                        name={this.state.current == 3 ? '确认导入' : '下一步'}
                        type='primary'
                        disabled={this.state.current != 3 && this.state.isNextDisabled}
                        // className='primaryBlue'
                        handleClick={() => this.next()}
                      />
                    )}
tb53863844's avatar
tb53863844 committed
423

424 425 426 427 428 429 430 431 432 433
                    {this.state.current > 0 && (
                      <ButtonDiy
                        style={{ marginLeft: 8 }}
                        name='上一步'
                        className='defaultBlue'
                        handleClick={() => this.prev()}
                      />
                    )}
                  </div>
                </div>
tb53863844's avatar
tb53863844 committed
434

435 436 437 438
                <div className={styles.tip}>
                  <p className={styles.tipContent}>
                    <span>欢迎使用EXCEL导入向导,首先请您上传需要导入的EXCEL文件。</span>
                    <span>
439 440
									点击“选择文件”选择您要导入的EXCEL文件,点击“开始上传”将其上传到服务器上,点击“清空队列”清空当前上传文件队列。
								</span>
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
                  </p>
                </div>
                {this.state.isShow ? (
                  <div className={styles.buttonDown}>
                    <Upload {...props}>
                      <Button>
                        <Icon type='upload' />
                        点击上传
                      </Button>
                    </Upload>
                    <ButtonDiy
                      name={'下载模板'}
                      type='primary'
                      // className='primaryBlue'
                      handleClick={() => this.downloadFile()}
                      loading={this.state.confirmLoading}
                    />
                  </div>
                ) : (
                  <Upload {...props}>
                    <Button>
                      <Icon type='upload' />
                      重新上传
                    </Button>
                  </Upload>
                )}
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 500 501 502 503 504 505 506 507 508 509 510 511
                {this.state.isShow ? (
                  <div className={styles.attentionItem}>
                    <p>导入事项</p>
                    <p>1. 导入操作一次只能上传 1 EXCEL文件。</p>
                    <p>2. 导入文件最大文件大小上传 1 GB</p>
                    <p>3. 只能上传EXCEL文件(XLS, XLSX) 默认支持EXCEL 2003EXCEL 2007</p>
                    <p>4. 请将EXCEL文件的所有单元格格式设置为“文本”格式</p>
                  </div>
                ) : (
                  <div className={styles.error} style={{ marginTop: 20 }}>
                    <Tabs
                      activeKey={this.state.currentKey}
                      key={this.state.ch}
                      onChange={this.changePane}
                      type='card'>
                      {this.state.errData && this.state.errData.length == 0 ? (
                        ''
                      ) : (
                        <TabPane tab={<span style={{ color: 'red' }}>验证错误列表</span>} key='1'>
                          <Table
                            columns={column1}
                            size='small'
                            style={{ overflow: 'auto' }}
                            dataSource={this.state.errData}
                            bordered={true}
                            scroll={{ x: 'max-content' }}
                          />
                        </TabPane>
                      )}
                      <TabPane tab={<span style={{ color: 'green' }}>验证成功列表</span>} key='2'>
                        <Table
                          columns={column2}
                          size='small'
                          style={{ overflow: 'auto' }}
                          dataSource={this.state.sucData}
                          bordered={true}
                          scroll={{ x: 'max-content' }}
                        />
                      </TabPane>
                    </Tabs>
                  </div>
                )}
              </div>
          }
512 513
				</Modal>
			</span>
514 515
    );
  }
徐立's avatar
徐立 committed
516
}