mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Calendar): auto selected to max range when show-confirm is false (#9948)
* fix(Calendar): auto selected to max range when show-confirm is false * test: update
This commit is contained in:
parent
94e00d443f
commit
013991b1e6
@ -344,15 +344,11 @@ export default defineComponent({
|
||||
const valid = checkRange(date as [Date, Date]);
|
||||
|
||||
if (!valid) {
|
||||
// auto selected to max range if showConfirm
|
||||
if (props.showConfirm) {
|
||||
setCurrentDate([
|
||||
(date as Date[])[0],
|
||||
getDayByOffset((date as Date[])[0], +props.maxRange - 1),
|
||||
]);
|
||||
} else {
|
||||
setCurrentDate(date);
|
||||
}
|
||||
// auto selected to max range
|
||||
setCurrentDate([
|
||||
(date as Date[])[0],
|
||||
getDayByOffset((date as Date[])[0], +props.maxRange - 1),
|
||||
]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -2,36 +2,7 @@ import { Calendar } from '..';
|
||||
import { mount, later } from '../../../test';
|
||||
import { minDate, maxDate } from './utils';
|
||||
|
||||
test('max-range prop when type is range and showConfirm is false', async () => {
|
||||
const wrapper = mount(Calendar, {
|
||||
props: {
|
||||
type: 'range',
|
||||
minDate,
|
||||
maxDate,
|
||||
maxRange: 3,
|
||||
poppable: false,
|
||||
showConfirm: false,
|
||||
lazyRender: false,
|
||||
},
|
||||
});
|
||||
|
||||
await later();
|
||||
|
||||
const days = wrapper.findAll('.van-calendar__day');
|
||||
days[12].trigger('click');
|
||||
days[18].trigger('click');
|
||||
|
||||
expect(wrapper.emitted<[Date]>('select')![0][0]).toEqual([
|
||||
new Date(2010, 0, 13),
|
||||
]);
|
||||
expect(wrapper.emitted<[Date]>('select')![1][0]).toEqual([
|
||||
new Date(2010, 0, 13),
|
||||
new Date(2010, 0, 19),
|
||||
]);
|
||||
expect(wrapper.emitted('confirm')).toBeFalsy();
|
||||
});
|
||||
|
||||
test('max-range prop when type is range and showConfirm is true', async () => {
|
||||
test('should limit max range when using max-range prop and type is range', async () => {
|
||||
const wrapper = mount(Calendar, {
|
||||
props: {
|
||||
type: 'range',
|
||||
@ -59,7 +30,7 @@ test('max-range prop when type is range and showConfirm is true', async () => {
|
||||
expect(wrapper.emitted('confirm')).toBeFalsy();
|
||||
});
|
||||
|
||||
test('max-range prop when type is multiple', async () => {
|
||||
test('should limit max range when using max-range prop and type is multiple', async () => {
|
||||
const wrapper = mount(Calendar, {
|
||||
props: {
|
||||
type: 'multiple',
|
||||
|
Loading…
x
Reference in New Issue
Block a user