Age | Commit message (Collapse) | Author |
|
This doesn't yet support adding sample data for samples that don't already have values
|
|
Add an option to help with running the application under pdb, and add
some documentation to help other developers figure it out.
|
|
|
|
Use the privileges from the authorisation endpoint to control which
elements of the UI are displayed to the user.
* wqflask/base/trait.py: Remove unused import
* wqflask/wqflask/show_trait/show_trait.py: Unhook from GN-PROXY
* wqflask/wqflask/templates/show_trait.html: Display or hide UI
elements depending on the privileges the user has.
* wqflask/wqflask/templates/show_trait_details.html: Display or hide
UI elements depending on the privileges the user has.
* wqflask/wqflask/views.py: Pass privileges, user, and resource
details on to the UI template to be used for controlling UI element
display.
|
|
Enable the changing of the collection names.
* wqflask/wqflask/collect.py: Send data to GN3 API
* wqflask/wqflask/templates/collections/view.html: Use an actual form
and submit it.
|
|
|
|
* wqflask/wqflask/collect.py: Add and remove traits to and from
collections.
* wqflask/wqflask/oauth2/client.py: Add functions for POST and GET
that do the right thing depending on whether or not the user is
logged in.
* wqflask/wqflask/oauth2/request_utils.py: Add some common utility
function to create the data extraction functions for
`pymonads.either.Either` objects.
|
|
Enable the deletion of selected collections via the GN3 api.
|
|
Show the total number of collections available in the active session
in the collections badge at the top of the page.
Also do some minor UI tweaks to differentiate the user and anonymous
collections.
|
|
Integrate import/delete of anonymous collection when user is
authenticated.
|
|
Retrieve a specific collection's details from the GN3 endpoint rather
than from the session, as was done previously.
|
|
* wqflask/wqflask/collect.py: Send data to the GN3 API to create the
new collections.
* wqflask/wqflask/oauth2/client.py: Ensure request is sent as a json
request.
* wqflask/wqflask/static/new/javascript/search_results.js: use "POST"
rather than "GET" and send the traits also, in addition to the hash
|
|
|
|
Rework the sessions to do what was handled by the soon-to-be-obsolete
`wqflask.user_sessions` module.
This is necessary in order to retain the expected functionality of the
user collections, especially:
* anonymous user collections
* authenticated user collections
* import of anonymous collections when user authenticates
|
|
Fetch the user collections from GN3 for users that have authenticated.
|
|
The `logged_in` symbol was changed from a plain variable into a
function, so we need to call it to get its actual value.
|
|
Update the templates to make use of the OAuth2 authentication rather
than the older authentication that used Redis.
|
|
|
|
The `Edit` button was unnecessary, since the `View` button gives the
user access to a UI that allows them to edit the role.
|
|
Surround the UI elements with the check for any authorisation errors
to avoid trying to access non-existent data (this leads to an
exception).
|
|
As a proof-of-concept, add some sort of wrapper to check whether the
user has access to the given trait/dataset.
This will probably need some improvement to check for edit access,
curation access, etc.
|
|
|
|
|
|
For some reason xanchor=right does this
|
|
This allows the scatterplots to use edited sample data
|
|
|
|
This is so edited sample values can be used in the additive effect scatterplots
|
|
If a role is not user-editable, disable the UI elements that allow
editting of the role to prevent that as an option in the first place.
|
|
|
|
|
|
|
|
Add missing `wqflask.oauth2.ui` module
Make arguments to the menu-generation macro mandatory going forward.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
|
|
This commit generalises the code for selecting and deselecting items
making it usable even for the phenotype traits. Now we can switch
items from the search table to the linking table and vice versa.
|
|
Chores/minor fixes
|
|
|
|
|
|
chores/minor-fixes
|
|
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
|
|
|
|
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
|
|
* wqflask/wqflask/templates/generif.html: New template.
* wqflask/wqflask/views.py (display_diffs_users): New route.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
|
|
At this point, the code fails with a 404, despite the appropriate
endpoint existing. Will need further debugging.
|
|
This reverts commit b8b62aea1c7924e2ee7455c6fe8b34eee7cb8e74.
We do need to decouple the entire `gn3.db_utils` from the
`flask.current_app` object, and as such, the use of `SQL_URI` from the
`utility.tools` module in GN2 was on purpose. This is also to help
towards fixing issue
https://issues.genenetwork.org/issues/bugfix_coupling_current_app_and_db_utils
|