index.js 1.5 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4 5 6 7 8 9 10 11 12
import {
  callAppHook
} from '../util'

import createApp from './create-app'

export {
  getApp,
  getCurrentPages
}
  from './create-app'

13 14 15 16
export let createLaunchOptions = function () {
  const scene = 1001
  const referrerInfo = {
    appId: '',
Q
qiang 已提交
17
    extraData: {}
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
  }
  try {
    return {
      path: this.$route.meta && this.$route.meta.pagePath,
      query: this.$route.query,
      scene,
      referrerInfo
    }
  } catch (error) {
    return {
      path: '',
      query: {},
      scene,
      referrerInfo
    }
  }
}

36
export function createAppMixin (Vue, routes, entryRoute) {
fxy060608's avatar
fxy060608 已提交
37 38
  return {
    created: function AppCreated () {
39
      createApp(Vue, this, routes)
fxy060608's avatar
fxy060608 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
      // TODO
      if (!entryRoute.meta.name) { // PageNotFound
        UniServiceJSBridge.emit('onPageNotFound', {
          path: entryRoute.path,
          query: entryRoute.query,
          isEntryPage: true
        })
        // TODO 跳转至缺省404页面
      }
    },

    beforeMount: function appBeforeMount () {
      // TODO 平台代码
      this.$el = document.getElementById('app')
    },
    mounted: function appMounted () {
      // 稍微靠后点,让 App 有机会在 mounted 事件前注册一些全局事件监听,如 UI 显示(showModal)
57 58
      createLaunchOptions = createLaunchOptions.bind(this)
      const args = createLaunchOptions()
59 60
      callAppHook(this, 'onLaunch', args)
      callAppHook(this, 'onShow', args)
fxy060608's avatar
fxy060608 已提交
61 62
    }
  }
63
}