|
|
|
import React from 'react';
|
|
|
|
import { render, mount } from 'enzyme';
|
|
|
|
import Table from '..';
|
|
|
|
|
|
|
|
describe('Table.pagination', () => {
|
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
title: 'Name',
|
|
|
|
dataIndex: 'name',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const data = [
|
|
|
|
{ key: 0, name: 'Jack' },
|
|
|
|
{ key: 1, name: 'Lucy' },
|
|
|
|
{ key: 2, name: 'Tom' },
|
|
|
|
{ key: 3, name: 'Jerry' },
|
|
|
|
];
|
|
|
|
|
|
|
|
const pagination = { className: 'my-page', pageSize: 2 };
|
|
|
|
|
|
|
|
function createTable(props) {
|
|
|
|
return <Table columns={columns} dataSource={data} pagination={pagination} {...props} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderedNames(wrapper) {
|
|
|
|
return wrapper.find('TableRow').map(row => row.props().record.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
it('renders pagination correctly', () => {
|
|
|
|
const wrapper = render(createTable());
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not show pager if pagination.hideOnSinglePage is true and only 1 page', () => {
|
|
|
|
const wrapper = mount(createTable({ pagination: { pageSize: 3, hideOnSinglePage: true } }));
|
|
|
|
expect(wrapper.find('.ant-pagination')).toHaveLength(1);
|
|
|
|
wrapper.setProps({ pagination: { pageSize: 3, hideOnSinglePage: false } });
|
|
|
|
expect(wrapper.find('.ant-pagination')).toHaveLength(1);
|
|
|
|
wrapper.setProps({ pagination: { pageSize: 4, hideOnSinglePage: true } });
|
|
|
|
expect(wrapper.find('.ant-pagination')).toHaveLength(0);
|
|
|
|
wrapper.setProps({ pagination: { pageSize: 4, hideOnSinglePage: false } });
|
|
|
|
expect(wrapper.find('.ant-pagination')).toHaveLength(1);
|
|
|
|
wrapper.setProps({ pagination: { pageSize: 5, hideOnSinglePage: true } });
|
|
|
|
expect(wrapper.find('.ant-pagination')).toHaveLength(0);
|
|
|
|
wrapper.setProps({ pagination: { pageSize: 5, hideOnSinglePage: false } });
|
|
|
|
expect(wrapper.find('.ant-pagination')).toHaveLength(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should use pageSize when defaultPageSize and pageSize are both specified', () => {
|
|
|
|
const wrapper = mount(createTable({ pagination: { pageSize: 3, defaultPageSize: 4 } }));
|
|
|
|
expect(wrapper.find('.ant-pagination-item')).toHaveLength(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('paginate data', () => {
|
|
|
|
const wrapper = mount(createTable());
|
|
|
|
|
|
|
|
expect(renderedNames(wrapper)).toEqual(['Jack', 'Lucy']);
|
|
|
|
wrapper
|
|
|
|
.find('Pager')
|
|
|
|
.last()
|
|
|
|
.simulate('click');
|
|
|
|
expect(renderedNames(wrapper)).toEqual(['Tom', 'Jerry']);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('repaginates when pageSize change', () => {
|
|
|
|
const wrapper = mount(createTable());
|
|
|
|
|
|
|
|
wrapper.setProps({ pagination: { pageSize: 1 } });
|
|
|
|
expect(renderedNames(wrapper)).toEqual(['Jack']);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should accept pagination size', () => {
|
|
|
|
const wrapper = mount(
|
|
|
|
createTable({
|
|
|
|
pagination: { size: 'small' },
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
expect(wrapper.find('.ant-pagination.mini')).toHaveLength(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
it('should scroll to first row when page change', () => {
|
|
|
|
const wrapper = mount(createTable({ scroll: { y: 20 } }));
|
|
|
|
|
|
|
|
wrapper
|
|
|
|
.find('Pager')
|
|
|
|
.last()
|
|
|
|
.simulate('click');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('fires change event', () => {
|
|
|
|
const handleChange = jest.fn();
|
|
|
|
const handlePaginationChange = jest.fn();
|
|
|
|
const noop = () => {};
|
|
|
|
const wrapper = mount(
|
|
|
|
createTable({
|
|
|
|
pagination: { ...pagination, onChange: handlePaginationChange, onShowSizeChange: noop },
|
|
|
|
onChange: handleChange,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
wrapper
|
|
|
|
.find('Pager')
|
|
|
|
.last()
|
|
|
|
.simulate('click');
|
|
|
|
|
|
|
|
expect(handleChange).toHaveBeenCalledWith(
|
|
|
|
{
|
|
|
|
className: 'my-page',
|
|
|
|
current: 2,
|
|
|
|
pageSize: 2,
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
currentDataSource: [
|
|
|
|
{ key: 0, name: 'Jack' },
|
|
|
|
{ key: 1, name: 'L |