Blame view

src/components/Dropzone/index.vue 8.21 KB
d7d9c38c2   Adam   auto commit the c...
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
  <template>
    <div :id="id" :ref="id" :action="url" class="dropzone">
      <input type="file" name="file">
    </div>
  </template>
  
  <script>
  import Dropzone from 'dropzone'
  import 'dropzone/dist/dropzone.css'
  // import { getToken } from 'api/qiniu';
  
  Dropzone.autoDiscover = false
  
  export default {
    props: {
      id: {
        type: String,
        required: true
      },
      url: {
        type: String,
        required: true
      },
      clickable: {
        type: Boolean,
        default: true
      },
      defaultMsg: {
        type: String,
        default: '上传图片'
      },
      acceptedFiles: {
        type: String,
        default: ''
      },
      thumbnailHeight: {
        type: Number,
        default: 200
      },
      thumbnailWidth: {
        type: Number,
        default: 200
      },
      showRemoveLink: {
        type: Boolean,
        default: true
      },
      maxFilesize: {
        type: Number,
        default: 2
      },
      maxFiles: {
        type: Number,
        default: 3
      },
      autoProcessQueue: {
        type: Boolean,
        default: true
      },
      useCustomDropzoneOptions: {
        type: Boolean,
        default: false
      },
      defaultImg: {
        default: '',
        type: [String, Array]
      },
      couldPaste: {
        type: Boolean,
        default: false
      }
    },
    data() {
      return {
        dropzone: '',
        initOnce: true
      }
    },
    watch: {
      defaultImg(val) {
        if (val.length === 0) {
          this.initOnce = false
          return
        }
        if (!this.initOnce) return
        this.initImages(val)
        this.initOnce = false
      }
    },
    mounted() {
      const element = document.getElementById(this.id)
      const vm = this
      this.dropzone = new Dropzone(element, {
        clickable: this.clickable,
        thumbnailWidth: this.thumbnailWidth,
        thumbnailHeight: this.thumbnailHeight,
        maxFiles: this.maxFiles,
        maxFilesize: this.maxFilesize,
        dictRemoveFile: 'Remove',
        addRemoveLinks: this.showRemoveLink,
        acceptedFiles: this.acceptedFiles,
        autoProcessQueue: this.autoProcessQueue,
        dictDefaultMessage: '<i style="margin-top: 3em;display: inline-block" class="material-icons">' + this.defaultMsg + '</i><br>Drop files here to upload',
        dictMaxFilesExceeded: '只能一个图',
        previewTemplate: '<div class="dz-preview dz-file-preview">  <div class="dz-image" style="width:' + this.thumbnailWidth + 'px;height:' + this.thumbnailHeight + 'px" ><img style="width:' + this.thumbnailWidth + 'px;height:' + this.thumbnailHeight + 'px" data-dz-thumbnail /></div>  <div class="dz-details"><div class="dz-size"><span data-dz-size></span></div> <div class="dz-progress"><span class="dz-upload" data-dz-uploadprogress></span></div>  <div class="dz-error-message"><span data-dz-errormessage></span></div>  <div class="dz-success-mark"> <i class="material-icons">done</i> </div>  <div class="dz-error-mark"><i class="material-icons">error</i></div></div>',
        init() {
          const val = vm.defaultImg
          if (!val) return
          if (Array.isArray(val)) {
            if (val.length === 0) return
            val.map((v, i) => {
              const mockFile = { name: 'name' + i, size: 12345, url: v }
              this.options.addedfile.call(this, mockFile)
              this.options.thumbnail.call(this, mockFile, v)
              mockFile.previewElement.classList.add('dz-success')
              mockFile.previewElement.classList.add('dz-complete')
              vm.initOnce = false
              return true
            })
          } else {
            const mockFile = { name: 'name', size: 12345, url: val }
            this.options.addedfile.call(this, mockFile)
            this.options.thumbnail.call(this, mockFile, val)
            mockFile.previewElement.classList.add('dz-success')
            mockFile.previewElement.classList.add('dz-complete')
            vm.initOnce = false
          }
        },
        accept: (file, done) => {
          /* 七牛*/
          // const token = this.$store.getters.token;
          // getToken(token).then(response => {
          //   file.token = response.data.qiniu_token;
          //   file.key = response.data.qiniu_key;
          //   file.url = response.data.qiniu_url;
          //   done();
          // })
          done()
        },
        sending: (file, xhr, formData) => {
          // formData.append('token', file.token);
          // formData.append('key', file.key);
          vm.initOnce = false
        }
      })
  
      if (this.couldPaste) {
        document.addEventListener('paste', this.pasteImg)
      }
  
      this.dropzone.on('success', file => {
        vm.$emit('dropzone-success', file, vm.dropzone.element)
      })
      this.dropzone.on('addedfile', file => {
        vm.$emit('dropzone-fileAdded', file)
      })
      this.dropzone.on('removedfile', file => {
        vm.$emit('dropzone-removedFile', file)
      })
      this.dropzone.on('error', (file, error, xhr) => {
        vm.$emit('dropzone-error', file, error, xhr)
      })
      this.dropzone.on('successmultiple', (file, error, xhr) => {
        vm.$emit('dropzone-successmultiple', file, error, xhr)
      })
    },
    destroyed() {
      document.removeEventListener('paste', this.pasteImg)
      this.dropzone.destroy()
    },
    methods: {
      removeAllFiles() {
        this.dropzone.removeAllFiles(true)
      },
      processQueue() {
        this.dropzone.processQueue()
      },
      pasteImg(event) {
        const items = (event.clipboardData || event.originalEvent.clipboardData).items
        if (items[0].kind === 'file') {
          this.dropzone.addFile(items[0].getAsFile())
        }
      },
      initImages(val) {
        if (!val) return
        if (Array.isArray(val)) {
          val.map((v, i) => {
            const mockFile = { name: 'name' + i, size: 12345, url: v }
            this.dropzone.options.addedfile.call(this.dropzone, mockFile)
            this.dropzone.options.thumbnail.call(this.dropzone, mockFile, v)
            mockFile.previewElement.classList.add('dz-success')
            mockFile.previewElement.classList.add('dz-complete')
            return true
          })
        } else {
          const mockFile = { name: 'name', size: 12345, url: val }
          this.dropzone.options.addedfile.call(this.dropzone, mockFile)
          this.dropzone.options.thumbnail.call(this.dropzone, mockFile, val)
          mockFile.previewElement.classList.add('dz-success')
          mockFile.previewElement.classList.add('dz-complete')
        }
      }
  
    }
  }
  </script>
  
  <style scoped>
      .dropzone {
          border: 2px solid #E5E5E5;
          font-family: 'Roboto', sans-serif;
          color: #777;
          transition: background-color .2s linear;
          padding: 5px;
      }
  
      .dropzone:hover {
          background-color: #F6F6F6;
      }
  
      i {
          color: #CCC;
      }
  
      .dropzone .dz-image img {
          width: 100%;
          height: 100%;
      }
  
      .dropzone input[name='file'] {
          display: none;
      }
  
      .dropzone .dz-preview .dz-image {
          border-radius: 0px;
      }
  
      .dropzone .dz-preview:hover .dz-image img {
          transform: none;
          filter: none;
          width: 100%;
          height: 100%;
      }
  
      .dropzone .dz-preview .dz-details {
          bottom: 0px;
          top: 0px;
          color: white;
          background-color: rgba(33, 150, 243, 0.8);
          transition: opacity .2s linear;
          text-align: left;
      }
  
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
          background-color: transparent;
      }
  
      .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
          border: none;
      }
  
      .dropzone .dz-preview .dz-details .dz-filename:hover span {
          background-color: transparent;
          border: none;
      }
  
      .dropzone .dz-preview .dz-remove {
          position: absolute;
          z-index: 30;
          color: white;
          margin-left: 15px;
          padding: 10px;
          top: inherit;
          bottom: 15px;
          border: 2px white solid;
          text-decoration: none;
          text-transform: uppercase;
          font-size: 0.8rem;
          font-weight: 800;
          letter-spacing: 1.1px;
          opacity: 0;
      }
  
      .dropzone .dz-preview:hover .dz-remove {
          opacity: 1;
      }
  
      .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
          margin-left: -40px;
          margin-top: -50px;
      }
  
      .dropzone .dz-preview .dz-success-mark i, .dropzone .dz-preview .dz-error-mark i {
          color: white;
          font-size: 5rem;
      }
  </style>