-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Stack Monitoring] Migrate indices view to React #113338
Conversation
Pinging @elastic/logs-metrics-ui (Team:logs-metrics-ui) |
x-pack/plugins/monitoring/public/application/hooks/use_local_storage.ts
Outdated
Show resolved
Hide resolved
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.
I think this is probably okay once CI approves.
The rows per page is broken, I suspect paginating in general is broken.
https://github.com/elastic/kibana/pull/113284/files#diff-11d9ae75fd1e5b55e9d79c648e4c21f5f338a5d117536854f7e2d7058209418aR101 might fix it, but on my pages sort is broken, which works on yours. So could be my fix is in complete.
Either way I think we can fix it in followups.
…gration # Conflicts: # x-pack/plugins/monitoring/public/application/hooks/use_local_storage.ts # x-pack/plugins/monitoring/public/application/index.tsx # x-pack/plugins/monitoring/public/components/elasticsearch/index.d.ts
💚 Build SucceededMetrics [docs]Module Count
Async chunks
History
To update your PR or re-run it, just comment with: |
* [Stack Monitoring] Migrate indices view to React * Fix lint
💚 Backport successful
This backport PR will be merged automatically after passing CI. |
* [Stack Monitoring] Migrate indices view to React * Fix lint Co-authored-by: Zacqary Adam Xeper <[email protected]>
Summary
Closes #113148
Migrates the Indices view to React.
Note that the Angular view used
apiUrlFn
instead ofgetPageData
in order to populate the page with data. In the React view, we can still use thegetPageData
function to do this with no ill effects.