mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-28 12:37:00 +00:00
25 lines
1.2 KiB
JavaScript
25 lines
1.2 KiB
JavaScript
const webkitGetAsEntryApi = require('./utils/webkitGetAsEntryApi/index')
|
|
const fallbackApi = require('./utils/fallbackApi')
|
|
|
|
/**
|
|
* Returns a promise that resolves to the array of dropped files (if a folder is
|
|
* dropped, and browser supports folder parsing - promise resolves to the flat
|
|
* array of all files in all directories).
|
|
* Each file has .relativePath prop appended to it (e.g. "/docs/Prague/ticket_from_prague_to_ufa.pdf")
|
|
* if browser supports it. Otherwise it's undefined.
|
|
*
|
|
* @param {DataTransfer} dataTransfer
|
|
* @param {Function} logDropError - a function that's called every time some
|
|
* folder or some file error out (e.g. because of the folder name being too long
|
|
* on Windows). Notice that resulting promise will always be resolved anyway.
|
|
*
|
|
* @returns {Promise} - Array<File>
|
|
*/
|
|
module.exports = function getDroppedFiles (dataTransfer, { logDropError = () => {} } = {}) {
|
|
// Get all files from all subdirs. Works (at least) in Chrome, Mozilla, and Safari
|
|
if (dataTransfer.items?.[0] && 'webkitGetAsEntry' in dataTransfer.items[0]) {
|
|
return webkitGetAsEntryApi(dataTransfer, logDropError)
|
|
// Otherwise just return all first-order files
|
|
}
|
|
return fallbackApi(dataTransfer)
|
|
}
|