-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathuploader.ts
4389 lines (4176 loc) · 182 KB
/
uploader.ts
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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable @typescript-eslint/no-explicit-any */
import { Component, Property, Event, EmitType, EventHandler, L10n, compile, isNullOrUndefined, SanitizeHtmlHelper} from '@syncfusion/ej2-base';
import { NotifyPropertyChanges, INotifyPropertyChanged, detach, append, Animation } from '@syncfusion/ej2-base';
import { addClass, removeClass, KeyboardEvents, KeyboardEventArgs, setValue, getValue, ChildProperty } from '@syncfusion/ej2-base';
import { Collection, Complex, Browser, Ajax, BeforeSendEventArgs, getUniqueID, closest, remove } from '@syncfusion/ej2-base';
import { createSpinner, showSpinner, hideSpinner } from '@syncfusion/ej2-popups';
import { UploaderModel, AsyncSettingsModel, ButtonsPropsModel, FilesPropModel } from './uploader-model';
import { select, selectAll } from '@syncfusion/ej2-base';
const CONTROL_WRAPPER: string = 'e-upload e-control-wrapper';
const INPUT_WRAPPER: string = 'e-file-select';
const DROP_AREA: string = 'e-file-drop';
const DROP_WRAPPER: string = 'e-file-select-wrap';
const LIST_PARENT: string = 'e-upload-files';
const FILE: string = 'e-upload-file-list';
const STATUS: string = 'e-file-status';
const ACTION_BUTTONS: string = 'e-upload-actions';
const UPLOAD_BUTTONS: string = 'e-file-upload-btn e-css e-btn e-flat e-primary';
const CLEAR_BUTTONS: string = 'e-file-clear-btn e-css e-btn e-flat';
const FILE_NAME: string = 'e-file-name';
const FILE_TYPE: string = 'e-file-type';
const FILE_SIZE: string = 'e-file-size';
const REMOVE_ICON: string = 'e-file-remove-btn';
const DELETE_ICON: string = 'e-file-delete-btn';
const SPINNER_PANE: string = 'e-spinner-pane';
const ABORT_ICON: string = 'e-file-abort-btn';
const RETRY_ICON: string = 'e-file-reload-btn';
const DRAG_HOVER: string = 'e-upload-drag-hover';
const PROGRESS_WRAPPER: string = 'e-upload-progress-wrap';
const PROGRESSBAR: string = 'e-upload-progress-bar';
const PROGRESSBAR_TEXT: string = 'e-progress-bar-text';
const UPLOAD_INPROGRESS: string = 'e-upload-progress';
const UPLOAD_SUCCESS: string = 'e-upload-success';
const UPLOAD_FAILED: string = 'e-upload-fails';
const TEXT_CONTAINER: string = 'e-file-container';
const VALIDATION_FAILS: string = 'e-validation-fails';
const RTL: string = 'e-rtl';
const DISABLED : string = 'e-disabled';
const RTL_CONTAINER : string = 'e-rtl-container';
const ICON_FOCUSED : string = 'e-clear-icon-focus';
const PROGRESS_INNER_WRAPPER: string = 'e-progress-inner-wrap';
const PAUSE_UPLOAD: string = 'e-file-pause-btn';
const RESUME_UPLOAD: string = 'e-file-play-btn';
const RESTRICT_RETRY: string = 'e-restrict-retry';
const wrapperAttr: string[] = ['title', 'style', 'class'];
const FORM_UPLOAD: string = 'e-form-upload';
const HIDDEN_INPUT: string = 'e-hidden-file-input';
const INVALID_FILE: string = 'e-file-invalid';
const INFORMATION: string = 'e-file-information';
export type DropEffect = 'Copy' | 'Move' | 'Link' | 'None'| 'Default';
export class FilesProp extends ChildProperty<FilesProp> {
/**
* Specifies the name of the file
*
* @default ''
*/
@Property('')
public name: string;
/**
* Specifies the size of the file
*
* @default null
*/
@Property(null)
public size: number;
/**
* Specifies the type of the file
*
* @default ''
*/
@Property('')
public type: string;
}
export class ButtonsProps extends ChildProperty<ButtonsProps> {
/**
* Specifies the text or html content to browse button
*
* @default 'Browse...'
*/
@Property('Browse...')
public browse: string | HTMLElement;
/**
* Specifies the text or html content to upload button
*
* @default 'Upload'
*/
@Property('Upload')
public upload: string | HTMLElement;
/**
* Specifies the text or html content to clear button
*
* @default 'Clear'
*/
@Property('Clear')
public clear: string | HTMLElement;
}
export class AsyncSettings extends ChildProperty<AsyncSettings> {
/**
* Specifies the URL of save action that will receive the upload files and save in the server.
* The save action type must be POST request and define the argument as same input name used to render the component.
* The upload operations could not perform without this property.
*
* @default ''
*/
@Property('')
public saveUrl: string;
/**
* Specifies the URL of remove action that receives the file information and handle the remove operation in server.
* The remove action type must be POST request and define “removeFileNames” attribute to get file information that will be removed.
* This property is optional.
*
* @default ''
*/
@Property('')
public removeUrl: string;
/**
* Specifies the chunk size to split the large file into chunks, and upload it to the server in a sequential order.
* If the chunk size property has value, the uploader enables the chunk upload by default.
* It must be specified in bytes value.
*
* > For more information, refer to the [chunk upload](../../uploader/chunk-upload/) section from the documentation.
*
* @default 0
*/
@Property(0)
public chunkSize: number;
/**
* Specifies the number of retries that the uploader can perform on the file failed to upload.
* By default, the uploader set 3 as maximum retries. This property must be specified to prevent infinity looping.
*
* @default 3
*/
@Property(3)
public retryCount: number;
/**
* Specifies the delay time in milliseconds that the automatic retry happens after the delay.
*
* @default 500
*/
@Property(500)
public retryAfterDelay: number;
}
export interface FileInfo {
/**
* Returns the upload file name.
*/
name: string
/**
* Returns the details about upload file.
*
*/
rawFile: string | Blob
/**
* Returns the size of file in bytes.
*/
size: number
/**
* Returns the status of the file.
*/
status: string
/**
* Returns the MIME type of file as a string. Returns empty string if the file’s type is not determined.
*/
type: string
/**
* Returns the list of validation errors (if any).
*/
validationMessages: ValidationMessages
/**
* Returns the current state of the file such as Failed, Canceled, Selected, Uploaded, or Uploading.
*/
statusCode: string
/**
* Returns where the file selected from, to upload.
*/
fileSource?: string
/**
* Returns the respective file list item.
*/
list ?: HTMLElement
/**
* Returns the input element mapped with file list item.
*/
input ?: HTMLInputElement
/**
* Returns the unique upload file name ID.
*/
id?: string
}
export interface MetaData {
chunkIndex: number
blob: Blob | string
file: FileInfo
start: number
end: number
retryCount: number
request: Ajax
}
export interface ValidationMessages {
/**
* Returns the minimum file size validation message, if selected file size is less than specified minFileSize property.
*/
minSize? : string
/**
* Returns the maximum file size validation message, if selected file size is less than specified maxFileSize property.
*/
maxSize? : string
}
export interface SelectedEventArgs {
/**
* Returns the original event arguments.
*/
event: MouseEvent | TouchEvent | DragEvent | ClipboardEvent
/**
* Defines whether the current action can be prevented.
*/
cancel: boolean
/**
* Returns the list of selected files.
*/
filesData: FileInfo[]
/**
* Determines whether the file list generates based on the modified data.
*/
isModified: boolean
/**
* Specifies the modified files data to generate the file items. The argument depends on `isModified` argument.
*/
modifiedFilesData: FileInfo[]
/**
* Specifies the step value to the progress bar.
*/
progressInterval: string
/**
* Specifies whether the file selection has been canceled
*/
isCanceled?: boolean
/**
* Set the current request header to the XMLHttpRequest instance.
*
*/
currentRequest?: { [key: string]: string }[]
/**
* Defines the additional data in key and value pair format that will be submitted to the upload action.
*/
customFormData: { [key: string]: Object }[]
}
export interface BeforeRemoveEventArgs {
/**
* Defines whether the current action can be prevented.
*/
cancel: boolean
/**
* Defines the additional data with key and value pair format that will be submitted to the remove action.
*
*/
customFormData: { [key: string]: Object }[]
/**
* Returns the XMLHttpRequest instance that is associated with remove action.
*
*/
currentRequest?: { [key: string]: string }[]
}
export interface RemovingEventArgs {
/**
* Defines whether the current action can be prevented.
*/
cancel: boolean
/**
* Defines the additional data with key and value pair format that will be submitted to the remove action.
*
*/
customFormData: { [key: string]: Object }[]
/**
* Returns the original event arguments.
*/
event: MouseEvent | TouchEvent | KeyboardEventArgs
/**
* Returns the list of files’ details that will be removed.
*/
filesData: FileInfo[]
/**
* Returns the XMLHttpRequest instance that is associated with remove action.
*
*/
currentRequest?: XMLHttpRequest
/**
* Defines whether the selected raw file send to server remove action.
* Set true to send raw file.
* Set false to send file name only.
*/
postRawFile?: boolean
}
export interface ClearingEventArgs {
/**
* Defines whether the current action can be prevented.
*/
cancel: boolean
/**
* Returns the list of files that will be cleared from the FileList.
*/
filesData: FileInfo[]
}
export interface BeforeUploadEventArgs {
/**
* Defines whether the current action can be prevented.
*/
cancel: boolean
/**
* Defines the additional data in key and value pair format that will be submitted to the upload action.
*
*/
customFormData: { [key: string]: Object }[]
/**
* Returns the XMLHttpRequest instance that is associated with upload action.
*
*/
currentRequest?: { [key: string]: string }[]
}
export interface UploadingEventArgs {
/**
* Returns the list of files that will be uploaded.
*/
fileData: FileInfo
/**
* Defines the additional data in key and value pair format that will be submitted to the upload action.
*
* @deprecated
*/
customFormData: { [key: string]: Object }[]
/**
* Defines whether the current action can be prevented.
*/
cancel: boolean
/**
* Returns the chunk size in bytes if the chunk upload is enabled.
*/
chunkSize?: number
/**
* Returns the index of current chunk if the chunk upload is enabled.
*/
currentChunkIndex?: number
/**
* Returns the XMLHttpRequest instance that is associated with upload action.
*
* @deprecated
*/
currentRequest?: XMLHttpRequest
}
export interface ProgressEventArgs {
/**
* Returns the original event arguments.
*/
e?: object
/**
* Returns the details about upload file.
*/
file?: FileInfo
/**
* Returns the upload event operation.
*/
operation?: string
}
export interface UploadChangeEventArgs {
/**
* Returns the list of files that will be cleared from the FileList.
*
*/
files?: FileInfo[]
}
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface FailureEventArgs extends SuccessEventArgs { }
export interface SuccessEventArgs {
/**
* Returns the original event arguments.
*/
e?: object
/**
* Returns the details about upload file.
*/
file?: FileInfo
/**
* Returns the upload status.
*/
statusText?: string
/**
* Returns the upload event operation.
*/
operation: string
/**
* Returns the upload event operation.
*/
response?: ResponseEventArgs
/**
* Returns the upload chunk index.
*/
chunkIndex?: number
/**
* Returns the upload chunk size.
*/
chunkSize?: number
/**
* Returns the total chunk size.
*/
totalChunk?: number
/**
* Returns the original event arguments.
*/
event?: object
}
export interface ResponseEventArgs {
headers?: string
readyState?: object
statusCode?: object
statusText?: string
withCredentials?: boolean
}
export interface CancelEventArgs {
/**
* Defines whether the current action can be prevented.
*/
cancel: boolean
/**
* Returns the original event arguments.
*/
event: ProgressEventInit
/**
* Returns the file details that will be canceled.
*/
fileData: FileInfo
/**
* Defines the additional data in key and value pair format that will be submitted when the upload action is canceled.
*
*/
customFormData: { [key: string]: Object }[]
/**
* Defines the additional data in key and value pair format that will be submitted on the header when the upload action is canceled.
*
*/
currentRequest?: { [key: string]: string }[]
}
export interface PauseResumeEventArgs {
/**
* Returns the original event arguments.
*/
event: Event
/**
* Returns the file data that is Paused or Resumed.
*/
file: FileInfo
/**
* Returns the total number of chunks.
*/
chunkCount: number
/**
* Returns the index of chunk that is Paused or Resumed.
*/
chunkIndex: number
/**
* Returns the chunk size value in bytes.
*/
chunkSize: number
}
export interface ActionCompleteEventArgs {
/**
* Return the selected file details.
*/
fileData: FileInfo[]
}
export interface RenderingEventArgs {
/**
* Return the current file item element.
*/
element: HTMLElement
/**
* Return the current rendering file item data as File object.
*/
fileInfo: FileInfo
/**
* Return the index of the file item in the file list.
*/
index: number
/**
* Return whether the file is preloaded
*/
isPreload: boolean
}
export interface FileListRenderingEventArgs {
/**
* Return the current file item element.
*/
element: HTMLElement
/**
* Return the current rendering file item data as File object.
*/
fileInfo: FileInfo
/**
* Return the index of the file item in the file list.
*/
index: number
/**
* Return whether the file is preloaded
*/
isPreload: boolean
}
interface InitialAttr {
accept: string
multiple: boolean
disabled: boolean
}
/**
* The uploader component allows to upload images, documents, and other files from local to server.
* ```html
* <input type='file' name='images[]' id='upload'/>
* ```
* ```typescript
* <script>
* var uploadObj = new Uploader();
* uploadObj.appendTo('#upload');
* </script>
* ```
*/
@NotifyPropertyChanges
export class Uploader extends Component<HTMLInputElement> implements INotifyPropertyChanged {
private initialAttr: InitialAttr = { accept: null, multiple: false, disabled: false };
private uploadWrapper: HTMLElement;
private browseButton: HTMLElement;
private listParent: HTMLElement;
private sortFilesList: FileList;
private actionButtons: HTMLElement;
private uploadButton: HTMLElement;
private clearButton: HTMLElement;
private pauseButton: HTMLElement;
private formElement: HTMLElement;
private dropAreaWrapper: HTMLElement;
private filesEntries: any[];
private uploadedFilesData: FileInfo[] = [];
private base64String: string[] = [];
private currentRequestHeader: { [key: string]: string }[];
private customFormDatas: { [key: string]: object }[];
private dropZoneElement: HTMLElement;
private l10n: L10n;
private preLocaleObj: { [key: string]: Object };
private uploadTemplateFn: Function;
private keyboardModule: KeyboardEvents;
private progressInterval: string;
private progressAnimation: Animation;
private isForm: boolean = false;
private allTypes: boolean = false;
private keyConfigs: { [key: string]: string };
private localeText: { [key: string]: Object };
private pausedData: MetaData[] = [];
private uploadMetaData: MetaData[] = [];
private tabIndex: string = '0';
private btnTabIndex: string = '0';
private disableKeyboardNavigation: boolean = false;
private count: number = -1;
private actionCompleteCount: number = 0;
private flag: boolean = true;
private selectedFiles: FileInfo[] = [];
private browserName: string;
private uploaderOptions: UploaderModel;
private uploaderName: string = 'UploadFiles';
private fileStreams: FileInfo[] = [];
private newFileRef: number = 0;
private isFirstFileOnSelection: boolean = false;
private dragCounter : number = 0;
private isPreloadFiles: boolean;
/**
* Get the file item(li) which are shown in file list.
*
* @private
*/
public fileList: HTMLElement[] = [];
/**
* Get the data of files which are shown in file list.
*
* @private
*/
public filesData: FileInfo[] = [];
/**
* Configures the save and remove URL to perform the upload operations in the server asynchronously.
*
* @default { saveUrl: '', removeUrl: '' }
*/
@Complex<AsyncSettingsModel>({ saveUrl: '', removeUrl: '' }, AsyncSettings)
public asyncSettings: AsyncSettingsModel;
/**
* By default, the file uploader component is processing the multiple files simultaneously.
* If sequentialUpload property is enabled, the file upload component performs the upload one after the other.
*
* @default false
*/
@Property(false)
public sequentialUpload: boolean;
/**
* You can add the additional html attributes such as disabled, value etc., to the element.
* If you configured both property and equivalent html attribute then the component considers the property value.
*
* {% codeBlock src='uploader/htmlAttributes/index.md' %}{% endcodeBlock %}
*
* @default {}
*/
@Property({})
public htmlAttributes: { [key: string]: string };
/**
* Specifies the CSS class name that can be appended with root element of the uploader.
* One or more custom CSS classes can be added to a uploader.
*
* @default ''
*/
@Property('')
public cssClass: string;
/**
* Specifies Boolean value that indicates whether the component is enabled or disabled.
* The uploader component does not allow to interact when this property is disabled.
*
* @default true
*/
@Property(true)
public enabled: boolean;
/**
* Specifies the HTML string that used to customize the content of each file in the list.
*
* > For more information, refer to the [template](../../uploader/template/) section from the documentation.
*
* @default null
* @aspType string
*/
@Property(null)
public template: string | Function;
/**
* Specifies a Boolean value that indicates whether the multiple files can be browsed or
* dropped simultaneously in the uploader component.
*
* @default true
*/
@Property(true)
public multiple: boolean;
/**
* By default, the uploader component initiates automatic upload when the files are added in upload queue.
* If you want to manipulate the files before uploading to server, disable the autoUpload property.
* The buttons “upload” and “clear” will be hided from file list when autoUpload property is true.
*
* @default true
*/
@Property(true)
public autoUpload: boolean;
/**
* Specifies Boolean value that indicates whether to prevent the cross site scripting code in filename or not.
* The uploader component removes the cross-site scripting code or functions from the filename and shows the validation error message to the user when enableHtmlSanitizer is true.
*
* @default true
*/
@Property(true)
public enableHtmlSanitizer: boolean;
/**
* You can customize the default text of “browse, clear, and upload” buttons with plain text or HTML elements.
* The buttons’ text can be customized from localization also. If you configured both locale and buttons property,
* the uploader component considers the buttons property value.
* {% codeBlock src='uploader/buttons/index.md' %}{% endcodeBlock %}
*
* @default { browse : 'Browse...', clear: 'Clear', upload: 'Upload' }
*/
@Complex<ButtonsPropsModel>({}, ButtonsProps)
public buttons: ButtonsPropsModel;
/**
* Specifies the extensions of the file types allowed in the uploader component and pass the extensions
* with comma separators. For example,
* if you want to upload specific image files, pass allowedExtensions as “.jpg,.png”.
*
* @default ''
*/
@Property('')
public allowedExtensions: string;
/**
* Specifies the minimum file size to be uploaded in bytes.
* The property used to make sure that you cannot upload empty files and small files.
*
* @default 0
*/
@Property(0)
public minFileSize: number;
/**
* Specifies the maximum allowed file size to be uploaded in bytes.
* The property used to make sure that you cannot upload too large files.
*
* @default 30000000
*/
@Property(30000000)
public maxFileSize: number;
/**
* Specifies the drop target to handle the drag-and-drop upload.
* By default, the component creates wrapper around file input that will act as drop target.
*
* > For more information, refer to the [drag-and-drop](../../uploader/file-source/#drag-and-drop) section from the documentation.
*
* @default null
*/
@Property(null)
public dropArea: string | HTMLElement;
/**
* Specifies the list of files that will be preloaded on rendering of uploader component.
* The property used to view and remove the uploaded files from server. By default, the files are configured with
* uploaded successfully state. The following properties are mandatory to configure the preload files:
* * Name
* * Size
* * Type
*
* {% codeBlock src='uploader/files/index.md' %}{% endcodeBlock %}
*
* @default { name: '', size: null, type: '' }
*/
@Collection<FilesPropModel>([{}], FilesProp)
public files: FilesPropModel[];
/**
* Specifies a Boolean value that indicates whether the default file list can be rendered.
* The property used to prevent default file list and design own template for file list.
*
* @default true
*/
@Property(true)
public showFileList: boolean;
/**
* Specifies a Boolean value that indicates whether the folder of files can be browsed in the uploader component.
*
* > When enabled this property, it allows only files of folder to select or drop to upload and
* it cannot be allowed to select or drop files.
*
* @default false
*/
@Property(false)
public directoryUpload: boolean;
/**
* Specifies the drag operation effect to the uploader component. Possible values are Copy , Move, Link and None.
*
* By default, the uploader component works based on the browser drag operation effect.
*
* @default 'Default'
*/
@Property('Default')
public dropEffect: DropEffect;
/**
* Triggers when the component is created.
*
* @event created
*/
@Event()
public created: EmitType<Object>;
/**
* Triggers after all the selected files has processed to upload successfully or failed to server.
*
* @event actionComplete
*/
@Event()
public actionComplete: EmitType<ActionCompleteEventArgs>;
/**
* DEPRECATED-Triggers before rendering each file item from the file list in a page.
* It helps to customize specific file item structure.
*
* @event rendering
*/
@Event()
public rendering: EmitType<RenderingEventArgs>;
/**
* Triggers when the upload process before. This event is used to add additional parameter with upload request.
*
* @event beforeUpload
*/
@Event()
public beforeUpload: EmitType<BeforeUploadEventArgs>;
/**
* Triggers before rendering each file item from the file list in a page.
* It helps to customize specific file item structure.
*
* @event fileListRendering
*/
@Event()
public fileListRendering: EmitType<FileListRenderingEventArgs>;
/**
* Triggers after selecting or dropping the files by adding the files in upload queue.
*
* @event selected
*/
@Event()
public selected: EmitType<SelectedEventArgs>;
/**
* Triggers when the upload process gets started. This event is used to add additional parameter with upload request.
*
* @event uploading
*/
@Event()
public uploading: EmitType<UploadingEventArgs>;
/**
* Triggers when the AJAX request gets success on uploading files or removing files.
*
* <table>
* <tr>
* <td colSpan=1 rowSpan=1>
* Event arguments<br/></td><td colSpan=1 rowSpan=1>
* Description<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* event<br/></td><td colSpan=1 rowSpan=1>
* Ajax progress event arguments.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* file<br/></td><td colSpan=1 rowSpan=1>
* File information which is uploaded/removed.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* name<br/></td><td colSpan=1 rowSpan=1>
* Name of the event<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* operation<br/></td><td colSpan=1 rowSpan=1>
* It indicates the success of the operation whether its uploaded or removed<br/></td></tr>
* </table>
*
* @event success
*/
@Event()
public success: EmitType<Object>;
/**
* Triggers when the AJAX request fails on uploading or removing files.
*
* <table>
* <tr>
* <td colSpan=1 rowSpan=1>
* Event arguments<br/></td><td colSpan=1 rowSpan=1>
* Description<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* event<br/></td><td colSpan=1 rowSpan=1>
* Ajax progress event arguments.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* file<br/></td><td colSpan=1 rowSpan=1>
* File information which is failed from upload/remove.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* name<br/></td><td colSpan=1 rowSpan=1>
* Name of the event<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* operation<br/></td><td colSpan=1 rowSpan=1>
* It indicates the failure of the operation whether its upload or remove<br/></td></tr>
* </table>
*
* @event failure
*/
@Event()
public failure: EmitType<Object>;
/**
* Triggers on removing the uploaded file. The event used to get confirm before removing the file from server.
*
* @event removing
*/
@Event()
public removing: EmitType<RemovingEventArgs>;
/**
* Triggers on remove the uploaded file. The event used to get confirm before remove the file from server.
*
* @event beforeRemove
*/
@Event()
public beforeRemove: EmitType<BeforeRemoveEventArgs>;
/**
* Triggers before clearing the items in file list when clicking “clear”.
*
* @event clearing
*/
@Event()
public clearing: EmitType<ClearingEventArgs>;
/**
* Triggers when uploading a file to the server using the AJAX request.
*
* <table>
* <tr>
* <td colSpan=1 rowSpan=1>
* Event arguments<br/></td><td colSpan=1 rowSpan=1>
* Description<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* event<br/></td><td colSpan=1 rowSpan=1>
* Ajax progress event arguments.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* file<br/></td><td colSpan=1 rowSpan=1>
* File information which is uploading to server.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* name<br/></td><td colSpan=1 rowSpan=1>
* Name of the event<br/></td></tr>
* </table>
*
* @event progress
*/
@Event()
public progress: EmitType<Object>;
/**
* Triggers when changes occur in uploaded file list by selecting or dropping files.
*
* <table>
* <tr>
* <td colSpan=1 rowSpan=1>
* Event arguments<br/></td><td colSpan=1 rowSpan=1>
* Description<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* file<br/></td><td colSpan=1 rowSpan=1>
* File information which is successfully uploaded to server or removed in server.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* name<br/></td><td colSpan=1 rowSpan=1>
* Name of the event<br/></td></tr>
* </table>
*
* @event change
*/
@Event()
public change: EmitType<Object>;
/**
* Fires when the chunk file uploaded successfully.
*
* <table>
* <tr>
* <td colSpan=1 rowSpan=1>
* Event arguments<br/></td><td colSpan=1 rowSpan=1>
* Description<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* chunkIndex<br/></td><td colSpan=1 rowSpan=1>
* Returns current chunk index.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* chunkSize<br/></td><td colSpan=1 rowSpan=1>
* Returns the size of the chunk file.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* file<br/></td><td colSpan=1 rowSpan=1>
* File information which is uploading to server.<br/></td></tr>
* <tr>
* <td colSpan=1 rowSpan=1>
* name<br/></td><td colSpan=1 rowSpan=1>
* Name of the event<br/></td></tr>