mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
149729e524
* feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
161 lines
5.0 KiB
TypeScript
161 lines
5.0 KiB
TypeScript
import * as PropTypes from 'prop-types';
|
|
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import omit from 'omit.js';
|
|
import { Close, Check, CheckCircleFilled, CloseCircleFilled } from '@ant-design/icons';
|
|
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
import { tuple } from '../_util/type';
|
|
import Line from './Line';
|
|
import Circle from './Circle';
|
|
import { validProgress } from './utils';
|
|
|
|
const ProgressTypes = tuple('line', 'circle', 'dashboard');
|
|
export type ProgressType = (typeof ProgressTypes)[number];
|
|
const ProgressStatuses = tuple('normal', 'exception', 'active', 'success');
|
|
export type ProgressSize = 'default' | 'small';
|
|
export type StringGradients = { [percentage: string]: string };
|
|
type FromToGradients = { from: string; to: string };
|
|
export type ProgressGradient = { direction?: string } & (StringGradients | FromToGradients);
|
|
export interface ProgressProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
type?: ProgressType;
|
|
percent?: number;
|
|
successPercent?: number;
|
|
format?: (percent?: number, successPercent?: number) => React.ReactNode;
|
|
status?: (typeof ProgressStatuses)[number];
|
|
showInfo?: boolean;
|
|
strokeWidth?: number;
|
|
strokeLinecap?: 'butt' | 'square' | 'round';
|
|
strokeColor?: string | ProgressGradient;
|
|
trailColor?: string;
|
|
width?: number;
|
|
style?: React.CSSProperties;
|
|
gapDegree?: number;
|
|
gapPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
size?: ProgressSize;
|
|
}
|
|
|
|
export default class Progress extends React.Component<ProgressProps> {
|
|
static defaultProps = {
|
|
type: 'line',
|
|
percent: 0,
|
|
showInfo: true,
|
|
trailColor: '#f3f3f3',
|
|
size: 'default',
|
|
gapDegree: 0,
|
|
strokeLinecap: 'round',
|
|
};
|
|
|
|
static propTypes = {
|
|
status: PropTypes.oneOf(ProgressStatuses),
|
|
type: PropTypes.oneOf(ProgressTypes),
|
|
showInfo: PropTypes.bool,
|
|
percent: PropTypes.number,
|
|
width: PropTypes.number,
|
|
strokeWidth: PropTypes.number,
|
|
strokeLinecap: PropTypes.oneOf(['round', 'square']),
|
|
strokeColor: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
|
|
trailColor: PropTypes.string,
|
|
format: PropTypes.func,
|
|
gapDegree: PropTypes.number,
|
|
};
|
|
|
|
getPercentNumber() {
|
|
const { successPercent, percent = 0 } = this.props;
|
|
return parseInt(
|
|
successPercent !== undefined ? successPercent.toString() : percent.toString(),
|
|
10,
|
|
);
|
|
}
|
|
|
|
getProgressStatus() {
|
|
const { status } = this.props;
|
|
if (ProgressStatuses.indexOf(status!) < 0 && this.getPercentNumber() >= 100) {
|
|
return 'success';
|
|
}
|
|
return status || 'normal';
|
|
}
|
|
|
|
renderProcessInfo(prefixCls: string, progressStatus: (typeof ProgressStatuses)[number]) {
|
|
const { showInfo, format, type, percent, successPercent } = this.props;
|
|
if (!showInfo) return null;
|
|
|
|
let text;
|
|
const textFormatter = format || (percentNumber => `${percentNumber}%`);
|
|
const isLineType = type === 'line';
|
|
if (format || (progressStatus !== 'exception' && progressStatus !== 'success')) {
|
|
text = textFormatter(validProgress(percent), validProgress(successPercent));
|
|
} else if (progressStatus === 'exception') {
|
|
text = isLineType ? <CloseCircleFilled /> : <Close />;
|
|
} else if (progressStatus === 'success') {
|
|
text = isLineType ? <CheckCircleFilled /> : <Check />;
|
|
}
|
|
return (
|
|
<span className={`${prefixCls}-text`} title={typeof text === 'string' ? text : undefined}>
|
|
{text}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
renderProgress = ({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const { props } = this;
|
|
const { prefixCls: customizePrefixCls, className, size, type, showInfo, ...restProps } = props;
|
|
const prefixCls = getPrefixCls('progress', customizePrefixCls);
|
|
const progressStatus = this.getProgressStatus();
|
|
const progressInfo = this.renderProcessInfo(prefixCls, progressStatus);
|
|
let progress;
|
|
// Render progress shape
|
|
if (type === 'line') {
|
|
progress = (
|
|
<Line {...this.props} prefixCls={prefixCls}>
|
|
{progressInfo}
|
|
</Line>
|
|
);
|
|
} else if (type === 'circle' || type === 'dashboard') {
|
|
progress = (
|
|
<Circle {...this.props} prefixCls={prefixCls} progressStatus={progressStatus}>
|
|
{progressInfo}
|
|
</Circle>
|
|
);
|
|
}
|
|
|
|
const classString = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-${(type === 'dashboard' && 'circle') || type}`]: true,
|
|
[`${prefixCls}-status-${progressStatus}`]: true,
|
|
[`${prefixCls}-show-info`]: showInfo,
|
|
[`${prefixCls}-${size}`]: size,
|
|
},
|
|
className,
|
|
);
|
|
|
|
return (
|
|
<div
|
|
{...omit(restProps, [
|
|
'status',
|
|
'format',
|
|
'trailColor',
|
|
'successPercent',
|
|
'strokeWidth',
|
|
'width',
|
|
'gapDegree',
|
|
'gapPosition',
|
|
'strokeColor',
|
|
'strokeLinecap',
|
|
'percent',
|
|
])}
|
|
className={classString}
|
|
>
|
|
{progress}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
return <ConfigConsumer>{this.renderProgress}</ConfigConsumer>;
|
|
}
|
|
}
|