mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
c885a42e3b
* fix: Indicators support number 0 * fix * fix * fix * fix * fix * refactoring: rewrite panelRender function to funtion component * restart ci * fix * fix * fix * Update index.test.tsx * Update index.en-US.md * Update components/tour/panelRender.tsx Co-authored-by: MadCcc <1075746765@qq.com> * raname --------- Co-authored-by: MadCcc <1075746765@qq.com>
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import RCTour from '@rc-component/tour';
|
|
import classNames from 'classnames';
|
|
import React, { useContext } from 'react';
|
|
import type { ConfigConsumerProps } from '../config-provider';
|
|
import { ConfigContext } from '../config-provider';
|
|
import theme from '../theme';
|
|
import getPlacements from '../_util/placements';
|
|
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,
|
|
steps,
|
|
current,
|
|
type,
|
|
rootClassName,
|
|
indicatorsRender,
|
|
...restProps
|
|
} = props;
|
|
const { getPrefixCls, direction } = useContext<ConfigConsumerProps>(ConfigContext);
|
|
const prefixCls = getPrefixCls('tour', customizePrefixCls);
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
const { token } = theme.useToken();
|
|
|
|
const builtinPlacements = getPlacements({
|
|
arrowPointAtCenter: true,
|
|
autoAdjustOverflow: true,
|
|
offset: token.marginXXS,
|
|
arrowWidth: token.sizePopupArrow,
|
|
});
|
|
|
|
const customClassName = classNames(
|
|
{
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
hashId,
|
|
rootClassName,
|
|
);
|
|
|
|
const mergedRenderPanel = (stepProps: TourStepProps, stepCurrent: number): React.ReactNode => (
|
|
<TourPanel
|
|
type={type}
|
|
stepProps={stepProps}
|
|
current={stepCurrent}
|
|
indicatorsRender={indicatorsRender}
|
|
/>
|
|
);
|
|
|
|
return wrapSSR(
|
|
<RCTour
|
|
{...restProps}
|
|
rootClassName={customClassName}
|
|
prefixCls={prefixCls}
|
|
steps={steps}
|
|
current={current}
|
|
animated
|
|
renderPanel={mergedRenderPanel}
|
|
builtinPlacements={builtinPlacements}
|
|
/>,
|
|
);
|
|
};
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Tour.displayName = 'Tour';
|
|
}
|
|
|
|
Tour._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
|
|
|
export default Tour;
|