fix: resource topology ux

This commit is contained in:
jialin
2026-06-26 22:14:37 +08:00
committed by jialin
parent 4709661f93
commit e37828a2cd
5 changed files with 35 additions and 10 deletions
@@ -16,9 +16,9 @@ import { useClusterDetail } from '../../services/use-cluster-detail';
const Container = styled.div`
display: flex;
height: 168px;
height: 146px;
.left {
padding: 16px 24px;
padding: 16px 0px;
width: 124px;
display: flex;
flex-direction: column;
@@ -56,7 +56,7 @@ const Resources = styled.div`
gap: 24px;
align-items: center;
line-height: 22px;
margin-top: 16px;
margin-top: 24px;
.item {
display: flex;
align-items: center;
@@ -134,7 +134,6 @@ const ClusterBasic: React.FC<{ clusterId: number }> = ({ clusterId }) => {
)}
</Title>
}
layout="vertical"
items={items}
/>
<Resources>
@@ -47,10 +47,21 @@ const ClusterSystemLoad: React.FC<{ clusterId: number }> = ({ clusterId }) => {
}
}, [clusterId]);
const generateStrokeColor = (percent: number) => {
if (percent <= 50) {
return 'var(--ant-color-success)';
}
if (percent <= 80) {
return 'var(--ant-color-warning)';
}
return 'var(--ant-color-error)';
};
const renderStepsProgress = (
percent: number,
tag: { color: string; text: string }
) => {
const strokeColor = generateStrokeColor(percent);
return (
<Progress
percent={percent}
@@ -58,6 +69,7 @@ const ClusterSystemLoad: React.FC<{ clusterId: number }> = ({ clusterId }) => {
size={50}
strokeWidth={8}
showInfo={true}
strokeColor={strokeColor}
format={() => (
<Tag
color={tag?.color || 'blue'}