-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathHHuploadify.js
635 lines (568 loc) · 17.2 KB
/
HHuploadify.js
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
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
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
export default class HHuploadify {
constructor(options = {}) {
let defaults = {
container: '', // i.e. #upload
// upload options
url: '', // upload to which server url
method: 'post', // http request type: post/put
field: 'file', // upload file name field, php $_FILES['file']
data: null, // append data in your request like: {key1:value1,key2:value2}
// view options
fileTypeExts: 'jpg,jpeg,png,gif,JPG,PNG,GIF,JPEG', // file can be uploaded exts like: 'jpg,png'
fileSizeLimit: 2048, // max upload file size: KB
multiple: true, // be or not be able to choose multi files
single: false, // force to upload only one item, even through multiple is true
auto: false, // auto begin to upload after select local files
chooseText: 'Choose', // words on choose button
uploadText: 'Upload', // words on upload button, if auto is true, upload button will not show
template: `
<span id="uploadify-{queueId}-{fileId}" class="uploadify-item">
<span class="uploadify-item-container">
<span class="uploadify-item-progress"></span>
<a href="javascript:void(0);" class="uploadify-item-delete" data-fileid="{fileId}">×</a>
</span>
</span>
`,
files: null, // array, if files is not empty, list will be rendered when plugin loaded, see demo
showUploadProcess: 'size', // bar|percent|size, when uploading, which one to show the process of uploading status
showPreview: 1, // preview file, 0: close; 1: only preview local origin file; 2: preview file on server by result 'url' fields after complate uploading
showPreviewField: 'url', // when showPreview is 2, which field will be used as image url from server side in response json
// envents callback functions
onInit: null, // when plugin is ready
onSelect: null, // when select a file
onSelectError: null,
onUploadStart: null, // when a file upload start
onUploadSuccess: null,// when a file upload success
onUploadError: null, // when a file upload fail
onUploadComplete: null, // when a file upload finished, success or failure
onUploadCancel: null, // when cancel a file to upload
onQueueComplete: null, // when all of the files in a queue complate (success or error), may you have more than one queue
onRemoved: null, // when remove a file in the list
onDestroy: null, // when all resource removed
onReset: null, // when after reset done
}
this.options = this.merge(defaults, options)
this.id = Date.now()
this.files = []
let appVersion = window.navigator.appVersion
this.isIE = appVersion.indexOf('MSIE') !== -1
this.isIE9 = this.isIE && appVersion.indexOf('MSIE 9') !== -1
this.isOldIE = this.isIE && appVersion.indexOf('MSIE 10') === -1 && appVersion.indexOf('MSIE 9') === -1
// force to choose only one file
if(this.options.single) {
this.options.multiple = false
}
if (this.isIE9) {
this.options.multiple = false
}
this.init()
this.events()
}
init() {
let id = this.id
let options = this.options
let chooseHTML = `
<a id="uploadify-choose-button-${id}"
href="javascript:void(0)"
class="uploadify-choose-button"
>
<span>${options.chooseText}</span>
</a>
`
let uploadHTML = `
<a id="uploadify-upload-button-${id}"
href="javascript:void(0)"
class="uploadify-upload-button hidden"
>
<span>${options.uploadText}</span>
</a>
`
let errorHTML = `
<span id="uploadify-error-${id}" class="uploadify-error hidden"><span class="uploadify-error-container"><span class="uploadify-error-msg"></span></span></span>
`
let queueHTML = `
<span id="uploadify-queue-${id}" class="uploadify-queue"></span>
`
let sectionHTML = `
<span class="uploadify">
${queueHTML}
${chooseHTML}
${uploadHTML}
${errorHTML}
</span>
`
this.container = document.querySelector(options.container)
let container = this.container
container.innerHTML = sectionHTML
this.queue = container.querySelector('.uploadify-queue')
this.chooseButton = container.querySelector('.uploadify-choose-button')
this.uploadButton = container.querySelector('.uploadify-upload-button')
this.resetInput()
if (options.auto) {
this.hide(this.uploadButton)
}
this.invoke(options.onInit)
if (options.files instanceof Array && options.files.length > 0) {
this.reset(options.files)
}
if (this.isOldIE) {
this.showError('Browser Not Support!', true)
}
}
resetInput() {
let id = this.id
let options = this.options
let inputHTML = `
<input id="uploadify-input-${id}"
class="uploadify-input"
style="display:none"
type="file"
name="uploadifyfile[]"
${options.multiple ? 'multiple' : ''}
accept="${options.fileTypeExts}"
>
`
let el = document.createElement('div')
el.innerHTML = inputHTML
let input = el.children[0]
let wrapper = this.container.children[0]
input.parentNode.removeChild(input)
wrapper.appendChild(input)
input.onchange = () => this.onSelectFiles()
this.input = input
}
events() {
this.uploadButton.onclick = () => this.onClickUpload()
this.chooseButton.onclick = () => this.input.click()
}
onSelectFiles() {
let options = this.options
// if not multiple and there are some files are waiting for upload
if (!options.multiple && this.files.filter(item => item.status < 2).length > 0) {
this.showError('Waiting upload!')
return
}
let files = this.getSelectedFiles()
let count = this.getExistsFilesCount()
this.foreach(files, file => {
file.index = ++count
file.status = 0 // not begin to upload
})
this.invoke(options.onSelect, files, this.files)
let existsCount = this.files.length
this.foreach(files, file => {
this.appendFile(file)
if (options.auto) {
this.uploadFile(file)
}
})
let finalCount = this.files.length
if(options.single) {
this.hide(this.chooseButton)
}
if (!options.auto && finalCount > existsCount) {
this.fadeIn(this.uploadButton)
}
}
getImageFakeSize(file) {
let el = document.createElement('img')
el.style.postion = 'fixed'
el.style.top = -1000000 + 'px'
el.src = file
document.body.appendChild(el)
let w = el.clientWidth
let h = el.clientHeight
document.body.removeChild(el)
return w * h
}
getFileName(file) {
let eos = file.indexOf(':\\') > -1 ? '\\' : '/'
return file.split(eos).pop()
}
getSelectedFiles() {
let inputValue = this.input.value
let files = this.isIE9 ? [{
path: inputValue,
name: this.getFileName(inputValue),
size: this.getImageFakeSize(inputValue),
}] : this.input.files
let options = this.options
let arr = []
let typeArray = options.fileTypeExts.split(',')
this.foreach(files, file => {
if (typeArray.indexOf(file.name.split('.').pop()) === -1) {
this.showError('Type Error!')
this.invoke(options.onSelectError, 1, file)
console.error(`${file.name}'s file type is not allowed!`)
}
else if (parseInt(this.formatFileSize(file.size, true)) > options.fileSizeLimit) {
this.showError('Size Limit!')
this.invoke(options.onSelectError, 2, file)
console.error(`${file.name}'s file size is over limited!`)
}
else if (this.isFileExists(file)) {
this.showError('File(s) Exists!')
let existsFile = this.isFileExists(file)
let element = existsFile.element
this.blink(element)
this.invoke(options.onSelectError, 3, file)
console.error(`${file.name} is in selected list.`)
}
else {
arr.push(file)
}
})
return arr
}
isFileExists(file) {
let flag = false
this.foreach(this.files, (f, i) => {
if (f.name === file.name && f.size === file.size) {
flag = f
}
})
return flag
}
getExistsFilesCount() {
return this.files.length
}
formatFileSize(size, withKB) {
if (size > 1024 * 1024 && !withKB) {
size = (Math.round(size * 100 / (1024 * 1024)) / 100).toString() + 'MB'
}
else{
size = (Math.round(size * 100 / 1024) / 100).toString() + 'KB'
}
return size
}
getFileByIndex(index){
let files = this.files
for (var i = 0, len = files.length; i < len; i++) {
if (files[i].index == index) {
return files[i]
}
}
return null
}
appendFile(file) {
let src
if (this.options.showPreview) {
if (typeof window.URL !== 'undefined') {
src = window.URL.createObjectURL(file)
}
else {
src = 'file:///' + file.path.replace(/\\/g, '/')
}
}
let template = this.options.template
let html = template.replace(/\{queueId}/g, this.id).replace(/\{fileId}/g, file.index)
let el = document.createElement('div')
el.innerHTML = html
let element = el.children[0]
if (src) {
element.style.backgroundImage = `url(${src})`
element.style.backgroundSize = 'cover'
}
this.queue.appendChild(element)
file.element = element
file.element.querySelector('.uploadify-item-delete').onclick = e => {
this.onClickDelete(element, e.target)
}
this.files.push(file)
}
uploadFile(file) {
this.isIE9 ? this.uploadFileByIFrame(file) : this.uploadFileByXHR(file)
this.resetInput()
}
uploadFileByIFrame(file) {
if (file.status !== 0) {
return
}
let id = this.id
let options = this.options
let f = document.createElement('div')
f.style.position = 'absolute'
f.style.top = '-1000px'
f.style.left = '-1000px'
f.style.height = '1px'
f.style.overflow = 'auto'
f.innerHTML = `
<form action="${options.url}" method="${options.method}" target="upload-iframe-${id}-${file.index}" enctype="multipart/form-data">
<button type="submit"></button>
</form>
<iframe name="upload-iframe-${id}-${file.index}"></iframe>
`
f.querySelector('form').appendChild(this.input)
let iframe = f.querySelector('iframe')
let iframeOnload = (isTimeout) => {
if (file.status !== 1) {
return
}
if (isTimeout === 'timeout') {
file.status = 4
this.invoke(options.onUploadError, file, 'timeout')
file.element.className += ' error'
}
else {
file.status = 2
file.element.querySelector('.uploadify-item-container').removeChild(file.element.querySelector('.uploadify-item-progress'))
file.element.className += ' success'
let notify = () => {
let responseDoc = iframe.contentDocument || iframe.contentWindow.document
let responseText = responseDoc.body.children.length && responseDoc.body.children[0].innerText
if (responseText) {
this.invoke(options.onUploadSuccess, file, responseText)
if (options.showPreview > 1) {
let data = JSON.parse(responseText)
if (data && data[options.showPreviewField]) {
file.element.style.backgroundImage = `url(${data[options.showPreviewField]})`
}
}
}
return responseText
}
let count = 1
let timer = setInterval(() => {
let responseText = notify()
if (responseText || count === 10) {
clearInterval(timer)
}
count ++
}, 500)
}
this.invoke(options.onUploadComplete)
if (this.files.filter(file => file.status < 2).length === 0) {
this.invoke(options.onQueueComplete)
}
}
if (window.addEventListener) {
iframe.addEventListener('load', iframeOnload, false)
}
else {
iframe.attachEvent('onload', iframeOnload)
}
document.body.appendChild(f)
f.querySelector('button').click()
file.status = 1
file.iframe = iframe.parentNode
this.invoke(options.onUploadStart, file)
}
uploadFileByXHR(file) {
if (file.status !== 0) {
return
}
let options = this.options
let xhr = new XMLHttpRequest()
if (xhr.upload) {
xhr.upload.onprogress = e => {
this.onProgress(file, e.loaded, e.total)
}
}
xhr.onreadystatechange = e => {
if (file.status !== 1) {
return
}
if (xhr.readyState == 4) {
if (xhr.status == 200) {
file.status = 2
this.invoke(options.onUploadSuccess, file, xhr.responseText)
file.element.querySelector('.uploadify-item-container').removeChild(file.element.querySelector('.uploadify-item-progress'))
file.element.className += ' success'
if (options.showPreview > 1) {
let data = JSON.parse(xhr.responseText)
if (data && data[options.showPreviewField]) {
file.element.style.backgroundImage = `url(${data[options.showPreviewField]})`
}
}
}
else {
file.status = 3
this.invoke(options.onUploadError, file, xhr.responseText)
file.element.className += ' error'
}
this.invoke(options.onUploadComplete)
if (this.files.filter(file => file.status < 2).length === 0) {
this.invoke(options.onQueueComplete)
}
}
}
xhr.open(options.method, options.url, true)
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest")
let fd
if (typeof FormData === 'undefined') {
fd = []
fd.push(options.field, file)
}
else {
fd = new FormData()
fd.append(options.field, file)
}
let data = options.data
if (data) {
for (let key in data) {
fd.append(key, data[key])
}
}
xhr.send(fd)
file.status = 1
file.xhr = xhr
this.invoke(options.onUploadStart, file)
}
onProgress(file, loaded, total) {
let percent = (loaded / total * 100).toFixed(2) +'%'
let processEl = file.element.querySelector('.uploadify-item-progress')
let html = ''
switch (this.options.showUploadProcess) {
case 'bar':
html = `
<span class="uploadify-progress-bar">
<span class="uploadify-progress-bar-inner" style="width:${percent}"></span>
</span>
`
break
case 'percent':
html = `
<span class="uploadify-progress-percent">${percent}</span>
`
break
case 'size':
html = `
<span class="uploadify-progress-size">${this.formatFileSize(loaded)} / ${this.formatFileSize(total)}</span>
`
break
default:
html = ''
}
processEl.innerHTML = html
}
onClickUpload() {
this.foreach(this.files, file => this.uploadFile(file))
this.fadeOut(this.uploadButton)
this.resetInput()
}
onClickDelete(element, target) {
let fileid = target.getAttribute('data-fileid')
let file = this.getFileByIndex(fileid)
if (file.xhr) {
file.xhr.abort()
this.invoke(this.options.onUploadCancel, file)
}
if (file.iframe) {
document.body.removeChild(file.iframe)
this.invoke(this.options.onUploadCancel, file)
}
this.queue.removeChild(element)
this.files.splice(this.files.indexOf(file), 1)
this.resetInput()
this.invoke(this.options.onRemoved, file)
if (this.files.length === 0) {
this.fadeOut(this.uploadButton)
}
if (this.options.single) {
this.show(this.chooseButton)
}
}
reset(files) {
let template = this.options.template
let id = this.idea
this.queue.innerHTML = ''
this.foreach(files, (file, index) => {
let tpl = template.replace(/\{queueId}/g, this.id).replace(/\{fileId}/g, index + 1)
let el = document.createElement('div')
el.innerHTML = tpl
let element = el.children[0]
element.className += ' success'
element.style.backgroundImage = `url(${file.path})`
element.style.backgroundSize = 'cover'
this.queue.appendChild(element)
file.element = element
file.element.querySelector('.uploadify-item-delete').onclick = e => {
this.onClickDelete(element, e.target)
}
file.index = index + 1
file.status = 2
file.name = file.name || this.getFileName(file.path)
file.size = file.size || this.getImageFakeSize(file.path)
this.files.push(file)
})
this.invoke(this.options.onReset)
}
showError(msg, notDisappear = false) {
let errorEl = this.container.querySelector('.uploadify-error')
errorEl.querySelector('.uploadify-error-msg').innerText = msg
this.fadeIn(errorEl)
if (!notDisappear) {
setTimeout(() => this.fadeOut(errorEl), 1500)
}
}
// =============== functions ================
invoke(factory, ...args) {
if (typeof factory === 'function') {
factory.apply(this, args)
}
}
hide(element) {
let className = element.className
if (className.indexOf('hidden') === -1) {
element.className += ' hidden'
}
}
show(element) {
element.className = element.className.replace('hidden', '')
}
fadeOut(element) {
let className = element.className
if (className.indexOf('hidden') > -1) {
return
}
element.className += ' fade fadeIn'
element.className = element.className.replace('fadeIn', 'fadeOut')
setTimeout(() => element.className = className + ' hidden', 500)
}
fadeIn(element) {
let className = element.className
if (className.indexOf('hidden') === -1) {
return
}
if (className.indexOf('fadeIn') > -1) {
return
}
element.className = className.replace('hidden', 'fade fadeOut')
setTimeout(() => element.className = element.className.replace('fadeOut', 'fadeIn'), 0)
setTimeout(() => element.className = className.replace('hidden', ''), 500)
}
blink(element) {
let className = element.className
if (className.indexOf('hidden') > -1) {
return
}
if (className.indexOf('fade') > -1) {
return
}
let newClassName = className + ' blink'
let count = 4
let timer = setInterval(() => {
element.className = newClassName + ' fade60'
setTimeout(() => element.className = newClassName, 100)
count --
if (count <= 0) {
clearInterval(timer)
element.className = className
}
}, 200)
}
foreach(arr, callback) {
for (let i = 0, len = arr.length; i < len; i ++) {
if (callback(arr[i], i, arr) === false) return
}
}
merge(obj1, obj2) {
for (let key in obj2) {
if (obj2.hasOwnProperty(key)) {
let value = obj2[key]
obj1[key] = value
}
}
return obj1
}
}