antd
Version:
An enterprise-class UI design language and React components implementation
108 lines • 4.35 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
var __rest = this && this.__rest || function (s, e) {
var t = {};
for (var p in s) {
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
}
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
}
return t;
};
import CheckOutlined from "@ant-design/icons/es/icons/CheckOutlined";
import CloseOutlined from "@ant-design/icons/es/icons/CloseOutlined";
import classNames from 'classnames';
import RcSteps from 'rc-steps';
import * as React from 'react';
import Tooltip from '../tooltip';
import { ConfigContext } from '../config-provider';
import useBreakpoint from '../grid/hooks/useBreakpoint';
import Progress from '../progress';
import useLegacyItems from './useLegacyItems';
import useStyle from './style';
var Steps = function Steps(props) {
var _classNames;
var percent = props.percent,
size = props.size,
className = props.className,
direction = props.direction,
items = props.items,
_props$responsive = props.responsive,
responsive = _props$responsive === void 0 ? true : _props$responsive,
_props$current = props.current,
current = _props$current === void 0 ? 0 : _props$current,
children = props.children,
restProps = __rest(props, ["percent", "size", "className", "direction", "items", "responsive", "current", "children"]);
var _useBreakpoint = useBreakpoint(responsive),
xs = _useBreakpoint.xs;
var _React$useContext = React.useContext(ConfigContext),
getPrefixCls = _React$useContext.getPrefixCls,
rtlDirection = _React$useContext.direction;
var getDirection = React.useCallback(function () {
return responsive && xs ? 'vertical' : direction;
}, [xs, direction]);
var prefixCls = getPrefixCls('steps', props.prefixCls);
var _useStyle = useStyle(prefixCls),
_useStyle2 = _slicedToArray(_useStyle, 2),
wrapSSR = _useStyle2[0],
hashId = _useStyle2[1];
var isInline = props.type === 'inline';
var iconPrefix = getPrefixCls('', props.iconPrefix);
var mergedItems = useLegacyItems(items, children);
var mergedPercent = isInline ? undefined : percent;
var stepsClassName = classNames((_classNames = {}, _defineProperty(_classNames, prefixCls + "-rtl", rtlDirection === 'rtl'), _defineProperty(_classNames, prefixCls + "-with-progress", mergedPercent !== undefined), _classNames), className, hashId);
var icons = {
finish: /*#__PURE__*/React.createElement(CheckOutlined, {
className: prefixCls + "-finish-icon"
}),
error: /*#__PURE__*/React.createElement(CloseOutlined, {
className: prefixCls + "-error-icon"
})
};
var stepIconRender = function stepIconRender(_ref) {
var node = _ref.node,
status = _ref.status;
if (status === 'process' && mergedPercent !== undefined) {
// currently it's hard-coded, since we can't easily read the actually width of icon
var progressWidth = size === 'small' ? 32 : 40;
// iconWithProgress
return /*#__PURE__*/React.createElement("div", {
className: prefixCls + "-progress-icon"
}, /*#__PURE__*/React.createElement(Progress, {
type: "circle",
percent: mergedPercent,
width: progressWidth,
strokeWidth: 4,
format: function format() {
return null;
}
}), node);
}
return node;
};
var itemRender;
if (isInline) {
itemRender = function itemRender(item, stepItem) {
return item.description ? /*#__PURE__*/React.createElement(Tooltip, {
title: item.description
}, stepItem) : stepItem;
};
}
return wrapSSR( /*#__PURE__*/React.createElement(RcSteps, _extends({
icons: icons
}, restProps, {
current: current,
size: size,
items: mergedItems,
itemRender: itemRender,
direction: getDirection(),
stepIcon: stepIconRender,
prefixCls: prefixCls,
iconPrefix: iconPrefix,
className: stepsClassName
})));
};
Steps.Step = RcSteps.Step;
export default Steps;