mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-21 17:29:43 +00:00
* Add NetworkError error type and isNetworkError utility check
* Detect network errors in tus and xhr-upload
Co-Authored-By: Ifedapo .A. Olarewaju <ifedapoolarewaju@gmail.com>
* add NetworkError check to RequestClient in companion-client
* return false if !xhr 🙈
* move catch so that only errors from _checkMinNumberOfFiles are caught — errors from uploads are logged in `upload-error` already
//cc @goto-bus-stop
* Add NetworkError to MiniXHRUpload in aws-s3
//cc @goto-bus-stop
* Add tests
//cc @ifedapoolarewaju
* pass xhr to NetworkError
* add logging in catch of uppy.upload()
* start error message with “This looks like a network error”
* originalRequest --> request, return NetworkError right away
* check for NetworkError in `delete` as well
do we need it in preflight too, @ifedapoolarewaju?
* remove redundant error message re-declaration
* _showOrLogErrorAndThrow, but don’t showInformer
Co-authored-by: Ifedapo .A. Olarewaju <ifedapoolarewaju@gmail.com>
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
function isNetworkError (xhr) {
|
|
if (!xhr) {
|
|
return false
|
|
}
|
|
return (xhr.readyState !== 0 && xhr.readyState !== 4) || xhr.status === 0
|
|
}
|
|
|
|
module.exports = isNetworkError
|