chore: using Event constructor instead of initEvent (#9723)

* chore: using Event constructor instead of initEvent

* types: fix onChange
This commit is contained in:
neverland 2021-10-26 10:56:11 +08:00 committed by GitHub
parent ca1aa1a7b1
commit ddc0e09b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 14 deletions

View File

@ -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'));
}
}

View File

@ -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);
});

View File

@ -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>
) {