mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 03:29:39 +08:00
a998569adb
* test: optimization type in test case * fix lint --------- Co-authored-by: 我们去月球漫步 <13105694+flymetothemoon-wj@user.noreply.gitee.com>
27 lines
886 B
TypeScript
27 lines
886 B
TypeScript
import type { TriggerProps, TriggerRef } from '@rc-component/trigger';
|
|
import MockTrigger from '@rc-component/trigger/lib/mock';
|
|
import * as React from 'react';
|
|
import { TriggerMockContext } from '../../shared/demoTestContext';
|
|
|
|
let OriginTrigger = jest.requireActual('@rc-component/trigger');
|
|
OriginTrigger = OriginTrigger.default ?? OriginTrigger;
|
|
|
|
const ForwardTrigger = React.forwardRef<TriggerRef, TriggerProps>((props, ref) => {
|
|
const context = React.useContext(TriggerMockContext);
|
|
|
|
const mergedPopupVisible = context?.popupVisible ?? props.popupVisible;
|
|
(global as any).triggerProps = props;
|
|
|
|
const mergedProps: TriggerProps = {
|
|
...props,
|
|
popupVisible: mergedPopupVisible,
|
|
};
|
|
|
|
if (context?.mock === false) {
|
|
return <OriginTrigger ref={ref} {...mergedProps} />;
|
|
}
|
|
return <MockTrigger ref={ref} {...mergedProps} />;
|
|
});
|
|
|
|
export default ForwardTrigger;
|