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.

52 lines
1.2 KiB

import * as React from 'react';
import classNames from 'classnames';
import { ConfigContext } from '../config-provider';
import type { TourStepProps } from './interface';
import panelRender from './panelRender';
import { RawPurePanel as PopoverRawPurePanel } from '../popover/PurePanel';
import useStyle from './style';
export interface PurePanelProps extends TourStepProps {}
const PurePanel: React.FC<PurePanelProps> = (props) => {
const {
prefixCls: customizePrefixCls,
current = 0,
total = 6,
className,
style,
type,
...restProps
} = props;
const { getPrefixCls } = React.useContext(ConfigContext);
const prefixCls = getPrefixCls('tour', customizePrefixCls);
const [wrapSSR, hashId] = useStyle(prefixCls);
const node = panelRender(
{
...restProps,
prefixCls,
total,
},
current,
type,
);
return wrapSSR(
<PopoverRawPurePanel
prefixCls={prefixCls}
hashId={hashId}
className={classNames(className, `${prefixCls}-pure`, type && `${prefixCls}-${type}`)}
style={style}
>
{node}
</PopoverRawPurePanel>,
);
// return node as React.ReactElement;
};
export default PurePanel;