ant-design/components/tour/index.tsx
lijianan 095b846cad
feat: CP support Tour closeIcon (#47200)
* feat: CP support Tour closeIcon

* fix: fix
2024-01-29 11:01:30 +08:00

97 lines
2.7 KiB
TypeScript

import React, { useContext } from 'react';
import RCTour from '@rc-component/tour';
import classNames from 'classnames';
import { useZIndex } from '../_util/hooks/useZIndex';
import getPlacements from '../_util/placements';
import zIndexContext from '../_util/zindexContext';
import type { ConfigConsumerProps } from '../config-provider';
import { ConfigContext } from '../config-provider';
import { useToken } from '../theme/internal';
import type { TourProps, TourStepProps } from './interface';
import TourPanel from './panelRender';
import PurePanel from './PurePanel';
import useStyle from './style';
const Tour: React.FC<TourProps> & { _InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel } = (
props,
) => {
const {
prefixCls: customizePrefixCls,
type,
rootClassName,
indicatorsRender,
steps,
...restProps
} = props;
const { getPrefixCls, direction, tour } = useContext<ConfigConsumerProps>(ConfigContext);
const prefixCls = getPrefixCls('tour', customizePrefixCls);
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
const [, token] = useToken();
const mergedSteps = React.useMemo<TourProps['steps']>(
() =>
steps?.map((step) => ({
...step,
className: classNames(step.className, {
[`${prefixCls}-primary`]: (step.type ?? type) === 'primary',
}),
})),
[steps, type],
);
const builtinPlacements: TourProps['builtinPlacements'] = (config) =>
getPlacements({
arrowPointAtCenter: config?.arrowPointAtCenter ?? true,
autoAdjustOverflow: true,
offset: token.marginXXS,
arrowWidth: token.sizePopupArrow,
borderRadius: token.borderRadius,
});
const customClassName = classNames(
{
[`${prefixCls}-rtl`]: direction === 'rtl',
},
hashId,
cssVarCls,
rootClassName,
);
const mergedRenderPanel = (stepProps: TourStepProps, stepCurrent: number): React.ReactNode => (
<TourPanel
type={type}
stepProps={stepProps}
current={stepCurrent}
closeIcon={tour?.closeIcon}
indicatorsRender={indicatorsRender}
/>
);
// ============================ zIndex ============================
const [zIndex, contextZIndex] = useZIndex('Tour', restProps.zIndex);
return wrapCSSVar(
<zIndexContext.Provider value={contextZIndex}>
<RCTour
{...restProps}
zIndex={zIndex}
rootClassName={customClassName}
prefixCls={prefixCls}
animated
renderPanel={mergedRenderPanel}
builtinPlacements={builtinPlacements}
steps={mergedSteps}
/>
</zIndexContext.Provider>,
);
};
if (process.env.NODE_ENV !== 'production') {
Tour.displayName = 'Tour';
}
Tour._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
export default Tour;