Skip to content

Commit daed1e7

Browse files
committed
fix: normlaize @click.right and @click.middle
fix #7020
1 parent 7cf188e commit daed1e7

File tree

5 files changed

+48
-24
lines changed

5 files changed

+48
-24
lines changed

src/compiler/codegen/events.js

+1-12
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,7 @@ export function genHandlers (
4141
): string {
4242
let res = isNative ? 'nativeOn:{' : 'on:{'
4343
for (const name in events) {
44-
const handler = events[name]
45-
// #5330: warn click.right, since right clicks do not actually fire click events.
46-
if (process.env.NODE_ENV !== 'production' &&
47-
name === 'click' &&
48-
handler && handler.modifiers && handler.modifiers.right
49-
) {
50-
warn(
51-
`Use "contextmenu" instead of "click.right" since right clicks ` +
52-
`do not actually fire "click" events.`
53-
)
54-
}
55-
res += `"${name}":${genHandler(name, handler)},`
44+
res += `"${name}":${genHandler(name, events[name])},`
5645
}
5746
return res.slice(0, -1) + '}'
5847
}

src/compiler/helpers.js

+27-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/* @flow */
22

3+
import { emptyObject } from 'shared/util'
34
import { parseFilters } from './parser/filter-parser'
45

56
export function baseWarn (msg: string) {
@@ -42,39 +43,59 @@ export function addHandler (
4243
important?: boolean,
4344
warn?: Function
4445
) {
46+
modifiers = modifiers || emptyObject
4547
// warn prevent and passive modifier
4648
/* istanbul ignore if */
4749
if (
4850
process.env.NODE_ENV !== 'production' && warn &&
49-
modifiers && modifiers.prevent && modifiers.passive
51+
modifiers.prevent && modifiers.passive
5052
) {
5153
warn(
5254
'passive and prevent can\'t be used together. ' +
5355
'Passive handler can\'t prevent default event.'
5456
)
5557
}
58+
5659
// check capture modifier
57-
if (modifiers && modifiers.capture) {
60+
if (modifiers.capture) {
5861
delete modifiers.capture
5962
name = '!' + name // mark the event as captured
6063
}
61-
if (modifiers && modifiers.once) {
64+
if (modifiers.once) {
6265
delete modifiers.once
6366
name = '~' + name // mark the event as once
6467
}
6568
/* istanbul ignore if */
66-
if (modifiers && modifiers.passive) {
69+
if (modifiers.passive) {
6770
delete modifiers.passive
6871
name = '&' + name // mark the event as passive
6972
}
73+
74+
// normalize click.right and click.middle since they don't actually fire
75+
// this is technically browser-specific, but at least for now browsers are
76+
// the only target envs that have right/middle clicks.
77+
if (name === 'click') {
78+
if (modifiers.right) {
79+
name = 'contextmenu'
80+
delete modifiers.right
81+
} else if (modifiers.middle) {
82+
name = 'mouseup'
83+
}
84+
}
85+
7086
let events
71-
if (modifiers && modifiers.native) {
87+
if (modifiers.native) {
7288
delete modifiers.native
7389
events = el.nativeEvents || (el.nativeEvents = {})
7490
} else {
7591
events = el.events || (el.events = {})
7692
}
77-
const newHandler = { value, modifiers }
93+
94+
const newHandler: any = { value }
95+
if (modifiers !== emptyObject) {
96+
newHandler.modifiers = modifiers
97+
}
98+
7899
const handlers = events[name]
79100
/* istanbul ignore if */
80101
if (Array.isArray(handlers)) {

src/core/util/lang.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/* @flow */
22

3-
export const emptyObject = Object.freeze({})
4-
53
/**
64
* Check if a string starts with $ or _
75
*/

src/shared/util.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* @flow */
22

3+
export const emptyObject = Object.freeze({})
4+
35
// these helpers produces better vm code in JS engines due to their
46
// explicitness and function inlining
57
export function isUndef (v: any): boolean %checks {

test/unit/features/directives/on.spec.js

+18-4
Original file line numberDiff line numberDiff line change
@@ -693,13 +693,27 @@ describe('Directive v-on', () => {
693693
expect(prevented).toBe(true)
694694
})
695695

696-
it('should warn click.right', () => {
697-
new Vue({
696+
it('should transform click.right to contextmenu', () => {
697+
const spy = jasmine.createSpy('click.right')
698+
const vm = new Vue({
698699
template: `<div @click.right="foo"></div>`,
699-
methods: { foo () {} }
700+
methods: { foo: spy }
700701
}).$mount()
701702

702-
expect(`Use "contextmenu" instead`).toHaveBeenWarned()
703+
triggerEvent(vm.$el, 'contextmenu')
704+
expect(spy).toHaveBeenCalled()
705+
})
706+
707+
it('should transform click.middle to mouseup', () => {
708+
const spy = jasmine.createSpy('click.middle')
709+
const vm = new Vue({
710+
template: `<div @click.middle="foo"></div>`,
711+
methods: { foo: spy }
712+
}).$mount()
713+
triggerEvent(vm.$el, 'mouseup', e => { e.button = 0 })
714+
expect(spy).not.toHaveBeenCalled()
715+
triggerEvent(vm.$el, 'mouseup', e => { e.button = 1 })
716+
expect(spy).toHaveBeenCalled()
703717
})
704718

705719
it('object syntax (no argument)', () => {

0 commit comments

Comments
 (0)