mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
676de29eb4
* rtl demo change en-us description * change bundlesize css limit * RTL: modal component (exclude confirm) * RTL: table component * RTL: pagination component * cleanup rtl demo * fix pagination.tsx compile error * RTL: button and button-group * RTL: Steps component * fix rtl demo style * fix input suffix icon alignment * fix select component arrow issue * RTL: form component * add pagination rtl test * fix test lint error * RTL: rate component * RTL: radio and radio group components * RTL: tree-select component * some fixes to RTL components * RTL: badge component * fix rtl issue in inline form * fix input component rtl padding issue * fix switch component text rtl issue * fix table grouped header text-align * add rtl support to whole demo with RTL button * Update rtl demo responsive * RTL: page-header component * RTL: typography component * RTL: Dropdown (Partial) * update config-provider doc * RTL: input component * RTL: select component * RTL: switch component * RTL: tree component * fix rtl demo lint * rtl demo change en-us description * RTL: modal component (exclude confirm) * RTL: table component * RTL: pagination component * cleanup rtl demo * RTL: button and button-group * RTL: Steps component * fix rtl demo style * fix input suffix icon alignment * RTL: form component * RTL: rate component * RTL: radio and radio group components * RTL: tree-select component * RTL: badge component * fix rtl issue in inline form * fix input component rtl padding issue * add rtl support to whole demo with RTL button * fix lost changes after rebase * fix lint errors * RTL: Transfer Component * RTL: upload component * RTL: update avatar demo * RTL: comment component * RTL: collapse component * RTL: carousel component * update snapshots * RTL: Card component * RTL: descriptions component * RTL: Empty component * RTL: list component * RTL: slider component * slider component import/order * add shared rtlTest * RTL: Statistic component * RTL: tooltip components * RTL: popover component * RTL: timeline component * RTL: tag component * RTL: alert component * RTL: drawer component * RTL: Tab component * change direction definition * RTL: progress component * input.tsx, remove duplicate after rebase * fix demo.less after rebase * fix ant-row-rtl after rebase * fix upload issues in rtl * badge rtl demo margin fix * fix: tabs with icon margin * fix: radio-wrapper margin * fix: table component after rebase * fix: centered modal text-align * update slider snapshot * RTL: popconfirm component * RTL: back-top component * RTL: spin component * RTL: result component * RTL: skeleton component * RTL: menu component * RTL: time-picker component * RTL: calendar component * RTL: date-picker component * RTL: home page * update snapshots * test: add auto-complete rtl test * test: add avatar component rtl tests * test: add badge component rtl tests * test: add breadcrumb component rtl tests * test: add button components rtl tests * test: add card component rtl tests * test: add carousel component rtl tests * test: add cascader component rtl tests * test: add checkbox component rtl tests * test: add collapse component rtl tests * test: add comment component rtl tests * test: add dropdown component rtl tests * test: add empty component rtl tests * test: add form component rtl tests * test: add grid component rtl tests * test: add input component rtl tests * test: add search component rtl tests * test: add input-number component rtl tests * test: add layout component rtl tests * test: add list component rtl tests * test: add mentions component rtl tests * test: add modal component rtl tests * test: add page-header component rtl tests * test: add pagination component rtl tests * test: add radio component rtl tests * test: add rate component rtl tests * test: add select component rtl tests * test: add slider component rtl tests * test: add steps component rtl tests * test: add switch component rtl tests * test: add table component rtl tests * test: add transfer component rtl tests * test: add tree component rtl tests * test: add tree-select component rtl tests * test: add typography component rtl tests * test: add upload component rtl tests * test: add affix component rtl tests * update calendar tests * increase css file maxSize * update snapshots * remove workflows to allow push * remove duplicate reverse prop from slider * fix: remove table demo from config-provider * fix: remove table demo from config-provider * fix lint error * Added direction property to ConfigProvider * cascader rtl tests added * update config-provider doc * RTL: grid system * RTL: input component * RTL: switch component * fix rtl demo lint * RTL: modal component (exclude confirm) * RTL: table component * RTL: pagination component * cleanup rtl demo * fix pagination.tsx compile error * RTL: button and button-group * RTL: Steps component * fix rtl demo style * RTL: form component * add pagination rtl test * RTL: rate component * RTL: radio and radio group components * RTL: tree-select component * RTL: badge component * fix rtl issue in inline form * fix input component rtl padding issue * add rtl support to whole demo with RTL button * RTL: input component * RTL: select component * RTL: switch component * RTL: tree component * fix rtl demo lint * rtl demo change en-us description * RTL: modal component (exclude confirm) * RTL: table component * RTL: pagination component * cleanup rtl demo * RTL: button and button-group * RTL: Steps component * fix rtl demo style * fix input suffix icon alignment * RTL: form component * RTL: rate component * RTL: radio and radio group components * RTL: tree-select component * RTL: badge component * fix rtl issue in inline form * fix input component rtl padding issue * add rtl support to whole demo with RTL button * input.tsx, remove duplicate after rebase * fix ant-row-rtl after rebase * update snapshots * test: add cascader component rtl tests * test: add pagination component rtl tests * update calendar tests * update snapshots * fix: remove table demo from config-provider * fix: remove table demo from config-provider * fix lint error * update direction.md icons * dropdown and cascader default placement in rtl * update snapshots * fix lint errors * remove duplicate import * update snapshots * update snapshot * update calendar snapshot * update snapshots * integrate with new rc-picker * update snapshots * fix lint errors * update snapshot * update snapshots * update snapshots * update snapshots :| * update snapshots * fix compile error. * fix typo after rebase * update snapshots * remove workflows to allow push * update snapshots * update snapshots * fix dist error * front-page css fix * update snapshots * fix lint and test issues * restore cascader index.less * update snapshots * fix logo in rtl and demo controls * ci errors * resolve steps/index.tsx conflicts * tooltip family demo remove inline style * resolve table/Table.tsx conflicts * resolve modal/Modal.tsx conflicts * resolve cascader/index.tsx conflicts * add workflows from upstream * update snapshots * revert logo to default * fix codebox demo direction of placements * resolve tooltip overlayClassName conflicts * update snapshots * update popover test * fix: cascader miss popupClassName * fix: fix select missing dropdownClassName * chore: Update snapshot * chore: Adjust menu use rtl logic * docs: Update demo line color Co-authored-by: 二货机器人 <smith3816@gmail.com>
425 lines
13 KiB
JavaScript
425 lines
13 KiB
JavaScript
import React from 'react';
|
|
import Moment from 'moment';
|
|
import momentGenerateConfig from 'rc-picker/lib/generate/moment';
|
|
import { mount } from 'enzyme';
|
|
import MockDate from 'mockdate';
|
|
import Calendar from '..';
|
|
import Header from '../Header';
|
|
import Select from '../../select';
|
|
import Group from '../../radio/group';
|
|
import Button from '../../radio/radioButton';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('Calendar', () => {
|
|
mountTest(Calendar);
|
|
rtlTest(Calendar, true);
|
|
|
|
function openSelect(wrapper, className) {
|
|
wrapper
|
|
.find(className)
|
|
.find('.ant-select-selector')
|
|
.simulate('mousedown');
|
|
}
|
|
|
|
function findSelectItem(wrapper) {
|
|
return wrapper.find('.ant-select-item-option');
|
|
}
|
|
|
|
function clickSelectItem(wrapper, index = 0) {
|
|
findSelectItem(wrapper)
|
|
.at(index)
|
|
.simulate('click');
|
|
}
|
|
|
|
it('Calendar should be selectable', () => {
|
|
const onSelect = jest.fn();
|
|
const wrapper = mount(<Calendar onSelect={onSelect} />);
|
|
wrapper
|
|
.find('.ant-picker-cell')
|
|
.at(0)
|
|
.simulate('click');
|
|
expect(onSelect).toHaveBeenCalledWith(expect.anything());
|
|
const value = onSelect.mock.calls[0][0];
|
|
expect(Moment.isMoment(value)).toBe(true);
|
|
});
|
|
|
|
it('only Valid range should be selectable', () => {
|
|
const onSelect = jest.fn();
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-02-18')];
|
|
const wrapper = mount(
|
|
<Calendar onSelect={onSelect} validRange={validRange} defaultValue={Moment('2018-02-02')} />,
|
|
);
|
|
wrapper
|
|
.find('[title="2018-02-01"]')
|
|
.at(0)
|
|
.simulate('click');
|
|
wrapper
|
|
.find('[title="2018-02-02"]')
|
|
.at(0)
|
|
.simulate('click');
|
|
expect(onSelect.mock.calls.length).toBe(1);
|
|
});
|
|
|
|
it('dates other than in valid range should be disabled', () => {
|
|
const onSelect = jest.fn();
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-02-18')];
|
|
const wrapper = mount(
|
|
<Calendar onSelect={onSelect} validRange={validRange} defaultValue={Moment('2018-02-02')} />,
|
|
);
|
|
wrapper
|
|
.find('[title="2018-02-20"]')
|
|
.at(0)
|
|
.simulate('click');
|
|
const elem = wrapper.find('[title="2018-02-20"]').hasClass('ant-picker-cell-disabled');
|
|
expect(elem).toEqual(true);
|
|
expect(onSelect.mock.calls.length).toBe(0);
|
|
});
|
|
|
|
it('months other than in valid range should be disabled', () => {
|
|
const onSelect = jest.fn();
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-05-18')];
|
|
const wrapper = mount(
|
|
<Calendar
|
|
onSelect={onSelect}
|
|
validRange={validRange}
|
|
defaultValue={Moment('2018-02-02')}
|
|
mode="year"
|
|
/>,
|
|
);
|
|
expect(
|
|
wrapper
|
|
.find('[title="2018-01"]')
|
|
.at(0)
|
|
.hasClass('ant-picker-cell-disabled'),
|
|
).toBe(true);
|
|
expect(
|
|
wrapper
|
|
.find('[title="2018-02"]')
|
|
.at(0)
|
|
.hasClass('ant-picker-cell-disabled'),
|
|
).toBe(false);
|
|
expect(
|
|
wrapper
|
|
.find('[title="2018-06"]')
|
|
.at(0)
|
|
.hasClass('ant-picker-cell-disabled'),
|
|
).toBe(true);
|
|
wrapper
|
|
.find('[title="2018-01"]')
|
|
.at(0)
|
|
.simulate('click');
|
|
wrapper
|
|
.find('[title="2018-03"]')
|
|
.at(0)
|
|
.simulate('click');
|
|
expect(onSelect.mock.calls.length).toBe(1);
|
|
});
|
|
|
|
it('months other than in valid range should not be shown in header', () => {
|
|
const validRange = [Moment('2017-02-02'), Moment('2018-05-18')];
|
|
const wrapper = mount(<Calendar validRange={validRange} />);
|
|
openSelect(wrapper, '.ant-picker-calendar-year-select');
|
|
clickSelectItem(wrapper);
|
|
openSelect(wrapper, '.ant-picker-calendar-month-select');
|
|
// 2 years and 11 months
|
|
expect(wrapper.find('.ant-select-item-option').length).toBe(13);
|
|
});
|
|
|
|
it('getDateRange should returns a disabledDate function', () => {
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-05-18')];
|
|
const wrapper = mount(<Calendar validRange={validRange} defaultValue={Moment('2018-02-02')} />);
|
|
const { disabledDate } = wrapper.find('PickerPanel').props();
|
|
expect(disabledDate(Moment('2018-06-02'))).toBe(true);
|
|
expect(disabledDate(Moment('2018-04-02'))).toBe(false);
|
|
});
|
|
|
|
it('Calendar should change mode by prop', () => {
|
|
const monthMode = 'month';
|
|
const yearMode = 'year';
|
|
const wrapper = mount(<Calendar />);
|
|
expect(wrapper.find('CalendarHeader').props().mode).toEqual(monthMode);
|
|
wrapper.setProps({ mode: yearMode });
|
|
expect(wrapper.find('CalendarHeader').props().mode).toEqual(yearMode);
|
|
});
|
|
|
|
it('Calendar should switch mode', () => {
|
|
const monthMode = 'month';
|
|
const yearMode = 'year';
|
|
const onPanelChangeStub = jest.fn();
|
|
const wrapper = mount(<Calendar mode={yearMode} onPanelChange={onPanelChangeStub} />);
|
|
expect(wrapper.find('CalendarHeader').props().mode).toEqual(yearMode);
|
|
wrapper.setProps({ mode: monthMode });
|
|
expect(wrapper.find('CalendarHeader').props().mode).toEqual(monthMode);
|
|
expect(onPanelChangeStub).toHaveBeenCalledTimes(0);
|
|
});
|
|
|
|
it('Calendar should support locale', () => {
|
|
MockDate.set(Moment('2018-10-19'));
|
|
// eslint-disable-next-line
|
|
const zhCN = require('../locale/zh_CN').default;
|
|
const wrapper = mount(<Calendar locale={zhCN} />);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
MockDate.reset();
|
|
});
|
|
|
|
it('should trigger onPanelChange when click last month of date', () => {
|
|
const onPanelChange = jest.fn();
|
|
const date = new Moment('1990-09-03');
|
|
const wrapper = mount(<Calendar onPanelChange={onPanelChange} value={date} />);
|
|
|
|
wrapper
|
|
.find('.ant-picker-cell')
|
|
.at(0)
|
|
.simulate('click');
|
|
|
|
expect(onPanelChange).toHaveBeenCalled();
|
|
expect(onPanelChange.mock.calls[0][0].month()).toEqual(date.month() - 1);
|
|
});
|
|
|
|
it('switch should work correctly without prop mode', async () => {
|
|
const onPanelChange = jest.fn();
|
|
const date = new Moment(new Date(Date.UTC(2017, 7, 9, 8)));
|
|
const wrapper = mount(<Calendar onPanelChange={onPanelChange} value={date} />);
|
|
|
|
expect(wrapper.find('CalendarHeader').props().mode).toBe('month');
|
|
expect(wrapper.find('.ant-picker-date-panel').length).toBe(1);
|
|
expect(wrapper.find('.ant-picker-month-panel').length).toBe(0);
|
|
|
|
wrapper.find('.ant-radio-button-input[value="year"]').simulate('change');
|
|
expect(wrapper.find('.ant-picker-date-panel').length).toBe(0);
|
|
expect(wrapper.find('.ant-picker-month-panel').length).toBe(1);
|
|
expect(onPanelChange).toHaveBeenCalled();
|
|
expect(onPanelChange.mock.calls[0][1]).toEqual('year');
|
|
});
|
|
|
|
const createWrapper = (start, end, value, onValueChange) => {
|
|
const wrapper = mount(
|
|
<Header
|
|
prefixCls="ant-picker-calendar"
|
|
generateConfig={momentGenerateConfig}
|
|
onChange={onValueChange}
|
|
value={value}
|
|
validRange={[start, end]}
|
|
locale={{ year: '年' }}
|
|
/>,
|
|
);
|
|
openSelect(wrapper, '.ant-picker-calendar-year-select');
|
|
clickSelectItem(wrapper);
|
|
};
|
|
|
|
it('if value.month > end.month, set value.month to end.month', () => {
|
|
const value = new Moment('1990-01-03');
|
|
const start = new Moment('2019-04-01');
|
|
const end = new Moment('2019-11-01');
|
|
const onValueChange = jest.fn();
|
|
createWrapper(start, end, value, onValueChange);
|
|
expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('3'));
|
|
});
|
|
|
|
it('if start.month > value.month, set value.month to start.month ', () => {
|
|
const value = new Moment('1990-01-03');
|
|
const start = new Moment('2019-11-01');
|
|
const end = new Moment('2019-03-01');
|
|
const onValueChange = jest.fn();
|
|
createWrapper(start, end, value, onValueChange);
|
|
expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('10'));
|
|
});
|
|
|
|
it('if change year and new month > end month, set value.month to end.month ', () => {
|
|
const value = new Moment('2018-11-03');
|
|
const start = new Moment('2000-01-01');
|
|
const end = new Moment('2019-03-01');
|
|
const onValueChange = jest.fn();
|
|
const wrapper = mount(
|
|
<Header
|
|
prefixCls="ant-picker-calendar"
|
|
generateConfig={momentGenerateConfig}
|
|
onChange={onValueChange}
|
|
value={value}
|
|
validRange={[start, end]}
|
|
locale={{ year: '年' }}
|
|
/>,
|
|
);
|
|
openSelect(wrapper, '.ant-picker-calendar-year-select');
|
|
wrapper
|
|
.find('.ant-select-item-option')
|
|
.last()
|
|
.simulate('click');
|
|
expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('2'));
|
|
});
|
|
|
|
it('onMonthChange should work correctly', () => {
|
|
const start = new Moment('2018-11-01');
|
|
const end = new Moment('2019-03-01');
|
|
const value = new Moment('2018-12-03');
|
|
const onValueChange = jest.fn();
|
|
const wrapper = mount(
|
|
<Header
|
|
prefixCls="ant-picker-calendar"
|
|
generateConfig={momentGenerateConfig}
|
|
onChange={onValueChange}
|
|
value={value}
|
|
validRange={[start, end]}
|
|
locale={{ year: '年', locale: 'zh_CN' }}
|
|
mode="month"
|
|
/>,
|
|
);
|
|
openSelect(wrapper, '.ant-picker-calendar-month-select');
|
|
clickSelectItem(wrapper);
|
|
expect(onValueChange).toHaveBeenCalledWith(value.month(10));
|
|
});
|
|
|
|
it('onTypeChange should work correctly', () => {
|
|
const onTypeChange = jest.fn();
|
|
const value = new Moment('2018-12-03');
|
|
const wrapper = mount(
|
|
<Header
|
|
prefixCls="ant-picker-calendar"
|
|
generateConfig={momentGenerateConfig}
|
|
onModeChange={onTypeChange}
|
|
locale={{ year: '年', month: '月', locale: 'zh_CN' }}
|
|
value={value}
|
|
type="date"
|
|
/>,
|
|
);
|
|
wrapper
|
|
.find('input[type="radio"]')
|
|
.at(1)
|
|
.simulate('change');
|
|
expect(onTypeChange).toHaveBeenCalledWith('year');
|
|
});
|
|
|
|
it('headerRender should work correctly', () => {
|
|
const onMonthChange = jest.fn();
|
|
const onYearChange = jest.fn();
|
|
const onTypeChange = jest.fn();
|
|
|
|
// Year
|
|
const headerRender = jest.fn(({ value }) => {
|
|
const year = value.year();
|
|
const options = [];
|
|
for (let i = year - 100; i < year + 100; i += 1) {
|
|
options.push(
|
|
<Select.Option className="year-item" key={i} value={i}>
|
|
{i}
|
|
</Select.Option>,
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Select
|
|
size="small"
|
|
dropdownMatchSelectWidth={false}
|
|
className="my-year-select"
|
|
onChange={onYearChange}
|
|
value={String(year)}
|
|
>
|
|
{options}
|
|
</Select>
|
|
);
|
|
});
|
|
const wrapperWithYear = mount(<Calendar fullscreen={false} headerRender={headerRender} />);
|
|
|
|
openSelect(wrapperWithYear, '.ant-select');
|
|
wrapperWithYear.update();
|
|
|
|
findSelectItem(wrapperWithYear)
|
|
.last()
|
|
.simulate('click');
|
|
|
|
expect(onYearChange).toHaveBeenCalled();
|
|
|
|
// Month
|
|
const headerRenderWithMonth = jest.fn(({ value }) => {
|
|
const start = 0;
|
|
const end = 12;
|
|
const monthOptions = [];
|
|
const current = value.clone();
|
|
const localeData = value.localeData();
|
|
const months = [];
|
|
for (let i = 0; i < 12; i += 1) {
|
|
current.month(i);
|
|
months.push(localeData.monthsShort(current));
|
|
}
|
|
|
|
for (let index = start; index < end; index += 1) {
|
|
monthOptions.push(
|
|
<Select.Option className="month-item" key={`${index}`} value={index}>
|
|
{months[index]}
|
|
</Select.Option>,
|
|
);
|
|
}
|
|
|
|
const month = value.month();
|
|
return (
|
|
<Select
|
|
size="small"
|
|
dropdownMatchSelectWidth={false}
|
|
className="my-month-select"
|
|
onChange={onMonthChange}
|
|
value={String(month)}
|
|
>
|
|
{monthOptions}
|
|
</Select>
|
|
);
|
|
});
|
|
const wrapperWithMonth = mount(
|
|
<Calendar fullscreen={false} headerRender={headerRenderWithMonth} />,
|
|
);
|
|
|
|
openSelect(wrapperWithMonth, '.ant-select');
|
|
wrapperWithMonth.update();
|
|
|
|
findSelectItem(wrapperWithMonth)
|
|
.last()
|
|
.simulate('click');
|
|
|
|
expect(onMonthChange).toHaveBeenCalled();
|
|
|
|
// Type
|
|
const headerRenderWithTypeChange = jest.fn(({ type }) => {
|
|
return (
|
|
<Group size="small" onChange={onTypeChange} value={type}>
|
|
<Button value="month">Month</Button>
|
|
<Button value="year">Year</Button>
|
|
</Group>
|
|
);
|
|
});
|
|
|
|
const wrapperWithTypeChange = mount(
|
|
<Calendar fullscreen={false} headerRender={headerRenderWithTypeChange} />,
|
|
);
|
|
|
|
wrapperWithTypeChange
|
|
.find('.ant-radio-button-input')
|
|
.last()
|
|
.simulate('change');
|
|
expect(onTypeChange).toHaveBeenCalled();
|
|
});
|
|
|
|
it('dateFullCellRender', () => {
|
|
const wrapper = mount(
|
|
<Calendar dateFullCellRender={() => <div className="light">Bamboo</div>} />,
|
|
);
|
|
expect(
|
|
wrapper
|
|
.find('.light')
|
|
.first()
|
|
.text(),
|
|
).toEqual('Bamboo');
|
|
});
|
|
|
|
it('monthFullCellRender', () => {
|
|
const wrapper = mount(
|
|
<Calendar mode="year" monthFullCellRender={() => <div className="bamboo">Light</div>} />,
|
|
);
|
|
expect(
|
|
wrapper
|
|
.find('.bamboo')
|
|
.first()
|
|
.text(),
|
|
).toEqual('Light');
|
|
});
|
|
});
|