-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdropzone.js
487 lines (371 loc) · 13.2 KB
/
dropzone.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
/**
* Dropzone init
*
* @author Ivan Milincic <kreativan@outlook.com>
* @copyright 2019 Kreativan
*
* @param {object} dropzoneVars - dropzone variables
* @param {object} dropzoneData - data we want to POST along with files
* @param {object} dropzoneText - text strings
*
*
*/
// console.log(dropzoneVars);
// console.log(dropzoneData);
Dropzone.autoDiscover = false;
var myDropzone = new Dropzone("#"+dropzoneVars.id, {
url: dropzoneVars.url,
method: "POST",
paramName: "dropzoneFiles", // default = file
autoProcessQueue : false,
acceptedFiles: dropzoneVars.acceptedFiles,
maxFiles: dropzoneVars.maxFiles, // default = 5
maxFilesize: dropzoneVars.maxFilesize, // MB default = 0.3
uploadMultiple: dropzoneVars.uploadMultiple,
parallelUploads: 100, // use it with uploadMultiple
createImageThumbnails: dropzoneVars.createImageThumbnails,
thumbnailWidth: dropzoneVars.thumbnailWidth,
thumbnailHeight: dropzoneVars.thumbnailHeight,
// addRemoveLinks: dropzoneVars.addRemoveLinks,
timeout: 180000,
// dictRemoveFileConfirmation: dropzoneVars.dictRemoveFileConfirmation, // ask before removing file
// Language Strings
dictFileTooBig: dropzoneText.max_size + " {{maxFilesize}}mb",
dictInvalidFileType: dropzoneText.file_type,
dictCancelUpload: dropzoneText.cancel,
dictRemoveFile: dropzoneText.remove,
dictMaxFilesExceeded: "{{maxFiles}} " + dropzoneText.max_files,
dictDefaultMessage: dropzoneText.message,
renameFile: function (file) {
const fileName = file.name;
let fileExt = "";
// use this to check if file ext is 3 or 4 chars
// eg: jpg or jpeg
let n = fileName.length - 5;
let getTheDot = fileName[n];
if(getTheDot == ".") {
fileExt = fileName.substr(fileName.length - 4);
} else {
fileExt = fileName.substr(fileName.length - 3);
}
// random date
let random = + new Date();
let newName = dropzoneVars.renameFilePrefix + "-" + random + "." + fileExt;
if(dropzoneVars.renameFile) return newName;
//console.log(newName);
},
});
myDropzone.on("addedfile", function(file) {
// console.log(file);
dropzoneRemoveButton(file, this);
});
myDropzone.on("error", function(file, response) {
console.log(response);
});
// Add more data to send along with the file as POST data. (optional)
myDropzone.on("sending", function(file, xhr, formData) {
formData.append('dropzoneAjax', '1');
// append form fields
dropzoneAppendFormFelds(formData);
// append custom data
for (let fieldName in dropzoneData) {
if (dropzoneData.hasOwnProperty(fieldName)) {
formData.append(fieldName, dropzoneData[fieldName]);
}
}
});
// Do something while processing is in progress
myDropzone.on("processingmultiple", function(file) {
document.getElementById(dropzoneVars.formID).classList.add("dropzone-processing");
document.getElementById(dropzoneVars.buttonID).setAttribute("disabled", "disabled");
});
// Do something while processing is complete
myDropzone.on("completemultiple", function(file) {
document.getElementById(dropzoneVars.formID).classList.remove("dropzone-processing");
document.getElementById(dropzoneVars.buttonID).removeAttribute("disabled");
});
// on success
myDropzone.on("successmultiple", function(file, response) {
// get response from successful ajax request
if (dropzoneVars.debug === true) console.log(response);
if (dropzoneVars.submitForm === true) {
// submit the form as normal
dropzoneFormSubmit();
} else if (response.status && response.message) {
Swal.fire({
title: response.status,
text: response.message,
type: response.status,
}).then((result) => {
if (dropzoneVars.redirect === true && response.status != "error") {
window.location.href = dropzoneVars.redirectUrl;
} else if (response.status != "error") {
dropzoneResetFields();
//this.removeAllFiles();
}
this.removeAllFiles();
});
}
});
/**
* Add existing images to the dropzone
* We got imaegs from dz variable we passed from php
* @param {object} dropzoneVars.my_files
*
*/
for(let i = 0; i < dropzoneVars.my_files.length; i++) {
let img = dropzoneVars.my_files[i];
//console.log(img);
// Create the mock file:
var mockFile = {name: img.name, size: img.size, url: img.url};
// Call the default addedfile event handler
myDropzone.emit("addedfile", mockFile);
// And optionally show the thumbnail of the file:
myDropzone.emit("thumbnail", mockFile, img.url);
// Make sure that there is no progress bar, etc...
myDropzone.emit("complete", mockFile);
// If you use the maxFiles option, make sure you adjust it to the
// correct amount:
var existingFileCount = 1; // The number of files already uploaded
myDropzone.options.maxFiles = myDropzone.options.maxFiles - existingFileCount;
}
/**
* Trigger on button click
* processingQueue and (optionaly) submit the form after sending files
* @param {string} dropzoneVars.buttonID
* @function dropzoneFormSubmit() - submits the form
* @function dropzoneFormValidate() - validates the form
* @function dropzoneCaptcha() - validate captcha
*
*/
function submitDropzone() {
let submitDropzone = (dropzoneVars.buttonID != "") ? document.getElementById(dropzoneVars.buttonID) : "";
if(submitDropzone) {
submitDropzone.addEventListener("click", function(e) {
// Make sure that the form isn't actually being sent.
e.preventDefault();
e.stopPropagation();
validateForm = dropzoneFormValidate();
captcha = dropzoneCaptcha();
honeypot = document.querySelector("input[name=dropzoneHoneypot]").value;
if(validateForm.status === true && !honeypot && captcha === true) {
if (myDropzone.files != "") {
//console.log(myDropzone.files);
myDropzone.processQueue();
} else {
dropzoneFormSubmit();
}
} else {
if (dropzoneVars.debug === true) console.log(validateForm);
Swal.fire({
title: dropzoneText.form_invalid,
text: dropzoneText.check_fields+" "+`(${validateForm.errors})`,
type: 'warning'
});
}
});
} else {
console.error("Submit button ID is missing or wrong");
}
//
// Additional buttons to submit the form, based on buttonSelector
//
let submitButtons = (dropzoneVars.buttonSelector) ? document.querySelectorAll(dropzoneVars.buttonSelector) : "";
if(submitButtons) {
submitButtons.forEach(elem => {
elem.addEventListener("click", function(e) {
e.preventDefault();
e.stopPropagation();
validateForm = dropzoneFormValidate();
captcha = dropzoneCaptcha();
honeypot = document.querySelector("input[name=dropzoneHoneypot]").value;
if(validateForm.status === true && !honeypot && captcha === true) {
if (myDropzone.files != "") {
//console.log(myDropzone.files);
myDropzone.processQueue();
} else {
dropzoneFormSubmit();
}
}
});
});
}
}
submitDropzone();
/* ======================================================================
Functions
====================================================================== */
/**
* Submit form
* based on the form css ID
* @param {string} dropzoneVars.formID
*
*/
function dropzoneFormSubmit() {
let form = (dropzoneVars.formID != "") ? document.getElementById(dropzoneVars.formID) : "";
if(form) {
var input = document.createElement("input");
input.setAttribute("type", "text");
input.setAttribute("name", "dropzoneSubmit");
input.setAttribute("value", "1");
input.setAttribute("hidden", "hidden");
form.appendChild(input);
form.submit();
} else {
console.error("Form ID is missing or wrong");
}
}
/**
* Reset form fields values
* use this after ajax form submit
* @param {string} dropzoneVars.formID
*
*/
function dropzoneResetFields() {
let id = "#" + dropzoneVars.formID;
let selector = `${id} input:not(.uk-hidden), ${id} textarea`;
let formFields = document.querySelectorAll(selector);
formFields.forEach(e => {
// do not include submitButton
if(e.id != dropzoneVars.buttonID) {
e.setAttribute("value", "");
}
});
}
/**
* Get all form fields
* and append them to form data
* @param {object} formData = new FormData();
*
*/
function dropzoneAppendFormFelds(formData) {
formData = (formData) ? formData : new FormData();
if(formData) {
let id = "#" + dropzoneVars.formID;
let selector = `${id} input:not(.uk-hidden), ${id} textarea, ${id} select, ${id} radio, ${id} checkbox`;
let formFields = document.querySelectorAll(selector);
formFields.forEach(e => {
// do not include submitButton
if(e.id != dropzoneVars.buttonID) {
//console.log(e.name + " = " + e.value);
formData.append(e.name, e.value);
}
});
}
}
/**
* Send file remove Request
* @param {object} file - dropzone file // requierd
* @param {object} _this - this // this dropzone instance
* @param {object} dropzoneData - object // custom data provided by php
*
*/
function dropzoneRemoveReq(file, _this) {
// create form data to send
var formData = new FormData();
formData.append('dropzoneRemove', '1');
formData.append('file_url', file.url);
formData.append('file_name', file.name);
formData.append('accepted', file.accepted);
formData.append('type', file.type);
// added custom data
for (let fieldName in dropzoneData) {
if (dropzoneData.hasOwnProperty(fieldName)) {
formData.append(fieldName, dropzoneData[fieldName]);
}
}
// use fetch to send post request
fetch(dropzoneVars.url, {
method: 'POST',
body: formData
})
.then(function(response) {
return response.json();
})
.then( function(response) {
if(dropzoneVars.debug === true) console.log(response);
if(response.status && response.message && response.status == "error" ) {
swal(response.status, response.message, response.status);
} else {
_this.removeFile(file);
}
});
}
/**
* Add custom file remove button
* so we can use confirm modal
* @param {object} file dropzone file // requierd
* @param {object} _this this // this dropzone instance
* @function dropzoneRemoveReq() // send the file remove request
*
*/
function dropzoneRemoveButton(file, _this) {
var removeButton = Dropzone.createElement("<button class='dropzone-remove'><i class='fas fa-times'></i></button>");
//var _this = this;
// Listen to the click event
removeButton.addEventListener("click", function(e) {
// Make sure the button click doesn't submit the form:
e.preventDefault();
e.stopPropagation();
// Remove the file preview.
//_this.removeFile(file);
//console.log(file.name);
Swal.fire({
title: dropzoneText.are_you_sure,
type: "question",
showCancelButton: true,
}).then((result) => {
if (result.value) {
_this.removeFile(file);
dropzoneRemoveReq(file, _this);
}
});
});
// Add the button to the file preview element.
file.previewElement.appendChild(removeButton);
}
/**
* Validate Form
* @var dropzoneVars.formID
* @return object response object
* @example dropzoneFormValidate().status;
*/
function dropzoneFormValidate() {
let errors = "";
let formID = "#"+dropzoneVars.formID;
let selector = `${formID} input:not(.uk-hidden), ${formID} textarea, ${formID} select, ${formID} radio, ${formID} checkbox`;
let fields = document.querySelectorAll(selector);
fields.forEach(e => {
if(e.checkValidity() === false) {
let name = e.getAttribute("name");
errors += (errors == "") ? name : "," + name;
}
});
var validate = (errors != "") ? false : true;
var response = {
"status": validate,
"errors": errors
}
// console.log(fields)
// console.log(response)
return response;
}
/**
* Validate numb Captcha
* @return bool
*
*/
function dropzoneCaptcha() {
let isCaptchaOn = document.getElementById("numb-captcha-answer");
if(isCaptchaOn) {
let answer = document.getElementById("numb-captcha-answer").value;
let question = document.getElementById("numb-captcha-q").value;
if(answer === question) {
return true;
} else {
return false;
}
} else {
return true;
}
}