-
Notifications
You must be signed in to change notification settings - Fork 54
feat: data explorer query state in url #807
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
Merged
+174
−123
Merged
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
8a1ca02
feat: explorer state encoded in URL
ZakirG 7afde8b
Merge branch 'master' of https://github.com/uc-cdis/data-portal into …
ZakirG 1f0957c
encoding works, decoding in progress
ZakirG 2d9b952
Merge branch 'master' of https://github.com/uc-cdis/data-portal into …
ZakirG 4aac94b
loading url filter into UI is working
ZakirG fba3398
fix eslint
ZakirG 83f93ba
Merge branch 'master' of https://github.com/uc-cdis/data-portal into …
ZakirG 5b78220
cleaning up
ZakirG c6af6c9
feature flag
ZakirG 1902666
Merge branch 'master' of https://github.com/uc-cdis/data-portal into …
ZakirG 3376515
portal config docs
ZakirG 87a5652
cleaning up
ZakirG d7108ea
cleaning up
ZakirG bdfb2c1
update package
ZakirG 41fabbd
update to npm 7
ZakirG 925a980
Merge branch 'master' of https://github.com/uc-cdis/data-portal into …
ZakirG d35d95e
test
ZakirG a6d7148
fix secrets
ZakirG 165c79f
simplifying logic
ZakirG 50a7246
eslint
ZakirG 284c451
simplify logic
ZakirG ff981d6
update package
ZakirG b622fca
cleaning up
ZakirG 7e9140c
cleaning up
ZakirG ea3a5d8
cleaning up
ZakirG 7c7b758
update from master
ZakirG e9c3f68
change Dockerfile
ZakirG f220ec4
debugging quay problems
ZakirG ff1b23c
local install npm 7.8
ZakirG 8066301
DOckerfile to 7.8
ZakirG 75b0a83
add maxsockets command
ZakirG a623420
edit comments
ZakirG e74f0a4
PR feedbacks
ZakirG 66a6ad2
fix eslint
ZakirG 0b16381
update doc
ZakirG ee9b17b
eslint
ZakirG 3e20b50
update package lock
ZakirG eea940c
PR feedback
ZakirG 48c7896
update ui-component version
ZakirG 756b7ab
Merge branch 'master' of https://github.com/uc-cdis/data-portal into …
ZakirG 172c55f
update package-lock
ZakirG 6fb24d3
update guppy version
ZakirG 6a78a35
install again
ZakirG 5c30e19
install again
ZakirG 2fca7f0
legacy-peer-deps
ZakirG 31f0bd3
fix: docker build
mfshao e073ec1
more fix
mfshao File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -15,10 +15,11 @@ services: | |
| - docker | ||
|
|
||
| before_install: | ||
| - npm install -g [email protected] | ||
| - npm install -g [email protected] | ||
| - npm config set maxsockets 5 | ||
|
|
||
| install: | ||
| - npm install --force | ||
| - npm install --force --legacy-peer-deps | ||
|
|
||
| script: | ||
| - npm run relay | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -21,7 +21,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| && rm -rf /var/lib/apt/lists/* \ | ||
| && ln -sf /dev/stdout /var/log/nginx/access.log \ | ||
| && ln -sf /dev/stderr /var/log/nginx/error.log \ | ||
| && npm install -g [email protected] | ||
| && npm install -g [email protected] \ | ||
| && npm config set maxsockets 5 | ||
|
|
||
| ARG APP=dev | ||
| ARG BASENAME | ||
|
|
@@ -32,14 +33,14 @@ WORKDIR /data-portal | |
| RUN COMMIT=`git rev-parse HEAD` && echo "export const portalCommit = \"${COMMIT}\";" >src/versions.js \ | ||
| && VERSION=`git describe --always --tags` && echo "export const portalVersion =\"${VERSION}\";" >>src/versions.js \ | ||
| && /bin/rm -rf .git \ | ||
| && /bin/rm -rf node_modules \ | ||
| && npm config set unsafe-perm=true \ | ||
| && npm ci \ | ||
| && /bin/rm -rf node_modules | ||
| RUN npm config set unsafe-perm=true \ | ||
| && npm ci --legacy-peer-deps \ | ||
| && npm run relay \ | ||
| && npm run params \ | ||
| && npm run params | ||
| # see https://stackoverflow.com/questions/48387040/nodejs-recommended-max-old-space-size | ||
| && NODE_OPTIONS=--max-old-space-size=2048 NODE_ENV=production time ./node_modules/.bin/webpack --bail \ | ||
| && cp nginx.conf /etc/nginx/conf.d/nginx.conf \ | ||
| RUN NODE_OPTIONS=--max-old-space-size=3584 NODE_ENV=production time ./node_modules/.bin/webpack --bail | ||
| RUN cp nginx.conf /etc/nginx/conf.d/nginx.conf \ | ||
| && rm /etc/nginx/sites-enabled/default | ||
|
|
||
| # In standard prod these will be overwritten by volume mounts | ||
|
|
||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.