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

View File

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

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( export function isHidden(
elementRef: HTMLElement | Ref<HTMLElement | undefined> elementRef: HTMLElement | Ref<HTMLElement | undefined>
) { ) {