mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: using Event constructor instead of initEvent (#9723)
* chore: using Event constructor instead of initEvent * types: fix onChange
This commit is contained in:
parent
ca1aa1a7b1
commit
ddc0e09b69
@ -1,6 +1,5 @@
|
|||||||
import { HTMLAttributes, InputHTMLAttributes } from 'vue';
|
import { HTMLAttributes, InputHTMLAttributes } from 'vue';
|
||||||
import {
|
import {
|
||||||
trigger,
|
|
||||||
isObject,
|
isObject,
|
||||||
isPromise,
|
isPromise,
|
||||||
isFunction,
|
isFunction,
|
||||||
@ -50,15 +49,14 @@ export function getRuleMessage(value: unknown, rule: FieldRule) {
|
|||||||
return message || '';
|
return message || '';
|
||||||
}
|
}
|
||||||
|
|
||||||
export function startComposing(event: Event) {
|
export function startComposing({ target }: Event) {
|
||||||
event.target!.composing = true;
|
target!.composing = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function endComposing(event: Event) {
|
export function endComposing({ target }: Event) {
|
||||||
const { target } = event;
|
|
||||||
if (target!.composing) {
|
if (target!.composing) {
|
||||||
target!.composing = false;
|
target!.composing = false;
|
||||||
trigger(target as Element, 'input');
|
target!.dispatchEvent(new Event('input'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import { createApp } from 'vue';
|
import { createApp } from 'vue';
|
||||||
import { later } from '../../../test';
|
import { later } from '../../../test';
|
||||||
import { trigger } from '../../utils';
|
|
||||||
import { Notify } from '../function-call';
|
import { Notify } from '../function-call';
|
||||||
import NotifyComponent from '../Notify';
|
import NotifyComponent from '../Notify';
|
||||||
|
|
||||||
@ -65,6 +64,6 @@ test('should call onClick option when clicked', async () => {
|
|||||||
|
|
||||||
await later();
|
await later();
|
||||||
const notify = document.querySelector('.van-notify');
|
const notify = document.querySelector('.van-notify');
|
||||||
trigger(notify, 'click');
|
notify.click();
|
||||||
expect(onClick).toHaveBeenCalledTimes(1);
|
expect(onClick).toHaveBeenCalledTimes(1);
|
||||||
});
|
});
|
||||||
|
@ -66,12 +66,6 @@ export function preventDefault(event: Event, isStopPropagation?: boolean) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function trigger(target: Element, type: string) {
|
|
||||||
const inputEvent = document.createEvent('HTMLEvents');
|
|
||||||
inputEvent.initEvent(type, true, true);
|
|
||||||
target.dispatchEvent(inputEvent);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function isHidden(
|
export function isHidden(
|
||||||
elementRef: HTMLElement | Ref<HTMLElement | undefined>
|
elementRef: HTMLElement | Ref<HTMLElement | undefined>
|
||||||
) {
|
) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user