mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Test setup tweaks (#1415)
* unused package cleanup * make storybook use webpack 5 * see https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#webpack-5 * bump react, cleanup * button story tweaks * add Alert stories * bump Jest to v28.1.0 * try original storyshots initialization * split up build & test CI jobs * stop testing Node.js v14 * set jest coverage flag * downgrade paambaati/codeclimate-action again * move jest config files, remove coverageReporter override * collect coverage from `src/` only * another paambaati/codeclimate-action bump test * create additional button markup test * downgrade paambaati/codeclimate-action again * more downgrade * render default button without optional style prop * ignore some folders for Jest * full coverage for Alert * more package updates * add eslint-plugin-testing-library & eslint-plugin-jest-dom * bump ESLint packages, follow new rules * start storybook in quiet mode * update docs * test storybook build as part of CI * more testing docs clarification * add jest:watch command * add body background colors switch in toolbar * TypeScript voodoo * test codeclimate-action@v2.7.3 for default coverageCommand * downgrade codeclimate-action and running in debug mode * make coverage artifacts OS agnostic * subgraph typings as artifact for coverage job * disable coverage sending job for now Co-authored-by: Enzo Vezzaro <enzo-vezzaro@live.it>
This commit is contained in:
parent
a2bf3b2a1c
commit
5f3ee32ca2
11
.eslintrc
11
.eslintrc
@ -30,9 +30,16 @@
|
||||
"plugin:@typescript-eslint/eslint-recommended",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
"plugin:prettier/recommended",
|
||||
"plugin:react-hooks/recommended"
|
||||
"plugin:react-hooks/recommended",
|
||||
"plugin:testing-library/react",
|
||||
"plugin:jest-dom/recommended"
|
||||
],
|
||||
"plugins": [
|
||||
"@typescript-eslint",
|
||||
"prettier",
|
||||
"testing-library",
|
||||
"jest-dom"
|
||||
],
|
||||
"plugins": ["@typescript-eslint", "prettier"],
|
||||
"rules": {
|
||||
"react/prop-types": "off",
|
||||
"react/no-unused-prop-types": "off",
|
||||
|
87
.github/workflows/ci.yml
vendored
87
.github/workflows/ci.yml
vendored
@ -12,14 +12,14 @@ on:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
node: ['16', '14']
|
||||
node: ['16']
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
@ -38,24 +38,79 @@ jobs:
|
||||
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: npm test
|
||||
|
||||
- name: Upload coverage
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: coverage
|
||||
path: coverage/
|
||||
test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
node: ['16']
|
||||
|
||||
coverage:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [test]
|
||||
if: ${{ success() && github.actor != 'dependabot[bot]' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/download-artifact@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
name: coverage
|
||||
node-version: ${{ matrix.node }}
|
||||
|
||||
- uses: paambaati/codeclimate-action@v2.7.1 # using 2.7.1 for issue: https://github.com/paambaati/codeclimate-action/issues/316
|
||||
- name: Cache node_modules
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-${{ matrix.node }}-test-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: ${{ runner.os }}-${{ matrix.node }}-test-${{ env.cache-name }}-
|
||||
|
||||
- run: npm ci
|
||||
- run: npm test
|
||||
|
||||
- name: Upload coverage artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: coverage-${{ runner.os }}
|
||||
path: coverage/
|
||||
|
||||
# coverage:
|
||||
# runs-on: ubuntu-latest
|
||||
# needs: [test]
|
||||
# if: ${{ success() && github.actor != 'dependabot[bot]' }}
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
# - uses: actions/download-artifact@v2
|
||||
# with:
|
||||
# name: coverage-${{ runner.os }}
|
||||
|
||||
# - uses: paambaati/codeclimate-action@v3.0.0
|
||||
# env:
|
||||
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
||||
# with:
|
||||
# debug: true
|
||||
|
||||
storybook:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
node: ['16']
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
|
||||
- name: Cache node_modules
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-${{ matrix.node }}-storybook-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: ${{ runner.os }}-${{ matrix.node }}-storybook-${{ env.cache-name }}-
|
||||
|
||||
- run: npm ci
|
||||
- run: npm run storybook:build
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -15,3 +15,5 @@ src/@types/apollo/
|
||||
graphql.schema.json
|
||||
src/@types/graph.types.ts
|
||||
tsconfig.tsbuildinfo
|
||||
__snapshots__
|
||||
storybook-static
|
@ -7,10 +7,11 @@ const createJestConfig = nextJest({
|
||||
|
||||
// Add any custom config to be passed to Jest
|
||||
const customJestConfig = {
|
||||
rootDir: '../',
|
||||
// Add more setup options before each test is run
|
||||
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
|
||||
setupFilesAfterEnv: ['<rootDir>/.jest/jest.setup.js'],
|
||||
// if using TypeScript with a baseUrl set to the root directory then you need the below for alias' to work
|
||||
moduleDirectories: ['node_modules', '<rootDir>/'],
|
||||
moduleDirectories: ['node_modules', '<rootDir>/src'],
|
||||
testEnvironment: 'jest-environment-jsdom',
|
||||
moduleNameMapper: {
|
||||
// '^@/components/(.*)$': '<rootDir>/components/$1',
|
||||
@ -22,7 +23,11 @@ const customJestConfig = {
|
||||
'@content/(.*)$': '<rootDir>/@content/$1'
|
||||
},
|
||||
collectCoverage: true,
|
||||
coverageReporters: ['lcov']
|
||||
collectCoverageFrom: [
|
||||
'src/**/*.{ts,tsx}',
|
||||
'!src/**/*.{stories,test}.{ts,tsx}'
|
||||
],
|
||||
testPathIgnorePatterns: ['node_modules', '\\.cache', '.next', 'coverage']
|
||||
}
|
||||
|
||||
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async
|
@ -1,12 +1,9 @@
|
||||
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin')
|
||||
|
||||
module.exports = {
|
||||
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.tsx'],
|
||||
addons: [
|
||||
'@storybook/addon-links',
|
||||
'@storybook/addon-essentials',
|
||||
'@storybook/addon-interactions'
|
||||
],
|
||||
core: { builder: 'webpack5' },
|
||||
stories: ['../src/**/*.stories.tsx'],
|
||||
addons: ['@storybook/addon-essentials'],
|
||||
framework: '@storybook/react',
|
||||
webpackFinal: async (config) => {
|
||||
config.resolve.plugins = [
|
||||
@ -15,6 +12,36 @@ module.exports = {
|
||||
extensions: config.resolve.extensions
|
||||
})
|
||||
]
|
||||
|
||||
// Mimic next.config.js webpack config
|
||||
config.module.rules.push(
|
||||
{
|
||||
test: /\.svg$/,
|
||||
issuer: /\.(tsx|ts)$/,
|
||||
use: [
|
||||
{ loader: require.resolve('@svgr/webpack'), options: { icon: true } }
|
||||
]
|
||||
},
|
||||
{
|
||||
test: /\.gif$/,
|
||||
// yay for webpack 5
|
||||
// https://webpack.js.org/guides/asset-management/#loading-images
|
||||
type: 'asset/resource'
|
||||
}
|
||||
)
|
||||
|
||||
const fallback = config.resolve.fallback || {}
|
||||
Object.assign(fallback, {
|
||||
http: require.resolve('stream-http'),
|
||||
https: require.resolve('https-browserify'),
|
||||
fs: false,
|
||||
crypto: false,
|
||||
os: false,
|
||||
stream: false,
|
||||
assert: false
|
||||
})
|
||||
config.resolve.fallback = fallback
|
||||
|
||||
return config
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,13 @@ import '@oceanprotocol/typographies/css/ocean-typo.css'
|
||||
import '../src/stylesGlobal/styles.css'
|
||||
|
||||
export const parameters = {
|
||||
backgrounds: {
|
||||
default: 'light',
|
||||
values: [
|
||||
{ name: 'dark', value: 'rgb(10, 10, 10)' },
|
||||
{ name: 'light', value: '#fcfcfc' }
|
||||
]
|
||||
},
|
||||
actions: { argTypesRegex: '^on[A-Z].*' },
|
||||
controls: {
|
||||
matchers: {
|
||||
|
75
README.md
75
README.md
@ -19,6 +19,8 @@
|
||||
- [3Box](#3box)
|
||||
- [Purgatory](#purgatory)
|
||||
- [Network Metadata](#network-metadata)
|
||||
- [👩🎤 Storybook](#-storybook)
|
||||
- [🤖 Testing](#-testing)
|
||||
- [✨ Code Style](#-code-style)
|
||||
- [🛳 Production](#-production)
|
||||
- [⬆️ Deployment](#️-deployment)
|
||||
@ -276,24 +278,6 @@ export default function NetworkName(): ReactElement {
|
||||
}
|
||||
```
|
||||
|
||||
## ✨ Code Style
|
||||
|
||||
Code style is automatically enforced through [ESLint](https://eslint.org) & [Prettier](https://prettier.io) rules:
|
||||
|
||||
- Git pre-commit hook runs `prettier` on staged files, setup with [Husky](https://typicode.github.io/husky)
|
||||
- VS Code suggested extensions and settings for auto-formatting on file save
|
||||
- CI runs a linting & TypeScript typings check with `npm run lint`, and fails if errors are found
|
||||
|
||||
For running linting and auto-formatting manually, you can use from the root of the project:
|
||||
|
||||
```bash
|
||||
# linting check, also runs Typescript typings check
|
||||
npm run lint
|
||||
|
||||
# auto format all files in the project with prettier, taking all configs into account
|
||||
npm run format
|
||||
```
|
||||
|
||||
## 👩🎤 Storybook
|
||||
|
||||
Storybook helps us build UI components in isolation from our app's business logic, data, and context. That makes it easy to develop hard-to-reach states and save these UI states as stories to revisit during development, testing, or QA.
|
||||
@ -311,36 +295,73 @@ src
|
||||
│ │ index.test.tsx
|
||||
</pre>
|
||||
|
||||
You can also write a [test](https://storybook.js.org/docs/react/writing-tests/importing-stories-in-tests#example-with-testing-library) against your story by creating a `index.test.tsx` file.
|
||||
|
||||
Starting up the Storybook server with this command will make it accessible under `http://localhost:6006`:
|
||||
|
||||
```bash
|
||||
npm run storybook
|
||||
```
|
||||
|
||||
## 🤖 Testing
|
||||
|
||||
Interaction tests are setup with Storybook's Addon for [Testing Library](https://storybook.js.org/docs/react/writing-tests/importing-stories-in-tests#example-with-testing-library), which utilizes [Jest](https://jestjs.io/) as test runner. A combined coverage report is sent to CodeClimate via the coverage GitHub Actions job.
|
||||
|
||||
Executing linting, type checking, and interaction tests:
|
||||
If you want to build a portable static version under `storybook-static/`:
|
||||
|
||||
```bash
|
||||
npm run test
|
||||
npm run storybook:build
|
||||
```
|
||||
|
||||
Executing only interaction tests:
|
||||
## 🤖 Testing
|
||||
|
||||
Test runs utilize [Jest](https://jestjs.io/) as test runner and [Testing Library](https://testing-library.com/docs/react-testing-library/intro) for writing tests.
|
||||
|
||||
All created Storybook stories will automatically run as individual tests by using the [StoryShots Addon](https://storybook.js.org/addons/@storybook/addon-storyshots).
|
||||
|
||||
Creating Storybook stories for a component will provide good coverage of a component in many cases. Additional tests for dedicated component functionality which can't be done with Storybook are created as usual [Testing Library](https://testing-library.com/docs/react-testing-library/intro) tests, but you can also [import exisiting Storybook stories](https://storybook.js.org/docs/react/writing-tests/importing-stories-in-tests#example-with-testing-library) into those tests.
|
||||
|
||||
Executing linting, type checking, and full test run:
|
||||
|
||||
```bash
|
||||
npm test
|
||||
```
|
||||
|
||||
Which is a combination of multiple scripts which can also be run individually:
|
||||
|
||||
```bash
|
||||
npm run lint
|
||||
npm run type-check
|
||||
npm run jest
|
||||
```
|
||||
|
||||
A coverage report is automatically shown in console whenever `npm run jest` is called. Generated reports are sent to CodeClimate during CI runs.
|
||||
|
||||
During local development you can continously get coverage report feedback in your console by running Jest in watch mode:
|
||||
|
||||
```bash
|
||||
npm run jest:watch
|
||||
```
|
||||
|
||||
## ✨ Code Style
|
||||
|
||||
Code style is automatically enforced through [ESLint](https://eslint.org) & [Prettier](https://prettier.io) rules:
|
||||
|
||||
- Git pre-commit hook runs `prettier` on staged files, setup with [Husky](https://typicode.github.io/husky)
|
||||
- VS Code suggested extensions and settings for auto-formatting on file save
|
||||
- CI runs a linting & TypeScript typings check as part of `npm test`, and fails if errors are found
|
||||
|
||||
For running linting and auto-formatting manually, you can use from the root of the project:
|
||||
|
||||
```bash
|
||||
# linting check
|
||||
npm run lint
|
||||
|
||||
# auto format all files in the project with prettier, taking all configs into account
|
||||
npm run format
|
||||
```
|
||||
|
||||
## 🛳 Production
|
||||
|
||||
To create a production build, run from the root of the project:
|
||||
|
||||
```bash
|
||||
npm run build
|
||||
|
||||
# serve production build
|
||||
npm run serve
|
||||
```
|
||||
|
20714
package-lock.json
generated
20714
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
68
package.json
68
package.json
@ -10,15 +10,16 @@
|
||||
"serve": "serve -s public/",
|
||||
"pregenerate": "bash scripts/pregenerate.sh",
|
||||
"test": "npm run pregenerate && npm run lint && npm run type-check && npm run jest",
|
||||
"jest": "jest",
|
||||
"jest": "jest -c .jest/jest.config.js",
|
||||
"jest:watch": "jest -c .jest/jest.config.js --watch",
|
||||
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx .",
|
||||
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
|
||||
"type-check": "tsc --noEmit",
|
||||
"deploy:s3": "bash scripts/deploy-s3.sh",
|
||||
"postinstall": "husky install",
|
||||
"codegen:apollo": "apollo client:codegen --endpoint=https://v4.subgraph.rinkeby.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph --target typescript --tsFileExtension=d.ts --outputFlat src/@types/subgraph/",
|
||||
"storybook": "start-storybook -p 6006",
|
||||
"build-storybook": "build-storybook"
|
||||
"storybook": "start-storybook -p 6006 --quiet",
|
||||
"storybook:build": "build-storybook"
|
||||
},
|
||||
"dependencies": {
|
||||
"@coingecko/cryptoformat": "^0.4.4",
|
||||
@ -27,17 +28,16 @@
|
||||
"@oceanprotocol/lib": "^1.0.0-next.42",
|
||||
"@oceanprotocol/typographies": "^0.1.0",
|
||||
"@portis/web3": "^4.0.7",
|
||||
"@storybook/addon-storyshots": "^6.4.22",
|
||||
"@tippyjs/react": "^4.2.6",
|
||||
"@urql/exchange-refocus": "^0.2.5",
|
||||
"@walletconnect/web3-provider": "^1.7.7",
|
||||
"axios": "^0.26.1",
|
||||
"@walletconnect/web3-provider": "^1.7.8",
|
||||
"axios": "^0.27.2",
|
||||
"chart.js": "^3.7.1",
|
||||
"classnames": "^2.3.1",
|
||||
"date-fns": "^2.28.0",
|
||||
"decimal.js": "^10.3.1",
|
||||
"dom-confetti": "^0.2.2",
|
||||
"dotenv": "^16.0.0",
|
||||
"dotenv": "^16.0.1",
|
||||
"filesize": "^8.0.7",
|
||||
"formik": "^2.2.9",
|
||||
"gray-matter": "^4.0.3",
|
||||
@ -47,17 +47,17 @@
|
||||
"lodash.debounce": "^4.0.8",
|
||||
"lodash.omit": "^4.5.0",
|
||||
"myetherwallet-blockies": "^0.1.1",
|
||||
"next": "^12.1.5",
|
||||
"next": "^12.1.6",
|
||||
"query-string": "^7.1.1",
|
||||
"react": "^17.0.2",
|
||||
"react": "^18.1.0",
|
||||
"react-chartjs-2": "^4.1.0",
|
||||
"react-clipboard.js": "^2.0.16",
|
||||
"react-data-table-component": "^6.11.7",
|
||||
"react-dom": "^17.0.2",
|
||||
"react-dom": "^18.1.0",
|
||||
"react-dotdotdot": "^1.3.1",
|
||||
"react-modal": "^3.14.4",
|
||||
"react-modal": "^3.15.1",
|
||||
"react-paginate": "^8.1.3",
|
||||
"react-spring": "^9.4.4",
|
||||
"react-spring": "^9.4.5",
|
||||
"react-tabs": "^3.2.3",
|
||||
"react-toastify": "^8.2.0",
|
||||
"remark": "^13.0.0",
|
||||
@ -73,17 +73,16 @@
|
||||
"yup": "^0.32.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@storybook/addon-actions": "^6.4.22",
|
||||
"@storybook/addon-essentials": "^6.4.22",
|
||||
"@storybook/addon-interactions": "^6.4.22",
|
||||
"@storybook/addon-links": "^6.4.22",
|
||||
"@storybook/addon-storyshots": "^6.4.22",
|
||||
"@storybook/builder-webpack5": "^6.4.22",
|
||||
"@storybook/manager-webpack5": "^6.4.22",
|
||||
"@storybook/react": "^6.4.22",
|
||||
"@storybook/testing-library": "^0.0.9",
|
||||
"@storybook/testing-library": "^0.0.11",
|
||||
"@storybook/testing-react": "^1.2.4",
|
||||
"@svgr/webpack": "^6.2.1",
|
||||
"@testing-library/jest-dom": "^5.16.4",
|
||||
"@testing-library/react": "^12.1.5",
|
||||
"@testing-library/user-event": "^14.1.1",
|
||||
"@testing-library/react": "^13.2.0",
|
||||
"@types/chart.js": "^2.9.37",
|
||||
"@types/d3": "^7.1.0",
|
||||
"@types/js-cookie": "^3.0.1",
|
||||
@ -91,34 +90,37 @@
|
||||
"@types/lodash.debounce": "^4.0.3",
|
||||
"@types/lodash.omit": "^4.5.6",
|
||||
"@types/node": "^17.0.13",
|
||||
"@types/react": "^17.0.38",
|
||||
"@types/react-dom": "^17.0.11",
|
||||
"@types/react": "^18.0.9",
|
||||
"@types/react-dom": "^18.0.3",
|
||||
"@types/react-modal": "^3.13.1",
|
||||
"@types/react-paginate": "^7.1.1",
|
||||
"@types/react-tabs": "^2.3.4",
|
||||
"@types/remove-markdown": "^0.3.1",
|
||||
"@types/yup": "^0.29.11",
|
||||
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
||||
"@typescript-eslint/parser": "^5.15.0",
|
||||
"@types/yup": "^0.29.13",
|
||||
"@typescript-eslint/eslint-plugin": "^5.23.0",
|
||||
"@typescript-eslint/parser": "^5.23.0",
|
||||
"apollo": "^2.33.9",
|
||||
"eslint": "^7.27.0",
|
||||
"eslint-config-oceanprotocol": "^1.5.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint": "^8.15.0",
|
||||
"eslint-config-oceanprotocol": "^2.0.1",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-jest-dom": "^4.0.1",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"eslint-plugin-react": "^7.28.0",
|
||||
"eslint-plugin-react-hooks": "^4.3.0",
|
||||
"eslint-plugin-react": "^7.29.4",
|
||||
"eslint-plugin-react-hooks": "^4.5.0",
|
||||
"eslint-plugin-testing-library": "^5.4.0",
|
||||
"file-loader": "^6.2.0",
|
||||
"https-browserify": "^1.0.0",
|
||||
"husky": "^7.0.4",
|
||||
"jest": "^27.5.1",
|
||||
"prettier": "^2.6.0",
|
||||
"husky": "^8.0.1",
|
||||
"jest": "^28.1.0",
|
||||
"jest-environment-jsdom": "^28.1.0",
|
||||
"prettier": "^2.6.2",
|
||||
"pretty-quick": "^3.1.3",
|
||||
"process": "^0.11.10",
|
||||
"serve": "^13.0.2",
|
||||
"stream-http": "^3.2.0",
|
||||
"ts-jest": "^27.1.4",
|
||||
"ts-jest": "^28.0.2",
|
||||
"tsconfig-paths-webpack-plugin": "^3.5.2",
|
||||
"typescript": "^4.5.4"
|
||||
"typescript": "^4.6.4"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -41,6 +41,7 @@ function ConsentProvider({ children }: { children: ReactNode }): ReactElement {
|
||||
cookies.optionalCookies?.map((cookie) => {
|
||||
deleteCookie(cookie.cookieName)
|
||||
resetCookieConsent[cookie.cookieName] = status
|
||||
return status
|
||||
})
|
||||
setConsentStatus(resetCookieConsent)
|
||||
}
|
||||
@ -97,12 +98,15 @@ function ConsentProvider({ children }: { children: ReactNode }): ReactElement {
|
||||
initialValues[cookie.cookieName] = CookieConsentStatus.NOT_AVAILABLE
|
||||
break
|
||||
}
|
||||
|
||||
return initialValues
|
||||
})
|
||||
|
||||
setConsentStatus(initialValues)
|
||||
}, [cookies.optionalCookies, appConfig])
|
||||
|
||||
useEffect(() => {
|
||||
// eslint-disable-next-line array-callback-return
|
||||
Object.keys(consentStatus).map((cookieName) => {
|
||||
switch (consentStatus[cookieName]) {
|
||||
case CookieConsentStatus.APPROVED:
|
||||
|
@ -129,7 +129,7 @@ function ProfileProvider({
|
||||
const [poolSharesInterval, setPoolSharesInterval] = useState<NodeJS.Timeout>()
|
||||
|
||||
const fetchPoolShares = useCallback(
|
||||
async (accountId, chainIds, isEthAddress) => {
|
||||
async (accountId: string, chainIds: number[], isEthAddress: boolean) => {
|
||||
if (!accountId || !chainIds || !isEthAddress) return
|
||||
|
||||
try {
|
||||
|
@ -157,7 +157,7 @@ export async function getAssetsFromDidList(
|
||||
if (!(didList.length > 0)) return
|
||||
|
||||
const baseParams = {
|
||||
chainIds: chainIds,
|
||||
chainIds,
|
||||
filters: [getFilterTerm('_id', didList)],
|
||||
ignorePurgatory: true
|
||||
} as BaseQueryParams
|
||||
@ -179,7 +179,7 @@ export async function getAssetsFromDtList(
|
||||
if (!(dtList.length > 0)) return
|
||||
|
||||
const baseParams = {
|
||||
chainIds: chainIds,
|
||||
chainIds,
|
||||
filters: [getFilterTerm('services.datatokenAddress', dtList)],
|
||||
ignorePurgatory: true
|
||||
} as BaseQueryParams
|
||||
|
@ -279,10 +279,7 @@ export async function getPreviousOrders(
|
||||
account: string,
|
||||
assetTimeout: string
|
||||
): Promise<string> {
|
||||
const variables = {
|
||||
id: id,
|
||||
account: account
|
||||
}
|
||||
const variables = { id, account }
|
||||
const fetchedPreviousOrders: OperationResult<AssetPreviousOrder> =
|
||||
await fetchData(PreviousOrderQuery, variables, null)
|
||||
if (fetchedPreviousOrders.data?.orders?.length === 0) return null
|
||||
@ -347,7 +344,7 @@ export async function getAccountLiquidityInOwnAssets(
|
||||
): Promise<string> {
|
||||
const queryVariables = {
|
||||
user: accountId.toLowerCase(),
|
||||
pools: pools
|
||||
pools
|
||||
}
|
||||
const results: PoolSharesList[] = await fetchDataForMultipleChains(
|
||||
UserSharesQuery,
|
||||
|
@ -26,7 +26,7 @@ export default function AddToken({
|
||||
|
||||
const styleClasses = cx({
|
||||
button: true,
|
||||
minimal: minimal,
|
||||
minimal,
|
||||
[className]: className
|
||||
})
|
||||
|
||||
|
@ -29,7 +29,7 @@ export default function FileIcon({
|
||||
}): ReactElement {
|
||||
const styleClasses = cx({
|
||||
file: true,
|
||||
small: small,
|
||||
small,
|
||||
[className]: className
|
||||
})
|
||||
|
||||
|
@ -16,7 +16,7 @@ export default function PageHeader({
|
||||
}): ReactElement {
|
||||
const styleClasses = cx({
|
||||
header: true,
|
||||
center: center
|
||||
center
|
||||
})
|
||||
|
||||
return (
|
||||
|
@ -1,5 +1,5 @@
|
||||
.alert {
|
||||
composes: box from './Box.module.css';
|
||||
composes: box from '../Box.module.css';
|
||||
max-width: 40rem;
|
||||
margin: auto;
|
||||
border-width: 0;
|
37
src/components/@shared/atoms/Alert/index.stories.tsx
Normal file
37
src/components/@shared/atoms/Alert/index.stories.tsx
Normal file
@ -0,0 +1,37 @@
|
||||
import React from 'react'
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react'
|
||||
|
||||
import Alert, { AlertProps } from '@shared/atoms/Alert'
|
||||
|
||||
export default {
|
||||
title: 'Component/@shared/atoms/Alert',
|
||||
component: Alert
|
||||
} as ComponentMeta<typeof Alert>
|
||||
|
||||
const Template: ComponentStory<typeof Alert> = (args) => <Alert {...args} />
|
||||
|
||||
interface Props {
|
||||
args: AlertProps
|
||||
}
|
||||
|
||||
export const Default: Props = Template.bind({})
|
||||
Default.args = {
|
||||
text: 'Alert text',
|
||||
state: 'info',
|
||||
onDismiss: () => console.log('Alert closed!')
|
||||
}
|
||||
|
||||
export const Full: Props = Template.bind({})
|
||||
Full.args = {
|
||||
title: 'Alert',
|
||||
text: 'Alert text',
|
||||
state: 'info',
|
||||
action: {
|
||||
name: 'Action',
|
||||
handleAction: () => null as any
|
||||
},
|
||||
badge: 'Hello',
|
||||
onDismiss: () => {
|
||||
console.log('Alert closed!')
|
||||
}
|
||||
}
|
@ -1,21 +1,13 @@
|
||||
import React, { ReactElement, FormEvent } from 'react'
|
||||
import classNames from 'classnames/bind'
|
||||
import styles from './Alert.module.css'
|
||||
import Button from './Button'
|
||||
import Markdown from '../Markdown'
|
||||
import Badge from './Badge'
|
||||
import styles from './index.module.css'
|
||||
import Button from '../Button'
|
||||
import Markdown from '../../Markdown'
|
||||
import Badge from '../Badge'
|
||||
|
||||
const cx = classNames.bind(styles)
|
||||
|
||||
export default function Alert({
|
||||
title,
|
||||
badge,
|
||||
text,
|
||||
state,
|
||||
action,
|
||||
onDismiss,
|
||||
className
|
||||
}: {
|
||||
export interface AlertProps {
|
||||
title?: string
|
||||
badge?: string
|
||||
text: string
|
||||
@ -28,7 +20,17 @@ export default function Alert({
|
||||
}
|
||||
onDismiss?: () => void
|
||||
className?: string
|
||||
}): ReactElement {
|
||||
}
|
||||
|
||||
export default function Alert({
|
||||
title,
|
||||
badge,
|
||||
text,
|
||||
state,
|
||||
action,
|
||||
onDismiss,
|
||||
className
|
||||
}: AlertProps): ReactElement {
|
||||
const styleClasses = cx({
|
||||
alert: true,
|
||||
[state]: state,
|
@ -1,6 +1,5 @@
|
||||
import React from 'react'
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react'
|
||||
|
||||
import Button, { ButtonProps } from '@shared/atoms/Button'
|
||||
|
||||
// More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
|
||||
@ -15,11 +14,15 @@ const Template: ComponentStory<typeof Button> = (args: ButtonProps) => (
|
||||
)
|
||||
|
||||
interface Props {
|
||||
args: {
|
||||
children: string
|
||||
style: string
|
||||
size: string
|
||||
onClick: any
|
||||
args: ButtonProps
|
||||
}
|
||||
|
||||
export const Default: Props = Template.bind({})
|
||||
// More on args: https://storybook.js.org/docs/react/writing-stories/args
|
||||
Default.args = {
|
||||
children: 'Button',
|
||||
onClick: () => {
|
||||
console.log('Button pressed!')
|
||||
}
|
||||
}
|
||||
|
||||
@ -28,6 +31,15 @@ export const Primary: Props = Template.bind({})
|
||||
Primary.args = {
|
||||
children: 'Button',
|
||||
style: 'primary',
|
||||
onClick: () => {
|
||||
console.log('Button pressed!')
|
||||
}
|
||||
}
|
||||
|
||||
export const Small: Props = Template.bind({})
|
||||
// More on args: https://storybook.js.org/docs/react/writing-stories/args
|
||||
Small.args = {
|
||||
children: 'Button',
|
||||
size: 'small',
|
||||
onClick: () => {
|
||||
console.log('Button pressed!')
|
||||
|
@ -1,20 +1,25 @@
|
||||
import React from 'react'
|
||||
import { render, screen } from '@testing-library/react'
|
||||
import { composeStory } from '@storybook/testing-react'
|
||||
import Meta, { Primary as PrimaryStory } from './index.stories'
|
||||
import Button from './'
|
||||
|
||||
// Returns a component that already contain all decorators from story level, meta level and global level.
|
||||
const Primary = composeStory(PrimaryStory, Meta)
|
||||
test('returns correct markup when href or to is passed', async () => {
|
||||
const { rerender } = render(
|
||||
<Button href="https://oceanprotocol.com">Hello Button</Button>
|
||||
)
|
||||
|
||||
test('onclick handler is called', () => {
|
||||
render(<Primary />)
|
||||
const buttonElement = screen.getByRole('button')
|
||||
buttonElement.click()
|
||||
let button = screen.getByText('Hello Button')
|
||||
expect(button).toHaveAttribute('href', 'https://oceanprotocol.com')
|
||||
expect(button).toContainHTML('<a')
|
||||
|
||||
rerender(<Button to="/publish">Hello Button</Button>)
|
||||
button = screen.getByText('Hello Button')
|
||||
expect(button).toHaveAttribute('href', '/publish')
|
||||
expect(button).toContainHTML('<a')
|
||||
})
|
||||
|
||||
test('test against args', () => {
|
||||
render(<Primary />)
|
||||
const buttonElement = screen.getByRole('button')
|
||||
// Testing against values coming from the story itself! No need for duplication
|
||||
expect(buttonElement.textContent).toEqual(Primary.args.children)
|
||||
test('returns correct markup when no href or to is passed', async () => {
|
||||
render(<Button>Hello Button</Button>)
|
||||
|
||||
const button = screen.getByText('Hello Button')
|
||||
expect(button).toContainHTML('<button')
|
||||
})
|
||||
|
@ -15,7 +15,7 @@ export default function Container({
|
||||
}): ReactElement {
|
||||
const styleClasses = cx({
|
||||
container: true,
|
||||
narrow: narrow,
|
||||
narrow,
|
||||
[className]: className
|
||||
})
|
||||
|
||||
|
@ -1,10 +1,7 @@
|
||||
import React, { ReactElement, useEffect, useState } from 'react'
|
||||
import loadable from '@loadable/component'
|
||||
import styles from './Copy.module.css'
|
||||
import IconCopy from '@images/copy.svg'
|
||||
|
||||
// lazy load when needed only, as library is a bit big
|
||||
const Clipboard = loadable(() => import('react-clipboard.js'))
|
||||
import Clipboard from 'react-clipboard.js'
|
||||
|
||||
export default function Copy({ text }: { text: string }): ReactElement {
|
||||
const [isCopied, setIsCopied] = useState(false)
|
||||
|
@ -1,4 +1,4 @@
|
||||
import React, { ReactElement } from 'react'
|
||||
import React, { ReactElement, ReactNode } from 'react'
|
||||
import DataTable, { IDataTableProps } from 'react-data-table-component'
|
||||
import Loader from './Loader'
|
||||
import Pagination from '@shared/Pagination'
|
||||
@ -47,7 +47,7 @@ export default function Table({
|
||||
noDataComponent={<Empty message={emptyMessage} />}
|
||||
progressPending={isLoading}
|
||||
progressComponent={<Loader />}
|
||||
paginationComponent={Pagination}
|
||||
paginationComponent={Pagination as unknown as ReactNode}
|
||||
defaultSortField={sortField}
|
||||
defaultSortAsc={sortAsc}
|
||||
{...props}
|
||||
|
@ -86,7 +86,8 @@ export default function Compute({
|
||||
!hasAlgoAssetDatatoken &&
|
||||
!isAlgoConsumablePrice)
|
||||
|
||||
const { timeout } = ddo?.services[0]
|
||||
const service = ddo?.services[0]
|
||||
const { timeout } = service
|
||||
|
||||
async function checkPreviousOrders(ddo: DDO) {
|
||||
const { type } = ddo.metadata
|
||||
|
@ -9,7 +9,8 @@ export default function MetaFull({ ddo }: { ddo: Asset }): ReactElement {
|
||||
const { isInPurgatory } = useAsset()
|
||||
|
||||
function DockerImage() {
|
||||
const { image, tag } = ddo?.metadata?.algorithm?.container
|
||||
const containerInfo = ddo?.metadata?.algorithm?.container
|
||||
const { image, tag } = containerInfo
|
||||
return <span>{`${image}:${tag}`}</span>
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,7 @@ export default function FormEditComputeDataset({
|
||||
const { publisherTrustedAlgorithms } = getServiceByName(
|
||||
asset,
|
||||
'compute'
|
||||
)?.compute
|
||||
).compute
|
||||
|
||||
async function getAlgorithmList(
|
||||
publisherTrustedAlgorithms: PublisherTrustedAlgorithm[]
|
||||
|
@ -117,7 +117,7 @@ export default function HomePage(): ReactElement {
|
||||
})
|
||||
|
||||
const baseParams = {
|
||||
chainIds: chainIds,
|
||||
chainIds,
|
||||
esPaginationOptions: {
|
||||
size: 9
|
||||
},
|
||||
|
@ -21,8 +21,10 @@ export default function NumberUnit({
|
||||
return (
|
||||
<div className={styles.unit}>
|
||||
<div className={`${styles.number} ${small && styles.small}`}>
|
||||
<>
|
||||
{icon && icon}
|
||||
{value}
|
||||
</>
|
||||
</div>
|
||||
<span className={styles.label}>
|
||||
{label}{' '}
|
||||
|
@ -7,6 +7,7 @@ import styles from './PublishedList.module.css'
|
||||
import { useCancelToken } from '@hooks/useCancelToken'
|
||||
import Filters from '../../Search/Filters'
|
||||
import { useMarketMetadata } from '@context/MarketMetadata'
|
||||
import { CancelToken } from 'axios'
|
||||
|
||||
export default function PublishedList({
|
||||
accountId
|
||||
@ -19,12 +20,19 @@ export default function PublishedList({
|
||||
const [queryResult, setQueryResult] = useState<PagedAssets>()
|
||||
const [isLoading, setIsLoading] = useState(false)
|
||||
const [page, setPage] = useState<number>(1)
|
||||
const [service, setServiceType] = useState()
|
||||
const [access, setAccsesType] = useState()
|
||||
const [service, setServiceType] = useState<string>()
|
||||
const [access, setAccessType] = useState<string>()
|
||||
const newCancelToken = useCancelToken()
|
||||
|
||||
const getPublished = useCallback(
|
||||
async (accountId, chainIds, page, service, access, cancelToken) => {
|
||||
async (
|
||||
accountId: string,
|
||||
chainIds: number[],
|
||||
page: number,
|
||||
service: string,
|
||||
access: string,
|
||||
cancelToken: CancelToken
|
||||
) => {
|
||||
try {
|
||||
setIsLoading(true)
|
||||
const result = await getPublishedAssets(
|
||||
@ -70,7 +78,7 @@ export default function PublishedList({
|
||||
serviceType={service}
|
||||
setServiceType={setServiceType}
|
||||
accessType={access}
|
||||
setAccessType={setAccsesType}
|
||||
setAccessType={setAccessType}
|
||||
className={styles.filters}
|
||||
/>
|
||||
<AssetList
|
||||
|
@ -134,7 +134,7 @@ export function getSearchQuery(
|
||||
from: (Number(page) - 1 || 0) * (Number(offset) || 21),
|
||||
size: Number(offset) || 21
|
||||
},
|
||||
sortOptions: { sortBy: sort, sortDirection: sortDirection },
|
||||
sortOptions: { sortBy: sort, sortDirection },
|
||||
filters
|
||||
} as BaseQueryParams
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user