wip: remove outdated files
This commit is contained in:
parent
f13fbe8686
commit
d27f5ee8e2
@ -1,2 +0,0 @@
|
||||
export * from './experimental'
|
||||
// export * from './sync'
|
@ -1,51 +0,0 @@
|
||||
// temporary hack to wrap nodeOps so it works with time-slicing
|
||||
import { NodeOps } from '@vue/runtime-core'
|
||||
import { nodeOps } from '../../runtime-dom/src/nodeOps'
|
||||
import { nodeOps as testNodeOps } from '../../runtime-test/src/nodeOps'
|
||||
|
||||
export type Op = [Function, ...any[]]
|
||||
|
||||
let currentOps: Op[] | null = null
|
||||
|
||||
export function setCurrentOps(ops: Op[] | null) {
|
||||
currentOps = ops
|
||||
}
|
||||
|
||||
const evaluate = (v: any) => {
|
||||
return typeof v === 'function' ? v() : v
|
||||
}
|
||||
|
||||
// patch nodeOps to record operations without touching the DOM
|
||||
function patchOps(nodeOps: NodeOps) {
|
||||
Object.keys(nodeOps).forEach((key: keyof NodeOps) => {
|
||||
const original = nodeOps[key] as Function
|
||||
if (key === 'querySelector') {
|
||||
return
|
||||
}
|
||||
if (/create/.test(key)) {
|
||||
nodeOps[key] = (...args: any[]) => {
|
||||
let res: any
|
||||
if (currentOps) {
|
||||
return () => res || (res = original(...args))
|
||||
} else {
|
||||
return original(...args)
|
||||
}
|
||||
}
|
||||
} else if (!/parent|next|query/.test(key)) {
|
||||
nodeOps[key] = (...args: any[]) => {
|
||||
if (currentOps) {
|
||||
currentOps.push([original, ...args.map(evaluate)])
|
||||
} else {
|
||||
return original(...args)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
nodeOps[key] = (node: any) => {
|
||||
return original(evaluate(node))
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
patchOps(nodeOps)
|
||||
patchOps(testNodeOps)
|
@ -1,69 +0,0 @@
|
||||
const queue: Array<() => void> = []
|
||||
const postFlushCbs: Array<() => void> = []
|
||||
const p = Promise.resolve()
|
||||
|
||||
let isFlushing = false
|
||||
|
||||
export function nextTick(fn?: () => void): Promise<void> {
|
||||
return p.then(fn)
|
||||
}
|
||||
|
||||
export function queueJob(
|
||||
job: () => void,
|
||||
postFlushCb?: () => void,
|
||||
onError?: (err: Error) => void
|
||||
) {
|
||||
if (queue.indexOf(job) === -1) {
|
||||
queue.push(job)
|
||||
if (!isFlushing) {
|
||||
isFlushing = true
|
||||
const p = nextTick(flushJobs)
|
||||
if (onError) p.catch(onError)
|
||||
}
|
||||
}
|
||||
if (postFlushCb && postFlushCbs.indexOf(postFlushCb) === -1) {
|
||||
postFlushCbs.push(postFlushCb)
|
||||
}
|
||||
}
|
||||
|
||||
const RECURSION_LIMIT = 100
|
||||
type JobCountMap = Map<Function, number>
|
||||
|
||||
function flushJobs(seenJobs?: JobCountMap) {
|
||||
let job
|
||||
if (__DEV__) {
|
||||
seenJobs = seenJobs || new Map()
|
||||
}
|
||||
while ((job = queue.shift())) {
|
||||
if (__DEV__) {
|
||||
const seen = seenJobs as JobCountMap
|
||||
if (!seen.has(job)) {
|
||||
seen.set(job, 1)
|
||||
} else {
|
||||
const count = seen.get(job) as number
|
||||
if (count > RECURSION_LIMIT) {
|
||||
throw new Error(
|
||||
'Maximum recursive updates exceeded. ' +
|
||||
"You may have code that is mutating state in your component's " +
|
||||
'render function or updated hook.'
|
||||
)
|
||||
} else {
|
||||
seen.set(job, count + 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
job()
|
||||
}
|
||||
const cbs = postFlushCbs.slice()
|
||||
postFlushCbs.length = 0
|
||||
for (let i = 0; i < cbs.length; i++) {
|
||||
cbs[i]()
|
||||
}
|
||||
// some postFlushCb queued jobs!
|
||||
// keep flushing until it drains.
|
||||
if (queue.length) {
|
||||
flushJobs(seenJobs)
|
||||
} else {
|
||||
isFlushing = false
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user