-
Notifications
You must be signed in to change notification settings - Fork 0
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
Graph view #76
Graph view #76
Conversation
This now works but there are still some things to do
|
This is not yet ready for merge, as there are some issues left. Maybe you can review already anyway @joluj and @PianoRollRepresentation. |
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.
Without any comments it's really hard to see whats going on.. The code looks good though.
The graph is shown, with the flaws you mentioned.
When the Code is documented then it's ready for the merge.
import ListItemIcon from '@material-ui/core/ListItemIcon'; | ||
import ListItemText from '@material-ui/core/ListItemText'; | ||
|
||
interface ListItemLinkProps { |
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.
no 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.
This file was not created, nor changed by this PR
): Promise<QueryResult> { | ||
const url = `${this.baseUri}/queryAll`; | ||
|
||
return new Promise<QueryResult>((resolve, reject) => { |
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.
Can we put all that "http-stuff" with cancel events etc. in a new class? We surely need this functionality in other methods as well.
But its good enough ATM.
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.
Had this in mind, but as this is just needed in this single place currently did not invest the effort to actually factor it out yet.
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.
Same for me. Without comments it's difficult to understand...
All TODOs are resolved by now except for
|
This PR adds a rundimentary graph view as described by #75 in order to implement #28.
Closes #75
Closes #28