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
@@ -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'}