mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
59ad48476b
* chore: add boime lint * fix lint * use files ignore * revert change * ignore clarity.js * fix some errors * fix some errors * fix some errors * fix some errors * add yml file * Update clarity.js Signed-off-by: afc163 <afc163@gmail.com> * add npm run lint:biome * add npm run lint:biome * fix test case * fix ts errors * fix ts errors * fix lint and add .lintstagedrc * shorten prop name * chore: update package.json * update biome.json * chore: remove stylelint * chore: useOptionalChain * fix lint * biome format * prettier all code * prettier all code * fix site test --------- Signed-off-by: afc163 <afc163@gmail.com>
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
import { presetPrimaryColors } from '@ant-design/colors';
|
|
|
|
import type { CircleProps } from './Circle';
|
|
import type { ProgressProps } from './progress';
|
|
|
|
export function validProgress(progress?: number) {
|
|
if (!progress || progress < 0) {
|
|
return 0;
|
|
}
|
|
if (progress > 100) {
|
|
return 100;
|
|
}
|
|
return progress;
|
|
}
|
|
|
|
export function getSuccessPercent({ success, successPercent }: ProgressProps) {
|
|
let percent = successPercent;
|
|
/** @deprecated Use `percent` instead */
|
|
if (success && 'progress' in success) {
|
|
percent = success.progress;
|
|
}
|
|
if (success && 'percent' in success) {
|
|
percent = success.percent;
|
|
}
|
|
return percent;
|
|
}
|
|
|
|
export const getPercentage = ({ percent, success, successPercent }: ProgressProps) => {
|
|
const realSuccessPercent = validProgress(getSuccessPercent({ success, successPercent }));
|
|
return [realSuccessPercent, validProgress(validProgress(percent) - realSuccessPercent)];
|
|
};
|
|
|
|
export const getStrokeColor = ({
|
|
success = {},
|
|
strokeColor,
|
|
}: Partial<CircleProps>): (string | Record<PropertyKey, string>)[] => {
|
|
const { strokeColor: successColor } = success;
|
|
return [successColor || presetPrimaryColors.green, strokeColor || null!];
|
|
};
|
|
|
|
export const getSize = (
|
|
size: ProgressProps['size'],
|
|
type: ProgressProps['type'] | 'step',
|
|
extra?: {
|
|
steps?: number;
|
|
strokeWidth?: number;
|
|
},
|
|
): [number, number] => {
|
|
let width = -1;
|
|
let height = -1;
|
|
if (type === 'step') {
|
|
const steps = extra!.steps!;
|
|
const strokeWidth = extra!.strokeWidth!;
|
|
if (typeof size === 'string' || typeof size === 'undefined') {
|
|
width = size === 'small' ? 2 : 14;
|
|
height = strokeWidth ?? 8;
|
|
} else if (typeof size === 'number') {
|
|
[width, height] = [size, size];
|
|
} else {
|
|
[width = 14, height = 8] = (Array.isArray(size) ? size : [size.width, size.height]) as [
|
|
number,
|
|
number,
|
|
];
|
|
}
|
|
|
|
width *= steps;
|
|
} else if (type === 'line') {
|
|
const strokeWidth = extra?.strokeWidth;
|
|
if (typeof size === 'string' || typeof size === 'undefined') {
|
|
height = strokeWidth || (size === 'small' ? 6 : 8);
|
|
} else if (typeof size === 'number') {
|
|
[width, height] = [size, size];
|
|
} else {
|
|
[width = -1, height = 8] = (Array.isArray(size) ? size : [size.width, size.height]) as [
|
|
number,
|
|
number,
|
|
];
|
|
}
|
|
} else if (type === 'circle' || type === 'dashboard') {
|
|
if (typeof size === 'string' || typeof size === 'undefined') {
|
|
[width, height] = size === 'small' ? [60, 60] : [120, 120];
|
|
} else if (typeof size === 'number') {
|
|
[width, height] = [size, size];
|
|
} else if (Array.isArray(size)) {
|
|
width = (size[0] ?? size[1] ?? 120) as number;
|
|
height = (size[0] ?? size[1] ?? 120) as number;
|
|
}
|
|
}
|
|
return [width, height];
|
|
};
|