import accepts from 'attr-accept' // Error codes export const FILE_INVALID_TYPE = 'file-invalid-type' export const FILE_TOO_LARGE = 'file-too-large' export const FILE_TOO_SMALL = 'file-too-small' export const TOO_MANY_FILES = 'too-many-files' export const ErrorCode = { FileInvalidType: FILE_INVALID_TYPE, FileTooLarge: FILE_TOO_LARGE, FileTooSmall: FILE_TOO_SMALL, TooManyFiles: TOO_MANY_FILES, } // File Errors export const getInvalidTypeRejectionErr = accept => { accept = Array.isArray(accept) && accept.length === 1 ? accept[0] : accept const messageSuffix = Array.isArray(accept) ? `one of ${accept.join(', ')}` : accept return { code: FILE_INVALID_TYPE, message: `File type must be ${messageSuffix}` } } export const getTooLargeRejectionErr = maxSize => { return { code: FILE_TOO_LARGE, message: `File is larger than ${maxSize} ${maxSize === 1 ? 'byte' : 'bytes'}` } } export const getTooSmallRejectionErr = minSize => { return { code: FILE_TOO_SMALL, message: `File is smaller than ${minSize} ${minSize === 1 ? 'byte' : 'bytes'}` } } export const TOO_MANY_FILES_REJECTION = { code: TOO_MANY_FILES, message: 'Too many files' } // Firefox versions prior to 53 return a bogus MIME type for every file drag, so dragovers with // that MIME type will always be accepted export function fileAccepted(file, accept) { const isAcceptable = file.type === 'application/x-moz-file' || accepts(file, accept) return [isAcceptable, isAcceptable ? null : getInvalidTypeRejectionErr(accept)] } export function fileMatchSize(file, minSize, maxSize) { if (isDefined(file.size)) { if (isDefined(minSize) && isDefined(maxSize)) { if (file.size > maxSize) return [false, getTooLargeRejectionErr(maxSize)] if (file.size < minSize) return [false, getTooSmallRejectionErr(minSize)] } else if (isDefined(minSize) && file.size < minSize) return [false, getTooSmallRejectionErr(minSize)] else if (isDefined(maxSize) && file.size > maxSize) return [false, getTooLargeRejectionErr(maxSize)] } return [true, null] } function isDefined(value) { return value !== undefined && value !== null } export function allFilesAccepted({files, accept, minSize, maxSize, multiple, maxFiles}) { if ((!multiple && files.length > 1) || (multiple && maxFiles >= 1 && files.length > maxFiles)) { return false; } return files.every(file => { const [accepted] = fileAccepted(file, accept) const [sizeMatch] = fileMatchSize(file, minSize, maxSize) return accepted && sizeMatch }) } // React's synthetic events has event.isPropagationStopped, // but to remain compatibility with other libs (Preact) fall back // to check event.cancelBubble export function isPropagationStopped(event) { if (typeof event.isPropagationStopped === 'function') { return event.isPropagationStopped() } else if (typeof event.cancelBubble !== 'undefined') { return event.cancelBubble } return false } export function isEvtWithFiles(event) { if (!event.dataTransfer) { return !!event.target && !!event.target.files } // https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/types // https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Recommended_drag_types#file return Array.prototype.some.call( event.dataTransfer.types, type => type === 'Files' || type === 'application/x-moz-file' ) } export function isKindFile(item) { return typeof item === 'object' && item !== null && item.kind === 'file' } // allow the entire document to be a drag target export function onDocumentDragOver(event) { event.preventDefault() } function isIe(userAgent) { return userAgent.indexOf('MSIE') !== -1 || userAgent.indexOf('Trident/') !== -1 } function isEdge(userAgent) { return userAgent.indexOf('Edge/') !== -1 } export function isIeOrEdge(userAgent = window.navigator.userAgent) { return isIe(userAgent) || isEdge(userAgent) } /** * This is intended to be used to compose event handlers * They are executed in order until one of them calls `event.isPropagationStopped()`. * Note that the check is done on the first invoke too, * meaning that if propagation was stopped before invoking the fns, * no handlers will be executed. * * @param {Function} fns the event hanlder functions * @return {Function} the event handler to add to an element */ export function composeEventHandlers(...fns) { return (event, ...args) => fns.some(fn => { if (!isPropagationStopped(event) && fn) { fn(event, ...args) } return isPropagationStopped(event) }) } /** * canUseFileSystemAccessAPI checks if the [File System Access API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API) * is supported by the browser. * @returns {boolean} */ export function canUseFileSystemAccessAPI() { return 'showOpenFilePicker' in window; } /** * filePickerOptionsTypes returns the {types} option for https://developer.mozilla.org/en-US/docs/Web/API/window/showOpenFilePicker * based on the accept attr (see https://github.com/react-dropzone/attr-accept) * E.g: converts ['image/*', 'text/*'] to {'image/*': [], 'text/*': []} * @param {string|string[]} accept */ export function filePickerOptionsTypes(accept) { accept = typeof accept === 'string' ? accept.split(',') : accept return [{ description: 'everything', // TODO: Need to handle filtering more elegantly than this! accept: Array.isArray(accept) // Accept just MIME types as per spec // NOTE: accept can be https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#unique_file_type_specifiers ? accept.filter(item => item === 'audio/*' || item === 'video/*' || item === 'image/*' || item === 'text/*' || /\w+\/[-+.\w]+/g.test(item) ).reduce((a, b) => ({...a, [b]: []}), {}) : {}, }]; }