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.
59 lines
1.6 KiB
59 lines
1.6 KiB
import React, { useContext } from 'react';
|
|
import RCTour from '@rc-component/tour';
|
|
import classNames from 'classnames';
|
|
import panelRender from './panelRender';
|
|
import type { ConfigConsumerProps } from '../config-provider';
|
|
import { ConfigContext } from '../config-provider';
|
|
import useStyle from './style';
|
|
import type { TourProps, TourStepProps } from './interface';
|
|
import PurePanel from './PurePanel';
|
|
|
|
const Tour: React.ForwardRefRenderFunction<HTMLDivElement, TourProps> & {
|
|
_InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
|
|
} = props => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
steps,
|
|
current,
|
|
type,
|
|
rootClassName,
|
|
...restProps
|
|
} = props;
|
|
const { getPrefixCls, direction } = useContext<ConfigConsumerProps>(ConfigContext);
|
|
const prefixCls = getPrefixCls('tour', customizePrefixCls);
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
|
|
const customClassName = classNames(
|
|
{
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
{
|
|
[`${prefixCls}-primary`]: type === 'primary',
|
|
},
|
|
hashId,
|
|
rootClassName,
|
|
);
|
|
|
|
const mergedRenderPanel = (stepProps: TourStepProps, stepCurrent: number) =>
|
|
panelRender(stepProps, stepCurrent, type);
|
|
|
|
return wrapSSR(
|
|
<RCTour
|
|
{...restProps}
|
|
rootClassName={customClassName}
|
|
prefixCls={prefixCls}
|
|
steps={steps}
|
|
current={current}
|
|
animated
|
|
renderPanel={mergedRenderPanel}
|
|
/>,
|
|
);
|
|
};
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Tour.displayName = 'Tour';
|
|
}
|
|
|
|
Tour._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
|
|
|
export default Tour;
|
|
|