Nuxt/lib/app/server.js

174 lines
6.1 KiB
JavaScript
Raw Normal View History

'use strict'
2016-11-07 01:34:58 +00:00
const debug = require('debug')('nuxt:render')
2016-12-15 17:48:31 +00:00
debug.color = 4 // force blue color
2016-11-07 01:34:58 +00:00
import Vue from 'vue'
2017-02-28 12:10:58 +00:00
2016-11-10 23:01:36 +00:00
import { stringify } from 'querystring'
2016-11-17 13:02:09 +00:00
import { omit } from 'lodash'
2017-02-03 14:09:27 +00:00
import middleware from './middleware'
2017-02-20 22:11:34 +00:00
import { app, router<%= (store ? ', store' : '') %>, NuxtError } from './index'
2017-02-03 14:09:27 +00:00
import { getMatchedComponents, getContext, promiseSeries, promisify, urlJoin } from './utils'
2016-11-07 01:34:58 +00:00
const isDev = <%= isDev %>
2016-11-07 01:34:58 +00:00
const _app = new Vue(app)
// This exported function will be called by `bundleRenderer`.
// This is where we perform data-prefetching to determine the
// state of our application before actually rendering it.
// Since data fetching is async, this function is expected to
// return a Promise that resolves to the app instance.
export default context => {
// Add store to the context
<%= (store ? 'context.store = store' : '') %>
// Nuxt object
context.nuxt = { data: [], error: null<%= (store ? ', state: null' : '') %>, serverRendered: true }
2016-11-10 23:01:36 +00:00
// create context.next for simulate next() of beforeEach() when wanted to redirect
context.redirected = false
context.next = function (opts) {
2017-02-22 18:19:17 +00:00
context.redirected = opts
2017-02-07 09:46:05 +00:00
// if nuxt generate
2016-11-10 23:01:36 +00:00
if (!context.res) {
context.nuxt.serverRendered = false
2016-11-10 23:01:36 +00:00
return
}
opts.query = stringify(opts.query)
opts.path = opts.path + (opts.query ? '?' + opts.query : '')
opts.path = urlJoin('<%= router.base %>', opts.path)
context.res.writeHead(opts.status, {
'Location': opts.path
2016-11-10 23:01:36 +00:00
})
context.res.end()
}
2016-11-07 01:34:58 +00:00
// set router's location
router.push(context.url)
// Add route to the context
context.route = router.currentRoute
// Add meta infos
context.meta = _app.$meta()
// Error function
context.error = _app.$options._nuxt.error.bind(_app)
2016-11-07 01:34:58 +00:00
<%= (isDev ? 'const s = isDev && Date.now()' : '') %>
2017-02-03 14:09:27 +00:00
const ctx = getContext(context)
let Components = getMatchedComponents(context.route)
2016-11-17 12:52:00 +00:00
<% if (store) { %>
2016-11-17 13:02:09 +00:00
let promise = (store._actions && store._actions.nuxtServerInit ? store.dispatch('nuxtServerInit', omit(getContext(context), 'redirect', 'error')) : null)
2016-11-17 12:52:00 +00:00
if (!(promise instanceof Promise)) promise = Promise.resolve()
<% } else { %>
let promise = Promise.resolve()
<% } %>
return promise
.then(() => {
2016-12-12 15:30:07 +00:00
// Sanitize Components
Components = Components.map((Component) => {
2016-11-17 12:52:00 +00:00
let promises = []
if (!Component.options) {
Component = Vue.extend(Component)
Component._Ctor = Component
2016-11-18 13:45:25 +00:00
} else {
Component._Ctor = Component
Component.extendOptions = Component.options
2016-11-17 12:52:00 +00:00
}
2016-12-12 15:30:07 +00:00
return Component
})
2016-12-24 00:55:32 +00:00
// Set layout
2017-02-20 22:11:34 +00:00
return _app.setLayout(Components.length ? Components[0].options.layout : NuxtError.layout)
2016-12-24 11:34:41 +00:00
})
2017-02-03 14:09:27 +00:00
.then((layout) => {
// Call middleware
let midd = <%= serialize(router.middleware, { isJSON: true }) %>
if (layout.middleware) {
midd = midd.concat(layout.middleware)
}
Components.forEach((Component) => {
if (Component.options.middleware) {
midd = midd.concat(Component.options.middleware)
}
})
midd = midd.map((name) => {
if (typeof middleware[name] !== 'function') {
context.nuxt.error = context.error({ statusCode: 500, message: 'Unknown middleware ' + name })
}
return middleware[name]
})
if (context.nuxt.error) return
return promiseSeries(midd, ctx)
})
2016-12-24 11:34:41 +00:00
.then(() => {
2016-12-12 15:30:07 +00:00
// Call .validate()
2016-12-20 17:05:27 +00:00
let isValid = true
Components.forEach((Component) => {
if (!isValid) return
if (typeof Component.options.validate !== 'function') return
isValid = Component.options.validate({
2016-12-12 15:30:07 +00:00
params: context.route.params || {},
query: context.route.query || {}
})
})
if (!isValid) {
2016-12-21 14:03:23 +00:00
// Don't server-render the page in generate mode
if (context._generate) {
context.nuxt.serverRendered = false
}
2016-12-12 15:30:07 +00:00
// Call the 404 error by making the Components array empty
Components = []
return _app
}
2017-02-28 12:10:58 +00:00
// Call asyncData & fetch hooks on components matched by the route.
2016-12-12 15:30:07 +00:00
return Promise.all(Components.map((Component) => {
let promises = []
2017-02-28 12:10:58 +00:00
if (Component.options.asyncData && typeof Component.options.asyncData === 'function') {
let promise = promisify(Component.options.asyncData, ctx)
// Call asyncData(context)
promise.then((asyncDataResult) => {
let data = {}
// Call data() if defined
if (Component.options.data && typeof Component.options.data === 'function') {
data = Component.options.data()
}
// Merge data() and asyncData() results
data = Object.assign(data, asyncDataResult)
2016-11-17 12:52:00 +00:00
Component.options.data = () => data
Component._Ctor.options.data = Component.options.data
})
promises.push(promise)
}
if (Component.options.fetch) {
promises.push(Component.options.fetch(ctx))
2016-11-17 12:52:00 +00:00
}
return Promise.all(promises)
}))
})
2017-02-28 12:10:58 +00:00
.then(() => {
if (!Components.length) {
2017-02-03 14:09:27 +00:00
context.nuxt.error = context.error({ statusCode: 404, message: 'This page could not be found.' })
<%= (store ? 'context.nuxt.state = store.state' : '') %>
return _app
}
2016-11-07 01:34:58 +00:00
<% if (isDev) { %>
debug('Data fetching ' + context.req.url + ': ' + (Date.now() - s) + 'ms')
2016-11-07 01:34:58 +00:00
<% } %>
// datas are the first row of each
2017-02-28 12:10:58 +00:00
context.nuxt.data = Components.map((Component) => {
return (typeof Component.options.data === 'function' ? Component.options.data() : {})
})
context.nuxt.error = _app.$options._nuxt.err
2016-11-07 01:34:58 +00:00
<%= (store ? '// Add the state from the vuex store' : '') %>
<%= (store ? 'context.nuxt.state = store.state' : '') %>
return _app
})
.catch(function (error) {
if (error && (error instanceof Error || error.constructor.toString().indexOf('Error()') !== -1)) {
let statusCode = error.statusCode || error.status || (error.response && error.response.status) || 500
error = { statusCode, message: error.message }
2016-12-21 14:03:23 +00:00
}
else if (typeof error === 'string') {
error = { statusCode: 500, message: error }
}
context.nuxt.error = context.error(error)
2016-11-07 01:34:58 +00:00
<%= (store ? 'context.nuxt.state = store.state' : '') %>
return _app
})
}