refactor(scheduler): minor refactors (#240)
This commit is contained in:
parent
374a85b861
commit
7fd1fdde28
@ -1,4 +1,5 @@
|
|||||||
import { handleError, ErrorCodes } from './errorHandling'
|
import { handleError, ErrorCodes } from './errorHandling'
|
||||||
|
import { isArray } from '@vue/shared'
|
||||||
|
|
||||||
const queue: Function[] = []
|
const queue: Function[] = []
|
||||||
const postFlushCbs: Function[] = []
|
const postFlushCbs: Function[] = []
|
||||||
@ -11,7 +12,7 @@ export function nextTick(fn?: () => void): Promise<void> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function queueJob(job: () => void) {
|
export function queueJob(job: () => void) {
|
||||||
if (queue.indexOf(job) === -1) {
|
if (!queue.includes(job)) {
|
||||||
queue.push(job)
|
queue.push(job)
|
||||||
if (!isFlushing) {
|
if (!isFlushing) {
|
||||||
nextTick(flushJobs)
|
nextTick(flushJobs)
|
||||||
@ -20,17 +21,18 @@ export function queueJob(job: () => void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function queuePostFlushCb(cb: Function | Function[]) {
|
export function queuePostFlushCb(cb: Function | Function[]) {
|
||||||
if (Array.isArray(cb)) {
|
if (!isArray(cb)) {
|
||||||
postFlushCbs.push.apply(postFlushCbs, cb)
|
|
||||||
} else {
|
|
||||||
postFlushCbs.push(cb)
|
postFlushCbs.push(cb)
|
||||||
|
} else {
|
||||||
|
postFlushCbs.push(...cb)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isFlushing) {
|
if (!isFlushing) {
|
||||||
nextTick(flushJobs)
|
nextTick(flushJobs)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const dedupe = (cbs: Function[]): Function[] => Array.from(new Set(cbs))
|
const dedupe = (cbs: Function[]): Function[] => [...new Set(cbs)]
|
||||||
|
|
||||||
export function flushPostFlushCbs() {
|
export function flushPostFlushCbs() {
|
||||||
if (postFlushCbs.length) {
|
if (postFlushCbs.length) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user