Properties

perceivedPerformance

If an upload is really fast, will show simulated progress to instill confidence in upload, configure with PerceivedPerformanceOptions. By default isn’t set, when set to true the following settings are used:

{
minDuration: 500,
maxDuration: 750,
minStep: 50,
maxStep: 150
}
perceivedPerformance?: boolean | PerceivedPerformanceOptions

parallel

How many of these store operations can run in parallel

parallel?: number

valueKey

The key to use when setting the storage id

valueKey?: string

actionStore

Action to run to trigger the store operation, defaults to ‘store’

actionStore?: string

actionLoad

Action to run to trigger the load operation, defaults to ‘load’

actionLoad?: string

actionAbort

Action to run to trigger the abort operation, defaults to ‘abort’

actionAbort?: string

shouldStore

Determines if we should store the entry, if returns true, the actionStore prop is set automatically. When this prop is set the actionStore prop cannot be set to false to reset the store operation

shouldStore?: (entry: FilePondEntry) => Promise<boolean> | boolean