@availity/upload
TypeScript icon, indicating that this package has built-in type declarations

3.8.7 • Public • Published

@availity/upload

Availity component for uploading files

Version NPM Downloads Dependecy Status

Installation

npx install-peerdeps @availity/upload --save

Upload (Default export)

The default export is an all-in-one solution which handles uploads, encrypted file password requests and file state management for you.

Example

import React from 'react';
import Upload from '@availity/upload';

const Example = () => <Upload clientId="a" bucketId="b" customerId="c" />;

Props

btnText?: ReactNode

+ Add File for initial file or + Add Another File Attachment if an attachment already have been selected. | The text that appears on the button.

The ID of the bucket you want to upload to.

customerId: string

The customer ID for the organization the user is uploading on behalf of.

clientId: string

The ID obtained from APIConnect. Must be subscribed to the resumeable uploads API.

allowedFileNameCharacters?: string

Restrict the file name characters to a regex set.

allowedFileTypes?: Array<string>

Restrict the file types allowed to be uploaded to. eg: ['.jpeg', '.jpg'].

onFilePreUpload?: [() => boolean]

` An array of callbacks called before the file is uploaded. Each function should return a true or false. If one of these is false, then it will not upload. Useful for scanning files for corruption before uploading to the vault. To ensure that the file is not uploaded and return false, call setError on the UploadCore object to set some error message via calling upload.setError('rejected', somemessage) method for updating the UI. Make sure this is done relatively synchronously.

onFileUpload?: (upload: UploadCore) => void

Callback called when file is uploaded. The callback is provided the Upload instance from upload-core SDK. Use this callback to track which files have been uploaded (to get references returned by the API).

onFileRemove?: (files: Array<File>, fileId: String) => void

Callback called when file is removed. The callback is provided two arguments. 1. the updated files and 2. the id of the file that was removed

maxSize?: number

The maximum file size (in bytes) for a file to be uploaded.

max?: number

The maximum number of files allowed to be uploaded. 0 (or a falsey value) means unlimited. When the max number has been reached, the add button will disappear.

multiple?: boolean

Indicates that the user will be allowed to select multiple files when selecting files from the OS prompt. Default: true.

disabled?: boolean

Disable the file input Default: false.

showFileDrop?: boolean

Set as true to show a drag and drop file upload option instead of a button (file explorer still available on click).

getDropRejectionMessage?: (errors: Array<FileError>, file: File) => String

Override the default error message for files rejected when showFileDrop is true.

onPasswordSubmit?: (event) => void

When a user uploads an encrypted file, they are prompted to input a password. This function is called when the password form is submitted. By default, the event bubbles and will submit a form if the upload component is a child element of that form. Useful for adding event.stopPropagation() if this behavior is not desired.

passwordModalZIndex?: number | string

Override the default z-index for the password prompt modal. Useful for squashing IE11 bugs by setting to auto if your upload component is already inside another modal.

Example

import React from 'react';
import Upload from '@availity/upload';

const Example = () => (
  <Upload btnText="Upload a claim" clientId="a" bucketId="b" customerId="c" multiple={false} max={1} />
);

Callback Function Usage

const Example = () => {
  // onUpload callback definition
  const onUpload = (upload) => {
    if (upload) {
      upload.onSuccess.push(async () => {
        // success action
      });
      upload.onError.push(() => {
        // error action
      });
    }
  };

  // onRemove callback definition
  const onRemove = (file) => {
    // remove action
  };

  return (
    <Upload
      btnText="Upload a claim"
      clientId="a"
      bucketId="b"
      customerId="c"
      onFileUpload={onUpload} // <-- add file callback function
      onFileRemove={onRemove} // <-- remove file callback function
      max={1}
    />
  );
};

FilePickerBtn (Named Export)

The raw file picker button that masks the file input with a button.

Example

import React from 'react';
import { FilePickerBtn } from '@availity/upload';

const Example = () => {
  const handleFileSelection = (event) => {
    const { files } = event.target;
    // do something with the files.
  };

  return <FilePicker onChange={handleFileSelection} />;
};

Props

onClick?: (event: Event) => void

Callback when the button is clicked.

onChange?: (event: Event) => void

Callback when the user has selected a file or multiple files.

multiple?: boolean

Indicates that the user will be allowed to select multiple files when selecting files from the OS prompt.

disabled?: boolean

Disable the file input Default: false.

allowedFileTypes?: Array<string>

The file types you want to restrict uploading to. eg: ['.jpeg', '.jpg'].

maxSize?: number

The maximum file size (in bytes) for a file to be uploaded.

FilePicker (Named Export)

The raw file picker which automatically resets the value of the input, allowing the same file to be selected multiple consecutive files.

Example

import React from 'react';
import { FilePicker } from '@availity/upload';
import { CustomInput } from 'reactstrap';

const Example = () => {
  const handleFileSelection = (event) => {
    const { files } = event.target;
    // do something with the files.
  };

  return <FilePicker tag={CustomInput} onChange={handleFileSelection} />;
};

Props

tag?: React.ComponentType | string

The raw underlying component/element that should be rendered. Default: Reactstrap CustomInput.

onChange?: (event: Event) => void

Callback when the user has selected a file or multiple files.

multiple?: boolean

Indicates that the user will be allowed to select multiple files when selecting files from the OS prompt.

allowedFileTypes?: Array<string>

The file types you want to restrict uploading to. eg: ['.jpeg', '.jpg'].

maxSize?: number

The maximum file size (in bytes) for a file to be uploaded.

UploadProgressBar

The raw progress bar to be used when making your own.

Example

import React from 'react';
import { UploadProgressBar } from '@availity/upload';

const Example = () => <UploadProgressBar upload={uploadInstance} animated />;

Props

upload?: UploadCore

The upload instance returned by creating a new Upload via upload-core.

onProgress?: (upload: UploadCore) => void

Callback function to hook into the onProgress within the Upload instance provided in the upload prop.

onSuccess?: (upload: UploadCore) => void

Callback function to hook into the onSuccess within the Upload instance provided in the upload prop.

onError?: (upload: UploadCore) => void

Callback function to hook into the onError within the Upload instance provided in the upload prop.

complete?: boolean

Triggers the "complete" style in the progress bar. When true, a checkmark appears at the end of the progress bar.

striped?: boolean

Triggers the "striped" style in the progress bar.

animated?: boolean

When true the progress bar has animated stripes while uploading is in progress.

color?: string

Color of the progress bar. Default: success

Readme

Keywords

Package Sidebar

Install

npm i @availity/upload

Weekly Downloads

45

Version

3.8.7

License

MIT

Unpacked Size

57.2 kB

Total Files

26

Last publish

Collaborators

  • lauroxx
  • dznjudo
  • availity-cicd-bot
  • azeigler
  • dnoler
  • jselden
  • cbaker1
  • twarner
  • gregmartdotin
  • hnicbaker
  • chrishavekost
  • jordan-a-young