king
2024-08-06 70f30488f31c2adb1cfb3cb2452ea27c85167019
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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
188
189
190
191
192
193
194
195
196
197
198
199
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { is, fromJS } from 'immutable'
import { Upload, Button, Progress, notification } from 'antd'
import { UploadOutlined } from '@ant-design/icons'
 
import Api from '@/api'
import './index.scss'
 
class FileUpload extends Component {
  static propTpyes = {
    config: PropTypes.object,  // 表单信息
    onChange: PropTypes.func,  // 表单变化
  }
 
  state = {
    percent: 0,
    accept: '',
    accepts: null,
    maxFile: null,
    showprogress: false,
    maxSize: 0,
    filelist: []
  }
 
  UNSAFE_componentWillMount () {
    const { config } = this.props
 
    let filelist = []
    let accept = ''
    let accepts = null
 
    this.setState({
      accept,
      accepts,
      filelist,
      maxSize: config.maxSize || 0,
      maxFile: config.maxfile
    })
  }
 
  shouldComponentUpdate (nextProps, nextState) {
    return !is(fromJS(this.state), fromJS(nextState))
  }
 
  onChange = ({ fileList }) => {
    fileList = fileList.map(item => {
      if (item.status === 'error' && /^<!DOCTYPE html>/.test(item.response)) {
        item.response = ''
      }
      return item
    })
 
    this.setState({filelist: fileList})
  }
 
  onRemove = file => {
    this.setState({filelist: []})
 
    this.props.onChange('')
  }
 
  onUpdate = (url, name) => {
    let filelist = fromJS(this.state.filelist).toJS()
 
    if (filelist[0] && url) {
      filelist[0].status = 'done'
      filelist[0].response = url
    }
 
    this.setState({filelist})
    this.props.onChange(url, name)
  }
 
  onFail = (msg) => {
    let filelist = this.state.filelist.map(item => {
      if (!item.url && !item.response && !item.status) {
        item.status = 'error'
      }
      return item
    })
 
    this.setState({filelist, showprogress: false, percent: 0})
 
    notification.warning({
      top: 92,
      message: msg || '文件上传失败!',
      duration: 5
    })
  }
 
  beforeUpload = (file) => {
    const { accepts, maxSize } = this.state
 
    if (accepts && file.name) {
      let pass = false
      accepts.forEach(type => {
        if (new RegExp(type + '$', 'ig').test(file.name)) {
          pass = true
        }
      })
      
      if (!pass) {
        setTimeout(() => {
          this.onFail('文件格式错误!')
        }, 10)
        return false
      }
    }
    if (maxSize) {
      let fileSize = file.size / 1024 / 1024
 
      if (fileSize > maxSize) {
        setTimeout(() => {
          this.onFail(`文件大小不可超过${maxSize}M`)
        }, 10)
        return false
      }
    }
 
    this.setState({
      showprogress: true,
      percent: 0
    })
 
    let form = new FormData()
 
    form.append('file', file)
 
    Api.getFileUpload(form).then(res => {
      if (res.status) {
        if (res.urlPath) {
          this.onUpdate(res.urlPath, file.name)
        } else {
          this.onFail()
        }
        this.setState({
          percent: 100
        }, () => {
          setTimeout(() => {
            this.setState({
              showprogress: false,
              percent: 0
            })
          }, 200)
        })
      } else {
        this.onFail(res.message)
      }
    })
 
    return false
  }
 
  /**
   * @description 组件销毁,清除state更新
   */
  componentWillUnmount () {
    this.setState = () => {
      return
    }
  }
 
  render() {
    const { showprogress, percent, filelist, accept } = this.state
 
    let uploadable = 'attach-form-container '
 
    if (filelist.length >= 1) {
      uploadable += 'limit-fileupload'
    }
 
    const props = {
      name: 'file',
      disabled: showprogress,
      listType: 'text',
      fileList: filelist,
      action: null,
      accept: accept,
      method: 'post',
      multiple: false,
      onChange: this.onChange,
      onRemove: this.onRemove,
      beforeUpload: this.beforeUpload,
      className: uploadable
    }
 
    return (
      <Upload {...props}>
        <Button>
          <UploadOutlined /> 点击上传
        </Button>
        {showprogress ? <Progress percent={percent} size="small" /> : null}
      </Upload>
    )
  }
}
 
export default FileUpload