Nuxt/lib/app/index.js

149 lines
4.7 KiB
JavaScript
Raw Normal View History

'use strict'
2017-07-04 16:30:01 +00:00
import 'core-js/fn/promise'
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'
<% if (store) { %>import { createStore } from './store.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.vue'
import App from '<%= appPath %>'
import { getContext } from './utils'
if (process.browser) {
// window.onNuxtReady(() => console.log('Ready')) hook
// Useful for jsdom testing or plugins (https://github.com/tmpvar/jsdom#dealing-with-asynchronous-script-loading)
window._nuxtReadyCbs = []
window.onNuxtReady = function (cb) {
window._nuxtReadyCbs.push(cb)
}
}
// Import SSR plugins
<% plugins.forEach(function (plugin) { if (plugin.ssr)
{ %>let <%= plugin.name %> = require('<%= relativeToBuild(plugin.src) %>')
<%= plugin.name %> = <%= plugin.name %>.default || <%= plugin.name %>
<% }}) %>
2016-12-13 16:42:41 +00:00
// Component: <nuxt-child>
Vue.component(NuxtChild.name, NuxtChild)
2016-12-16 16:45:47 +00:00
// Component: <nuxt-link>
Vue.component(NuxtLink.name, NuxtLink)
// 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(')
%>
async function createApp (ssrContext) {
2017-05-02 11:06:22 +00:00
<% if (store) { %>
2017-05-02 06:57:39 +00:00
const store = createStore()
2017-05-02 11:06:22 +00:00
<% } %>
2017-05-02 06:57:39 +00:00
const router = createRouter()
if (process.server && ssrContext && ssrContext.url) {
await new Promise((resolve, reject) => {
router.push(ssrContext.url, resolve, reject)
})
}
2017-05-02 06:57:39 +00:00
if (process.browser) {
<% if (store) { %>
// Replace store state before calling plugins
if (window.__NUXT__ && window.__NUXT__.state) {
store.replaceState(window.__NUXT__.state)
}
<% } %>
2016-12-07 22:58:32 +00:00
}
2017-05-02 06:57:39 +00:00
// root instance
// here we inject the router and store to all child components,
// making them available everywhere as `this.$router` and `this.$store`.
let app = {
router,
<%= (store ? 'store,' : '') %>
_nuxt: {
2017-07-04 16:30:01 +00:00
defaultTransition,
2017-05-02 06:57:39 +00:00
transitions: [ defaultTransition ],
setTransitions (transitions) {
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
return transitions
},
err: null,
dateErr: null,
error (err) {
err = err || null
if (typeof err === 'string') {
err = { statusCode: 500, message: err }
}
2017-06-09 11:44:07 +00:00
const _nuxt = this._nuxt || this.$options._nuxt
_nuxt.dateErr = Date.now()
_nuxt.err = 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
}
2016-11-07 01:34:58 +00:00
2017-06-06 12:51:49 +00:00
const next = ssrContext ? ssrContext.next : (location) => app.router.push(location)
const ctx = getContext({
isServer: !!ssrContext,
isClient: !ssrContext,
route: router.currentRoute,
2017-06-06 12:51:49 +00:00
next,
2017-06-09 11:44:07 +00:00
error: app._nuxt.error.bind(app),
<%= (store ? 'store,' : '') %>
req: ssrContext ? ssrContext.req : undefined,
res: ssrContext ? ssrContext.res : undefined,
}, app)
2017-04-14 09:57:08 +00:00
// Inject external plugins
2017-05-02 06:57:39 +00:00
<% plugins.forEach(function (plugin) {
if (plugin.ssr) { %>
if (typeof <%= plugin.name %> === 'function') {
await <%= plugin.name %>(ctx)
}
<% } else { %>
2017-05-02 06:57:39 +00:00
if (process.browser) {
let <%= plugin.name %> = require('<%= relativeToBuild(plugin.src) %>')
<%= plugin.name %> = <%= plugin.name %>.default || <%= plugin.name %>
if (typeof <%= plugin.name %> === 'function') {
await <%= plugin.name %>(ctx)
}
2017-05-02 06:57:39 +00:00
}
<% }
}) %>
2017-05-02 06:57:39 +00:00
return { app, router<%= (store ? ', store' : '') %> }
}
2017-05-05 10:11:32 +00:00
export { createApp, NuxtError }