File size: 3,098 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
import React from 'react';
import type { TriggerProps, TriggerRef } from '@rc-component/trigger';
import dayjs from 'dayjs';
import customParseFormat from 'dayjs/plugin/customParseFormat';
import ConfigProvider from '..';
import { render } from '../../../tests/utils';
import Cascader from '../../cascader';
import Select from '../../select';
import TreeSelect from '../../tree-select';
dayjs.extend(customParseFormat);
jest.mock('rc-util/lib/Portal');
function triggerProps(): TriggerProps {
return (global as any).triggerProps;
}
jest.mock('@rc-component/trigger', () => {
const R: typeof React = jest.requireActual('react');
const Trigger = jest.requireActual('@rc-component/trigger').default;
return R.forwardRef<TriggerRef, TriggerProps>((props, ref) => {
(global as any).triggerProps = props;
return <Trigger {...props} ref={ref} />;
});
});
describe('ConfigProvider.Popup', () => {
beforeEach(() => {
(global as any).triggerProps = null;
});
const selectLikeNodes = (
<>
<Select open options={Array.from({ length: 20 }, (_, i) => ({ value: i, label: i }))} />
<TreeSelect open treeData={Array.from({ length: 20 }, (_, i) => ({ value: i, title: i }))} />
<Cascader open options={Array.from({ length: 20 }, (_, i) => ({ value: i, label: i }))} />
</>
);
it('disable virtual if is false', () => {
const { container } = render(
<ConfigProvider virtual={false}>{selectLikeNodes}</ConfigProvider>,
);
expect(container).toMatchSnapshot();
});
it('disable virtual if dropdownMatchSelectWidth is false', () => {
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
const { container } = render(
<ConfigProvider dropdownMatchSelectWidth={false}>{selectLikeNodes}</ConfigProvider>,
);
expect(container).toMatchSnapshot();
expect(errSpy).toHaveBeenCalledWith(
'Warning: [antd: ConfigProvider] `dropdownMatchSelectWidth` is deprecated. Please use `popupMatchSelectWidth` instead.',
);
errSpy.mockRestore();
});
it('disable virtual if popupMatchSelectWidth is false', () => {
const { container } = render(
<ConfigProvider popupMatchSelectWidth={false}>{selectLikeNodes}</ConfigProvider>,
);
expect(container).toMatchSnapshot();
});
describe('config popupOverflow', () => {
it('Select', () => {
render(
<ConfigProvider popupOverflow="scroll">
<Select open />
</ConfigProvider>,
);
expect(triggerProps().builtinPlacements!.topLeft!.htmlRegion).toBe('scroll');
});
it('TreeSelect', () => {
render(
<ConfigProvider popupOverflow="scroll">
<TreeSelect open />
</ConfigProvider>,
);
expect(triggerProps().builtinPlacements!.topLeft!.htmlRegion).toBe('scroll');
});
it('Cascader', () => {
render(
<ConfigProvider popupOverflow="scroll">
<Cascader open />
</ConfigProvider>,
);
expect(triggerProps().builtinPlacements!.topLeft!.htmlRegion).toBe('scroll');
});
});
});
|