component-parser.js 2.6 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3
import {
  isPage,
  initRelation,
4 5
  handleLink,
  components
fxy060608's avatar
fxy060608 已提交
6 7 8 9 10 11 12 13 14
} from './util'

import {
  initSlots,
  initVueIds
} from 'uni-wrapper/util'

import parseBaseComponent from '../../../mp-weixin/runtime/wrapper/component-base-parser'

15 16 17 18 19 20 21
function currentComponents (mpInstance, callback) {
  const webviewId = mpInstance.__webviewId__
  const currentComponents = components[webviewId]
  if (currentComponents) {
    callback(currentComponents)
  }
}
22

23 24 25 26 27
export default function parseComponent (vueComponentOptions, needVueOptions) {
  const [componentOptions, vueOptions, VueComponent] = parseBaseComponent(vueComponentOptions, {
    isPage,
    initRelation
  }, true)
28
  const lifetimes = componentOptions.lifetimes
fxy060608's avatar
fxy060608 已提交
29

30
  // 基础库 2.0 以上 attached 顺序错乱,按照 created 顺序强制纠正
31 32 33 34
  lifetimes.created = function created () {
    currentComponents(this, components => {
      components.push(this)
    })
35 36
  }

37
  lifetimes.attached = function attached () {
38 39
    this.__lifetimes_attached = function () {
      const properties = this.properties
fxy060608's avatar
fxy060608 已提交
40

41 42 43 44 45
      const options = {
        mpType: isPage.call(this) ? 'page' : 'component',
        mpInstance: this,
        propsData: properties
      }
fxy060608's avatar
fxy060608 已提交
46

47
      initVueIds(properties.vueId, this)
fxy060608's avatar
fxy060608 已提交
48

49 50
      // 初始化 vue 实例
      this.$vm = new VueComponent(options)
fxy060608's avatar
fxy060608 已提交
51

52 53
      // 处理$slots,$scopedSlots(暂不支持动态变化$slots)
      initSlots(this.$vm, properties.vueSlots)
fxy060608's avatar
fxy060608 已提交
54

55 56 57 58 59
      // 处理父子关系
      initRelation.call(this, {
        vuePid: this._$vuePid,
        mpInstance: this
      })
fxy060608's avatar
fxy060608 已提交
60

61 62 63
      // 触发首次 setData
      this.$vm.$mount()
    }
64 65 66 67 68 69 70 71 72 73 74
    currentComponents(this, components => {
      let component = this
      while (component && component.__lifetimes_attached && components[0] && component === components[0]) {
        components.shift()
        component.__lifetimes_attached()
        delete component.__lifetimes_attached
        component = components[0]
      }
    })
  }

Q
qiang 已提交
75
  const oldDetached = lifetimes.detached
76
  lifetimes.detached = function detached () {
Q
qiang 已提交
77 78 79
    if (typeof oldDetached === 'function') {
      oldDetached.call(this)
    }
80 81 82 83 84 85
    currentComponents(this, components => {
      const index = components.indexOf(this)
      if (index >= 0) {
        components.splice(index, 1)
      }
    })
fxy060608's avatar
fxy060608 已提交
86 87 88
  }

  // ready 比 handleLink 还早,初始化逻辑放到 handleLink 中
89
  delete lifetimes.ready
fxy060608's avatar
fxy060608 已提交
90 91 92

  componentOptions.methods.__l = handleLink

93
  return needVueOptions ? [componentOptions, vueOptions] : componentOptions
94
}