mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
20d5502193
* chore(deps-dev): bump eslint-config-airbnb from 18.2.1 to 19.0.0 Bumps [eslint-config-airbnb](https://github.com/airbnb/javascript) from 18.2.1 to 19.0.0. - [Release notes](https://github.com/airbnb/javascript/releases) - [Commits](https://github.com/airbnb/javascript/compare/eslint-config-airbnb-v18.2.1...eslint-config-airbnb-v19.0.0) --- updated-dependencies: - dependency-name: eslint-config-airbnb dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * chore: code style * memoize-one * add comment * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * fix lint * improve useMemo deps Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
176 lines
4.2 KiB
JavaScript
176 lines
4.2 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { render, mount } from 'enzyme';
|
|
import { act } from 'react-test-renderer';
|
|
import Space from '..';
|
|
import ConfigProvider from '../../config-provider';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('Space', () => {
|
|
mountTest(Space);
|
|
rtlTest(Space);
|
|
|
|
it('should render width empty children', () => {
|
|
const wrapper = mount(<Space />);
|
|
|
|
expect(wrapper.instance()).toBe(null);
|
|
});
|
|
|
|
it('should render width ConfigProvider', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider space={{ size: 'large' }}>
|
|
<Space>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="middle">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="large">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(render(wrapper)).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render width rtl', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider direction="rtl">
|
|
<Space>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="middle">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="large">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(render(wrapper)).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render width customize size', () => {
|
|
const wrapper = mount(
|
|
<Space size={10}>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(wrapper.find('div.ant-space-item').at(0).prop('style').marginRight).toBe(10);
|
|
expect(wrapper.find('div.ant-space-item').at(1).prop('style').marginRight).toBeUndefined();
|
|
});
|
|
|
|
it('should render width size 0', () => {
|
|
const wrapper = mount(
|
|
<Space size={NaN}>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(wrapper.find('div.ant-space-item').at(0).prop('style').marginRight).toBe(0);
|
|
});
|
|
|
|
it('should render vertical space width customize size', () => {
|
|
const wrapper = mount(
|
|
<Space size={10} direction="vertical">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(wrapper.find('div.ant-space-item').at(0).prop('style').marginBottom).toBe(10);
|
|
expect(wrapper.find('div.ant-space-item').at(1).prop('style').marginBottom).toBeUndefined();
|
|
});
|
|
|
|
it('should render correct with children', () => {
|
|
const wrapper = mount(
|
|
<Space>
|
|
text1<span>text1</span>
|
|
{/* eslint-disable-next-line react/jsx-no-useless-fragment */}
|
|
<>text3</>
|
|
</Space>,
|
|
);
|
|
|
|
expect(render(wrapper)).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render with invalidElement', () => {
|
|
const wrapper = mount(
|
|
<Space>
|
|
text1<span>text1</span>
|
|
text1
|
|
</Space>,
|
|
);
|
|
|
|
expect(wrapper.find('div.ant-space-item').length).toBe(3);
|
|
});
|
|
|
|
it('should be keep store', () => {
|
|
function Demo() {
|
|
const [state, setState] = React.useState(1);
|
|
|
|
return (
|
|
<div
|
|
id="demo"
|
|
onClick={() => {
|
|
setState(value => value + 1);
|
|
}}
|
|
>
|
|
{state}
|
|
</div>
|
|
);
|
|
}
|
|
function SpaceDemo() {
|
|
const [visible, setVisible] = useState(true);
|
|
function onChange() {
|
|
setVisible(!visible);
|
|
}
|
|
return (
|
|
<Space>
|
|
{visible && <div>space</div>}
|
|
<Demo />
|
|
<p onClick={onChange}>Three</p>
|
|
</Space>
|
|
);
|
|
}
|
|
const wrapper = mount(<SpaceDemo />);
|
|
|
|
expect(wrapper.find('#demo').text()).toBe('1');
|
|
|
|
act(() => {
|
|
wrapper.find('#demo').simulate('click');
|
|
});
|
|
|
|
expect(wrapper.find('#demo').text()).toBe('2');
|
|
|
|
act(() => {
|
|
wrapper.find('p').simulate('click');
|
|
});
|
|
|
|
expect(wrapper.find('#demo').text()).toBe('2');
|
|
});
|
|
|
|
it('split', () => {
|
|
const wrapper = mount(
|
|
<Space split="-">
|
|
text1<span>text1</span>
|
|
{/* eslint-disable-next-line react/jsx-no-useless-fragment */}
|
|
<>text3</>
|
|
</Space>,
|
|
);
|
|
|
|
expect(render(wrapper)).toMatchSnapshot();
|
|
});
|
|
});
|