You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
176 lines
5.3 KiB
176 lines
5.3 KiB
import classNames from 'classnames';
|
|
import PropTypes from '../_util/vue-types';
|
|
import { getOptionProps, initDefaultProps } from '../_util/props-util';
|
|
import Icon from '../icon';
|
|
import { Circle } from '../vc-progress';
|
|
|
|
function addUnit(num, unit) {
|
|
const unitType = unit || 'px';
|
|
return num ? num + unitType : null;
|
|
}
|
|
const statusColorMap = {
|
|
normal: '#108ee9',
|
|
exception: '#ff5500',
|
|
success: '#87d068',
|
|
};
|
|
|
|
export const ProgressType = PropTypes.oneOf(['line', 'circle', 'dashboard']);
|
|
export const ProgressSize = PropTypes.oneOf(['default', 'small']);
|
|
|
|
export const ProgressProps = {
|
|
prefixCls: PropTypes.string,
|
|
type: ProgressType,
|
|
percent: PropTypes.number,
|
|
successPercent: PropTypes.number,
|
|
format: PropTypes.func,
|
|
status: PropTypes.oneOf(['normal', 'success', 'active', 'exception']),
|
|
showInfo: PropTypes.bool,
|
|
strokeWidth: PropTypes.number,
|
|
strokeLinecap: PropTypes.oneOf(['round', 'square']),
|
|
strokeColor: PropTypes.string,
|
|
trailColor: PropTypes.string,
|
|
width: PropTypes.number,
|
|
gapDegree: PropTypes.number,
|
|
gapPosition: PropTypes.oneOf(['top', 'bottom', 'left', 'right']),
|
|
size: ProgressSize,
|
|
};
|
|
|
|
const validProgress = progress => {
|
|
if (!progress || progress < 0) {
|
|
return 0;
|
|
} else if (progress > 100) {
|
|
return 100;
|
|
}
|
|
return progress;
|
|
};
|
|
|
|
export default {
|
|
name: 'AProgress',
|
|
props: initDefaultProps(ProgressProps, {
|
|
type: 'line',
|
|
percent: 0,
|
|
showInfo: true,
|
|
trailColor: '#f3f3f3',
|
|
prefixCls: 'ant-progress',
|
|
size: 'default',
|
|
}),
|
|
|
|
render() {
|
|
const props = getOptionProps(this);
|
|
const {
|
|
prefixCls,
|
|
percent = 0,
|
|
status,
|
|
format,
|
|
trailColor,
|
|
size,
|
|
successPercent,
|
|
type,
|
|
strokeWidth,
|
|
width,
|
|
showInfo,
|
|
gapDegree = 0,
|
|
gapPosition,
|
|
strokeColor,
|
|
strokeLinecap = 'round',
|
|
...restProps
|
|
} = props;
|
|
const progressStatus =
|
|
parseInt(successPercent ? successPercent.toString() : percent.toString(), 10) >= 100 &&
|
|
!('status' in props)
|
|
? 'success'
|
|
: status || 'normal';
|
|
let progressInfo;
|
|
let progress;
|
|
const textFormatter = format || (percentNumber => `${percentNumber}%`);
|
|
|
|
if (showInfo) {
|
|
let text;
|
|
const iconType = type === 'circle' || type === 'dashboard' ? '' : '-circle';
|
|
if (format || (progressStatus !== 'exception' && progressStatus !== 'success')) {
|
|
text = textFormatter(validProgress(percent), validProgress(successPercent));
|
|
} else if (progressStatus === 'exception') {
|
|
text = <Icon type={`close${iconType}`} theme={type === 'line' ? 'filled' : 'outlined'} />;
|
|
} else if (progressStatus === 'success') {
|
|
text = <Icon type={`check${iconType}`} theme={type === 'line' ? 'filled' : 'outlined'} />;
|
|
}
|
|
progressInfo = (
|
|
<span class={`${prefixCls}-text`} title={typeof text === 'string' ? text : undefined}>
|
|
{text}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
if (type === 'line') {
|
|
const percentStyle = {
|
|
width: `${validProgress(percent)}%`,
|
|
height: `${strokeWidth || (size === 'small' ? 6 : 8)}px`,
|
|
background: strokeColor,
|
|
borderRadius: strokeLinecap === 'square' ? 0 : '100px',
|
|
};
|
|
const successPercentStyle = {
|
|
width: `${validProgress(successPercent)}%`,
|
|
height: `${strokeWidth || (size === 'small' ? 6 : 8)}px`,
|
|
borderRadius: strokeLinecap === 'square' ? 0 : '100px',
|
|
};
|
|
const successSegment =
|
|
successPercent !== undefined ? (
|
|
<div class={`${prefixCls}-success-bg`} style={successPercentStyle} />
|
|
) : null;
|
|
progress = (
|
|
<div>
|
|
<div class={`${prefixCls}-outer`}>
|
|
<div class={`${prefixCls}-inner`}>
|
|
<div class={`${prefixCls}-bg`} style={percentStyle} />
|
|
{successSegment}
|
|
</div>
|
|
</div>
|
|
{progressInfo}
|
|
</div>
|
|
);
|
|
} else if (type === 'circle' || type === 'dashboard') {
|
|
const circleSize = width || 120;
|
|
const circleStyle = {
|
|
width: addUnit(circleSize),
|
|
height: addUnit(circleSize),
|
|
fontSize: addUnit(circleSize * 0.15 + 6),
|
|
};
|
|
const circleWidth = strokeWidth || 6;
|
|
const gapPos = gapPosition || (type === 'dashboard' && 'bottom') || 'top';
|
|
const gapDeg = gapDegree || (type === 'dashboard' && 75);
|
|
progress = (
|
|
<div class={`${prefixCls}-inner`} style={circleStyle}>
|
|
<Circle
|
|
percent={validProgress(percent)}
|
|
strokeWidth={circleWidth}
|
|
trailWidth={circleWidth}
|
|
strokeColor={strokeColor || statusColorMap[progressStatus]}
|
|
strokeLinecap={strokeLinecap}
|
|
trailColor={trailColor}
|
|
prefixCls={prefixCls}
|
|
gapDegree={gapDeg || 0}
|
|
gapPosition={gapPos}
|
|
/>
|
|
{progressInfo}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const classString = classNames(prefixCls, {
|
|
[`${prefixCls}-${(type === 'dashboard' && 'circle') || type}`]: true,
|
|
[`${prefixCls}-status-${progressStatus}`]: true,
|
|
[`${prefixCls}-show-info`]: showInfo,
|
|
[`${prefixCls}-${size}`]: size,
|
|
});
|
|
|
|
const progressProps = {
|
|
props: {
|
|
...restProps,
|
|
},
|
|
on: this.$listeners,
|
|
class: classString,
|
|
};
|
|
return <div {...progressProps}>{progress}</div>;
|
|
},
|
|
};
|