All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.vaadin.elements.UploadElement Maven / Gradle / Ivy

The newest version!
package com.github.fluorumlabs.disconnect.vaadin.elements;

import com.github.fluorumlabs.disconnect.core.annotations.Import;
import com.github.fluorumlabs.disconnect.core.annotations.NpmPackage;
import com.github.fluorumlabs.disconnect.vaadin.Vaadin;
import com.github.fluorumlabs.disconnect.vaadin.constants.UploadMethod;
import com.github.fluorumlabs.disconnect.vaadin.elements.mixins.ThemableMixin;
import com.github.fluorumlabs.disconnect.vaadin.i18n.UploadI18n;
import com.github.fluorumlabs.disconnect.vaadin.types.UploadingFile;
import js.util.StringRecord;
import js.util.collections.Array;
import js.web.dom.HTMLElement;
import org.teavm.jso.JSByRef;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;

/**
 * <vaadin-upload> is a Web Component for uploading multiple files with drag and drop support.
 * 

* Example: * *

<vaadin-upload></vaadin-upload>
 * 
*

Styling

* The following shadow DOM parts are available for styling: * * * * * * * * * * * * *
Part nameDescription
primary-buttonsUpload container
upload-buttonUpload button
drop-labelLabel for drop indicator
drop-label-iconIcon for drop indicator
file-listFile list container
* The following state attributes are available for styling: * * * * * * * * * * *
AttributeDescriptionPart name
nodropSet when drag and drop is disabled (e. g., on touch devices) * :host
dragoverA file is being dragged over the element:host
dragover-validA dragged file is valid with maxFiles and * accept criteria:host
* See * ThemableMixin – how to apply styles for shadow parts */ @NpmPackage( name = "@vaadin/vaadin", version = Vaadin.VERSION ) @Import( module = "@vaadin/vaadin-upload/theme/lumo/vaadin-upload.js" ) public interface UploadElement extends HTMLElement, ThemableMixin { static String TAGNAME() { return "vaadin-upload"; } /** * Define whether the element supports dropping files on it for uploading. * By default it's enabled in desktop and disabled in touch devices * because mobile devices do not support drag events in general. Setting * it false means that drop is enabled even in touch-devices, and true * disables drop in all devices. */ @JSProperty boolean isNodrop(); /** * Define whether the element supports dropping files on it for uploading. * By default it's enabled in desktop and disabled in touch devices * because mobile devices do not support drag events in general. Setting * it false means that drop is enabled even in touch-devices, and true * disables drop in all devices. */ @JSProperty void setNodrop(boolean nodrop); /** * The server URL. The default value is an empty string, which means that * window.location will be used. */ @Nullable @JSProperty String getTarget(); /** * The server URL. The default value is an empty string, which means that * window.location will be used. */ @JSProperty void setTarget(String target); /** * HTTP Method used to send the files. Only POST and PUT are allowed. */ @Nullable @JSProperty UploadMethod getMethod(); /** * HTTP Method used to send the files. Only POST and PUT are allowed. */ @JSProperty void setMethod(UploadMethod method); /** * Key-Value map to send to the server. If you set this property as an * attribute, use a valid JSON string, for example: * *
<vaadin-upload headers='{"X-Foo": "Bar"}'></vaadin-upload>
	 * 
*/ @Nullable @JSProperty StringRecord getHeaders(); /** * Key-Value map to send to the server. If you set this property as an * attribute, use a valid JSON string, for example: * *
<vaadin-upload headers='{"X-Foo": "Bar"}'></vaadin-upload>
	 * 
*/ @JSProperty void setHeaders(StringRecord headers); /** * Max time in milliseconds for the entire upload process, if exceeded the * request will be aborted. Zero means that there is no timeout. */ @JSProperty int getTimeout(); /** * Max time in milliseconds for the entire upload process, if exceeded the * request will be aborted. Zero means that there is no timeout. */ @JSProperty void setTimeout(int timeout); /** * The array of files being processed, or already uploaded. *

* Each element is a File * object with a number of extra properties to track the upload process: * *

    *
  • uploadTarget: The target URL used to upload this file.
  • *
  • elapsed: Elapsed time since the upload started.
  • *
  • elapsedStr: Human-readable elapsed time.
  • *
  • remaining: Number of seconds remaining for the upload to finish.
  • *
  • remainingStr: Human-readable remaining time for the upload to finish.
  • *
  • progress: Percentage of the file already uploaded.
  • *
  • speed: Upload speed in kB/s.
  • *
  • size: File size in bytes.
  • *
  • totalStr: Human-readable total size of the file.
  • *
  • loaded: Bytes transferred so far.
  • *
  • loadedStr: Human-readable uploaded size at the moment.
  • *
  • status: Status of the upload process.
  • *
  • error: Error message in case the upload failed.
  • *
  • abort: True if the file was canceled by the user.
  • *
  • complete: True when the file was transferred to the server.
  • *
  • uploading: True while transferring data to the server.
  • *
*/ @Nullable @JSProperty Array getFiles(); /** * The array of files being processed, or already uploaded. *

* Each element is a File * object with a number of extra properties to track the upload process: * *

    *
  • uploadTarget: The target URL used to upload this file.
  • *
  • elapsed: Elapsed time since the upload started.
  • *
  • elapsedStr: Human-readable elapsed time.
  • *
  • remaining: Number of seconds remaining for the upload to finish.
  • *
  • remainingStr: Human-readable remaining time for the upload to finish.
  • *
  • progress: Percentage of the file already uploaded.
  • *
  • speed: Upload speed in kB/s.
  • *
  • size: File size in bytes.
  • *
  • totalStr: Human-readable total size of the file.
  • *
  • loaded: Bytes transferred so far.
  • *
  • loadedStr: Human-readable uploaded size at the moment.
  • *
  • status: Status of the upload process.
  • *
  • error: Error message in case the upload failed.
  • *
  • abort: True if the file was canceled by the user.
  • *
  • complete: True when the file was transferred to the server.
  • *
  • uploading: True while transferring data to the server.
  • *
*/ @JSProperty void setFiles(UploadingFile... files); @JSProperty void setFiles(Array files); /** * Limit of files to upload, by default it is unlimited. If the value is * set to one, native file browser will prevent selecting multiple files. */ @JSProperty int getMaxFiles(); /** * Limit of files to upload, by default it is unlimited. If the value is * set to one, native file browser will prevent selecting multiple files. */ @JSProperty void setMaxFiles(int maxFiles); /** * Specifies if the maximum number of files have been uploaded */ @JSProperty boolean isMaxFilesReached(); /** * Specifies the types of files that the server accepts. * Syntax: a comma-separated list of MIME type patterns (wildcards are * allowed) or file extensions. * Notice that MIME types are widely supported, while file extensions * are only implemented in certain browsers, so avoid using it. * Example: accept="video/*,image/tiff" or accept=".pdf,audio/mp3" */ @Nullable @JSProperty String getAccept(); /** * Specifies the types of files that the server accepts. * Syntax: a comma-separated list of MIME type patterns (wildcards are * allowed) or file extensions. * Notice that MIME types are widely supported, while file extensions * are only implemented in certain browsers, so avoid using it. * Example: accept="video/*,image/tiff" or accept=".pdf,audio/mp3" */ @JSProperty void setAccept(String accept); /** * Specifies the maximum file size in bytes allowed to upload. * Notice that it is a client-side constraint, which will be checked before * sending the request. Obviously you need to do the same validation in * the server-side and be sure that they are aligned. */ @JSProperty int getMaxFileSize(); /** * Specifies the maximum file size in bytes allowed to upload. * Notice that it is a client-side constraint, which will be checked before * sending the request. Obviously you need to do the same validation in * the server-side and be sure that they are aligned. */ @JSProperty void setMaxFileSize(int maxFileSize); /** * Specifies the 'name' property at Content-Disposition */ @Nullable @JSProperty String getFormDataName(); /** * Specifies the 'name' property at Content-Disposition */ @JSProperty void setFormDataName(String formDataName); /** * Prevents upload(s) from immediately uploading upon adding file(s). * When set, you must manually trigger uploads using the uploadFiles method */ @JSProperty boolean isNoAuto(); /** * Prevents upload(s) from immediately uploading upon adding file(s). * When set, you must manually trigger uploads using the uploadFiles method */ @JSProperty void setNoAuto(boolean noAuto); /** * Set the withCredentials flag on the request. */ @JSProperty boolean isWithCredentials(); /** * Set the withCredentials flag on the request. */ @JSProperty void setWithCredentials(boolean withCredentials); /** * Pass-through to input's capture attribute. Allows user to trigger device inputs * such as camera or microphone immediately. */ @Nullable @JSProperty String getCapture(); /** * Pass-through to input's capture attribute. Allows user to trigger device inputs * such as camera or microphone immediately. */ @JSProperty void setCapture(String capture); /** * The object used to localize this component. * For changing the default localization, change the entire * i18n object or just the property you want to modify. *

* The object has the following JSON structure and default values: * *

  {
	 *     dropFiles: {
	 *     one: 'Drop file here
	 *     many: 'Drop files here
	 *     },
	 *     addFiles: {
	 *     one: 'Select File...',
	 *     many: 'Upload Files...'
	 *     },
	 *     cancel: 'Cancel',
	 *     error: {
	 *     tooManyFiles: 'Too Many Files.',
	 *     fileIsTooBig: 'File is Too Big.',
	 *     incorrectFileType: 'Incorrect File Type.'
	 *     },
	 *     uploading: {
	 *     status: {
	 *       connecting: 'Connecting...',
	 *       stalled: 'Stalled.',
	 *       processing: 'Processing File...',
	 *       held: 'Queued'
	 *     },
	 *     remainingTime: {
	 *       prefix: 'remaining time: ',
	 *       unknown: 'unknown remaining time'
	 *     },
	 *     error: {
	 *       serverUnavailable: 'Server Unavailable',
	 *       unexpectedServerError: 'Unexpected Server Error',
	 *       forbidden: 'Forbidden'
	 *     }
	 *     },
	 *     units: {
	 *     size: ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
	 *     },
	 *     formatSize: function(bytes) {
	 *     // returns the size followed by the best suitable unit
	 *     },
	 *     formatTime: function(seconds, [secs, mins, hours]) {
	 *     // returns a 'HH:MM:SS' string
	 *     }
	 *   }
	 * 
*/ @Nullable @JSProperty UploadI18n getI18n(); /** * The object used to localize this component. * For changing the default localization, change the entire * i18n object or just the property you want to modify. *

* The object has the following JSON structure and default values: * *

  {
	 *     dropFiles: {
	 *     one: 'Drop file here
	 *     many: 'Drop files here
	 *     },
	 *     addFiles: {
	 *     one: 'Select File...',
	 *     many: 'Upload Files...'
	 *     },
	 *     cancel: 'Cancel',
	 *     error: {
	 *     tooManyFiles: 'Too Many Files.',
	 *     fileIsTooBig: 'File is Too Big.',
	 *     incorrectFileType: 'Incorrect File Type.'
	 *     },
	 *     uploading: {
	 *     status: {
	 *       connecting: 'Connecting...',
	 *       stalled: 'Stalled.',
	 *       processing: 'Processing File...',
	 *       held: 'Queued'
	 *     },
	 *     remainingTime: {
	 *       prefix: 'remaining time: ',
	 *       unknown: 'unknown remaining time'
	 *     },
	 *     error: {
	 *       serverUnavailable: 'Server Unavailable',
	 *       unexpectedServerError: 'Unexpected Server Error',
	 *       forbidden: 'Forbidden'
	 *     }
	 *     },
	 *     units: {
	 *     size: ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
	 *     },
	 *     formatSize: function(bytes) {
	 *     // returns the size followed by the best suitable unit
	 *     },
	 *     formatTime: function(seconds, [secs, mins, hours]) {
	 *     // returns a 'HH:MM:SS' string
	 *     }
	 *   }
	 * 
*/ @JSProperty void setI18n(UploadI18n i18n); /** * Triggers the upload of any files that are not completed */ void uploadFiles(UploadingFile... files); void uploadFiles(Array files); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy