[Inspector Views] [Request View] - Migrate inspector_views to new platform#43191
[Inspector Views] [Request View] - Migrate inspector_views to new platform#43191alexwizp merged 8 commits intoelastic:masterfrom
Conversation
💚 Build Succeeded |
|
Pinging @elastic/kibana-app-arch |
💚 Build Succeeded |
ryankeairns
left a comment
There was a problem hiding this comment.
LGTM from the design side. The CSS changes do not affect actual styles, just some file renaming and import changes.
cchaos
left a comment
There was a problem hiding this comment.
@alexwizp The only problem is that you renamed _requests.scss to index.scss. There's two problems with this.
- Imported (not directly compiled) file names should always lead with an underscore.
- We never put styles directly in
indexfiles. These should strictly be import manifests.
Solution
- Revert the rename of
_requests.scss. - Add back in an
_index.scssfile next to the requests that imports it@import './requests - Rename this index.scss file to
_index.scsssince it's being imported from the original location and is not a directly compiled file.
|
@cchaos thanks, fixed |
💔 Build Failed |
|
retest |
💚 Build Succeeded |
💚 Build Succeeded |
lukeelmers
left a comment
There was a problem hiding this comment.
Thanks @alexwizp! Code LGTM, added a few minor notes, but no major concerns on my end.
Before merging, I'd like to get an approval from either @streamich or @timroes as well, since they are more familiar with this code than I am.
src/plugins/inspector/public/views/requests/components/details/req_details_stats.tsx
Show resolved
Hide resolved
src/plugins/inspector/public/views/requests/components/details/req_details_stats.tsx
Show resolved
Hide resolved
src/plugins/inspector/public/views/requests/components/requests_view.tsx
Show resolved
Hide resolved
src/plugins/inspector/public/views/requests/components/details/req_details_request.tsx
Outdated
Show resolved
Hide resolved
💚 Build Succeeded |
|
retest |
💚 Build Succeeded |
💚 Build Succeeded |
streamich
left a comment
There was a problem hiding this comment.
Code LGTM, but I only see Request view being moved there should be also Data view.
…tform (elastic#43191) * [Inspector Views] [Request View] - Migrate inspector_views to new platform * fix i18n keys * rename scss files * fix PR comments
…_update_json_spec * 'master' of github.com:elastic/kibana: (35 commits) fix: 🐛 pass whole action context to isCompatible() method (elastic#43457) Deleted old kbn-top-nav directive (elastic#43168) [ML] Fixing cloning of single metric distinct count job (elastic#43435) Update @elastic/charts version 8.1.6 > 9.1.1 (elastic#43516) [Inspector Views] [Request View] - Migrate inspector_views to new platform (elastic#43191) [ML] Adding loading indicators to all wizard charts (elastic#43382) disable flaky test (elastic#43492) feature(code/frontend): cancel file blob and directory commits request if outdated (elastic#43348) fix(code/frontend): button group url should have previous query string (elastic#43428) [SIEM] Fixes index substring incorrectly matching configured indices and failing to install ML job (elastic#43409) [SIEM] Adds performance enhancements such by removing wasted renderers and adding incremental DOM rendering (elastic#43157) disable flaky test (elastic#37859) Added sass lint to Canvas (elastic#43410) [Maps] add indicator when layer is filtered by search bar (elastic#43283) Properly validate current user password during password change. (elastic#43447) Spaces - allow for hex color codes that include uppercase characters (elastic#43470) [Reporting] Add a bit more logging and a few more logging level promotions (elastic#43415) Partially convert index pattern server to typescript (elastic#43291) [Infra UI] Use sum for aggregating AWS metrics. (elastic#43293) [SIEM] Format bytes columns in timeline (elastic#43147) ...
Partially fix: #42636
Description:
There is still an inspector_views plugin in src/legacy/core_plugins/inspector_views which should be colocated with the inspector plugin to complete the migration.
Done for Request View
Checklist
Use
strikethroughsto remove checklist items you don't feel are applicable to this PR.For maintainers