95 lines
2.8 KiB
JavaScript
95 lines
2.8 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.getStrokeColor = exports.getSize = exports.getPercentage = void 0;
|
||
|
exports.getSuccessPercent = getSuccessPercent;
|
||
|
exports.validProgress = validProgress;
|
||
|
var _colors = require("@ant-design/colors");
|
||
|
function validProgress(progress) {
|
||
|
if (!progress || progress < 0) {
|
||
|
return 0;
|
||
|
}
|
||
|
if (progress > 100) {
|
||
|
return 100;
|
||
|
}
|
||
|
return progress;
|
||
|
}
|
||
|
function getSuccessPercent(_ref) {
|
||
|
let {
|
||
|
success,
|
||
|
successPercent
|
||
|
} = _ref;
|
||
|
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;
|
||
|
}
|
||
|
const getPercentage = _ref2 => {
|
||
|
let {
|
||
|
percent,
|
||
|
success,
|
||
|
successPercent
|
||
|
} = _ref2;
|
||
|
const realSuccessPercent = validProgress(getSuccessPercent({
|
||
|
success,
|
||
|
successPercent
|
||
|
}));
|
||
|
return [realSuccessPercent, validProgress(validProgress(percent) - realSuccessPercent)];
|
||
|
};
|
||
|
exports.getPercentage = getPercentage;
|
||
|
const getStrokeColor = _ref3 => {
|
||
|
let {
|
||
|
success = {},
|
||
|
strokeColor
|
||
|
} = _ref3;
|
||
|
const {
|
||
|
strokeColor: successColor
|
||
|
} = success;
|
||
|
return [successColor || _colors.presetPrimaryColors.green, strokeColor || null];
|
||
|
};
|
||
|
exports.getStrokeColor = getStrokeColor;
|
||
|
const getSize = (size, type, extra) => {
|
||
|
var _a, _b, _c, _d;
|
||
|
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 !== null && strokeWidth !== void 0 ? strokeWidth : 8;
|
||
|
} else if (typeof size === 'number') {
|
||
|
[width, height] = [size, size];
|
||
|
} else {
|
||
|
[width = 14, height = 8] = size;
|
||
|
}
|
||
|
width *= steps;
|
||
|
} else if (type === 'line') {
|
||
|
const strokeWidth = extra === null || extra === void 0 ? void 0 : 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] = size;
|
||
|
}
|
||
|
} 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 {
|
||
|
width = (_b = (_a = size[0]) !== null && _a !== void 0 ? _a : size[1]) !== null && _b !== void 0 ? _b : 120;
|
||
|
height = (_d = (_c = size[0]) !== null && _c !== void 0 ? _c : size[1]) !== null && _d !== void 0 ? _d : 120;
|
||
|
}
|
||
|
}
|
||
|
return [width, height];
|
||
|
};
|
||
|
exports.getSize = getSize;
|