--- Added: v2.0.0 Status: Active --- # Upload Directive Allows your components or common HTML elements reacting on File drag and drop in order to upload content. ## Basic usage The directive itself does not do any file management process, but collects information on dropped files and raises corresponding events instead. ```html
Drop files here...
``` It is possible controlling when upload behaviour is enabled/disabled by binding directive to a `boolean` value or expression: ```html
...
...
...
``` You can decorate any element including buttons, for example: ```html ``` ### Properties | Name | Type | Default value | Description | | ---- | ---- | ------------- | ----------- | | enabled | `boolean` | `true` | Enables/disables uploading. | | data | `any` | | Data to upload. | | mode | `string[]` | `['drop']` | Upload mode. Can be "drop" (receives dropped files) or "click" (clicking opens a file dialog). Both modes can be active at once. | | multiple | `boolean` | | Toggles multiple file uploads. | | accept | `string` | | (Click mode only) MIME type filter for files to accept. | | directory | `boolean` | | (Click mode only) Toggles uploading of directories. | ## Details Used by attaching to an element or component. ### Modes Directive supports several modes: - **drop** mode, where decorated element acts like a drop zone for files (**default** mode) - **click** mode, where decorated element invokes File Dialog to select files or folders. It is also possible combining modes together. ```html
...
...
...
``` #### Click mode For the click mode you can provide additional attributes for the File Dialog: - **directory**, enables directory selection - **multiple**, enables multiple file/folder selection - **accept**, filters the content accepted ```html
``` #### Drop mode For the moment upload directive supports only Files (single or multiple). Support for Folders and `accept` filters is subject to implement. ### Events Once a single or multiple files are dropped on the decorated element the `upload-files` [CustomEvent](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent) is raised. The DOM event is configured to have `bubbling` enabled, so any component up the component tree can handle, process or prevent it: ```html
``` ```ts onUploadFiles(e: CustomEvent) { console.log(e.detail.files); // your code } ``` Please note that event will be raised only if valid [Files](https://developer.mozilla.org/en-US/docs/Web/API/File) were dropped onto the decorated element. The `upload-files` event is cancellable, so you can stop propagation of the drop event to upper levels in case it has been already handled by your code: ```ts onUploadFiles(e: CustomEvent) { e.stopPropagation(); e.preventDefault(); // your code } ``` It is also possible attaching arbitrary data to each event in order to access it from within external event handlers. A typical scenario is data tables where you may want to handle also the data row and/or underlying data to be accessible upon files drop. You may be using `adf-upload-data` to bind custom values or objects for every event raised: ```html
``` As part of the `details` property of the [CustomEvent](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent) you can get access to the following: ```ts detail: { sender: UploadDirective, // directive that raised given event data: any, // arbitrary data associated (bound) files: File[] // dropped files } ``` ### Styling The decorated element gets `adf-upload__dragging` CSS class name in the class list every time files are dragged over it. This allows changing look and feel of your components in case additional visual indication is required, for example you may want drawing a dashed border around the table row on drag: ```html ...
``` ```css .adf-upload__dragging > td:first-child { border-left: 1px dashed rgb(68,138,255); } .adf-upload__dragging > td { border-top: 1px dashed rgb(68,138,255); border-bottom: 1px dashed rgb(68,138,255); } .adf-upload__dragging > td:last-child { border-right: 1px dashed rgb(68,138,255); } ```