Properties
perceivedPerformance
perceivedPerformance?: boolean | PerceivedPerformanceOptions
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
}
parallel
parallel?: number
How many of these store operations can run in parallel
valueKey
valueKey?: string
The key to use when setting the storage id
actionStore
actionStore?: string
Action to run to trigger the store operation, defaults to ‘store’
actionLoad
actionLoad?: string
Action to run to trigger the load operation, defaults to ‘load’
actionAbort
actionAbort?: string
Action to run to trigger the abort operation, defaults to ‘abort’
shouldStore
shouldStore: (entry: FilePondEntry) => Promise<boolean>
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