(六)Vue-模板編譯和組件化

模板編譯

模板編譯的主要目的是將模板 (template) 轉(zhuǎn)換為渲染函數(shù) (render)

  • vue-template-explorer
    Vue 2.6 把模板編譯成 render 函數(shù)的工具
  • vue-next-template-explorer
    Vue 3.0 beta 把模板編譯成 render 函數(shù)的工具

模板編譯過(guò)程

編譯的入口

  • src\platforms\web\entry-runtime-with-compiler.js


組件化機(jī)制

  1. Vue.component() 入口
  • 創(chuàng)建組件的構(gòu)造函數(shù)诗芜,掛載到 Vue 實(shí)例的vm.options.component.componentName = Ctor
// src\core\global-api\index.js 
// 注冊(cè) Vue.directive()锉罐、 Vue.component()驻粟、Vue.filter() initAssetRegisters(Vue) 
// src\core\global-api\assets.js 
if (type === 'component' && isPlainObject(definition)) { 
   definition.name = definition.name || id definition = this.options._base.extend(definition) 
}
……
// 全局注冊(cè)瘾晃,存儲(chǔ)資源并賦值 
// this.options['components']['comp'] = Ctor 
this.options[type + 's'][id] = definition 

// src\core\global-api\index.js 
// this is used to identify the "base" constructor to extend all plain- object 
// components with in Weex's multi-instance scenarios. 
Vue.options._base = Vue 

// src\core\global-api\extend.js 
Vue.extend()
  1. 組件構(gòu)造函數(shù)的創(chuàng)建
    const Sub = function VueComponent (options) {
      // 調(diào)用 _init() 初始化
      this._init(options)
    }
    // 原型繼承自 Vue
    Sub.prototype = Object.create(Super.prototype)
    Sub.prototype.constructor = Sub
    Sub.cid = cid++
    // 合并 options
    Sub.options = mergeOptions(
      Super.options,
      extendOptions
    )
    Sub['super'] = Super

    // For props and computed properties, we define the proxy getters on
    // the Vue instances at extension time, on the extended prototype. This
    // avoids Object.defineProperty calls for each instance created.
    if (Sub.options.props) {
      initProps(Sub)
    }
    if (Sub.options.computed) {
      initComputed(Sub)
    }

    // allow further extension/mixin/plugin usage
    Sub.extend = Super.extend
    Sub.mixin = Super.mixin
    Sub.use = Super.use

    // create asset registers, so extended classes
    // can have their private assets too.
    ASSET_TYPES.forEach(function (type) {
      Sub[type] = Super[type]
    })
    // enable recursive self-lookup
    // 把組件構(gòu)造構(gòu)造函數(shù)保存到 Ctor.options.components.comp = Ctor
    if (name) {
      Sub.options.components[name] = Sub
    }

    // keep a reference to the super options at extension time.
    // later at instantiation we can check if Super's options have
    // been updated.
    Sub.superOptions = Super.options
    Sub.extendOptions = extendOptions
    Sub.sealedOptions = extend({}, Sub.options)

    // cache constructor
    // 把組件的構(gòu)造函數(shù)緩存到 options._Ctor
    cachedCtors[SuperId] = Sub
    return Sub
  }

組件創(chuàng)建和掛載

組件 VNode 的創(chuàng)建過(guò)程

  • 創(chuàng)建根組件较性,首次 _render() 時(shí),會(huì)得到整棵樹的 VNode 結(jié)構(gòu)
  • 整體流程:new Vue() --> $mount() --> vm._render() --> createElement() --> createComponent()
  • 創(chuàng)建組件的 VNode眉枕,初始化組件的 hook 鉤子函數(shù)
// 1. _createElement() 中調(diào)用 createComponent()
// src\core\vdom\create-element.js
    // 判斷是否是 自定義組件
    } else if ((!data || !data.pre) && 
      isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {
      // 查找自定義組件構(gòu)造函數(shù)的聲明
      // 根據(jù) Ctor 創(chuàng)建組件的 VNode
      // component
      vnode = createComponent(Ctor, data, context, children, tag)
    }
// 2. createComponent() 中調(diào)用創(chuàng)建自定義組件對(duì)應(yīng)的 VNode
export function createComponent (
  Ctor: Class<Component> | Function | Object | void,
  data: ?VNodeData,
  context: Component,
  children: ?Array<VNode>,
  tag?: string
): VNode | Array<VNode> | void {
  if (isUndef(Ctor)) {
    return
  }

  // ****

  // install component management hooks onto the placeholder node
  // 安裝組件的鉤子函數(shù) init/prepatch/insert/destroy
  // 準(zhǔn)備好了 data.hook 中的鉤子函數(shù)
  installComponentHooks(data)

  // return a placeholder vnode
  const name = Ctor.options.name || tag
  // 創(chuàng)建自定義組件的 VNode菱鸥,設(shè)置自定義組件的名字
  // 記錄this.componentOptions = componentOptions
  const vnode = new VNode(
    `vue-component-${Ctor.cid}${name ? `-${name}` : ''}`,
    data, undefined, undefined, undefined, context,
    { Ctor, propsData, listeners, tag, children },
    asyncFactory
  )

// ***

  return vnode
}
// 3. installComponentHooks() 初始化組件的 data.hook
function installComponentHooks (data: VNodeData) {
  const hooks = data.hook || (data.hook = {})
  // 用戶可以傳遞自定義鉤子函數(shù)
  // 把用戶傳入的自定義鉤子函數(shù)和 componentVNodeHooks 中預(yù)定義的鉤子函數(shù)合并
  for (let i = 0; i < hooksToMerge.length; i++) {
    const key = hooksToMerge[i]
    const existing = hooks[key]
    const toMerge = componentVNodeHooks[key]
    if (existing !== toMerge && !(existing && existing._merged)) {
      hooks[key] = existing ? mergeHook(toMerge, existing) : toMerge
    }
  }
}
// 4. 鉤子函數(shù)定義的位置(init()鉤子中創(chuàng)建組件的實(shí)例) 
// inline hooks to be invoked on component VNodes during patch
const componentVNodeHooks = {
  init (vnode: VNodeWithData, hydrating: boolean): ?boolean {
    if (
      vnode.componentInstance &&
      !vnode.componentInstance._isDestroyed &&
      vnode.data.keepAlive
    ) {
      // kept-alive components, treat as a patch
      const mountedNode: any = vnode // work around flow
      componentVNodeHooks.prepatch(mountedNode, mountedNode)
    } else {
      const child = vnode.componentInstance = createComponentInstanceForVnode(
        vnode,
        activeInstance
      )
      child.$mount(hydrating ? vnode.elm : undefined, hydrating)
    }
  },

  prepatch (oldVnode: MountedComponentVNode, vnode: MountedComponentVNode) {
        // ***
  },

  insert (vnode: MountedComponentVNode) {
        // ***
  },

  destroy (vnode: MountedComponentVNode) {
    // ***
  }
}
//5 .創(chuàng)建組件實(shí)例的位置,由自定義組件的 init() 鉤子方法調(diào)用
  function createComponentInstanceForVnode (
    vnode, // we know it's MountedComponentVNode but flow doesn't
    parent // activeInstance in lifecycle state
  ) {
    var options = {
      _isComponent: true,
      _parentVnode: vnode,
      parent: parent
    };
    // check inline-template render functions
    // 獲取 inline-template
    // <comp inline-template> xxxx </comp>
    var inlineTemplate = vnode.data.inlineTemplate;
    if (isDef(inlineTemplate)) {
      options.render = inlineTemplate.render;
      options.staticRenderFns = inlineTemplate.staticRenderFns;
    }
    // 創(chuàng)建組件實(shí)例
    return new vnode.componentOptions.Ctor(options)
  }

組件實(shí)例的創(chuàng)建和掛載過(guò)程

  • Vue._update() --> patch() --> createElm() --> createComponent()
// src\core\vdom\patch.js
// 1. 創(chuàng)建組件實(shí)例抚垄,掛載到真實(shí) DOM
    function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {
      var i = vnode.data;
      if (isDef(i)) {
        var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;
        if (isDef(i = i.hook) && isDef(i = i.init)) {
          // 調(diào)用 init() 方法蜕窿,創(chuàng)建和掛載組件實(shí)例
          // init() 的過(guò)程中創(chuàng)建好了組件的真實(shí) DOM,掛載到了 vnode.elm 上
          i(vnode, false /* hydrating */);
        }
        // after calling the init hook, if the vnode is a child component
        // it should've created a child instance and mounted it. the child
        // component also has set the placeholder vnode's elm.
        // in that case we can just return the element and be done.
        if (isDef(vnode.componentInstance)) {
          // 調(diào)用鉤子函數(shù)(VNode的鉤子函數(shù)初始化屬性/事件/樣式等,組件的鉤子函數(shù))
          initComponent(vnode, insertedVnodeQueue);
          // 把組件對(duì)應(yīng)的 DOM 插入到父元素中
          insert(parentElm, vnode.elm, refElm);
          if (isTrue(isReactivated)) {
            reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);
          }
          return true
        }
      }
    }
// 2. 調(diào)用鉤子函數(shù)呆馁,設(shè)置局部作用于樣式
    function initComponent (vnode, insertedVnodeQueue) {
      if (isDef(vnode.data.pendingInsert)) {
        insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);
        vnode.data.pendingInsert = null;
      }
      vnode.elm = vnode.componentInstance.$el;
      if (isPatchable(vnode)) {
        // 調(diào)用鉤子函數(shù)
        invokeCreateHooks(vnode, insertedVnodeQueue);
        // 設(shè)置局部作用于樣式
        setScope(vnode);
      } else {
        // empty component root.
        // skip all element-related modules except for ref (#3455)
        registerRef(vnode);
        // make sure to invoke the insert hook
        insertedVnodeQueue.push(vnode);
      }
    }
// 3. 調(diào)用鉤子函數(shù)
    function invokeCreateHooks (vnode, insertedVnodeQueue) {
      // 調(diào)用 VNode 的鉤子函數(shù)
      for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {
        cbs.create[i$1](emptyNode, vnode);
      }
      i = vnode.data.hook; // Reuse variable
      // 調(diào)用組件的鉤子函數(shù)
      if (isDef(i)) {
        if (isDef(i.create)) { i.create(emptyNode, vnode); }
        if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }
      }
    }

Demo

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末桐经,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子浙滤,更是在濱河造成了極大的恐慌阴挣,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件纺腊,死亡現(xiàn)場(chǎng)離奇詭異畔咧,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)揖膜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門誓沸,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人壹粟,你說(shuō)我怎么就攤上這事拜隧。” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵洪添,是天一觀的道長(zhǎng)垦页。 經(jīng)常有香客問(wèn)我,道長(zhǎng)干奢,這世上最難降的妖魔是什么痊焊? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘迫淹。我一直安慰自己,他們只是感情好罪佳,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著黑低,像睡著了一般赘艳。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上克握,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天蕾管,我揣著相機(jī)與錄音,去河邊找鬼菩暗。 笑死掰曾,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的停团。 我是一名探鬼主播旷坦,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼佑稠!你這毒婦竟也來(lái)了秒梅?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤舌胶,失蹤者是張志新(化名)和其女友劉穎捆蜀,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體幔嫂,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡辆它,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了履恩。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片锰茉。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖似袁,靈堂內(nèi)的尸體忽然破棺而出洞辣,到底是詐尸還是另有隱情咐刨,我是刑警寧澤昙衅,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布扬霜,位于F島的核電站,受9級(jí)特大地震影響而涉,放射性物質(zhì)發(fā)生泄漏著瓶。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一啼县、第九天 我趴在偏房一處隱蔽的房頂上張望材原。 院中可真熱鬧,春花似錦季眷、人聲如沸余蟹。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)威酒。三九已至,卻和暖如春挺峡,著一層夾襖步出監(jiān)牢的瞬間葵孤,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工橱赠, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留尤仍,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓狭姨,卻偏偏與公主長(zhǎng)得像宰啦,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子饼拍,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345