-
Notifications
You must be signed in to change notification settings - Fork 521
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
Ddg graph node #405
Ddg graph node #405
Conversation
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Signed-off-by: Joe Farro <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #405 +/- ##
==========================================
+ Coverage 89.79% 90.45% +0.65%
==========================================
Files 170 169 -1
Lines 3842 3824 -18
Branches 869 879 +10
==========================================
+ Hits 3450 3459 +9
+ Misses 356 329 -27
Partials 36 36
Continue to review full report at Codecov.
|
Signed-off-by: Joe Farro <[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.
There's one tiny change left for getNodeLabel
and then I believe it's ready to merge.
packages/jaeger-ui/src/components/DeepDependencyGraph/getNodeLabel/index.tsx
Outdated
Show resolved
Hide resolved
packages/jaeger-ui/src/components/DeepDependencyGraph/getNodeLabel/index.test.js
Outdated
Show resolved
Hide resolved
|
||
import './DdgNode.css'; | ||
|
||
type TProps = { |
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.
would it make sense for this to be type TProps = TDdgVertex & { focalNodeUrl..., viewModifierStuff }
?
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.
The props don't quite line up:
vertexKey
vskey
(which can't be namedkey
as a prop)label
is not present
Signed-off-by: Joe Farro <[email protected]>
@everett980 This is ready for another review. Thanks. |
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.
LGTM 👍 🎉
Ddg graph node Signed-off-by: vvvprabhakar <[email protected]>
Add graph node rendering for the DDG graph.