2016-11-07 01:34:58 +00:00
|
|
|
import Vue from 'vue'
|
2019-09-05 15:15:27 +00:00
|
|
|
<% if (features.meta) { %>import Meta from 'vue-meta'<% } %>
|
|
|
|
<% if (features.componentClientOnly) { %>import ClientOnly from 'vue-client-only'<% } %>
|
|
|
|
<% if (features.deprecations) { %>import NoSsr from 'vue-no-ssr'<% } %>
|
2017-05-02 06:57:39 +00:00
|
|
|
import { createRouter } from './router.js'
|
2016-12-16 16:45:47 +00:00
|
|
|
import NuxtChild from './components/nuxt-child.js'
|
2017-02-20 22:11:34 +00:00
|
|
|
import NuxtError from '<%= components.ErrorPage ? components.ErrorPage : "./components/nuxt-error.vue" %>'
|
2017-10-13 21:53:04 +00:00
|
|
|
import Nuxt from './components/nuxt.js'
|
2016-11-21 13:14:35 +00:00
|
|
|
import App from '<%= appPath %>'
|
2018-11-14 19:17:44 +00:00
|
|
|
import { setContext, getLocation, getRouteData, normalizeError } from './utils'
|
2017-07-09 22:29:27 +00:00
|
|
|
<% if (store) { %>import { createStore } from './store.js'<% } %>
|
2017-11-07 10:02:10 +00:00
|
|
|
|
|
|
|
/* Plugins */
|
2018-10-24 13:46:06 +00:00
|
|
|
<%= isTest ? '/* eslint-disable camelcase */' : '' %>
|
2018-12-20 09:28:10 +00:00
|
|
|
<% plugins.forEach((plugin) => { %>import <%= plugin.name %> from '<%= plugin.name %>' // Source: <%= relativeToBuild(plugin.src) %> (mode: '<%= plugin.mode %>')
|
2017-12-07 09:57:07 +00:00
|
|
|
<% }) %>
|
2018-10-24 13:46:06 +00:00
|
|
|
<%= isTest ? '/* eslint-enable camelcase */' : '' %>
|
2017-05-22 11:00:04 +00:00
|
|
|
|
2019-09-05 15:15:27 +00:00
|
|
|
<% if (features.componentClientOnly) { %>
|
2019-07-04 15:47:45 +00:00
|
|
|
// Component: <ClientOnly>
|
|
|
|
Vue.component(ClientOnly.name, ClientOnly)
|
2019-09-05 15:15:27 +00:00
|
|
|
<% } %>
|
|
|
|
<% if (features.deprecations) { %>
|
2019-07-04 15:47:45 +00:00
|
|
|
// TODO: Remove in Nuxt 3: <NoSsr>
|
|
|
|
Vue.component(NoSsr.name, {
|
|
|
|
...NoSsr,
|
2019-09-10 09:51:14 +00:00
|
|
|
render (h, ctx) {
|
2019-07-04 15:47:45 +00:00
|
|
|
if (process.client && !NoSsr._warned) {
|
|
|
|
NoSsr._warned = true
|
2019-09-10 09:51:14 +00:00
|
|
|
<%= isTest ? '// eslint-disable-next-line no-console' : '' %>
|
2019-11-26 22:42:39 +00:00
|
|
|
console.warn('<no-ssr> has been deprecated and will be removed in Nuxt 3, please use <client-only> instead')
|
2019-07-04 15:47:45 +00:00
|
|
|
}
|
|
|
|
return NoSsr.render(h, ctx)
|
|
|
|
}
|
|
|
|
})
|
2019-09-05 15:15:27 +00:00
|
|
|
<% } %>
|
2018-11-24 18:49:19 +00:00
|
|
|
// Component: <NuxtChild>
|
2016-12-13 16:42:41 +00:00
|
|
|
Vue.component(NuxtChild.name, NuxtChild)
|
2019-09-05 15:15:27 +00:00
|
|
|
<% if (features.componentAliases) { %>Vue.component('NChild', NuxtChild)<% } %>
|
2017-07-10 22:53:06 +00:00
|
|
|
|
2018-12-28 16:27:03 +00:00
|
|
|
// Component NuxtLink is imported in server.js or client.js
|
2017-07-10 22:53:06 +00:00
|
|
|
|
2019-11-26 22:42:39 +00:00
|
|
|
// Component: <Nuxt>
|
2016-11-19 21:16:26 +00:00
|
|
|
Vue.component(Nuxt.name, Nuxt)
|
|
|
|
|
2019-09-18 13:51:44 +00:00
|
|
|
<% if (features.meta) {
|
2016-11-21 13:14:35 +00:00
|
|
|
// vue-meta configuration
|
2019-09-18 13:51:44 +00:00
|
|
|
const vueMetaOptions = {
|
|
|
|
...nuxtOptions.vueMeta,
|
2016-11-14 22:59:54 +00:00
|
|
|
keyName: 'head', // the component option name that vue-meta looks for meta info on.
|
2017-03-24 00:24:50 +00:00
|
|
|
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
|
2016-11-14 22:59:54 +00:00
|
|
|
tagIDKeyName: 'hid' // the property name that vue-meta uses to determine whether to overwrite or append a tag
|
2019-09-18 13:51:44 +00:00
|
|
|
}
|
|
|
|
%>
|
|
|
|
Vue.use(Meta, <%= JSON.stringify(vueMetaOptions) %>)<%= isTest ? '// eslint-disable-line' : '' %>
|
2019-09-05 15:15:27 +00:00
|
|
|
<% } %>
|
2016-11-14 22:59:54 +00:00
|
|
|
|
2019-09-05 15:15:27 +00:00
|
|
|
<% if (features.transitions) { %>
|
2017-05-02 06:57:39 +00:00
|
|
|
const defaultTransition = <%=
|
2019-04-20 10:01:59 +00:00
|
|
|
serialize(pageTransition)
|
2017-05-02 06:57:39 +00:00
|
|
|
.replace('beforeEnter(', 'function(').replace('enter(', 'function(').replace('afterEnter(', 'function(')
|
|
|
|
.replace('enterCancelled(', 'function(').replace('beforeLeave(', 'function(').replace('leave(', 'function(')
|
2017-10-13 21:53:04 +00:00
|
|
|
.replace('afterLeave(', 'function(').replace('leaveCancelled(', 'function(').replace('beforeAppear(', 'function(')
|
|
|
|
.replace('appear(', 'function(').replace('afterAppear(', 'function(').replace('appearCancelled(', 'function(')
|
2018-10-24 13:46:06 +00:00
|
|
|
%><%= isTest ? '// eslint-disable-line' : '' %>
|
2019-09-05 15:15:27 +00:00
|
|
|
<% } %>
|
2017-05-02 06:57:39 +00:00
|
|
|
|
2019-09-10 09:51:14 +00:00
|
|
|
async function createApp (ssrContext) {
|
2018-04-17 07:09:50 +00:00
|
|
|
const router = await createRouter(ssrContext)
|
2017-05-02 06:57:39 +00:00
|
|
|
|
2017-09-14 16:25:34 +00:00
|
|
|
<% if (store) { %>
|
2018-02-13 17:45:37 +00:00
|
|
|
const store = createStore(ssrContext)
|
2017-09-14 16:25:34 +00:00
|
|
|
// Add this.$router into store actions/mutations
|
|
|
|
store.$router = router
|
2018-09-18 15:21:25 +00:00
|
|
|
<% if (mode === 'universal') { %>
|
2018-10-24 13:46:06 +00:00
|
|
|
// Fix SSR caveat https://github.com/nuxt/nuxt.js/issues/3757#issuecomment-414689141
|
|
|
|
const registerModule = store.registerModule
|
|
|
|
store.registerModule = (path, rawModule, options) => registerModule.call(store, path, rawModule, Object.assign({ preserveState: process.client }, options))
|
2018-09-18 15:21:25 +00:00
|
|
|
<% } %>
|
2017-09-14 16:25:34 +00:00
|
|
|
<% } %>
|
2017-07-09 22:29:27 +00:00
|
|
|
|
2018-10-24 16:36:53 +00:00
|
|
|
// Create Root instance
|
2018-10-24 13:46:06 +00:00
|
|
|
|
2017-05-02 06:57:39 +00:00
|
|
|
// here we inject the router and store to all child components,
|
|
|
|
// making them available everywhere as `this.$router` and `this.$store`.
|
2017-07-09 22:29:27 +00:00
|
|
|
const app = {
|
2017-08-29 19:04:14 +00:00
|
|
|
<% if (store) { %>store,<% } %>
|
2019-09-05 15:15:27 +00:00
|
|
|
router,
|
2017-10-13 21:53:04 +00:00
|
|
|
nuxt: {
|
2019-09-05 15:15:27 +00:00
|
|
|
<% if (features.transitions) { %>
|
2017-07-04 16:30:01 +00:00
|
|
|
defaultTransition,
|
2019-11-26 22:42:39 +00:00
|
|
|
transitions: [defaultTransition],
|
2019-09-10 09:51:14 +00:00
|
|
|
setTransitions (transitions) {
|
2017-05-02 06:57:39 +00:00
|
|
|
if (!Array.isArray(transitions)) {
|
2019-11-26 22:42:39 +00:00
|
|
|
transitions = [transitions]
|
2016-12-16 16:45:47 +00:00
|
|
|
}
|
2017-05-02 06:57:39 +00:00
|
|
|
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
|
|
|
|
})
|
2017-10-13 21:53:04 +00:00
|
|
|
this.$options.nuxt.transitions = transitions
|
2017-05-02 06:57:39 +00:00
|
|
|
return transitions
|
|
|
|
},
|
2019-09-05 15:15:27 +00:00
|
|
|
<% } %>
|
2017-05-02 06:57:39 +00:00
|
|
|
err: null,
|
|
|
|
dateErr: null,
|
2019-09-10 09:51:14 +00:00
|
|
|
error (err) {
|
2017-05-02 06:57:39 +00:00
|
|
|
err = err || null
|
2019-05-16 10:08:44 +00:00
|
|
|
app.context._errored = Boolean(err)
|
2018-11-14 19:17:44 +00:00
|
|
|
err = err ? normalizeError(err) : null
|
2017-10-13 21:53:04 +00:00
|
|
|
const nuxt = this.nuxt || this.$options.nuxt
|
|
|
|
nuxt.dateErr = Date.now()
|
|
|
|
nuxt.err = err
|
2018-10-17 21:28:25 +00:00
|
|
|
// Used in src/server.js
|
2019-09-10 09:51:14 +00:00
|
|
|
if (ssrContext) {
|
|
|
|
ssrContext.nuxt.error = err
|
|
|
|
}
|
2017-05-02 06:57:39 +00:00
|
|
|
return err
|
2017-01-26 14:21:39 +00:00
|
|
|
}
|
2017-05-02 06:57:39 +00:00
|
|
|
},
|
|
|
|
...App
|
|
|
|
}
|
2017-08-29 19:04:14 +00:00
|
|
|
<% if (store) { %>
|
2017-10-13 21:53:04 +00:00
|
|
|
// Make app available into store via this.app
|
2017-08-29 18:03:42 +00:00
|
|
|
store.app = app
|
2017-08-29 19:04:14 +00:00
|
|
|
<% } %>
|
2017-07-09 22:29:27 +00:00
|
|
|
const next = ssrContext ? ssrContext.next : location => app.router.push(location)
|
2017-10-13 21:53:04 +00:00
|
|
|
// Resolve route
|
2017-08-24 16:49:06 +00:00
|
|
|
let route
|
|
|
|
if (ssrContext) {
|
|
|
|
route = router.resolve(ssrContext.url).route
|
|
|
|
} else {
|
2019-11-24 13:26:33 +00:00
|
|
|
const path = getLocation(router.options.base, router.options.mode)
|
2017-07-26 11:56:43 +00:00
|
|
|
route = router.resolve(path).route
|
|
|
|
}
|
2017-10-13 21:53:04 +00:00
|
|
|
|
|
|
|
// Set context to app.context
|
|
|
|
await setContext(app, {
|
2019-09-05 15:15:27 +00:00
|
|
|
<% if (store) { %>store,<% } %>
|
2017-07-26 11:56:43 +00:00
|
|
|
route,
|
2017-06-06 12:51:49 +00:00
|
|
|
next,
|
2017-10-13 21:53:04 +00:00
|
|
|
error: app.nuxt.error.bind(app),
|
2017-10-28 16:10:36 +00:00
|
|
|
payload: ssrContext ? ssrContext.payload : undefined,
|
2017-05-21 19:00:41 +00:00
|
|
|
req: ssrContext ? ssrContext.req : undefined,
|
|
|
|
res: ssrContext ? ssrContext.res : undefined,
|
2019-02-08 10:05:01 +00:00
|
|
|
beforeRenderFns: ssrContext ? ssrContext.beforeRenderFns : undefined,
|
|
|
|
ssrContext
|
2017-10-13 21:53:04 +00:00
|
|
|
})
|
2017-04-14 09:57:08 +00:00
|
|
|
|
2018-10-24 13:46:06 +00:00
|
|
|
<% if (plugins.length) { %>
|
2017-08-24 18:38:28 +00:00
|
|
|
const inject = function (key, value) {
|
2019-09-10 09:51:14 +00:00
|
|
|
if (!key) {
|
|
|
|
throw new Error('inject(key, value) has no key provided')
|
|
|
|
}
|
|
|
|
if (value === undefined) {
|
|
|
|
throw new Error('inject(key, value) has no value provided')
|
|
|
|
}
|
|
|
|
|
2017-08-24 18:38:28 +00:00
|
|
|
key = '$' + key
|
|
|
|
// Add into app
|
|
|
|
app[key] = value
|
2017-12-29 12:31:19 +00:00
|
|
|
<% if (store) { %>
|
|
|
|
// Add into store
|
|
|
|
store[key] = app[key]
|
|
|
|
<% } %>
|
2017-10-13 21:53:04 +00:00
|
|
|
// Check if plugin not already installed
|
2018-10-09 12:07:23 +00:00
|
|
|
const installKey = '__<%= globals.pluginPrefix %>_' + key + '_installed__'
|
2019-09-10 09:51:14 +00:00
|
|
|
if (Vue[installKey]) {
|
|
|
|
return
|
|
|
|
}
|
2017-10-13 21:53:04 +00:00
|
|
|
Vue[installKey] = true
|
|
|
|
// Call Vue.use() to install the plugin into vm
|
2017-08-24 18:38:28 +00:00
|
|
|
Vue.use(() => {
|
2019-11-26 22:42:39 +00:00
|
|
|
if (!Object.prototype.hasOwnProperty.call(Vue, key)) {
|
2017-08-24 18:38:28 +00:00
|
|
|
Object.defineProperty(Vue.prototype, key, {
|
2019-09-10 09:51:14 +00:00
|
|
|
get () {
|
2017-08-24 18:38:28 +00:00
|
|
|
return this.$root.$options[key]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2018-10-24 13:46:06 +00:00
|
|
|
<% } %>
|
2017-08-24 18:38:28 +00:00
|
|
|
|
2017-08-22 09:08:59 +00:00
|
|
|
<% if (store) { %>
|
2018-11-08 09:15:56 +00:00
|
|
|
if (process.client) {
|
2017-09-06 13:19:51 +00:00
|
|
|
// Replace store state before plugins execution
|
2018-10-09 12:07:23 +00:00
|
|
|
if (window.<%= globals.context %> && window.<%= globals.context %>.state) {
|
|
|
|
store.replaceState(window.<%= globals.context %>.state)
|
2017-08-22 09:08:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
<% } %>
|
|
|
|
|
2017-10-13 21:53:04 +00:00
|
|
|
// Plugin execution
|
2018-10-24 13:46:06 +00:00
|
|
|
<%= isTest ? '/* eslint-disable camelcase */' : '' %>
|
2019-03-07 19:33:20 +00:00
|
|
|
<% plugins.forEach((plugin) => { %>
|
|
|
|
<% if (plugin.mode == 'client') { %>
|
|
|
|
if (process.client && typeof <%= plugin.name %> === 'function') {
|
|
|
|
await <%= plugin.name %>(app.context, inject)
|
|
|
|
}
|
|
|
|
<% } else if (plugin.mode == 'server') { %>
|
|
|
|
if (process.server && typeof <%= plugin.name %> === 'function') {
|
|
|
|
await <%= plugin.name %>(app.context, inject)
|
|
|
|
}
|
|
|
|
<% } else { %>
|
|
|
|
if (typeof <%= plugin.name %> === 'function') {
|
|
|
|
await <%= plugin.name %>(app.context, inject)
|
|
|
|
}
|
|
|
|
<% } %>
|
|
|
|
<% }) %>
|
2018-10-24 13:46:06 +00:00
|
|
|
<%= isTest ? '/* eslint-enable camelcase */' : '' %>
|
2017-09-06 13:15:25 +00:00
|
|
|
|
2017-10-13 21:53:04 +00:00
|
|
|
// If server-side, wait for async component to be resolved first
|
2017-08-24 16:49:06 +00:00
|
|
|
if (process.server && ssrContext && ssrContext.url) {
|
|
|
|
await new Promise((resolve, reject) => {
|
2017-12-01 09:25:21 +00:00
|
|
|
router.push(ssrContext.url, resolve, () => {
|
|
|
|
// navigated to a different route in router guard
|
2017-12-01 10:22:25 +00:00
|
|
|
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()
|
2017-12-01 09:25:21 +00:00
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
})
|
2017-08-24 16:49:06 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-07-09 22:29:27 +00:00
|
|
|
return {
|
2018-10-24 13:46:06 +00:00
|
|
|
<% if(store) { %>store,<% } %>
|
2019-09-05 15:15:27 +00:00
|
|
|
app,
|
2018-10-24 13:46:06 +00:00
|
|
|
router
|
2017-07-09 22:29:27 +00:00
|
|
|
}
|
2017-05-02 06:57:39 +00:00
|
|
|
}
|
2017-05-05 10:11:32 +00:00
|
|
|
|
2017-07-26 11:56:43 +00:00
|
|
|
export { createApp, NuxtError }
|