mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
60dbef4963
* feat: Add motion off * chore: update motion seed * chore: all motion disabled * test: add test case * chore: fix lint * chore: fix cov * chore: fix motion of Switch & Segemented * test: ignore empty
23 lines
698 B
TypeScript
23 lines
698 B
TypeScript
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;
|
|
}
|