-
Notifications
You must be signed in to change notification settings - Fork 13
feat: data explorer query state in url #112
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
Conversation
mfshao
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logically LGTM in general, did you test the and/or toggle feature as well?
also don't forget to update the version number
Dockerfile
Outdated
| && apt-get install -y --no-install-recommends nodejs \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
| && rm -rf /var/lib/apt/lists/* \ | ||
| && npm i -g [email protected] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's do this the same way as you have done for Portal, put npm to 7.8.0 and set maxsockets value
package.json
Outdated
| "dependencies": { | ||
| "@elastic/elasticsearch": "^7.0.0-rc.1", | ||
| "@gen3/ui-component": "^0.7.0", | ||
| "@gen3/ui-component": "git+https://github.com/uc-cdis/gen3-ui-component.git#feat/query-state-url", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remember to change this
Jira Ticket: https://ctds-planx.atlassian.net/browse/PXP-7517
This PR supports loading and unloading Data Explorer state to and from a URL. The feature currently supports only single-select and range filters. This feature is disabled by default; see uc-cdis/data-portal#807 for more information.
Companion PRs:
uc-cdis/data-portal#807
uc-cdis/gen3-ui-component#98
New Features