@@ -5,18 +5,22 @@ import { cached, isUndef } from 'shared/util'
5
5
6
6
const normalizeEvent = cached ( ( name : string ) : {
7
7
name : string ,
8
+ plain : boolean ,
8
9
once : boolean ,
9
10
capture : boolean ,
10
- passive : boolean
11
+ passive : boolean ,
12
+ handler ?: Function
11
13
} = > {
12
14
const passive = name . charAt ( 0 ) === '&'
13
15
name = passive ? name . slice ( 1 ) : name
14
16
const once = name . charAt ( 0 ) === '~' // Prefixed last, checked first
15
17
name = once ? name . slice ( 1 ) : name
16
18
const capture = name . charAt ( 0 ) === '!'
17
19
name = capture ? name . slice ( 1 ) : name
20
+ const plain = ! ( passive || once || capture )
18
21
return {
19
22
name ,
23
+ plain,
20
24
once,
21
25
capture,
22
26
passive
@@ -40,6 +44,11 @@ export function createFnInvoker (fns: Function | Array<Function>): Function {
40
44
return invoker
41
45
}
42
46
47
+ // #6552
48
+ function prioritizePlainEvents ( a , b ) {
49
+ return a . plain ? - 1 : b . plain ? 1 : 0
50
+ }
51
+
43
52
export function updateListeners (
44
53
on : Object ,
45
54
oldOn : Object ,
@@ -48,10 +57,13 @@ export function updateListeners (
48
57
vm : Component
49
58
) {
50
59
let name , cur , old , event
60
+ const toAdd = [ ]
61
+ let hasModifier = false
51
62
for ( name in on ) {
52
63
cur = on [ name ]
53
64
old = oldOn [ name ]
54
65
event = normalizeEvent ( name )
66
+ if ( ! event . plain ) hasModifier = true
55
67
if ( isUndef ( cur ) ) {
56
68
process . env . NODE_ENV !== 'production' && warn (
57
69
`Invalid handler for event "${ event . name } ": got ` + String ( cur ) ,
@@ -61,12 +73,20 @@ export function updateListeners (
61
73
if ( isUndef ( cur . fns ) ) {
62
74
cur = on [ name ] = createFnInvoker ( cur )
63
75
}
64
- add ( event . name , cur , event . once , event . capture , event . passive )
76
+ event . handler = cur
77
+ toAdd . push ( event )
65
78
} else if ( cur !== old ) {
66
79
old . fns = cur
67
80
on [ name ] = old
68
81
}
69
82
}
83
+ if ( toAdd . length ) {
84
+ if ( hasModifier ) toAdd . sort ( prioritizePlainEvents )
85
+ for ( let i = 0 ; i < toAdd . length ; i ++ ) {
86
+ const event = toAdd [ i ]
87
+ add ( event . name , event . handler , event . once , event . capture , event . passive )
88
+ }
89
+ }
70
90
for ( name in oldOn ) {
71
91
if ( isUndef ( on [ name ] ) ) {
72
92
event = normalizeEvent ( name )
0 commit comments