Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 11.0.0 #182

Merged
35 commits merged into from
Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
46bf6e2
prepare next development version 10.0.1-SNAPSHOT
dvvanessastoiber Oct 7, 2021
5529ae7
update package.json
dvvanessastoiber Nov 4, 2021
21b2360
update registries
dvvanessastoiber Nov 4, 2021
be2858f
update imports
dvvanessastoiber Nov 4, 2021
cc0c635
update requirements
dvvanessastoiber Nov 4, 2021
1530461
Adapt use of useAsync
oltionchampari Nov 11, 2021
9ea5331
Update jest.config.js
dvvanessastoiber Nov 16, 2021
3ccf5da
Update package.json
puehringer Nov 17, 2021
1c6ccc0
Update requirements.txt
puehringer Nov 17, 2021
33ba904
Merge pull request #163 from Caleydo/visyn
puehringer Nov 17, 2021
969f6ae
Merge branch 'develop' into och/refactor-use-of-useAsync
thinkh Nov 17, 2021
a2cfaac
Merge pull request #162 from Caleydo/och/refactor-use-of-useAsync
thinkh Nov 18, 2021
6e7638d
Add scientific name to drug name dropdown
oltionchampari Nov 18, 2021
7ca199f
Linter errors
oltionchampari Nov 18, 2021
c3d2fa0
Modify save named set dialog descritpion to match ordino ui
oltionchampari Nov 18, 2021
b068e6c
Make label italic
oltionchampari Nov 18, 2021
2577f7d
Merge pull request #165 from Caleydo/och/1311-save-named-set-dialog-text
thinkh Nov 18, 2021
efbc2c9
Add search for scientificname to SQL query
thinkh Nov 26, 2021
aa52166
Merge pull request #164 from Caleydo/och/1306-scientificname-column
thinkh Nov 26, 2021
860e684
Fix typo in warning of aggregated score dialog
thinkh Dec 28, 2021
ca0af00
Add predefined set `All` for each species
thinkh Feb 9, 2022
cb055a6
Fix tslint
thinkh Feb 9, 2022
9800f40
Merge pull request #170 from Caleydo/thinkh/1333_fix-the-all-predefin…
oltionchampari Feb 10, 2022
718055f
Do not show scientific name of the drug if it is the same
oltionchampari Feb 10, 2022
f4aebea
Merge pull request #171 from Caleydo/och/1306-scientific-name
thinkh Feb 10, 2022
17af89b
remove dependency
dvvanessastoiber Feb 10, 2022
63ba74a
Merge pull request #173 from Caleydo/vstoiber/127_remove_dtiles
thinkh Feb 10, 2022
6a7a343
Removed dTiles from phovea_registry (#174)
puehringer Feb 14, 2022
38fa1ae
Update config.json
Feb 16, 2022
27fafe0
ESLint (#176)
dvdanielrehberger Feb 28, 2022
a7e10ab
Remove internal ids (#168)
puehringer Mar 17, 2022
70e6b8c
TS4 (#179)
dvvanessastoiber Mar 21, 2022
5b23edd
Enable ranking vis panel from .env file
thinkh Apr 15, 2022
d790a41
Merge pull request #181 from Caleydo/thinkh/enable-vis-panel-from-env
oltionchampari Apr 19, 2022
a0452b5
prepare release_11.0.0
dvvanessastoiber Apr 27, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ executors:
node-executor:
working_directory: ~/phovea-web
docker:
- image: circleci/node:12.13-buster-browsers
- image: circleci/node:14.17-buster

jobs:
python-build:
Expand All @@ -30,7 +30,7 @@ jobs:
command: |
(!(test -f docker_packages.txt) || (cat docker_packages.txt | xargs sudo apt-get install -y))
- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_dev.txt" }}
key: deps2-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_dev.txt" }}
- run:
name: Install pip requirements
command: |
Expand All @@ -39,7 +39,7 @@ jobs:
pip install -r requirements_dev.txt
pip install -r requirements.txt
- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_dev.txt" }}
key: deps2-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_dev.txt" }}
paths:
- ~/venv
- run:
Expand All @@ -53,7 +53,7 @@ jobs:
- run:
name: Remove all from dist folder
command: |
rm -rf dist && mkdir dist
rm -rf dist && mkdir dist
- run:
name: Build
command: |
Expand All @@ -75,7 +75,7 @@ jobs:
node -v
npm -v
- restore_cache:
key: deps2-{{ .Branch }}-{{ checksum "package.json" }}
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: Install npm dependencies
command: npm install
Expand All @@ -84,7 +84,7 @@ jobs:
command: |
(grep -l '._resolved.: .\(git[^:]*\|bitbucket\):' ./node_modules/*/package.json || true) | xargs -r dirname | xargs -r rm -rf
- save_cache:
key: deps2-{{ .Branch }}-{{ checksum "package.json" }}
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}
paths: ./node_modules
- run:
name: Install npm dependencies from git repositories (always get latest commit)
Expand Down Expand Up @@ -119,8 +119,8 @@ workflows:
- python-build:
filters:
tags:
only: /.*/
only: /.*/
- web-build:
filters:
tags:
only: /.*/
only: /.*/
21 changes: 0 additions & 21 deletions .editorconfig

This file was deleted.

71 changes: 71 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
module.exports = {
root: true,
extends: [
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"eslint:recommended",
"plugin:import/recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
plugins: ["react", "@typescript-eslint", "jest"],
ignorePatterns: ["*.js"],
env: {
browser: true,
es6: true,
jest: true
},
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parser: "@typescript-eslint/parser",
parserOptions: {
// Make sure eslint and VS Code use the same path for the tsconfig.json:
// https://github.com/typescript-eslint/typescript-eslint/issues/251
tsconfigRootDir: __dirname,
project: "./tsconfig.eslint.json"
},
rules: {
// Disables jsx-a11y https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-webpack-loader-syntax.md
...Object.keys(require('eslint-plugin-jsx-a11y').rules).reduce((acc, rule) => { acc[`jsx-a11y/${rule}`] = 'off'; return acc }, {}),
"class-methods-use-this":"off",
"linebreak-style": "off",
"no-continue": "off",
"no-multi-assign": "warn",
"no-nested-ternary": "off",
"no-param-reassign": ["error", { "props": false }],
"no-return-assign": "warn",
"no-restricted-syntax": "off",
"no-plusplus": "off",
"no-prototype-builtins": "warn",
"no-minusminus": "off",
"no-underscore-dangle": "off",
"max-classes-per-file": "off",
"no-param-reassign": "warn",
"import/no-extraneous-dependencies": "off",
// Disable the following 2 lines because to allow webpack file-loaders syntax
"import/no-webpack-loader-syntax": "off",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"import/order": "error",
"prefer-destructuring": ["warn", {"object": true, "array": false}],
"prefer-promise-reject-errors": "warn",
"prefer-spread": "warn",
"@typescript-eslint/ban-ts-comment": "warn",
"react/destructuring-assignment": "warn",
"react/jsx-props-no-spreading": "off",
"react/no-unused-class-component-methods": "warn",
"react/prop-types": "off",
"react/require-default-props": "off",
"react/static-property-placement": ["warn", "property assignment", {
childContextTypes: "static getter",
contextTypes: "static public field",
contextType: "static public field",
displayName: "static public field",
}]
}
};
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# general things to ignore
/.tscache
/.eslintcache
/.idea
/lib/
/build/
Expand All @@ -22,6 +23,6 @@ node_modules/
/src/**/*.js
/tests/**/*.js
/src/**/*.map
/tests/**/*.map
/tests/**/*.map
*.css
package-lock.json
6 changes: 6 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
"endOfLine": "auto",
"singleQuote": true,
"trailingComma": "all",
"printWidth": 160
};
5 changes: 3 additions & 2 deletions dist/base/extensions.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/base/extensions.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/base/extensions.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/common/GeneUtils.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/common/GeneUtils.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 16 additions & 12 deletions dist/common/GeneUtils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading