wip: adjust lifecycle

This commit is contained in:
Evan You 2019-05-28 19:59:54 +08:00
parent 19ed750078
commit 7a3a5850dc
3 changed files with 15 additions and 28 deletions

View File

@ -7,6 +7,7 @@ function injectHook(
) { ) {
if (target) { if (target) {
const existing = target[name] const existing = target[name]
// TODO inject a error-handling wrapped version of the hook
if (existing !== null) { if (existing !== null) {
existing.push(hook) existing.push(hook)
} else { } else {

View File

@ -1,5 +1,5 @@
// TODO: // TODO:
// - lifecycle / refs // - refs
// - slots // - slots
// - keep alive // - keep alive
// - app context // - app context
@ -28,17 +28,18 @@ import {
shouldUpdateComponent, shouldUpdateComponent,
createComponentInstance createComponentInstance
} from './component' } from './component'
import { import { queueJob, queuePostFlushCb, flushPostFlushCbs } from './scheduler'
queueJob,
queuePostFlushCb,
flushPostFlushCbs,
queueReversePostFlushCb
} from './scheduler'
function isSameType(n1: VNode, n2: VNode): boolean { function isSameType(n1: VNode, n2: VNode): boolean {
return n1.type === n2.type && n1.key === n2.key return n1.type === n2.type && n1.key === n2.key
} }
function invokeHooks(hooks: Function[]) {
for (let i = 0; i < hooks.length; i++) {
hooks[i]()
}
}
export type HostNode = any export type HostNode = any
export interface RendererOptions { export interface RendererOptions {
@ -364,6 +365,9 @@ export function createRenderer(options: RendererOptions) {
// initial mount // initial mount
instance.vnode = vnode instance.vnode = vnode
const subTree = (instance.subTree = renderComponentRoot(instance)) const subTree = (instance.subTree = renderComponentRoot(instance))
if (instance.bm !== null) {
invokeHooks(instance.bm)
}
patch(null, subTree, container, anchor) patch(null, subTree, container, anchor)
vnode.el = subTree.el vnode.el = subTree.el
// mounted hook // mounted hook
@ -391,8 +395,7 @@ export function createRenderer(options: RendererOptions) {
} }
// upated hook // upated hook
if (instance.u !== null) { if (instance.u !== null) {
// updated hooks are queued top-down, but should be fired bottom up queuePostFlushCb(instance.u)
queueReversePostFlushCb(instance.u)
} }
} }
}, },

View File

@ -1,6 +1,5 @@
const queue: Function[] = [] const queue: Function[] = []
const postFlushCbs: Function[] = [] const postFlushCbs: Function[] = []
const reversePostFlushCbs: Function[] = []
const p = Promise.resolve() const p = Promise.resolve()
let isFlushing = false let isFlushing = false
@ -20,32 +19,16 @@ export function queueJob(job: () => void, onError?: (err: Error) => void) {
} }
export function queuePostFlushCb(cb: Function | Function[]) { export function queuePostFlushCb(cb: Function | Function[]) {
queuePostCb(cb, postFlushCbs)
}
export function queueReversePostFlushCb(cb: Function | Function[]) {
queuePostCb(cb, reversePostFlushCbs)
}
function queuePostCb(cb: Function | Function[], queue: Function[]) {
if (Array.isArray(cb)) { if (Array.isArray(cb)) {
queue.push.apply(postFlushCbs, cb) postFlushCbs.push.apply(postFlushCbs, cb)
} else { } else {
queue.push(cb) postFlushCbs.push(cb)
} }
} }
const dedupe = (cbs: Function[]): Function[] => Array.from(new Set(cbs)) const dedupe = (cbs: Function[]): Function[] => Array.from(new Set(cbs))
export function flushPostFlushCbs() { export function flushPostFlushCbs() {
if (reversePostFlushCbs.length) {
const cbs = dedupe(reversePostFlushCbs)
reversePostFlushCbs.length = 0
let i = cbs.length
while (i--) {
cbs[i]()
}
}
if (postFlushCbs.length) { if (postFlushCbs.length) {
const cbs = dedupe(postFlushCbs) const cbs = dedupe(postFlushCbs)
postFlushCbs.length = 0 postFlushCbs.length = 0