--- parts: - Input File - Use Cases title: 'Input File: Use Cases' eleventyNavigation: key: 'Input File: Use Cases' order: 20 parent: Input File title: Use Cases --- # Input File: Use Cases ```js script import { Required, Validator } from '@lion/ui/form-core.js'; import { loadDefaultFeedbackMessages } from '@lion/ui/validate-messages.js'; import { html } from '@mdjs/mdjs-preview'; import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'; import { LitElement } from 'lit'; import '@lion/ui/define/lion-input-file.js'; loadDefaultFeedbackMessages(); ``` ## Features API calls to upload the selected files can be done in below two ways which is driven by `uploadOnSelect` property - On `form` submit - On file selection ## Parameters ```html ``` ### modelValue Array of [File](https://developer.mozilla.org/en-US/docs/Web/API/File); Contains all the uploaded files ### multiple Boolean; setting to `true` allows selecting multiple files. ### EnableDragAndDrop Boolean; setting to `true` allows file upload through drag and drop. ### uploadOnSelect Boolean; - Set to `true` when API calls for file upload needs to be done on file selection - Set to `false` when API calls for file upload needs to be done on form submit. - Default is `false`. ### uploadResponse An array of the file-specific data to display the feedback of fileUpload Data structure for uploadResponse array: ```js [ { name: 'file1.txt', // name of uploaded file status: '', // SUCCESS | FAIL | LOADING errorMessage: '', // custom error message to be displayed id: '', // unique id for future execution reference }, { name: 'file2.txt', // name of uploaded file status: '', // SUCCESS | FAIL | LOADING errorMessage: '', // custom error message to be displayed id: '', // unique id for future execution reference }, ]; ``` ## Events ### model-value-changed Fired when modelValue property changes. ### file-list-changed Fired when files are uploaded. Event `detail` gives list of newly added files in `newFiles` key ```js ev.detail.newFiles; ``` ### file-removed Fired when a file is removed. Event `detail` gives - File objected for removed file in `ev.detail.removedFile` - Status of this file can be used as `ev.detail.status` - uploadResponse for this file as set using `uploadResponse` property. Can use used as `ev.detail.uploadResponse` ## Usage ### Basic File upload When file has to be uploaded as soon as it is selected by the user. Use `file-list-changed` event to get the newly added file, upload it to your server and set the response back to component via `uploadResponse` property. ```js preview-story export const basicFileUpload = () => { return html` `; }; ``` ### Validation #### Accept The `accept` attribute value is a string that defines the file types the file input should accept. This string is a comma-separated list of unique file type specifiers. For more info please consult the [MDN documentation for "accept"](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept). ```js preview-story export const acceptValidator = () => { return html` `; }; ``` #### Maximum File Size The `max-file-size` attribute sets the maximum file size in bytes. ```js preview-story export const sizeValidator = () => { return html` `; }; ``` ### Multiple file upload When file has to be uploaded as soon as it is selected by the user. Use `file-list-changed` event to get the newly added files, upload it to your server and set the response back to component via `uploadResponse` property for each file. ```js preview-story export const multipleFileUpload = () => { return html` `; }; ``` ### Pre-filled state The pre-filled state of the file upload component shows the files that were being assigned by the user initially. On every reload of page, the file upload component reverts to the initial state and using the `uploadResponse` property, shows the names(not links) of previously assigned files. **Note:** - the list of prefilled files will not be available in `modelValue` or `serializedValue`. This is because value cannot be assigned to native `input` with type `file` - Only `Required` validation (if set on `lion-file-input`) is triggered for files which are prefilled. ```js preview-story export const prefilledState = () => { return html` `; }; ``` ### With form submit **Note:** When `lion-input-file` is prefilled, the list of prefilled files will not be available in `modelValue` or `serializedValue`. This is because value cannot be assigned to native `input` with type `file`. ```js preview-story const myFormReset = ev => { const input = ev.target.querySelector('lion-input-file'); input.reset(); console.log(input.modelValue); }; const myFormSubmit = ev => { ev.preventDefault(); const input = ev.target.querySelector('lion-input-file'); console.log(input.hasFeedbackFor); console.log(input.serializedValue); return false; }; export const withIngForm = () => { class FilenameLengthValidator extends Validator { static get validatorName() { return 'FilenameLengthValidator'; } static getMessage(data) { return `Filename length should not exceed ${data.params.maxFilenameLength} characters`; } // eslint-disable-next-line class-methods-use-this checkFilenameLength(val, allowedFileNameLength) { return val <= allowedFileNameLength; } execute(modelVal, { maxFilenameLength }) { const invalidFileIndex = modelVal.findIndex( file => !this.checkFilenameLength(file.name.length, maxFilenameLength), ); return invalidFileIndex > -1; } } return html`
`; }; ``` ### Without form submit Set `uploadOnSelect` property to `true`. This option can be used when Server API calls are needed as soon as it is selected by the user. For this scenario, the list of files is displayed based on the `uploadResponse` property which needs to maintained by the consumers of this component Below is the flow: #### When user uploads new file(s) 1. `file-list-changed` event is fired from component with the newly added files 2. Initiate the request to your backend API and set the status of the relevant files to `LOADING` in `uploadResponse` property 3. Once the API request in completed, set the status of relevant files to `SUCCESS` or `FAIL` in `uploadResponse` property #### When user deletes a file 1. `file-removed` event is fired from component with the deleted file 2. Initiate the delete request to your backend API and set the status of the relevant files as `LOADING` in `uploadResponse` property 3. Once the API request is completed, delete the file object from `uploadResponse` property ```js preview-story export const uploadWithoutFormSubmit = () => { return html` `; }; ``` ### Drag and Drop Set the `enableDropZone` parameter to `true` to use the drag and drop functionality in the component. Drag and drop the files to be uploaded to the server. ```js preview-story export const dragAndDrop = () => { return html` `; }; ``` ### Posting file to API using axios You can retrieve the uploaded files in `file-list-changed` event or from `modelValue` property of this component To submit files you can refer to the following code snippet: ```js const formData = new FormData(); const inputFile = document.querySelector('lion-input-file').modelValue; formData.append('file', inputFile.querySelector('input').files); axios.post('upload_file', formData, { headers: { 'Content-Type': 'multipart/form-data', }, }); ```