-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds visual feedback for then big files are imported: progress bar + % status. There is also new http-client and a bunch of required fixes. * fix: broken file list stories * feat: upload progress ui * chore: integrate external changes * fix: integrate new http client * fix: jsdom problem * fix(cid) switch circleci to new images * fix(e2e): test/e2e/remote-api.test.js This makes E2E tests for remote API less flaky: - leverage expect-puppeteer where possible - tweak navigation so it is not impacted by connection-error state - force refresh of status page to avoid wait for manual refresh * fix(ci): E2E_IPFSD_TYPE=js npm run test:e2e js-ipfs changed CLI path at some point recently Co-authored-by: Marcin Rataj <[email protected]>
- Loading branch information
1 parent
eac8c38
commit 8664bce
Showing
33 changed files
with
29,539 additions
and
21,410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
REACT_APP_VERSION=$npm_package_version | ||
SKIP_PREFLIGHT_CHECK=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
module.exports = { | ||
parser: "babel-eslint", | ||
extends: ['react-app', 'standard', "plugin:jsx-a11y/recommended"], | ||
plugins: ["jsx-a11y"] | ||
parser: 'babel-eslint', | ||
extends: ['react-app', 'standard', 'plugin:jsx-a11y/recommended'], | ||
plugins: ['jsx-a11y'], | ||
// ignore .ts files because it fails to parse it. | ||
ignorePatterns: 'src/**/*.ts' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,4 @@ yarn-error.log* | |
|
||
.vscode | ||
.idea | ||
.eslintcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Workaround https://github.com/ipfs/js-ipfs/issues/3494 | ||
declare module 'ipfs-core-types' { | ||
import type { RootAPI as $RootAPI } from 'ipfs-core-types/src/root' | ||
import type { AbortOptions as $AbortOptions, Await as $Await, AwaitIterable as $AwaitIterable } from 'ipfs-core-types/src/basic' | ||
|
||
declare export interface RootAPI extends $RootAPI {} | ||
declare export interface AbortOptions extends $AbortOptions {} | ||
declare export type Await<T> = $Await<T> | ||
declare export type AwaitIterable<T> = $AwaitIterable<T> | ||
} |
Oops, something went wrong.