fix(Field): input composing #7035

This commit is contained in:
chenjiahan 2020-09-18 22:18:15 +08:00
parent cc8b76c86d
commit e7510585ab
2 changed files with 22 additions and 9 deletions

View File

@ -1,7 +1,7 @@
// Utils // Utils
import { resetScroll } from '../utils/dom/reset-scroll'; import { resetScroll } from '../utils/dom/reset-scroll';
import { formatNumber } from '../utils/format/number'; import { formatNumber } from '../utils/format/number';
import { preventDefault } from '../utils/dom/event'; import { trigger, preventDefault } from '../utils/dom/event';
import { import {
isDef, isDef,
addUnit, addUnit,
@ -386,6 +386,18 @@ export default createComponent({
this.$emit('keypress', event); this.$emit('keypress', event);
}, },
onCompositionStart(event) {
event.target.composing = true;
},
onCompositionEnd(event) {
const { target } = event;
if (target.composing) {
target.composing = false;
trigger(target, 'input');
}
},
adjustSize() { adjustSize() {
const { input } = this.$refs; const { input } = this.$refs;
if (!(this.type === 'textarea' && this.autosize) || !input) { if (!(this.type === 'textarea' && this.autosize) || !input) {
@ -439,15 +451,10 @@ export default createComponent({
onFocus: this.onFocus, onFocus: this.onFocus,
onInput: this.onInput, onInput: this.onInput,
onClick: this.onClickInput, onClick: this.onClickInput,
onChange: this.onCompositionEnd,
onKeypress: this.onKeypress, onKeypress: this.onKeypress,
// TODO onCompositionend: this.onCompositionEnd,
// add model directive to skip IME composition onCompositionstart: this.onCompositionStart,
// directives: [
// {
// name: 'model',
// value: this.modelValue,
// },
// ],
}; };
if (type === 'textarea') { if (type === 'textarea') {

View File

@ -56,3 +56,9 @@ export function preventDefault(event: Event, isStopPropagation?: boolean) {
stopPropagation(event); stopPropagation(event);
} }
} }
export function trigger(target: Element, type: string) {
const inputEvent = document.createEvent('HTMLEvents');
inputEvent.initEvent(type, true, true);
target.dispatchEvent(inputEvent);
}