Nuxt/lib/app/server.js

93 lines
3.2 KiB
JavaScript
Raw Normal View History

'use strict'
2016-11-07 01:34:58 +00:00
const debug = require('debug')('nuxt:render')
import Vue from 'vue'
2016-11-10 23:01:36 +00:00
import { stringify } from 'querystring'
2016-11-07 01:34:58 +00:00
import { pick } from 'lodash'
import { app, router<%= (store ? ', store' : '') %> } from './index'
2016-11-10 23:01:36 +00:00
import { getMatchedComponents, getContext, 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)
2016-11-10 16:16:37 +00:00
// Fix issue from vue-router Abstract mode with base (use for server-side rendering)
router.history.base = '<%= router.base %>'
2016-11-07 01:34:58 +00:00
// 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 => {
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 (path) {
if (!path) return;
if (typeof path === 'string') path = { path }
path.query = stringify(path.query || {})
path.path = path.path + (path.query ? '?' + path.query : '')
path.path = urlJoin('<%= router.base %>', path.path)
if (!context.res) {
context.redirected = path.path
return
}
context.res.writeHead(302, {
'Location': path.path
})
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()
// Add store to the context
<%= (store ? 'context.store = store' : '') %>
// Nuxt object
context.nuxt = { data: [], error: null<%= (store ? ', state: null' : '') %> }
<%= (isDev ? 'const s = isDev && Date.now()' : '') %>
// Call data & fecth hooks on components matched by the route.
let Components = getMatchedComponents(context.route)
if (!Components.length) {
context.nuxt.error = _app.error({ statusCode: 404, message: 'This page could not be found.', url: context.route.path })
<%= (store ? 'context.nuxt.state = store.state' : '') %>
return Promise.resolve(_app)
}
return Promise.all(Components.map((Component) => {
let promises = []
if (Component.data && typeof Component.data === 'function') {
Component._data = Component.data
var promise = Component.data(getContext(context))
if (!(promise instanceof Promise)) promise = Promise.resolve(promise)
promise.then((data) => {
Component.data = () => data
})
promises.push(promise)
} else {
promises.push(null)
}
if (Component.fetch) {
promises.push(Component.fetch(getContext(context)))
}
return Promise.all(promises)
}))
.then((res) => {
<% 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
context.nuxt.data = res.map((tab) => tab[0])
<%= (store ? '// Add the state from the vuex store' : '') %>
<%= (store ? 'context.nuxt.state = store.state' : '') %>
return _app
})
.catch(function (error) {
context.nuxt.error = _app.error(error)
<%= (store ? 'context.nuxt.state = store.state' : '') %>
return _app
})
}