mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
6ed0254ad5
* feat: support classNames and styles for card * feat: add lost info * docs: update context of card * feat: optimize classNames and styles code of card * test: update card test case * feat: remove headWrapper * test: correct test * feat: remove redundant snapshot * feat: update config provider for card * feat: update classNames and styles of card * feat: add warning for headStyle and bodyStyle of card * test: replace bodyStyle to styles.body in demo of flex * docs: add jsDoc about deprecated for headStyle and bodyStyle * snap: update table counts of card from 3 to 4 * docs: update version for styles and classnames of card --------- Signed-off-by: zhoulixiang <18366276315@163.com> Co-authored-by: vagusX <vagusxl@gmail.com>
196 lines
4.7 KiB
TypeScript
196 lines
4.7 KiB
TypeScript
import '@testing-library/jest-dom';
|
|
import userEvent from '@testing-library/user-event';
|
|
import React from 'react';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
import { render, screen } from '../../../tests/utils';
|
|
import Button from '../../button/index';
|
|
import Card from '../index';
|
|
|
|
describe('Card', () => {
|
|
mountTest(Card);
|
|
rtlTest(Card);
|
|
|
|
beforeAll(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
afterAll(() => {
|
|
jest.useRealTimers();
|
|
});
|
|
|
|
it('should still have padding when card which set padding to 0 is loading', () => {
|
|
const { container } = render(
|
|
<Card loading bodyStyle={{ padding: 0 }}>
|
|
xxx
|
|
</Card>,
|
|
);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('title should be vertically aligned', () => {
|
|
const { container } = render(
|
|
<Card title="Card title" extra={<Button>Button</Button>} style={{ width: 300 }}>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('onTabChange should work', async () => {
|
|
const tabList = [
|
|
{
|
|
key: 'tab1',
|
|
tab: 'tab1',
|
|
},
|
|
{
|
|
key: 'tab2',
|
|
tab: 'tab2',
|
|
},
|
|
];
|
|
const onTabChange = jest.fn();
|
|
render(
|
|
<Card onTabChange={onTabChange} tabList={tabList}>
|
|
xxx
|
|
</Card>,
|
|
);
|
|
await userEvent.setup({ delay: null }).click(screen.getByRole('tab', { name: /tab2/i }));
|
|
expect(onTabChange).toHaveBeenCalledWith('tab2');
|
|
});
|
|
|
|
it('should not render when actions is number', () => {
|
|
const numberStub = 11;
|
|
render(
|
|
// @ts-ignore ignore for the wrong action value
|
|
<Card title="Card title" actions={numberStub}>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
expect(screen.queryByText(numberStub)).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('with tab props', () => {
|
|
const { container } = render(
|
|
<Card
|
|
title="Card title"
|
|
tabList={[
|
|
{
|
|
key: 'key',
|
|
tab: 'tab',
|
|
},
|
|
]}
|
|
tabProps={{ size: 'small' }}
|
|
>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
expect(container.querySelectorAll('.ant-tabs-small').length === 0).toBeFalsy();
|
|
});
|
|
|
|
it('tab size extend card size', () => {
|
|
const { container: largeContainer } = render(
|
|
<Card
|
|
title="Card title"
|
|
tabList={[
|
|
{
|
|
key: 'key',
|
|
tab: 'tab',
|
|
},
|
|
]}
|
|
>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
expect(largeContainer.querySelectorAll('.ant-tabs-large').length === 0).toBeFalsy();
|
|
|
|
const { container } = render(
|
|
<Card
|
|
title="Card title"
|
|
tabList={[
|
|
{
|
|
key: 'key',
|
|
tab: 'tab',
|
|
},
|
|
]}
|
|
size="small"
|
|
>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
expect(container.querySelectorAll('.ant-tabs-small').length === 0).toBeFalsy();
|
|
});
|
|
|
|
it('get ref of card', () => {
|
|
const cardRef = React.createRef<HTMLDivElement>();
|
|
|
|
render(
|
|
<Card ref={cardRef} title="Card title">
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
|
|
expect(cardRef.current).toHaveClass('ant-card');
|
|
});
|
|
|
|
it('should show tab when tabList is empty', () => {
|
|
const { container } = render(
|
|
<Card title="Card title" tabList={[]} tabProps={{ type: 'editable-card' }}>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
|
|
expect(container.querySelector('.ant-tabs')).toBeTruthy();
|
|
expect(container.querySelector('.ant-tabs-nav-add')).toBeTruthy();
|
|
});
|
|
|
|
it('correct pass tabList props', () => {
|
|
const { container } = render(
|
|
<Card
|
|
tabList={[
|
|
{
|
|
label: 'Basic',
|
|
key: 'basic',
|
|
},
|
|
{
|
|
tab: 'Deprecated',
|
|
key: 'deprecated',
|
|
},
|
|
{
|
|
tab: 'Disabled',
|
|
key: 'disabled',
|
|
disabled: true,
|
|
},
|
|
{
|
|
tab: 'NotClosable',
|
|
key: 'notClosable',
|
|
closable: false,
|
|
},
|
|
]}
|
|
tabProps={{
|
|
type: 'editable-card',
|
|
}}
|
|
/>,
|
|
);
|
|
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('should support custom className', () => {
|
|
const { container } = render(
|
|
<Card title="Card title" classNames={{ header: 'custom-head' }}>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should support custom styles', () => {
|
|
const { container } = render(
|
|
<Card title="Card title" styles={{ header: { color: 'red' } }}>
|
|
<p>Card content</p>
|
|
</Card>,
|
|
);
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
});
|