Skip to content

Commit 850555d

Browse files
haoqunjiangyyx990803
authored andcommitted
fix: always use microtasks for nextTick (#8450)
fix #7109, #7546, #7707, #7834, #8109 reopen #6566
1 parent ced774b commit 850555d

File tree

4 files changed

+76
-79
lines changed

4 files changed

+76
-79
lines changed

src/core/util/next-tick.js

+52-65
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* @flow */
2-
/* globals MessageChannel */
2+
/* globals MutationObserver */
33

44
import { noop } from 'shared/util'
55
import { handleError } from './error'
6-
import { isIOS, isNative } from './env'
6+
import { isIE, isIOS, isNative } from './env'
77

88
const callbacks = []
99
let pending = false
@@ -17,76 +17,67 @@ function flushCallbacks () {
1717
}
1818
}
1919

20-
// Here we have async deferring wrappers using both microtasks and (macro) tasks.
21-
// In < 2.4 we used microtasks everywhere, but there are some scenarios where
22-
// microtasks have too high a priority and fire in between supposedly
23-
// sequential events (e.g. #4521, #6690) or even between bubbling of the same
24-
// event (#6566). However, using (macro) tasks everywhere also has subtle problems
25-
// when state is changed right before repaint (e.g. #6813, out-in transitions).
26-
// Here we use microtask by default, but expose a way to force (macro) task when
27-
// needed (e.g. in event handlers attached by v-on).
28-
let microTimerFunc
29-
let macroTimerFunc
30-
let useMacroTask = false
20+
// Here we have async deferring wrappers using microtasks.
21+
// In 2.5 we used (macro) tasks (in combination with microtasks).
22+
// However, it has subtle problems when state is changed right before repaint
23+
// (e.g. #6813, out-in transitions).
24+
// Also, using (macro) tasks in event handler would cause some weird behaviors
25+
// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).
26+
// So we now use microtasks everywhere, again.
27+
// A major drawback of this tradeoff is that there are some scenarios
28+
// where microtasks have too high a priority and fire in between supposedly
29+
// sequential events (e.g. #4521, #6690, which have workarounds)
30+
// or even between bubbling of the same event (#6566).
31+
let timerFunc
3132

32-
// Determine (macro) task defer implementation.
33-
// Technically setImmediate should be the ideal choice, but it's only available
34-
// in IE. The only polyfill that consistently queues the callback after all DOM
35-
// events triggered in the same loop is by using MessageChannel.
36-
/* istanbul ignore if */
37-
if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
38-
macroTimerFunc = () => {
39-
setImmediate(flushCallbacks)
40-
}
41-
} else if (typeof MessageChannel !== 'undefined' && (
42-
isNative(MessageChannel) ||
43-
// PhantomJS
44-
MessageChannel.toString() === '[object MessageChannelConstructor]'
45-
)) {
46-
const channel = new MessageChannel()
47-
const port = channel.port2
48-
channel.port1.onmessage = flushCallbacks
49-
macroTimerFunc = () => {
50-
port.postMessage(1)
51-
}
52-
} else {
53-
/* istanbul ignore next */
54-
macroTimerFunc = () => {
55-
setTimeout(flushCallbacks, 0)
56-
}
57-
}
58-
59-
// Determine microtask defer implementation.
33+
// The nextTick behavior leverages the microtask queue, which can be accessed
34+
// via either native Promise.then or MutationObserver.
35+
// MutationObserver has wider support, however it is seriously bugged in
36+
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
37+
// completely stops working after triggering a few times... so, if native
38+
// Promise is available, we will use it:
6039
/* istanbul ignore next, $flow-disable-line */
6140
if (typeof Promise !== 'undefined' && isNative(Promise)) {
6241
const p = Promise.resolve()
63-
microTimerFunc = () => {
42+
timerFunc = () => {
6443
p.then(flushCallbacks)
65-
// in problematic UIWebViews, Promise.then doesn't completely break, but
44+
// In problematic UIWebViews, Promise.then doesn't completely break, but
6645
// it can get stuck in a weird state where callbacks are pushed into the
6746
// microtask queue but the queue isn't being flushed, until the browser
6847
// needs to do some other work, e.g. handle a timer. Therefore we can
6948
// "force" the microtask queue to be flushed by adding an empty timer.
7049
if (isIOS) setTimeout(noop)
7150
}
72-
} else {
73-
// fallback to macro
74-
microTimerFunc = macroTimerFunc
75-
}
76-
77-
/**
78-
* Wrap a function so that if any code inside triggers state change,
79-
* the changes are queued using a (macro) task instead of a microtask.
80-
*/
81-
export function withMacroTask (fn: Function): Function {
82-
return fn._withTask || (fn._withTask = function () {
83-
useMacroTask = true
84-
try {
85-
return fn.apply(null, arguments)
86-
} finally {
87-
useMacroTask = false
88-
}
51+
} else if (!isIE && typeof MutationObserver !== 'undefined' && (
52+
isNative(MutationObserver) ||
53+
// PhantomJS and iOS 7.x
54+
MutationObserver.toString() === '[object MutationObserverConstructor]'
55+
)) {
56+
// Use MutationObserver where native Promise is not available,
57+
// e.g. PhantomJS, iOS7, Android 4.4
58+
// (#6466 MutationObserver is unreliable in IE11)
59+
let counter = 1
60+
const observer = new MutationObserver(flushCallbacks)
61+
const textNode = document.createTextNode(String(counter))
62+
observer.observe(textNode, {
63+
characterData: true
8964
})
65+
timerFunc = () => {
66+
counter = (counter + 1) % 2
67+
textNode.data = String(counter)
68+
}
69+
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
70+
// Fallback to setImmediate.
71+
// Techinically it leverages the (macro) task queue,
72+
// but it is still a better choice than setTimeout.
73+
timerFunc = () => {
74+
setImmediate(flushCallbacks)
75+
}
76+
} else {
77+
// Fallback to setTimeout.
78+
timerFunc = () => {
79+
setTimeout(flushCallbacks, 0)
80+
}
9081
}
9182

9283
export function nextTick (cb?: Function, ctx?: Object) {
@@ -104,11 +95,7 @@ export function nextTick (cb?: Function, ctx?: Object) {
10495
})
10596
if (!pending) {
10697
pending = true
107-
if (useMacroTask) {
108-
macroTimerFunc()
109-
} else {
110-
microTimerFunc()
111-
}
98+
timerFunc()
11299
}
113100
// $flow-disable-line
114101
if (!cb && typeof Promise !== 'undefined') {

src/platforms/web/runtime/modules/dom-props.js

+11
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {
3535
}
3636
}
3737

38+
// #4521: if a click event triggers update before the change event is
39+
// dispatched on a checkbox/radio input, the input's checked state will
40+
// be reset and fail to trigger another update.
41+
// The root cause here is that browsers may fire microtasks in between click/change.
42+
// In Chrome / Firefox, click event fires before change, thus having this problem.
43+
// In Safari / Edge, the order is opposite.
44+
// Note: in Edge, if you click too fast, only the click event would fire twice.
45+
if (key === 'checked' && !isNotInFocusAndDirty(elm, cur)) {
46+
continue
47+
}
48+
3849
if (key === 'value') {
3950
// store value as _value as well since
4051
// non-string values will be stringified

src/platforms/web/runtime/modules/events.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { isDef, isUndef } from 'shared/util'
44
import { updateListeners } from 'core/vdom/helpers/index'
5-
import { withMacroTask, isIE, supportsPassive } from 'core/util/index'
5+
import { isIE, supportsPassive } from 'core/util/index'
66
import { RANGE_TOKEN, CHECKBOX_RADIO_TOKEN } from 'web/compiler/directives/model'
77

88
// normalize v-model event tokens that can only be determined at runtime.
@@ -44,7 +44,6 @@ function add (
4444
capture: boolean,
4545
passive: boolean
4646
) {
47-
handler = withMacroTask(handler)
4847
target.addEventListener(
4948
event,
5049
handler,

test/e2e/specs/async-edge-cases.js

+12-12
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ module.exports = {
1414
.assert.containsText('#case-1', '3')
1515
.assert.checked('#case-1 input', false)
1616

17-
// #6566
18-
.assert.containsText('#case-2 button', 'Expand is True')
19-
.assert.containsText('.count-a', 'countA: 0')
20-
.assert.containsText('.count-b', 'countB: 0')
17+
// // #6566
18+
// .assert.containsText('#case-2 button', 'Expand is True')
19+
// .assert.containsText('.count-a', 'countA: 0')
20+
// .assert.containsText('.count-b', 'countB: 0')
2121

22-
.click('#case-2 button')
23-
.assert.containsText('#case-2 button', 'Expand is False')
24-
.assert.containsText('.count-a', 'countA: 1')
25-
.assert.containsText('.count-b', 'countB: 0')
22+
// .click('#case-2 button')
23+
// .assert.containsText('#case-2 button', 'Expand is False')
24+
// .assert.containsText('.count-a', 'countA: 1')
25+
// .assert.containsText('.count-b', 'countB: 0')
2626

27-
.click('#case-2 button')
28-
.assert.containsText('#case-2 button', 'Expand is True')
29-
.assert.containsText('.count-a', 'countA: 1')
30-
.assert.containsText('.count-b', 'countB: 1')
27+
// .click('#case-2 button')
28+
// .assert.containsText('#case-2 button', 'Expand is True')
29+
// .assert.containsText('.count-a', 'countA: 1')
30+
// .assert.containsText('.count-b', 'countB: 1')
3131

3232
.end()
3333
}

0 commit comments

Comments
 (0)