import { parse, transform, CompilerOptions, ElementNode, ObjectExpression, CallExpression, NodeTypes } from '@vue/compiler-core' import { transformOn } from '../../src/transforms/vOn' import { V_ON_WITH_MODIFIERS, V_ON_WITH_KEYS } from '../../src/runtimeHelpers' import { transformElement } from '../../../compiler-core/src/transforms/transformElement' import { transformExpression } from '../../../compiler-core/src/transforms/transformExpression' import { createObjectMatcher } from '../../../compiler-core/__tests__/testUtils' function parseWithVOn(template: string, options: CompilerOptions = {}) { const ast = parse(template) transform(ast, { nodeTransforms: [transformExpression, transformElement], directiveTransforms: { on: transformOn }, ...options }) return { root: ast, props: (((ast.children[0] as ElementNode).codegenNode as CallExpression) .arguments[1] as ObjectExpression).properties } } describe('compiler-dom: transform v-on', () => { it('should support multiple modifiers w/ prefixIdentifiers: true', () => { const { props: [prop] } = parseWithVOn(`
`, { prefixIdentifiers: true }) expect(prop).toMatchObject({ type: NodeTypes.JS_PROPERTY, value: { callee: V_ON_WITH_MODIFIERS, arguments: [{ content: '_ctx.test' }, '["stop","prevent"]'] } }) }) it('should support multiple modifiers and event options w/ prefixIdentifiers: true', () => { const { props: [prop] } = parseWithVOn(`
`, { prefixIdentifiers: true }) expect(prop).toMatchObject({ type: NodeTypes.JS_PROPERTY, value: createObjectMatcher({ handler: { callee: V_ON_WITH_MODIFIERS, arguments: [{ content: '_ctx.test' }, '["stop"]'] }, options: createObjectMatcher({ capture: { content: 'true', isStatic: false }, passive: { content: 'true', isStatic: false } }) }) }) }) it('should wrap keys guard for keyboard events or dynamic events', () => { const { props: [prop] } = parseWithVOn(`
`, { prefixIdentifiers: true }) expect(prop).toMatchObject({ type: NodeTypes.JS_PROPERTY, value: createObjectMatcher({ handler: { callee: V_ON_WITH_KEYS, arguments: [ { callee: V_ON_WITH_MODIFIERS, arguments: [{ content: '_ctx.test' }, '["stop","ctrl"]'] }, '["a"]' ] }, options: createObjectMatcher({ capture: { content: 'true', isStatic: false } }) }) }) }) it('should not wrap keys guard if no key modifier is present', () => { const { props: [prop] } = parseWithVOn(`
`, { prefixIdentifiers: true }) expect(prop).toMatchObject({ type: NodeTypes.JS_PROPERTY, value: { callee: V_ON_WITH_MODIFIERS, arguments: [{ content: '_ctx.test' }, '["exact"]'] } }) }) it('should not wrap normal guard if there is only keys guard', () => { const { props: [prop] } = parseWithVOn(`
`, { prefixIdentifiers: true }) expect(prop).toMatchObject({ type: NodeTypes.JS_PROPERTY, value: { callee: V_ON_WITH_KEYS, arguments: [{ content: '_ctx.test' }, '["enter"]'] } }) }) test('cache handler w/ modifiers', () => { const { root, props: [prop] } = parseWithVOn(`
`, { prefixIdentifiers: true, cacheHandlers: true }) expect(root.cached).toBe(1) // should not treat cached handler as dynamicProp, so no flags expect((root as any).children[0].codegenNode.arguments.length).toBe(2) expect(prop.value).toMatchObject({ type: NodeTypes.JS_CACHE_EXPRESSION, index: 1, value: { type: NodeTypes.JS_OBJECT_EXPRESSION, properties: [ { key: { content: 'handler' }, value: { type: NodeTypes.JS_CALL_EXPRESSION, callee: V_ON_WITH_KEYS } }, { key: { content: 'options' }, value: { type: NodeTypes.JS_OBJECT_EXPRESSION } } ] } }) }) })