5號凌晨,尤雨溪公佈了 Vue 3 源代碼。javascript
話很少說,咱們趁熱對 Vue 3 源碼進行一些簡要的分析。vue
若是你尚未閱讀過 Composition API RFC,可能沒法徹底看懂下面的內容。java
目前打包後的代碼是 ES2015+,不支持 IE 11。node
目前的代碼 98% 以上使用 TypeScript 編寫。react
若是你尚未學習 TypeScript,請儘快學習,不然可能看不懂源碼。git
另外有件事情說出來可能會讓你很是驚訝,Vue 3 的源代碼徹底沒有使用 class 關鍵字!(只在測試代碼和示例代碼裏用到了 class 關鍵字)github
目前 Vue 3 處於 Pre-Alpha 版本。後面應該還會有 Alpha、Beta 等版本。api
根據 Vue 官方時間表,至少要等到 2020 年第一季度纔有可能發佈 3.0 正式版。瀏覽器
強烈推薦你們用國慶假期這段時間把 Vue 3 的源碼通看一遍,由於目前的代碼結構清晰,並且代碼量相對較少。app
下載代碼後,使用 yarn dev 命令就能夠對其進行調試。(有人給出了詳細的調試技巧)
關於閱讀順序,個人建議是
另外若是你想省時間,能夠直接看全部 __tests__
目錄裏的測試用例來了解 Vue 3 的全部功能。目前有不到 700 個測試用例。
代碼倉庫中有個 packages 目錄,裏面是 Vue 3 的主要功能的實現,包括
能夠看出,新的 Vue 代碼倉庫是模塊化的。接下來咱們逐一來看看每一個模塊暴露的 API。
大部分 Vue 開發者應該不會用到這個模塊,由於它是專門用於自定義 renderer 的。
使用方法示例:
import { createRenderer, createAppAPI } from '@vue/runtime-core'
const { render, createApp } = createRenderer({
pathcProp,
insert,
remove,
createElement,
// ...
})
// `render` 是底層 API
// `createApp` 會產生一個 app 實例,該實例擁有全局的可配置上下文
export { render, createApp }
export * from '@vue/runtime-core'
複製代碼
這個模塊是基於上面模塊而寫的瀏覽器上的 runtime,主要功能是適配了瀏覽器環境下節點和節點屬性的增刪改查。它暴露了兩個重要 API:render 和 createApp,並聲明瞭一個 ComponentPublicInstance 接口。
export { render, createApp }
// re-export everything from core
// h, Component, reactivity API, nextTick, flags & types
export * from '@vue/runtime-core'
export interface ComponentPublicInstance {
$el: Element
}
複製代碼
這個模塊的主要功能是用對象來表示 DOM 樹,方便測試。而且提供了不少有用的 API 方便測試:
export { render, createApp }
// convenience for one-off render validations
export function renderToString(vnode: VNode) {
const root = nodeOps.createElement('div')
render(vnode, root)
return serializeInner(root)
}
export * from './triggerEvent'
export * from './serialize'
export * from './nodeOps'
export * from './jestUtils'
export * from '@vue/runtime-core'
複製代碼
這是一個極其重要的模塊,它是一個數據響應式系統。其暴露的主要 API 有 ref(數據容器)、reactive(基於 Proxy 實現的響應式數據)、computed(計算數據)、effect(反作用) 等幾部分:
export { ref, isRef, toRefs, Ref, UnwrapRef } from './ref'
export {
reactive,
isReactive,
readonly,
isReadonly,
toRaw,
markReadonly,
markNonReactive
} from './reactive'
export {
computed,
ComputedRef,
WritableComputedRef,
WritableComputedOptions
} from './computed'
export {
effect,
stop,
pauseTracking,
resumeTracking,
ITERATE_KEY,
ReactiveEffect,
ReactiveEffectOptions,
DebuggerEvent
} from './effect'
export { lock, unlock } from './lock'
export { OperationTypes } from './operations'
複製代碼
很明顯,這個模塊就是 Composition API 的核心了,其中的 ref 和 reactive 應該重點掌握。
這個編譯器的暴露了 AST 和 baseCompile 相關的 API,它能把一個字符串變成一棵 AST。
export function baseCompile( template: string | RootNode, options: CompilerOptions = {} ): CodegenResult {
// 詳情略 ...
return generate(ast, options)
}
export { parse, ParserOptions, TextModes } from './parse'
export { transform /* ... */ } from './transform'
export { generate, CodegenOptions, CodegenContext, CodegenResult} from './codegen'
export { ErrorCodes, CompilerError, createCompilerError } from './errors'
export * from './ast'
複製代碼
這個模塊則基於上個模塊,針對瀏覽器作了適配,如對 textarea 和 style 標籤作了特殊處理。
目前這個模塊沒有實現任何功能。
這個模塊就是簡單的引入了 runtime 和 compiler:
import { compile, CompilerOptions } from '@vue/compiler-dom'
import { registerRuntimeCompiler, RenderFunction } from '@vue/runtime-dom'
function compileToFunction( template: string, options?: CompilerOptions ): RenderFunction {
const { code } = compile(template, {
hoistStatic: true,
...options
})
return new Function(code)() as RenderFunction
}
registerRuntimeCompiler(compileToFunction)
export { compileToFunction as compile }
export * from '@vue/runtime-dom'
複製代碼
關注我,若是 Vue 3 有任何新消息,我會第一時間給出分析。
完。