Skip to content

Commit

Permalink
feat(runtime-core): allows v-model built in modifiers on component (v…
Browse files Browse the repository at this point in the history
  • Loading branch information
69hunter authored and yyx990803 committed Oct 20, 2020
1 parent 4bbb2b2 commit 301ea5d
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 3 deletions.
62 changes: 62 additions & 0 deletions packages/runtime-core/__tests__/componentEmits.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,68 @@ describe('component: emit', () => {
expect(onFooOnce).toHaveBeenCalledTimes(1)
})

test('.number modifier should work with v-model on component', () => {
const Foo = defineComponent({
render() {},
created() {
this.$emit('update:modelValue', '1')
this.$emit('update:foo', '2')
}
})

const fn1 = jest.fn()
const fn2 = jest.fn()

const Comp = () =>
h(Foo, {
modelValue: null,
modelModifiers: { number: true },
'onUpdate:modelValue': fn1,

foo: null,
fooModifiers: { number: true },
'onUpdate:foo': fn2
})

render(h(Comp), nodeOps.createElement('div'))

expect(fn1).toHaveBeenCalledTimes(1)
expect(fn1).toHaveBeenCalledWith(1)
expect(fn2).toHaveBeenCalledTimes(1)
expect(fn2).toHaveBeenCalledWith(2)
})

test('.trim modifier should work with v-model on component', () => {
const Foo = defineComponent({
render() {},
created() {
this.$emit('update:modelValue', ' one ')
this.$emit('update:foo', ' two ')
}
})

const fn1 = jest.fn()
const fn2 = jest.fn()

const Comp = () =>
h(Foo, {
modelValue: null,
modelModifiers: { trim: true },
'onUpdate:modelValue': fn1,

foo: null,
fooModifiers: { trim: true },
'onUpdate:foo': fn2
})

render(h(Comp), nodeOps.createElement('div'))

expect(fn1).toHaveBeenCalledTimes(1)
expect(fn1).toHaveBeenCalledWith('one')
expect(fn2).toHaveBeenCalledTimes(1)
expect(fn2).toHaveBeenCalledWith('two')
})

test('isEmitListener', () => {
const options = { click: null }
expect(isEmitListener(options, 'onClick')).toBe(true)
Expand Down
23 changes: 20 additions & 3 deletions packages/runtime-core/src/componentEmits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import {
hyphenate,
isArray,
isFunction,
isOn
isOn,
toNumber
} from '@vue/shared'
import {
ComponentInternalInstance,
Expand Down Expand Up @@ -45,7 +46,7 @@ export type EmitFn<
export function emit(
instance: ComponentInternalInstance,
event: string,
...args: any[]
...rawArgs: any[]
) {
const props = instance.vnode.props || EMPTY_OBJ

Expand All @@ -65,7 +66,7 @@ export function emit(
} else {
const validator = emitsOptions[event]
if (isFunction(validator)) {
const isValid = validator(...args)
const isValid = validator(...rawArgs)
if (!isValid) {
warn(
`Invalid event arguments: event validation failed for event "${event}".`
Expand All @@ -76,6 +77,22 @@ export function emit(
}
}

let args = rawArgs

// for v-model update:xxx events, apply modifiers on args
const modelArg = event.startsWith('update:') && event.slice(7)
if (modelArg && modelArg in props) {
const modifiersKey = `${
modelArg === 'modelValue' ? 'model' : modelArg
}Modifiers`
const { number, trim } = props[modifiersKey] || EMPTY_OBJ
if (trim) {
args = rawArgs.map(a => a.trim())
} else if (number) {
args = rawArgs.map(toNumber)
}
}

if (__DEV__ || __FEATURE_PROD_DEVTOOLS__) {
devtoolsComponentEmit(instance, event, args)
}
Expand Down

0 comments on commit 301ea5d

Please sign in to comment.