vue-filepond
vue-filepond copied to clipboard
Is there an event for all files processed (with or without error) [Feature]
Is there an existing issue for this?
- [X] I have searched the existing issues
Is your feature request related to a problem? Please describe.
As stated https://github.com/pqina/vue-filepond/issues/27#issuecomment-552114397
- onprogressfile ->
@progressfile(a file finished uploaded without error) - onprogressfiles ->
@progressfiles(all files finished without error) Is there a event for: - all files finished with error?
Describe the solution you'd like
I'd like to receive a notification when filepond has finished handling any file drag into it, no matter there is error or not. For to add an error parameter in @progressfiles. Such that @progressfiles is always fired, and the error param indicates any error in the process.
handleProcessedFiles(error) {
if (error) {
// something wrong ...
}
}
Describe alternatives you've considered
...
There is not, I'll leave this open as a feature request.
any update on this?