-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathHHuploadify.dragable.js
43 lines (37 loc) · 1.08 KB
/
HHuploadify.dragable.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
import HHuploadify from './HHuploadify'
export default class extends HHuploadify {
constructor(options) {
super(options)
let defaults = {
dragable: true,
}
options = this.options = this.merge(defaults, this.options)
if (options.ingle) {
options.dragable = false
}
let onQueueComplete = options.onQueueComplete
options.onQueueComplete = () => {
if (typeof onQueueComplete === 'function') {
onQueueComplete()
}
if (options.dragable) {
let $queue = $(options.container).find('.uploadify-queue')
$queue.find('.uploadify-item').addClass('dragable')
$queue.dragsort({
dragSelector: '.uploadify-item',
placeHolderTemplate: '<span class="uploadify-item drag-placeholder"></span>',
dragBetween: true,
dragEnd: () => {
this.invoke(options.onDragEnd)
},
})
}
}
}
onSelectFiles() {
super.onSelectFiles()
if (this.options.dragable) {
$(this.options.container).find('.uploadify-queue').dragsort("destroy")
}
}
}