uikit/dist/js/Uploader.js

744 lines
31 KiB
JavaScript
Raw Normal View History

2020-09-04 17:45:23 +00:00
/**
2024-09-13 04:25:11 +00:00
* VDM Uikit Uploader v2.1.1
2020-09-04 17:45:23 +00:00
* https://git.vdm.dev/joomla/uikit
* (c) 2020 - 2024 Llewellyn van der Merwe
* MIT License
**/
(function () {
'use strict';
/**
* `UploadHelper` is a utility class that simplifies operations related to file uploading.
* It handles the storage and retrieval of metadata associated with each upload and initializes
* the upload process by setting up endpoint configuration. It also provides methods for
* triggering the upload activities in an asynchronous manner.
*
* @class
* @example
* const helper = new UploadHelper('http://example.com/upload');
* const uniqueId = 'file123';
* const globalId = 'glob124';
* const data = { user: 'John Doe', file: 'myfile.txt' };
*
* helper.set(uniqueId, data);
* await helper.init(uniqueId, globalId);
*/
class UploadHelper {
/**
* The endpoint to which files would be uploaded.
* Stored as a private property and used internally within the class methods.
* This field must be a string representing a valid URL.
*
* @type {string}
* @private
*/
#endpoint;
/**
* It is a private object used to store the data associated with an instance of `UploadHelper`.
* Default is an empty object.
* This data is used when performing uploads.
*
* @type {Object}
* @private
*/
#data = {};
/**
* Constructor for the UploadHelper class.
*
* @param {string} endpoint - The endpoint to be associated with the instance of the UploadHelper.
*/
constructor(endpoint) {
// Initialize private field with passed endpoint argument
this.#endpoint = endpoint;
}
/**
* Stores a value associated with a provided key in data or merges an input object with the data.
*
* @param {string} id - The unique identifier associated with the data to store.
* @param {string|object} keyOrObject - The key to associate with a value within the provided identifier or an object to merge with the data.
* @param {any} [value=null] - The value to set for the specific key. Only used if keyOrObject isn't an object. Defaults to null.
*/
set = (id, keyOrObject, value = null) => {
// Initialize data object for the ID if it does not exist
this.#data[id] = this.#data[id] || {};
if (typeof keyOrObject === 'object') {
// If keyOrObject is an object, merge it with the existing data for the provided ID
Object.assign(this.#data[id], keyOrObject);
} else {
// If keyOrObject is not an object, treat it as a key and associate it with the provided value in the data
this.#data[id][keyOrObject] = value;
}
};
/**
* Retrieves the value for a specific key from data.
*
* @param {string} id - The unique identifier associated with the data.
* @param {string|null} [key=null] - The key whose associated value to return from within the identified data. If not specified,
* the entire data object associated with the identifier will be returned instead.
* @param {any} [defaultValue=null] - The value to return if the key or identifier is not found in the data. Defaults to null.
* @returns {any} The value associated with the provided key if found, the data object
* if only an identifier is provided, or the default value if the key or
* identifier cannot be found in the data.
*/
get = (id, key = null, defaultValue = null) => {
const idData = this.#data[id];
if (!idData) {
// If the ID does not exist in the data, return the default value
return defaultValue;
}
if (key === null) {
// If no specific key is specified, return the entire data object for the ID
return idData;
}
// If the key exists in the data object, return its value; otherwise, return the default value
return idData[key] ?? defaultValue;
};
/**
* Asynchronously initializes the UploadHelper object.
*
* @param {string} id - The unique identifier associated with the initialization.
* @param {string} guid - The globally unique identifier used to build the URL for fetching.
* @param {boolean} reset - A flag indicating whether to reset the initialization. Defaults to false.
* @return {Promise.<void>} Returns promise which resolves when operation is complete.
* There is no resolved value but any error occurred while
* operation will be thrown.
*/
init = async (id, guid, reset = false) => {
if (this.#data[id] && !reset) {
2024-09-12 05:10:27 +00:00
console.log(`Field ${id} is already initialized, reusing existing data.`);
2020-09-04 17:45:23 +00:00
return;
}
try {
const url = this.#buildUrl(this.#endpoint, guid);
const result = await this.#fetchData(url);
2024-09-12 05:10:27 +00:00
if (true) console.log('Data fetched:', result);
2020-09-04 17:45:23 +00:00
if (result?.data && typeof result.data === 'object') {
this.set(id, result.data);
} else if (result?.error) {
throw new Error(result.error || 'An error occurred during the file type request.');
}
} catch (error) {
2024-09-12 05:10:27 +00:00
console.error('Error during initialization:', error);
2020-09-04 17:45:23 +00:00
}
};
/**
* Fetches data from provided URL.
*
* @param {string} url - The URL from which the data should be fetched.
* @return {Promise.<Object|undefined>} Returns fetched data or undefined if data fetch was unsuccessful.
*/
#fetchData = async url => {
const response = await fetch(url, {
method: 'GET',
2024-09-12 05:10:27 +00:00
headers: {'Content-Type': 'application/json'},
2020-09-04 17:45:23 +00:00
});
if (!response.ok) {
2024-09-12 05:10:27 +00:00
console.error('Error fetching data:', response);
2020-09-04 17:45:23 +00:00
return;
}
return await response.json();
};
/**
* Retrieves values associated with a provided list of identifiers from the DOM.
*
* @param {Array.<string>} ids - The list of identifiers associated to DOM fields to retrieve values from.
* @returns {Object.<string, string>} An object containing the values of the fields with its id as properties' names.
*/
getParams = ids => {
// Initialize a params object to hold our field values
const params = {};
// Use early return if ids is not an array or is an empty array
if (!Array.isArray(ids) || ids.length === 0) {
return params;
}
// Using forEach method on the ids array to populate the params object
ids.forEach(id => {
// Get the DOM field for the current id
const field = document.getElementById(id);
// If the field exists, add its value to params object using id as the key
if (field) {
params[id] = field.value;
}
});
// Return the params object, which now contains the field values
return params;
};
/**
* Builds a URL appending a unique identifier as a parameter.
*
* @param {string} endpoint - The base endpoint of the URL.
* @param {string} guid - The globally unique identifier to append to the URL.
* @returns {string} The constructed URL with the appended unique identifier.
* @private
*/
#buildUrl = (endpoint, guid) => {
// Determine the appropriate separator for the query parameter
const separator = endpoint.includes('?') ? '&' : '?';
// Return the constructed URL
return `${endpoint}${separator}guid=${guid}`;
};
}
/**
* The `DisplayHelper` class assists with fetching HTML content from a specified endpoint
* and injecting it into a specified DOM area.
* It constructs the endpoint URL, fetches the HTML, and manages filling/clearing the DOM area.
*
* @class
* @example
* const helper = new DisplayHelper();
* const endpoint = 'http://example.com/data';
* const area = document.getElementById('displayArea');
* const params = { user: 'John Doe', limit: 10 };
*
* await helper.set(endpoint, area, params);
*/
class DisplayHelper {
2024-09-12 05:10:27 +00:00
constructor() {
}
2020-09-04 17:45:23 +00:00
/**
* Asynchronously fetches HTML content from a specified endpoint and injects it into a specified DOM area.
* If any error occurs during this operation and the debug mode is enabled, the error will be logged to the console.
* The display area is emptied when any error occurs or if the fetched content is empty.
*
* @async
* @param {string} displayEndpoint - The endpoint from which the HTML content is fetched.
* @param {HTMLElement} displayArea - The DOM element wherein the fetched content is to be injected.
* @param {object} params - The query parameters to be appended to the endpoint URL.
* @throws Will throw an error if the fetch operation fails.
*/
set = async (displayEndpoint, displayArea, params) => {
try {
// Build the URL with the query parameters
const url = this.#buildUrl(displayEndpoint, params);
// Fetch the HTML content from the displayEndpoint
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
// If an error occurs, log it in debug mode
2024-09-12 05:10:27 +00:00
if (true) {
console.error('Error fetching display data:', response);
}
2020-09-04 17:45:23 +00:00
return;
}
const result = await response.json();
2024-09-12 05:10:27 +00:00
// Check if result contains an error
if (result.error) {
// Log the error in debug mode and show a user-friendly message
if (true) {
console.error('Error fetching display data:', result.error);
}
return;
}
2020-09-04 17:45:23 +00:00
// If there's no response.data or it's empty, clear the display area
if (!result.data || result.data.trim() === '') {
2024-09-12 05:10:27 +00:00
// Trigger a custom event before hide files display the entity files
const beforeHideFilesDisplay = new CustomEvent('vdm.uikit.uploader.beforeHideFilesDisplay', {
detail: {result, displayArea}
});
document.dispatchEvent(beforeHideFilesDisplay);
2020-09-04 17:45:23 +00:00
displayArea.innerHTML = ''; // Empty the display area
2024-09-12 05:10:27 +00:00
displayArea.setAttribute('hidden', 'hidden');
// Trigger a custom event after hide files display the entity files
const afterHideFilesDisplay = new CustomEvent('vdm.uikit.uploader.afterHideFilesDisplay', {
detail: {result, displayArea}
});
document.dispatchEvent(afterHideFilesDisplay);
2020-09-04 17:45:23 +00:00
} else {
2024-09-12 05:10:27 +00:00
// Trigger a custom event before displaying the entity files
const beforeFilesDisplayEvent = new CustomEvent('vdm.uikit.uploader.beforeFilesDisplay', {
detail: {result, displayArea}
});
document.dispatchEvent(beforeFilesDisplayEvent);
2020-09-04 17:45:23 +00:00
// Replace the display area content with the new HTML
displayArea.innerHTML = result.data;
2024-09-12 05:10:27 +00:00
displayArea.removeAttribute('hidden');
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
// Trigger a custom event after displaying the entity files
const afterFilesDisplayEvent = new CustomEvent('vdm.uikit.uploader.afterFilesDisplay', {
detail: {result, displayArea}
});
document.dispatchEvent(afterFilesDisplayEvent);
}
2020-09-04 17:45:23 +00:00
} catch (error) {
2024-09-12 05:10:27 +00:00
// If an error occurs, log it in debug mode
{
console.error('Error fetching display data:', error);
}
2020-09-04 17:45:23 +00:00
}
};
/**
* It's a private method that builds a complete URL from the endpoint and an object containing parameters.
* It uses the URLSearchParams interface to turn the parameters object to a query string,
* then, it attaches this string to the endpoint.
* If endpoint already includes a query string, the parameters string is prefixed with '&' char or else with '?' char.
*
* @param {string} endpoint - The base URL to which the parameters should be appended.
* @param {object} params - The object containing key-value pairs to be converted into a URL query string.
* @returns {string} The full URL with the appended query parameters.
* @private
*/
#buildUrl = (endpoint, params) => {
2024-09-12 05:10:27 +00:00
// If no params or params is empty, return the endpoint as is
if (!params || Object.keys(params).length === 0) {
return endpoint;
}
2020-09-04 17:45:23 +00:00
// Convert the params object into URL query string using URLSearchParams
const separator = endpoint.includes('?') ? '&' : '?';
const urlParams = new URLSearchParams(params);
return `${endpoint}${separator}${urlParams.toString()}`; // Return the full URL with query params
};
}
/**
* Helper class for uploading files.
*
* @class
* @classdesc This class provides methods for uploading files to a server.
*/
class UikitUploader {
#uploadHelper;
#displayHelper;
#uikit;
#uploadInstances = {};
/**
* Creates an instance of the UikitUploader class.
*
2024-09-12 05:10:27 +00:00
* @param {Object} config - Configuration details for uploader instances.
* @param {string} endpoint - The endpoint where the files will be uploaded.
* @param {any} uikit - Reference to UIKit.
2020-09-04 17:45:23 +00:00
*/
constructor(config, endpoint, uikit) {
this.#uploadHelper = new UploadHelper(endpoint);
this.#displayHelper = new DisplayHelper();
this.#uikit = uikit;
2024-09-12 05:10:27 +00:00
this.#initializeFields(config);
}
/**
* Initializes all upload fields based on the config.
*
* @param {Object} config - Configuration object mapping field IDs to their parameters.
*/
#initializeFields(config) {
2020-09-04 17:45:23 +00:00
Object.keys(config).forEach(id => {
2024-09-12 05:10:27 +00:00
this.#initField(id, config[id]);
2020-09-04 17:45:23 +00:00
});
}
/**
* Initializes a field with given parameters and sets up its event listener.
*
* @param {string} id - The identifier for the field.
2024-09-12 05:10:27 +00:00
* @param {Object} entity - Configuration parameters for the field.
2020-09-04 17:45:23 +00:00
*/
2024-09-12 05:10:27 +00:00
#initField(id, entity) {
2020-09-04 17:45:23 +00:00
const {
bar, typeId, endpoint, successId, errorId, allowedFormatId, fileTypeId, displayId, displayEndpoint
} = entity;
2024-09-12 05:10:27 +00:00
this.#setupDisplayArea(displayEndpoint, displayId);
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
const typeField = document.getElementById(typeId);
if (!typeField) {
this.#logError(`Type field with ID ${typeId} not found`);
return;
}
const initializeUpload = async (guid) => {
2020-09-04 17:45:23 +00:00
if (guid && guid.length > 1) {
try {
2024-09-12 05:10:27 +00:00
await this.#initUpload(id, guid, bar, endpoint, successId, errorId, allowedFormatId, fileTypeId, displayId, displayEndpoint);
2020-09-04 17:45:23 +00:00
} catch (error) {
2024-09-12 05:10:27 +00:00
this.#notifyError(error.message);
2020-09-04 17:45:23 +00:00
}
}
};
2024-09-12 05:10:27 +00:00
typeField.addEventListener('change', () => initializeUpload(typeField.value));
initializeUpload(typeField.value).catch(error => this.#notifyError(error.message));
}
2020-09-04 17:45:23 +00:00
/**
2024-09-12 05:10:27 +00:00
* Initializes the upload process and sets up the UI elements.
2020-09-04 17:45:23 +00:00
*
* @param {string} id - The identifier for the field.
2024-09-12 05:10:27 +00:00
* @param {string} typeGuid - The type GUID for the field.
* @param {string} progressBarId - The ID of the progress bar element.
* @param {string} uploadEndpoint - The endpoint URL for the upload.
* @param {string|null} successId - The ID of the success message element.
* @param {string|null} errorId - The ID of the error message element.
* @param {string|null} allowedFormatId - The ID of the allowed format element.
* @param {string|null} fileTypeId - The ID of the file type element.
* @param {string|null} displayId - The ID of the display element.
* @param {string|null} displayEndpoint - The endpoint URL for displaying the uploaded file.
2020-09-04 17:45:23 +00:00
*/
2024-09-12 05:10:27 +00:00
async #initUpload(id, typeGuid, progressBarId, uploadEndpoint, successId, errorId, allowedFormatId, fileTypeId, displayId, displayEndpoint) {
2020-09-04 17:45:23 +00:00
try {
2024-09-12 05:10:27 +00:00
this.#dispatchEvent('beforeInit', {
id,
typeGuid,
progressBarId,
uploadEndpoint,
successId,
errorId,
allowedFormatId,
fileTypeId,
displayId,
displayEndpoint
});
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
const call = `${id}${typeGuid}`;
await this.#uploadHelper.init(call, typeGuid, true);
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
const elements = this.#getUploadElements(progressBarId, successId, errorId, allowedFormatId, fileTypeId, displayId);
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
this.#dispatchEvent('afterElementsInit', {...elements});
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
this.#prepareUploadUI(elements, call, successId, errorId);
2020-09-04 17:45:23 +00:00
2024-09-13 04:25:11 +00:00
if (this.#uploadInstances.hasOwnProperty(id)) {
return;
}
2020-09-04 17:45:23 +00:00
this.#uploadInstances[id] = this.#uikit.upload(`#${id}`, {
url: this.#buildUrl(uploadEndpoint, typeGuid),
multiple: true,
2024-09-12 05:10:27 +00:00
allow: this.#uploadHelper.get(call, 'allow', false),
name: this.#uploadHelper.get(call, 'name', 'files'),
beforeSend: (env) => this.#handleBeforeSend(call, env),
beforeAll: (files) => this.#dispatchEvent('beforeAll', {files}),
load: (e) => this.#dispatchEvent('load', {event: e}),
error: (error) => this.#handleUploadError(error, elements.errorMessage),
complete: (xhr) => this.#handleComplete(xhr, elements.successMessage),
loadStart: (e) => this.#handleLoadStart(e, elements.progressBar),
progress: (e) => this.#handleProgress(e, elements.progressBar),
loadEnd: (e) => this.#handleLoadEnd(e, elements.progressBar),
completeAll: (xhr) => this.#handleCompleteAll(xhr, elements.progressBar, elements.successMessage, elements.errorMessage, displayEndpoint, displayId, call)
});
} catch (error) {
throw error;
}
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Returns the required HTML elements by their IDs.
*
* @param {string} progressBarId - The ID of the progress bar element.
* @param {string} successId - The ID of the success message element.
* @param {string} errorId - The ID of the error message element.
* @param {string} allowedFormatId - The ID of the allowed format span element.
* @param {string} fileTypeId - The ID of the file type span element.
* @param {string} displayId - The ID of the display area element.
* @returns {object} - An object containing the required HTML elements.
*/
#getUploadElements(progressBarId, successId, errorId, allowedFormatId, fileTypeId, displayId) {
return {
progressBar: document.getElementById(progressBarId),
successMessage: document.getElementById(successId),
errorMessage: document.getElementById(errorId),
allowedFormatSpan: document.getElementById(allowedFormatId),
fileTypeSpan: document.getElementById(fileTypeId),
displayArea: document.getElementById(displayId)
};
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Initializes the display area with data from the display endpoint.
*
* @param {string} displayEndpoint - The endpoint to retrieve the display data from.
* @param {string} displayId - The id of the display area element in the DOM.
* @param {object} params - Additional parameters to be passed to the display helper.
*
* @return {void}
*/
#setupDisplayArea(displayEndpoint, displayId, params = {}) {
const displayArea = document.getElementById(displayId);
if (displayEndpoint && displayArea) {
this.#displayHelper.set(displayEndpoint, displayArea, params);
}
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Notifies the user of an error using UIKit notifications.
*
* @param {string} message - The error message to display.
* @return {void}
*/
#notifyError(message) {
this.#uikit.notification({message, status: 'danger', timeout: 7000});
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Logs an error to the console.
*
* @param {string} message - The error message to be logged.
*
* @return {undefined}
*/
#logError(message) {
{
console.error(message);
}
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Dispatches a custom event with optional detail data.
*
* @param {string} eventName - The name of the event to dispatch.
* @param {object} [detail={}] - The optional detail data to include with the event.
* @return {void}
*/
#dispatchEvent(eventName, detail = {}) {
document.dispatchEvent(new CustomEvent(`vdm.uikit.uploader.${eventName}`, {detail}));
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Builds a URL by appending the GUID parameter.
*
* @param {string} endpoint - The base URL endpoint.
* @param {string} guid - The GUID parameter to be appended to the URL.
* @return {string} - The constructed URL with the GUID parameter appended.
*/
#buildUrl(endpoint, guid) {
const separator = endpoint.includes('?') ? '&' : '?';
return `${endpoint}${separator}guid=${guid}`;
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Prepares the UI elements before starting the upload.
*
* @param {object} elements - The UI elements to be modified.
* @param {string} call - The call identifier.
* @param {string} successId - The id of the success message element.
* @param {string} errorId - The id of the error message element.
*/
#prepareUploadUI(elements, call, successId, errorId) {
if (elements.successMessage) elements.successMessage.setAttribute('hidden', 'hidden');
if (elements.errorMessage) elements.errorMessage.setAttribute('hidden', 'hidden');
if (elements.allowedFormatSpan) elements.allowedFormatSpan.innerHTML = this.#uploadHelper.get(call, 'allow_span', '');
if (elements.fileTypeSpan) elements.fileTypeSpan.innerHTML = this.#uploadHelper.get(call, 'file_type_span', 'file');
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Handles beforeSend logic for uploads.
*
* @param {object} call - The call object.
* @param {object} environment - The environment object.
* @return {void}
*/
#handleBeforeSend(call, environment) {
this.#dispatchEvent('beforeSend', {environment});
environment.data.params = this.#uploadHelper.getParams(this.#uploadHelper.get(call, 'param_fields'));
this.#dispatchEvent('afterSendPreparation', {environment});
}
2020-09-04 17:45:23 +00:00
2024-09-12 05:10:27 +00:00
/**
* Handles the error scenario during upload.
*
* @param {Error} error - The error object that occurred during upload.
* @param {HTMLElement} errorMessage - The element used to display the error message.
*
* @return {void}
*/
#handleUploadError(error, errorMessage) {
this.#dispatchEvent('error', {error});
if (errorMessage) {
errorMessage.removeAttribute('hidden');
errorMessage.textContent = 'Upload failed.';
2020-09-04 17:45:23 +00:00
}
2024-09-12 05:10:27 +00:00
}
2020-09-04 17:45:23 +00:00
/**
2024-09-12 05:10:27 +00:00
* Handles the upload completion.
2020-09-04 17:45:23 +00:00
*
2024-09-12 05:10:27 +00:00
* @param {XMLHttpRequest} xhr - The XMLHttpRequest object representing the upload request.
* @param {HTMLElement} successMessage - The success message element to display.
2020-09-04 17:45:23 +00:00
*/
2024-09-12 05:10:27 +00:00
#handleComplete(xhr, successMessage) {
this.#dispatchEvent('complete', {xhr});
if (successMessage) {
successMessage.removeAttribute('hidden');
successMessage.textContent = 'Upload completed successfully.';
}
}
/**
* Handles the loadStart event.
*
* @param {Event} e - The loadStart event object.
* @param {HTMLElement} progressBar - The progress bar element. Optional.
* @return {void}
*/
#handleLoadStart(e, progressBar) {
this.#dispatchEvent('loadStart', {event: e});
if (progressBar) {
progressBar.removeAttribute('hidden');
progressBar.max = e.total;
progressBar.value = e.loaded;
}
}
/**
* Handles the progress event.
*
* @param {Event} e - The progress event.
* @param {Element} progressBar - The progress bar element.
*
* @return {void}
*/
#handleProgress(e, progressBar) {
this.#dispatchEvent('progress', {event: e});
if (progressBar) {
progressBar.max = e.total;
progressBar.value = e.loaded;
}
}
/**
* Handles the loadEnd event.
*
* @param {Event} e - The loadEnd event object.
* @param {Element} progressBar - The progress bar element to update.
*
* @return {void}
*/
#handleLoadEnd(e, progressBar) {
this.#dispatchEvent('loadEnd', {event: e});
if (progressBar) {
progressBar.max = e.total;
progressBar.value = e.loaded;
}
}
/**
* Handles the completion of all uploads.
*
* @param {XMLHttpRequest} xhr - The XMLHttpRequest object used for the uploads.
* @param {HTMLElement} progressBar - The progress bar element.
* @param {HTMLElement} successMessage - The success message element.
* @param {HTMLElement} errorMessage - The error message element.
* @param {string} displayEndpoint - The display endpoint.
* @param {string} displayId - The display ID.
* @param {Object} call - The call object.
*
* @return {void}
*/
#handleCompleteAll(xhr, progressBar, successMessage, errorMessage, displayEndpoint, displayId, call) {
this.#dispatchEvent('completeAll', {xhr});
if (progressBar) {
setTimeout(() => {
progressBar.setAttribute('hidden', 'hidden');
if (successMessage) successMessage.setAttribute('hidden', 'hidden');
if (errorMessage) errorMessage.setAttribute('hidden', 'hidden');
}, 5000);
}
this.#setupDisplayArea(displayEndpoint, displayId, this.#uploadHelper.getParams(this.#uploadHelper.get(call, 'display_fields')));
}
2020-09-04 17:45:23 +00:00
}
(function(global) {
document.addEventListener('DOMContentLoaded', function() {
let UIkitLocal;
if (!global.UIkit) {
UIkitLocal = require('uikit').default;
} else {
UIkitLocal = global.UIkit;
}
const { endpoint, targetClass, ...additionalConfig } = global.vdmUploaderConfig || {};
if (!endpoint) {
2024-09-12 05:10:27 +00:00
console.error('Endpoint is not defined, exiting initialization.');
2020-09-04 17:45:23 +00:00
return;
}
if (!targetClass) {
2024-09-12 05:10:27 +00:00
console.error('The target class is not defined, exiting initialization.');
2020-09-04 17:45:23 +00:00
return;
}
const uploadElements = document.querySelectorAll('.' + targetClass);
const config = {};
uploadElements.forEach(element => {
const id = element.getAttribute('id');
const uploadEndpoint = global.vdmUploaderConfig[id] ? global.vdmUploaderConfig[id].endpoint : null;
if (!uploadEndpoint) {
2024-09-12 05:10:27 +00:00
console.error(`Upload Endpoint for ${id} is not defined, exiting initialization for this field.`);
2020-09-04 17:45:23 +00:00
return; // Skip this field if no upload endpoint is found
}
const progressBarId = element.dataset.progressbarId;
const typeId = element.dataset.typeId;
// optional
2024-09-12 05:10:27 +00:00
const displayEndpoint = global.vdmUploaderConfig[id] ? global.vdmUploaderConfig[id].endpoint_display : null;
2020-09-04 17:45:23 +00:00
const displayId = element.dataset.displayId || null;
const successId = element.dataset.successId || null;
const errorId = element.dataset.errorId || null;
const allowedFormatId = element.dataset.allowedFormatId || null;
const fileTypeId = element.dataset.fileTypeId || null;
config[id] = {
bar: progressBarId,
typeId: typeId,
endpoint: uploadEndpoint,
successId: successId,
errorId: errorId,
allowedFormatId: allowedFormatId,
fileTypeId: fileTypeId,
displayId: displayId,
displayEndpoint: displayEndpoint
};
});
if (Object.keys(config).length > 0) {
new UikitUploader(config, endpoint, UIkitLocal);
}
});
})(window);
})();