| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- import Vue from 'vue'
- import Meta from 'vue-meta'
- import { createRouter } from './router.js'
- import NoSSR from './components/no-ssr.js'
- import NuxtChild from './components/nuxt-child.js'
- import NuxtLink from './components/nuxt-link.js'
- import NuxtError from './components/nuxt-error.vue'
- import Nuxt from './components/nuxt.js'
- import App from './App.js'
- import { setContext, getLocation, getRouteData, normalizeError } from './utils'
- /* Plugins */
- import nuxt_plugin_axios_0c5c16d5 from 'nuxt_plugin_axios_0c5c16d5' // Source: ./axios.js
- import nuxt_plugin_elementui_d905880e from 'nuxt_plugin_elementui_d905880e' // Source: ../plugins/element-ui
- import nuxt_plugin_http_926ab708 from 'nuxt_plugin_http_926ab708' // Source: ../plugins/http
- import nuxt_plugin_quill_23090991 from 'nuxt_plugin_quill_23090991' // Source: ../plugins/quill
- // Component: <no-ssr>
- Vue.component(NoSSR.name, NoSSR)
- // Component: <nuxt-child>
- Vue.component(NuxtChild.name, NuxtChild)
- // Component: <nuxt-link>
- Vue.component(NuxtLink.name, NuxtLink)
- // Component: <nuxt>`
- Vue.component(Nuxt.name, Nuxt)
- // vue-meta configuration
- Vue.use(Meta, {
- keyName: 'head', // the component option name that vue-meta looks for meta info on.
- attribute: 'data-n-head', // the attribute name vue-meta adds to the tags it observes
- ssrAttribute: 'data-n-head-ssr', // the attribute name that lets vue-meta know that meta info has already been server-rendered
- tagIDKeyName: 'hid' // the property name that vue-meta uses to determine whether to overwrite or append a tag
- })
- const defaultTransition = {"name":"page","mode":"out-in","appear":true,"appearClass":"appear","appearActiveClass":"appear-active","appearToClass":"appear-to"}
- async function createApp(ssrContext) {
- const router = await createRouter(ssrContext)
- // Create Root instance
- // here we inject the router and store to all child components,
- // making them available everywhere as `this.$router` and `this.$store`.
- const app = {
- router,
- nuxt: {
- defaultTransition,
- transitions: [ defaultTransition ],
- setTransitions(transitions) {
- if (!Array.isArray(transitions)) {
- transitions = [ transitions ]
- }
- transitions = transitions.map((transition) => {
- if (!transition) {
- transition = defaultTransition
- } else if (typeof transition === 'string') {
- transition = Object.assign({}, defaultTransition, { name: transition })
- } else {
- transition = Object.assign({}, defaultTransition, transition)
- }
- return transition
- })
- this.$options.nuxt.transitions = transitions
- return transitions
- },
- err: null,
- dateErr: null,
- error(err) {
- err = err || null
- app.context._errored = !!err
- err = err ? normalizeError(err) : null
- const nuxt = this.nuxt || this.$options.nuxt
- nuxt.dateErr = Date.now()
- nuxt.err = err
- // Used in src/server.js
- if (ssrContext) ssrContext.nuxt.error = err
- return err
- }
- },
- ...App
- }
- const next = ssrContext ? ssrContext.next : location => app.router.push(location)
- // Resolve route
- let route
- if (ssrContext) {
- route = router.resolve(ssrContext.url).route
- } else {
- const path = getLocation(router.options.base)
- route = router.resolve(path).route
- }
- // Set context to app.context
- await setContext(app, {
- route,
- next,
- error: app.nuxt.error.bind(app),
- payload: ssrContext ? ssrContext.payload : undefined,
- req: ssrContext ? ssrContext.req : undefined,
- res: ssrContext ? ssrContext.res : undefined,
- beforeRenderFns: ssrContext ? ssrContext.beforeRenderFns : undefined
- })
- const inject = function (key, value) {
- if (!key) throw new Error('inject(key, value) has no key provided')
- if (typeof value === 'undefined') throw new Error('inject(key, value) has no value provided')
- key = '$' + key
- // Add into app
- app[key] = value
- // Check if plugin not already installed
- const installKey = '__nuxt_' + key + '_installed__'
- if (Vue[installKey]) return
- Vue[installKey] = true
- // Call Vue.use() to install the plugin into vm
- Vue.use(() => {
- if (!Vue.prototype.hasOwnProperty(key)) {
- Object.defineProperty(Vue.prototype, key, {
- get() {
- return this.$root.$options[key]
- }
- })
- }
- })
- }
- // Plugin execution
- if (typeof nuxt_plugin_axios_0c5c16d5 === 'function') await nuxt_plugin_axios_0c5c16d5(app.context, inject)
- if (typeof nuxt_plugin_elementui_d905880e === 'function') await nuxt_plugin_elementui_d905880e(app.context, inject)
- if (typeof nuxt_plugin_http_926ab708 === 'function') await nuxt_plugin_http_926ab708(app.context, inject)
- if (typeof nuxt_plugin_quill_23090991 === 'function') await nuxt_plugin_quill_23090991(app.context, inject)
- // If server-side, wait for async component to be resolved first
- if (process.server && ssrContext && ssrContext.url) {
- await new Promise((resolve, reject) => {
- router.push(ssrContext.url, resolve, () => {
- // navigated to a different route in router guard
- const unregister = router.afterEach(async (to, from, next) => {
- ssrContext.url = to.fullPath
- app.context.route = await getRouteData(to)
- app.context.params = to.params || {}
- app.context.query = to.query || {}
- unregister()
- resolve()
- })
- })
- })
- }
- return {
- app,
- router
- }
- }
- export { createApp, NuxtError }
|