liuxiaolong
2019-05-06 2ab7a76a38fbf8fa107bf6371f5410ba54e1d394
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<template>
  <div class="">
    <hr class="border-light m-0" v-if="isShowHr">
    <div :class="!isShowHr&&!isList&&isUpload?'':'pt-4 pb-4'" >
      <div v-if="isList">
        <h6 class="font-weight-semibold mb-4">{{title}}</h6>
        <div class="row" v-if="fileList && fileList.length">
          <div v-for="attachment in fileList" :key="attachment.id" :class="layoutClass!==''?layoutClass:'col-sm-6 col-md-4 col-lg-6 col-xl-4'">
            <div class="message-attachment ui-bordered p-2 mr-3 mb-3" :title="attachment.name">
              <div v-if="isImage(attachment)" :style="{'background-image': `url(/httpImage/${attachment.url})`}" class="message-attachment-img"></div>
              <div v-else-if="isFile(attachment)" class="message-attachment-file display-4"><i :class="fileIcon(attachment)"></i></div>
              <div class="media-body ml-3">
                <strong class="message-attachment-filename">{{attachment.name}}</strong>
                <div class="text-muted small">{{Math.round(attachment.size/1024)}}KB</div>
                <div>
                  <span v-if="isImage(attachment)"><a :href="`/httpImage/${attachment.url}`" target="_blank">查看</a> &nbsp;</span>
                  <a :href="`/httpImage/${attachment.url}`" :download="attachment.name">下载</a>&nbsp;&nbsp;
                  <a v-if="isDelFile" href="javascript:void(0)" @click="handleDelFile(attachment.id)">删除</a>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="text-center text-muted small pt-2 pb-2" v-if="!fileList || !fileList.length">
          暂无附件
        </div>
      </div>
      <div class="upload-content pr" :class="!isShowHr&&!isList&&isUpload?'pt-2':'pt-4 pb-2'" v-if="isUpload">
        <div class="upload-progress" v-if="isShowProgress">
          <b-progress variant="success" striped :style="`opacity: ${isShowProgress&&showProgress?1:0}`" :value="progressValue" height="5px"/>
        </div>
        <ladda-btn
          :loading="upLoadLoading"
          data-style="slide-down"
          @click.native="$refs.fileInput.value='';$refs.fileInput.click()"
          :class="uploadBtnClass"
        >
          <i :class="uploadBtnIcon"></i>&nbsp;&nbsp;{{uploadBtntext}}
        </ladda-btn>
        <input type="file" ref="fileInput" @change="handleUpLoad"/>
      </div>
    </div>
  </div>
</template>
<style src="@/vendor/styles/pages/messages.scss" lang="scss"></style>
<script>
import axios from 'axios'
import LaddaBtn from '@/vendor/libs/ladda/Ladda'
import { findByIds } from '@/server/common.js'
export default {
  name: 'uploadCommon',
  props: {
    /* 查询已有附件ids(逗号分隔) */
    initFileIds: {
      default: '',
      type: String
    },
    /* 是否显示附件列表 */
    isList: {
      default: true,
      type: Boolean
    },
    /* 是否显示上传控件 */
    isUpload: {
      default: true,
      type: Boolean
    },
    /* 上传控件列表是否删除功能 */
    isDelFile: {
      default: true,
      type: Boolean
    },
    /* 类型限制(后缀名,分隔) 传入示例'.png,.jpg'  不限制为 '' */
    limitTypes: {
      default: '',
      type: String
    },
    /* 文件大小限制 传入示例'1M' 单位支持G、M、K、B 无单位按B计算  不限制为 '' */
    limitSize: {
      default: '1M',
      type: String
    },
    /* 用于刷新上传组件 value时间戳字符串 */
    refreshTimes: {
      default: '',
      type: String
    },
 
    /* 排列布局 value  1,2,3  default:3 */
    layout: {
      default: 3,
      type: Number
    },
    /* 上传列表title */
    title: {
      default: '上传列表',
      type: String
    },
    /* 上传按钮文字 */
    uploadBtntext: {
      default: '上传',
      type: String
    },
    /* 上传按钮icon */
    uploadBtnIcon: {
      default: 'ion ion-md-cloud-upload',
      type: String
    },
    uploadBtnClass: {
      default: 'btn btn-primary',
      type: String
    },
    /* 是否显示hr 线 */
    isShowHr: {
      default: true,
      type: Boolean
    },
    /* 是否显示上传进度 */
    isShowProgress: {
      default: true,
      type: Boolean
    }
    /**
     * 上传组件回值方法
     * @description 上传组件回值方法
     * @return { function } addFilesBaBackFN 添加上传成功后返回 {fileIds,fileList}
     * @return { function } delFilesBaBackFN 删除后返回 {fileIds,fileList}
     */
  },
  data() {
    return {
      userInfo: this.$store.getters.basicUserInfo,
      fileList: [],
      fileIds: [],
      upLoadLoading: false,
      showProgress: false,
      progressValue: 0
    }
  },
  computed: {
    layoutClass() {
      if (this.layout === 1) {
        return 'col-12'
      } else if (this.layout === 2) {
        return 'col-6'
      } else {
        return ''
      }
    }
  },
  methods: {
    /* 图标判断 start */
    isImage(file) {
      if (!file) {
        return false
      }
      return /\.jpeg$|\.jpg$|\.png$|\.gif$/i.test(file.name)
    },
    isFile(file) {
      if (!file) {
        return false
      }
      return !/\.jpeg$|\.jpg$|\.png$|\.gif$/i.test(file.name)
    },
    fileIcon(file) {
      if (!file) {
        return false
      }
      let icon = 'far fa-file'
 
      if (/\.zip$|\.tar$|\.tar\.gz$|\.rar$/i.test(file.name)) {
        icon = 'far fa-file-archive'
      }
      if (/\.mp3$|\.wma$|\.ogg$|\.flac$|\.aac$/i.test(file.name)) {
        icon = 'far fa-file-audio'
      }
      if (/\.avi$|\.flv$|\.wmv$|\.mov$|\.mp4$/i.test(file.name)) {
        icon = 'far fa-file-video'
      }
      if (/\.js$|\.es6$|\.ts$/i.test(file.name)) {
        icon = 'fab fa-js'
      }
      if (/\.doc$|\.docx$/i.test(file.name)) {
        icon = 'far fa-file-word'
      }
      if (/\.xls$|\.xlsx$/i.test(file.name)) {
        icon = 'far fa-file-excel'
      }
      if (/\.htm$|\.html$/i.test(file.name)) {
        icon = 'fab fa-html5'
      }
      if (/\.pdf$/i.test(file.name)) {
        icon = 'far fa-file-pdf'
      }
      if (/\.txt$/i.test(file.name)) {
        icon = 'far fa-file-alt'
      }
      if (/\.css$/i.test(file.name)) {
        icon = 'fab fa-css3'
      }
      return icon
    },
    /* 图标判断 end */
    islimitTypes(fileObj) {
      if (this.limitTypes === '') {
        return true
      }
      if (this.limitTypes.indexOf(fileObj.name.replace(/^.+\./, '')) === -1) {
        this.$toast({
          type: 'error',
          message: '上传类型错误!必须是' + this.limitTypes
        })
        return false
      }
      return true
    },
    islimitSize(fileObj) {
      if (this.limitSize === '') {
        return true
      }
      let size = 0
      if (this.limitSize.indexOf('G') !== -1) {
        size = this.limitSize.replace('G', '') * 1024 * 1024 * 1024
      } else if (this.limitSize.indexOf('M') !== -1) {
        size = this.limitSize.replace('M', '') * 1024 * 1024
      } else if (this.limitSize.indexOf('K') !== -1) {
        size = this.limitSize.replace('K', '') * 1024
      } else if (this.limitSize.indexOf('B') !== -1) {
        size = this.limitSize.replace('B', '')
      } else {
        size = this.limitSize
      }
      if (size < fileObj.size) {
        this.$toast({
          type: 'error',
          message: '上传大小错误!必须小于' + this.limitSize
        })
        return false
      }
      return true
    },
    // 查询附件列表
    async getFileList(fileIds) {
      this.$store.commit('HANDLE_LOADING_OPEN')
      let res = await findByIds({ fileIds })
      if ((res && res.length) || res.length === 0) {
        // this.fileList = [...this.fileList,...res]
        this.fileList = res
      }
      this.$store.commit('HANDLE_LOADING_CLOSE')
    },
    // 上传附件
    async handleUpLoad(e) {
      /* 拿到上传文件 */
      if (e.target.files.length === 0) {
        return false
      }
      let file = e.target.files[0]
      if (!this.islimitTypes(file)) {
        return false
      }
      if (!this.islimitSize(file)) {
        return false
      }
      /* 重置进度条 */
      this.showProgress = true
      this.progressValue = 0
      /* 开启上传按钮loding */
      this.upLoadLoading = true
 
      /* 创建FormData文件对象 */
      const fd = new FormData()
      const token = JSON.parse(
        sessionStorage.getItem('loginedInfo')
      ).access_token.split(' ')[1]
      fd.append('file', file)
      fd.append('fileSource', 'FDFS')
 
      try {
        let res = await axios({
          method: 'post',
          url: `data/api-f/files?access_token=${token}`,
          data: fd,
          onUploadProgress: progressEvent => {
            if (
              this.isShowProgress &&
              progressEvent.loaded &&
              progressEvent.total
            ) {
              this.progressValue =
                progressEvent.loaded / progressEvent.total * 100
            }
          }
        })
        if (res && !res.error && res.data) {
          this.$toast({
            type: 'success',
            message: '上传成功!'
          })
          this.fileIds = [...this.fileIds, res.data.id]
          this.fileList = [...this.fileList, res.data]
          /* 回调传值 */
          this.$emit('addFilesBaBackFN', {
            fileIds: this.fileIds,
            fileList: this.fileList
          })
        } else {
          this.$toast({
            type: 'error',
            message: '上传失败!' + res.message
          })
          this.progressValue = 0
          this.showProgress = false
        }
      } catch (error) {
        this.$toast({
          type: 'error',
          message: '上传失败!' + error.message
        })
        this.progressValue = 0
        this.showProgress = false
      }
      /* 结束上传按钮loding */
      this.upLoadLoading = false
    },
    // 删除附件
    handleDelFile(id) {
      // TODO
      this.fileList.map((iteam, index) => {
        if (iteam.id === id) {
          this.fileList.splice(index, 1)
        }
      })
      let fileIdsIndex = this.fileIds.indexOf(id)
      if (fileIdsIndex !== -1) {
        this.fileIds.splice(fileIdsIndex, 1)
      }
      /* 回调传值 */
      this.$emit('delFilesBaBackFN', {
        fileIds: this.fileIds,
        fileList: this.fileList
      })
    }
  },
  created() {},
  watch: {
    /* 监控初始化FileIds */
    initFileIds: {
      handler(newVal, oldVal) {
        if (this.refreshTimes === '' && newVal !== oldVal) {
          let fileIds = newVal ? newVal.split(',') : []
          this.fileIds = Array.from(new Set([...this.fileIds, ...fileIds]))
          if (newVal !== '') {
            this.getFileList(newVal)
          } else {
            this.fileList = []
            this.fileIds = ''
          }
        }
      },
      deep: true,
      immediate: true
    },
    refreshTimes: {
      handler(newVal, oldVal) {
        if (newVal !== oldVal) {
          this.fileList = []
          this.fileIds = ''
          if (this.initFileIds) {
            let fileIds = this.initFileIds ? this.initFileIds.split(',') : []
            this.fileIds = Array.from(new Set([...this.fileIds, ...fileIds]))
            this.getFileList(this.initFileIds)
          }
        }
      },
      deep: true
    },
    progressValue(newVal, oldVal) {
      if (newVal !== oldVal && newVal >= 100) {
        setTimeout(() => {
          this.showProgress = false
          this.progressValue = 0
        }, 1500)
      }
    }
  },
  components: {
    LaddaBtn
  }
}
</script>
 
<style lang="scss" >
.upload-img-icon {
  width: 60px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.upload-progress {
  width: 100%;
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 1;
  transition: all 0.5s;
}
.upload-content {
  position: relative;
  input[type='file'] {
    position: absolute;
    opacity: 0;
    width: 82px;
    height: 38px;
    left: 0;
  }
}
</style>