Nuxt/packages/vue-app/template/index.js

213 lines
7.4 KiB
JavaScript
Raw Normal View History

2016-11-07 01:34:58 +00:00
import Vue from 'vue'
2016-11-24 00:47:11 +00:00
import Meta from 'vue-meta'
2017-05-02 06:57:39 +00:00
import { createRouter } from './router.js'
2017-08-24 10:38:46 +00:00
import NoSSR from './components/no-ssr.js'
2016-12-16 16:45:47 +00:00
import NuxtChild from './components/nuxt-child.js'
import NuxtLink from './components/nuxt-link.js'
2017-02-20 22:11:34 +00:00
import NuxtError from '<%= components.ErrorPage ? components.ErrorPage : "./components/nuxt-error.vue" %>'
import Nuxt from './components/nuxt.js'
import App from '<%= appPath %>'
import { setContext, getLocation, getRouteData } from './utils'
2017-07-09 22:29:27 +00:00
<% if (store) { %>import { createStore } from './store.js'<% } %>
/* Plugins */
2018-10-24 13:46:06 +00:00
<%= isTest ? '/* eslint-disable camelcase */' : '' %>
<% plugins.forEach((plugin) => { %>import <%= plugin.name %> from '<%= plugin.name %>' // Source: <%= relativeToBuild(plugin.src) %><%= (plugin.ssr===false) ? ' (ssr: false)' : '' %>
2017-12-07 09:57:07 +00:00
<% }) %>
2018-10-24 13:46:06 +00:00
<%= isTest ? '/* eslint-enable camelcase */' : '' %>
2017-08-24 10:38:46 +00:00
// Component: <no-ssr>
Vue.component(NoSSR.name, NoSSR)
2016-12-13 16:42:41 +00:00
// Component: <nuxt-child>
Vue.component(NuxtChild.name, NuxtChild)
2017-07-10 22:53:06 +00:00
2016-12-16 16:45:47 +00:00
// Component: <nuxt-link>
Vue.component(NuxtLink.name, NuxtLink)
2017-07-10 22:53:06 +00:00
// Component: <nuxt>`
Vue.component(Nuxt.name, Nuxt)
// vue-meta configuration
2016-11-14 22:59:54 +00:00
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
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
})
2017-05-02 06:57:39 +00:00
const defaultTransition = <%=
serialize(transition)
.replace('beforeEnter(', 'function(').replace('enter(', 'function(').replace('afterEnter(', 'function(')
.replace('enterCancelled(', 'function(').replace('beforeLeave(', 'function(').replace('leave(', 'function(')
.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' : '' %>
2017-05-02 06:57:39 +00:00
2018-10-24 13:46:06 +00:00
async function createApp(ssrContext) {
const router = await createRouter(ssrContext)
2017-05-02 06:57:39 +00:00
2017-09-14 16:25:34 +00:00
<% if (store) { %>
const store = createStore(ssrContext)
2017-09-14 16:25:34 +00:00
// Add this.$router into store actions/mutations
store.$router = router
<% 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))
<% } %>
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-05-02 06:57:39 +00:00
router,
2017-08-29 19:04:14 +00:00
<% if (store) { %>store,<% } %>
nuxt: {
2017-07-04 16:30:01 +00:00
defaultTransition,
2017-05-02 06:57:39 +00:00
transitions: [ defaultTransition ],
2018-10-24 13:46:06 +00:00
setTransitions(transitions) {
2017-05-02 06:57:39 +00:00
if (!Array.isArray(transitions)) {
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
})
this.$options.nuxt.transitions = transitions
2017-05-02 06:57:39 +00:00
return transitions
},
err: null,
dateErr: null,
2018-10-24 13:46:06 +00:00
error(err) {
2017-05-02 06:57:39 +00:00
err = err || null
app.context._errored = !!err
if (typeof err === 'string') err = { statusCode: 500, message: err }
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
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) { %>
// 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)
// 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,
2017-06-06 12:51:49 +00:00
next,
error: app.nuxt.error.bind(app),
<% if (store) { %>store,<% } %>
2017-10-28 16:10:36 +00:00
payload: ssrContext ? ssrContext.payload : undefined,
req: ssrContext ? ssrContext.req : undefined,
res: ssrContext ? ssrContext.res : undefined,
2017-07-27 14:26:59 +00:00
beforeRenderFns: ssrContext ? ssrContext.beforeRenderFns : undefined
})
2017-04-14 09:57:08 +00:00
2018-10-24 13:46:06 +00:00
<% if (plugins.length) { %>
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
2017-12-29 12:31:19 +00:00
<% if (store) { %>
// Add into store
store[key] = app[key]
<% } %>
// Check if plugin not already installed
const installKey = '__<%= globals.pluginPrefix %>_' + 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, {
2018-10-24 13:46:06 +00:00
get() {
return this.$root.$options[key]
}
})
}
})
}
2018-10-24 13:46:06 +00:00
<% } %>
<% if (store) { %>
if (process.client || process.browser) {
<% if (isDev) { %>
if (process.browser) {
console.warn('process.browser is deprecated, use process.client instead.')
}
<% } %>
2017-09-06 13:19:51 +00:00
// Replace store state before plugins execution
if (window.<%= globals.context %> && window.<%= globals.context %>.state) {
store.replaceState(window.<%= globals.context %>.state)
}
}
<% } %>
// Plugin execution
2018-10-24 13:46:06 +00:00
<%= isTest ? '/* eslint-disable camelcase */' : '' %>
<% plugins.filter(p => p.ssr).forEach((plugin) => { %>
if (typeof <%= plugin.name %> === 'function') await <%= plugin.name %>(app.context, inject)<% }) %>
<% if (plugins.filter(p => !p.ssr).length) { %>
if (process.client || process.browser) {
<% if (isDev) { %>
if (process.browser) {
console.warn('process.browser is deprecated, use process.client instead.')
}
<% } %>
<% plugins.filter((p) => !p.ssr).forEach((plugin) => { %>
if (typeof <%= plugin.name %> === 'function') await <%= plugin.name %>(app.context, inject)<% }) %>
}<% } %>
2018-10-24 13:46:06 +00:00
<%= isTest ? '/* eslint-enable camelcase */' : '' %>
// 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()
})
})
})
}
2017-07-09 22:29:27 +00:00
return {
app,
2018-10-24 13:46:06 +00:00
<% if(store) { %>store,<% } %>
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
export { createApp, NuxtError }