@@ -40,13 +40,10 @@ export interface SchedulerJob extends Function {
40
40
}
41
41
42
42
export type SchedulerJobs = SchedulerJob | SchedulerJob [ ]
43
-
44
- let isFlushing = false
45
- let isFlushPending = false
46
43
let auto = true
47
44
48
45
const queue : SchedulerJob [ ] = [ ]
49
- let flushIndex = 0
46
+ let flushIndex = - 1
50
47
51
48
const pendingPostFlushCbs : SchedulerJob [ ] = [ ]
52
49
let activePostFlushCbs : SchedulerJob [ ] | null = null
@@ -76,7 +73,7 @@ export function nextTick<T = void, R = void>(
76
73
// watcher should be inserted immediately before the update job. This allows
77
74
// watchers to be skipped if the component is unmounted by the parent update.
78
75
function findInsertionIndex ( id : number ) {
79
- let start = isFlushing ? flushIndex + 1 : 0
76
+ let start = flushIndex + 1
80
77
let end = queue . length
81
78
82
79
while ( start < end ) {
@@ -196,8 +193,7 @@ export function endFlush(): void {
196
193
}
197
194
198
195
function queueFlush ( ) {
199
- if ( ! isFlushing && ! isFlushPending ) {
200
- isFlushPending = true
196
+ if ( ! currentFlushPromise ) {
201
197
currentFlushPromise = Promise . all ( [
202
198
resolvedPromise . then ( flushJobs ) ,
203
199
trackManualFlush ( ) ,
@@ -239,8 +235,8 @@ export function queuePostFlushCb(cb: SchedulerJobs): {
239
235
export function flushPreFlushCbs (
240
236
instance ?: ComponentInternalInstance ,
241
237
seen ?: CountMap ,
242
- // if currently flushing, skip the current job itself
243
- i : number = isFlushing ? flushIndex + 1 : 0 ,
238
+ // skip the current job
239
+ i : number = flushIndex + 1 ,
244
240
) : void {
245
241
if ( __DEV__ ) {
246
242
seen = seen || new Map ( )
@@ -382,8 +378,6 @@ export function flushPostJobsUntil(index: number, clear: boolean = true): void {
382
378
}
383
379
384
380
function flushJobs ( seen ?: CountMap ) {
385
- isFlushPending = false
386
- isFlushing = true
387
381
if ( ! auto ) return
388
382
if ( __DEV__ ) {
389
383
seen = seen || new Map ( )
@@ -427,16 +421,14 @@ function flushJobs(seen?: CountMap) {
427
421
}
428
422
}
429
423
430
- flushIndex = 0
424
+ flushIndex = - 1
431
425
queue . length = 0
432
426
433
427
flushPostFlushCbs ( seen )
434
428
435
429
endFlush ( )
436
- isFlushing = false
437
430
currentFlushPromise = null
438
- // some postFlushCb queued jobs!
439
- // keep flushing until it drains.
431
+ // If new jobs have been added to either queue, keep flushing
440
432
if ( queue . length || pendingPostFlushCbs . length ) {
441
433
flushJobs ( seen )
442
434
}
0 commit comments