mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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 {
|
||||
trigger,
|
||||
isObject,
|
||||
isPromise,
|
||||
isFunction,
|
||||
@ -50,15 +49,14 @@ export function getRuleMessage(value: unknown, rule: FieldRule) {
|
||||
return message || '';
|
||||
}
|
||||
|
||||
export function startComposing(event: Event) {
|
||||
event.target!.composing = true;
|
||||
export function startComposing({ target }: Event) {
|
||||
target!.composing = true;
|
||||
}
|
||||
|
||||
export function endComposing(event: Event) {
|
||||
const { target } = event;
|
||||
export function endComposing({ target }: Event) {
|
||||
if (target!.composing) {
|
||||
target!.composing = false;
|
||||
trigger(target as Element, 'input');
|
||||
target!.dispatchEvent(new Event('input'));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
import { createApp } from 'vue';
|
||||
import { later } from '../../../test';
|
||||
import { trigger } from '../../utils';
|
||||
import { Notify } from '../function-call';
|
||||
import NotifyComponent from '../Notify';
|
||||
|
||||
@ -65,6 +64,6 @@ test('should call onClick option when clicked', async () => {
|
||||
|
||||
await later();
|
||||
const notify = document.querySelector('.van-notify');
|
||||
trigger(notify, 'click');
|
||||
notify.click();
|
||||
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(
|
||||
elementRef: HTMLElement | Ref<HTMLElement | undefined>
|
||||
) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user