Skip to content

feat: add developer ui links to disks popups #1512

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

Merged
merged 1 commit into from
Oct 22, 2024

Conversation

artemmufazalov
Copy link
Member

@artemmufazalov artemmufazalov commented Oct 22, 2024

Closes #1434

Screenshot 2024-10-22 at 15 52 30

CI Results

Test Status: ⚠️ FLAKY

📊 Full Report

Total Passed Failed Flaky Skipped
134 133 0 1 0

Bundle Size: 🔺

Current: 79.03 MB | Main: 79.03 MB
Diff: +0.00 MB (0.01%)

⚠️ Bundle size increased. Please review.

ℹ️ CI Information
  • Test recordings for failed tests are available in the full report.
  • Bundle size is measured for the entire 'dist' directory.
  • 📊 indicates links to detailed reports.
  • 🔺 indicates increase, 🔽 decrease, and ✅ no change in bundle size.

@@ -88,18 +91,18 @@ export const HoverPopup = ({

return (
<React.Fragment>
<div ref={anchor} onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave}>
<span ref={anchor} onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave}>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

div without additional styling doesn't work well for PDiskSpaceDistribution

});

pdiskData.push({
label: 'Links',
Copy link
Member Author

@artemmufazalov artemmufazalov Oct 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no i18n for this files, I don't want mix this chores with this feature (since it creates big diffs)

const preparedVDisks = WhiteboardVDisksData.map(prepareVDiskData).sort(
(disk1, disk2) => Number(disk2.VDiskSlotId) - Number(disk1.VDiskSlotId),
);
const preparedVDisks = WhiteboardVDisksData.map((disk) => prepareVDiskData({...disk, NodeId}));
Copy link
Member Author

@artemmufazalov artemmufazalov Oct 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no NodeId in WhiteboardVDisksData, without it there is no VDisk Developer UI link in PDiskSpaceDistribution

@artemmufazalov artemmufazalov added this pull request to the merge queue Oct 22, 2024
Merged via the queue into main with commit 57d2092 Oct 22, 2024
6 checks passed
@artemmufazalov artemmufazalov deleted the 1434-disks-developer-ui-links branch October 22, 2024 14:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

add direct links to dev page of vdisk and pdisk to corresponding tooltips
2 participants