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.
23 lines
698 B
23 lines
698 B
2 years ago
|
import { Provider as MotionProvider } from 'rc-motion';
|
||
|
import * as React from 'react';
|
||
|
import { useToken } from '../theme/internal';
|
||
|
|
||
|
export interface MotionWrapperProps {
|
||
|
children?: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export default function MotionWrapper(props: MotionWrapperProps): React.ReactElement {
|
||
|
const { children } = props;
|
||
|
const [, token] = useToken();
|
||
|
const { motion } = token;
|
||
|
|
||
|
const needWrapMotionProviderRef = React.useRef(false);
|
||
|
needWrapMotionProviderRef.current = needWrapMotionProviderRef.current || motion === false;
|
||
|
|
||
|
if (needWrapMotionProviderRef.current) {
|
||
|
return <MotionProvider motion={motion}>{children}</MotionProvider>;
|
||
|
}
|
||
|
|
||
|
return children as React.ReactElement;
|
||
|
}
|