-
Notifications
You must be signed in to change notification settings - Fork 503
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
Trace statistics table is now using antd Table component #1500
Merged
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
29f32e6
In TraceSpan table sorting indicators are also added for remaining co…
GLVSKiriti c21758a
Background Color of row changes according to valueNameSelector3 value…
GLVSKiriti 9c6a827
Unnecessary files are removed
GLVSKiriti 321f671
OnCellFunction and sorterFunction are added for TraceStatistics table
GLVSKiriti 7b0ea15
Fixing some typo errors
GLVSKiriti 814ce87
ISorterInput type is introduced and code is optimized
GLVSKiriti 89b552c
Fixing typo errors
GLVSKiriti b82c192
Fixing typo errors and optimizing code
GLVSKiriti b0d2553
Merge branch 'jaegertracing:main' into traceViewsUI
GLVSKiriti 0a79a78
Reduced the onCellFunction code
GLVSKiriti 87392f3
Described about isDetail
GLVSKiriti e01d1ad
Sorter function is optimized
GLVSKiriti 4dcec72
Optimizing the code
GLVSKiriti 95aa95a
Describing about isDetail attribute in ITableSpan type
GLVSKiriti f3e386e
Removed unnecessary code snippets
GLVSKiriti c5d8be2
Validation checks with yarn eslint
GLVSKiriti aa3a8b3
Fixing the type error
GLVSKiriti 6d5979f
Updated variable names and reduced codes
GLVSKiriti 3eeff04
Editing isDetail attribute description in ITableSpan
GLVSKiriti 10b66c3
Merge branch 'jaegertracing:main' into traceViewsUI
GLVSKiriti f8d7583
type is changed to hasSubgroupValue in ITableSpan type
GLVSKiriti ca881e0
Reduced code by using columnsArray to find columns
GLVSKiriti 52450fe
Edited description for hasSubgroupValue in ITableSpan type
GLVSKiriti 6a0fe26
run prettier
yurishkuro 533474e
Removed testcases for functions in previous code
GLVSKiriti e30ecc6
yarn test,yarn lint,yarn eslint runned successfully
GLVSKiriti 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
Validation checks with yarn eslint
Modified code to remove errors Signed-off-by: GLVS Kiriti <glvskiriti2003369@gmail.com>
- Loading branch information
commit c5d8be27e28d35cf02a2259a0370cf44319ee3d7
There are no files selected for viewing
This file contains 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
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.
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 you describe in words what this function is doing? The name seems very non descriptive
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 functions makes the datasource for the antd table according to the valuenameselector values. Like it adds the child attribute for each element in datasource if we give valuenameselector2 (sub-grouping) . So this function finally outputs what are the main rows and what are the sub-group rows of each main row
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.