mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
chore: polish client.js
This commit is contained in:
parent
78400042ef
commit
ddc6369e05
@ -1,32 +1,61 @@
|
|||||||
'use strict'
|
|
||||||
|
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import middleware from './middleware'
|
import middleware from './middleware'
|
||||||
import { createApp, NuxtError } from './index'
|
import { createApp, NuxtError } from './index'
|
||||||
import { applyAsyncData, sanitizeComponent, getMatchedComponents, getMatchedComponentsInstances, flatMapComponents, getContext, middlewareSeries, promisify, getLocation, compile } from './utils'
|
import {
|
||||||
|
applyAsyncData,
|
||||||
|
sanitizeComponent,
|
||||||
|
getMatchedComponents,
|
||||||
|
getMatchedComponentsInstances,
|
||||||
|
flatMapComponents,
|
||||||
|
getContext,
|
||||||
|
middlewareSeries,
|
||||||
|
promisify,
|
||||||
|
getLocation,
|
||||||
|
compile
|
||||||
|
} from './utils'
|
||||||
|
|
||||||
const noopData = () => { return {} }
|
const noopData = () => { return {} }
|
||||||
const noopFetch = () => {}
|
const noopFetch = () => {}
|
||||||
|
|
||||||
|
// Global shared references
|
||||||
let _lastPaths = []
|
let _lastPaths = []
|
||||||
let _lastComponentsFiles = []
|
let _lastComponentsFiles = []
|
||||||
|
|
||||||
let app
|
let app
|
||||||
let router
|
let router
|
||||||
<%= (store ? 'let store' : '') %>
|
<% if (store) { %>let store<% } %>
|
||||||
|
|
||||||
|
// Try to rehydrate SSR data from window
|
||||||
|
const NUXT = window.__NUXT__ || {}
|
||||||
|
NUXT.components = window.__COMPONENTS__ || null
|
||||||
|
|
||||||
|
// Create and mount App
|
||||||
|
createApp()
|
||||||
|
.then(mountApp)
|
||||||
|
.catch(err => {
|
||||||
|
console.error('[nuxt] Error while initializing app', err)
|
||||||
|
})
|
||||||
|
|
||||||
|
function componentOption(component, key, ...args) {
|
||||||
|
if (!component || !component.options || !component.options[key]) {
|
||||||
|
return {}
|
||||||
|
}
|
||||||
|
const option = component.options[key]
|
||||||
|
if (typeof option === 'function') {
|
||||||
|
return option(...args)
|
||||||
|
}
|
||||||
|
return option
|
||||||
|
}
|
||||||
|
|
||||||
function mapTransitions(Components, to, from) {
|
function mapTransitions(Components, to, from) {
|
||||||
const componentTransitions = (component) => {
|
const componentTransitions = component => {
|
||||||
if (!component || !component.options || !component.options.transition) {
|
const transition = componentOption(component, 'transition', to, from)
|
||||||
return {}
|
|
||||||
}
|
|
||||||
let transition = component.options.transition
|
|
||||||
if (typeof transition === 'function') {
|
|
||||||
transition = transition(to, from)
|
|
||||||
}
|
|
||||||
return (typeof transition === 'string' ? { name: transition } : transition)
|
return (typeof transition === 'string' ? { name: transition } : transition)
|
||||||
}
|
}
|
||||||
return Components.map((Component) => {
|
|
||||||
|
return Components.map(Component => {
|
||||||
// Clone original object to prevent overrides
|
// Clone original object to prevent overrides
|
||||||
const transitions = Object.assign({}, componentTransitions(Component))
|
const transitions = Object.assign({}, componentTransitions(Component))
|
||||||
|
|
||||||
// Combine transitions & prefer `leave` transitions of 'from' route
|
// Combine transitions & prefer `leave` transitions of 'from' route
|
||||||
if (from && from.matched.length && from.matched[0].components.default) {
|
if (from && from.matched.length && from.matched[0].components.default) {
|
||||||
const from_transitions = componentTransitions(from.matched[0].components.default)
|
const from_transitions = componentTransitions(from.matched[0].components.default)
|
||||||
@ -34,151 +63,229 @@ function mapTransitions(Components, to, from) {
|
|||||||
.filter(key => from_transitions[key] && key.toLowerCase().indexOf('leave') !== -1)
|
.filter(key => from_transitions[key] && key.toLowerCase().indexOf('leave') !== -1)
|
||||||
.forEach(key => { transitions[key] = from_transitions[key] })
|
.forEach(key => { transitions[key] = from_transitions[key] })
|
||||||
}
|
}
|
||||||
|
|
||||||
return transitions
|
return transitions
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadAsyncComponents (to, from, next) {
|
async function loadAsyncComponents (to, from, next) {
|
||||||
const resolveComponents = flatMapComponents(to, (Component, _, match, key) => {
|
// Check if route hash changed
|
||||||
if (typeof Component === 'function' && !Component.options) {
|
|
||||||
return new Promise(function (resolve, reject) {
|
|
||||||
const _resolve = (Component) => {
|
|
||||||
Component = sanitizeComponent(Component)
|
|
||||||
match.components[key] = Component
|
|
||||||
resolve(Component)
|
|
||||||
}
|
|
||||||
Component().then(_resolve).catch(reject)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
Component = sanitizeComponent(Component)
|
|
||||||
match.components[key] = Component
|
|
||||||
return match.components[key]
|
|
||||||
})
|
|
||||||
const fromPath = from.fullPath.split('#')[0]
|
const fromPath = from.fullPath.split('#')[0]
|
||||||
const toPath = to.fullPath.split('#')[0]
|
const toPath = to.fullPath.split('#')[0]
|
||||||
this._hashChanged = (fromPath === toPath)
|
this._hashChanged = fromPath === toPath
|
||||||
if (!this._hashChanged) {
|
|
||||||
<%= (loading ? 'this.$loading.start && this.$loading.start()' : '') %>
|
<% if (loading) { %>
|
||||||
|
if (!this._hashChanged && this.$loading.start) {
|
||||||
|
this.$loading.start()
|
||||||
}
|
}
|
||||||
Promise.all(resolveComponents)
|
<% } %>
|
||||||
.then(() => next())
|
|
||||||
.catch((err) => {
|
try {
|
||||||
let statusCode = err.statusCode || err.status || (err.response && err.response.status) || 500
|
await Promise.all(flatMapComponents(to, (Component, _, match, key) => {
|
||||||
this.error({ statusCode, message: err.message })
|
// If component already resolved
|
||||||
next(false)
|
if (typeof Component !== 'function' || Component.options) {
|
||||||
|
const _Component = sanitizeComponent(Component)
|
||||||
|
match.components[key] = _Component
|
||||||
|
return _Component
|
||||||
|
}
|
||||||
|
|
||||||
|
// Resolve component
|
||||||
|
return Component().then(Component => {
|
||||||
|
const _Component = sanitizeComponent(Component)
|
||||||
|
match.components[key] = _Component
|
||||||
|
return _Component
|
||||||
|
})
|
||||||
|
}))
|
||||||
|
|
||||||
|
next()
|
||||||
|
} catch (err) {
|
||||||
|
if (!err) err = {}
|
||||||
|
const statusCode = err.statusCode || err.status || (err.response && err.response.status) || 500
|
||||||
|
this.error({ statusCode, message: err.message })
|
||||||
|
next(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get matched components
|
||||||
|
function resolveComponents(router) {
|
||||||
|
const path = getLocation(router.options.base)
|
||||||
|
|
||||||
|
return flatMapComponents(router.match(path), (Component, _, match, key, index) => {
|
||||||
|
// If component already resolved
|
||||||
|
if (typeof Component !== 'function' || Component.options) {
|
||||||
|
const _Component = sanitizeComponent(Component)
|
||||||
|
match.components[key] = _Component
|
||||||
|
return _Component
|
||||||
|
}
|
||||||
|
|
||||||
|
// Resolve component
|
||||||
|
return Component().then(Component => {
|
||||||
|
const _Component = sanitizeComponent(Component)
|
||||||
|
if (NUXT.serverRendered) {
|
||||||
|
applyAsyncData(_Component, NUXT.data[index])
|
||||||
|
if (NUXT.components) {
|
||||||
|
Component.options.components = Object.assign(_Component.options.components, NUXT.components[index])
|
||||||
|
}
|
||||||
|
_Component._Ctor = _Component
|
||||||
|
}
|
||||||
|
match.components[key] = _Component
|
||||||
|
return _Component
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function callMiddleware (Components, context, layout) {
|
function callMiddleware (Components, context, layout) {
|
||||||
// if layout is undefined, only call global middleware
|
|
||||||
let midd = <%= serialize(router.middleware, { isJSON: true }) %>
|
let midd = <%= serialize(router.middleware, { isJSON: true }) %>
|
||||||
let unknownMiddleware = false
|
let unknownMiddleware = false
|
||||||
|
|
||||||
|
// If layout is undefined, only call global middleware
|
||||||
if (typeof layout !== 'undefined') {
|
if (typeof layout !== 'undefined') {
|
||||||
midd = [] // exclude global middleware if layout defined (already called before)
|
midd = [] // Exclude global middleware if layout defined (already called before)
|
||||||
if (layout.middleware) {
|
if (layout.middleware) {
|
||||||
midd = midd.concat(layout.middleware)
|
midd = midd.concat(layout.middleware)
|
||||||
}
|
}
|
||||||
Components.forEach((Component) => {
|
Components.forEach(Component => {
|
||||||
if (Component.options.middleware) {
|
if (Component.options.middleware) {
|
||||||
midd = midd.concat(Component.options.middleware)
|
midd = midd.concat(Component.options.middleware)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
midd = midd.map((name) => {
|
|
||||||
|
midd = midd.map(name => {
|
||||||
if (typeof middleware[name] !== 'function') {
|
if (typeof middleware[name] !== 'function') {
|
||||||
unknownMiddleware = true
|
unknownMiddleware = true
|
||||||
this.error({ statusCode: 500, message: 'Unknown middleware ' + name })
|
this.error({ statusCode: 500, message: 'Unknown middleware ' + name })
|
||||||
}
|
}
|
||||||
return middleware[name]
|
return middleware[name]
|
||||||
})
|
})
|
||||||
if (unknownMiddleware) return
|
|
||||||
|
if (unknownMiddleware) return
|
||||||
return middlewareSeries(midd, context)
|
return middlewareSeries(midd, context)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function render (to, from, next) {
|
async function render (to, from, next) {
|
||||||
if (this._hashChanged) return next()
|
if (this._hashChanged) return next()
|
||||||
let layout
|
|
||||||
|
// nextCalled is true when redirected
|
||||||
let nextCalled = false
|
let nextCalled = false
|
||||||
const _next = function (path) {
|
const _next = path => {
|
||||||
<%= (loading ? 'this.$loading.finish && this.$loading.finish()' : '') %>
|
<% if(loading) { %>if(this.$loading.finish) this.$loading.finish()<% } %>
|
||||||
if (nextCalled) return
|
if (nextCalled) return
|
||||||
nextCalled = true
|
nextCalled = true
|
||||||
next(path)
|
next(path)
|
||||||
}
|
}
|
||||||
let context = getContext({ to<%= (store ? ', store' : '') %>, isClient: true, next: _next.bind(this), error: this.error.bind(this) }, app)
|
|
||||||
let Components = getMatchedComponents(to)
|
// Update context
|
||||||
|
const context = getContext({
|
||||||
|
to,
|
||||||
|
<% if (store) { %>store,<% } %>
|
||||||
|
isClient: true,
|
||||||
|
next: _next.bind(this),
|
||||||
|
error: this.error.bind(this),
|
||||||
|
app
|
||||||
|
})
|
||||||
this._context = context
|
this._context = context
|
||||||
this._dateLastError = this.$options._nuxt.dateErr
|
this._dateLastError = this.$options._nuxt.dateErr
|
||||||
this._hadError = !!this.$options._nuxt.err
|
this._hadError = !!this.$options._nuxt.err
|
||||||
|
|
||||||
|
// Get route's matched components
|
||||||
|
const Components = getMatchedComponents(to)
|
||||||
|
|
||||||
|
// If no Components matched, generate 404
|
||||||
if (!Components.length) {
|
if (!Components.length) {
|
||||||
// Default layout
|
// Default layout
|
||||||
await callMiddleware.call(this, Components, context)
|
await callMiddleware.call(this, Components, context)
|
||||||
if (context._redirected) return
|
if (context._redirected) return
|
||||||
|
|
||||||
|
// Load layout for error page
|
||||||
layout = await this.loadLayout(typeof NuxtError.layout === 'function' ? NuxtError.layout(context) : NuxtError.layout)
|
layout = await this.loadLayout(typeof NuxtError.layout === 'function' ? NuxtError.layout(context) : NuxtError.layout)
|
||||||
await callMiddleware.call(this, Components, context, layout)
|
await callMiddleware.call(this, Components, context, layout)
|
||||||
if (context._redirected) return
|
if (context._redirected) return
|
||||||
|
|
||||||
this.error({ statusCode: 404, message: 'This page could not be found.' })
|
this.error({ statusCode: 404, message: 'This page could not be found.' })
|
||||||
return next()
|
return next()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update ._data and other properties if hot reloaded
|
// Update ._data and other properties if hot reloaded
|
||||||
Components.forEach(function (Component) {
|
Components.forEach(Component => {
|
||||||
if (Component._Ctor && Component._Ctor.options) {
|
if (Component._Ctor && Component._Ctor.options) {
|
||||||
Component.options.asyncData = Component._Ctor.options.asyncData
|
Component.options.asyncData = Component._Ctor.options.asyncData
|
||||||
Component.options.fetch = Component._Ctor.options.fetch
|
Component.options.fetch = Component._Ctor.options.fetch
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Apply transitions
|
||||||
this.setTransitions(mapTransitions(Components, to, from))
|
this.setTransitions(mapTransitions(Components, to, from))
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Set layout
|
// Call middleware
|
||||||
await callMiddleware.call(this, Components, context)
|
await callMiddleware.call(this, Components, context)
|
||||||
if (context._redirected) return
|
if (context._redirected) return
|
||||||
layout = Components[0].options.layout
|
|
||||||
|
// Set layout
|
||||||
|
let layout = Components[0].options.layout
|
||||||
if (typeof layout === 'function') {
|
if (typeof layout === 'function') {
|
||||||
layout = layout(context)
|
layout = layout(context)
|
||||||
}
|
}
|
||||||
layout = await this.loadLayout(layout)
|
layout = await this.loadLayout(layout)
|
||||||
|
|
||||||
|
// Call middleware for layout
|
||||||
await callMiddleware.call(this, Components, context, layout)
|
await callMiddleware.call(this, Components, context, layout)
|
||||||
if (context._redirected) return
|
if (context._redirected) return
|
||||||
// Pass validation?
|
|
||||||
|
// Call .validate()
|
||||||
let isValid = true
|
let isValid = true
|
||||||
Components.forEach((Component) => {
|
Components.forEach(Component => {
|
||||||
if (!isValid) return
|
if (!isValid) return
|
||||||
if (typeof Component.options.validate !== 'function') return
|
if (typeof Component.options.validate !== 'function') return
|
||||||
isValid = Component.options.validate({
|
isValid = Component.options.validate({
|
||||||
params: to.params || {},
|
params: to.params || {},
|
||||||
query : to.query || {}<%= (store ? ', store: context.store' : '') %>
|
query : to.query || {},
|
||||||
|
<% if(store) { %>store: context.store <% } %>
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
// ...If .validate() returned false
|
||||||
if (!isValid) {
|
if (!isValid) {
|
||||||
this.error({ statusCode: 404, message: 'This page could not be found.' })
|
this.error({ statusCode: 404, message: 'This page could not be found.' })
|
||||||
return next()
|
return next()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Call asyncData & fetch hooks on components matched by the route.
|
||||||
await Promise.all(Components.map((Component, i) => {
|
await Promise.all(Components.map((Component, i) => {
|
||||||
// Check if only children route changed
|
// Check if only children route changed
|
||||||
Component._path = compile(to.matched[i].path)(to.params)
|
Component._path = compile(to.matched[i].path)(to.params)
|
||||||
if (!this._hadError && Component._path === _lastPaths[i] && (i + 1) !== Components.length) {
|
if (!this._hadError && Component._path === _lastPaths[i] && (i + 1) !== Components.length) {
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
}
|
}
|
||||||
|
|
||||||
let promises = []
|
let promises = []
|
||||||
|
|
||||||
// Create this context for asyncData & fetch (used for dynamic component injection)
|
// Create this context for asyncData & fetch (used for dynamic component injection)
|
||||||
const _this = { components: {} }
|
const _this = { components: {} }
|
||||||
// asyncData method
|
|
||||||
if (Component.options.asyncData && typeof Component.options.asyncData === 'function') {
|
const hasAsyncData = Component.options.asyncData && typeof Component.options.asyncData === 'function'
|
||||||
var promise = promisify(Component.options.asyncData.bind(_this), context)
|
const hasFetch = !!Component.options.fetch
|
||||||
promise.then((asyncDataResult) => {
|
<% if(loading) { %>const loadingIncrease = (hasAsyncData && hasFetch) ? 30 : 45<% } %>
|
||||||
|
|
||||||
|
// Call asyncData(context)
|
||||||
|
if (hasAsyncData) {
|
||||||
|
const promise = promisify(Component.options.asyncData.bind(_this), context)
|
||||||
|
.then(asyncDataResult => {
|
||||||
applyAsyncData(Component, asyncDataResult)
|
applyAsyncData(Component, asyncDataResult)
|
||||||
<%= (loading ? 'this.$loading.increase && this.$loading.increase(30)' : '') %>
|
<% if(loading) { %>if(this.$loading.increase) this.$loading.increase(loadingIncrease)<% } %>
|
||||||
})
|
})
|
||||||
promises.push(promise)
|
promises.push(promise)
|
||||||
}
|
}
|
||||||
if (Component.options.fetch) {
|
|
||||||
var p = Component.options.fetch.call(_this, context)
|
// Call fetch(context)
|
||||||
if (!p || (!(p instanceof Promise) && (typeof p.then !== 'function'))) { p = Promise.resolve(p) }
|
if (hasFetch) {
|
||||||
<%= (loading ? 'p.then(() => this.$loading.increase && this.$loading.increase(30))' : '') %>
|
const promise = Component.options.fetch.call(_this, context).then(fetchResult => {
|
||||||
promises.push(p)
|
<% if(loading) { %>if(this.$loading.increase) this.$loading.increase(loadingIncrease)<% } %>
|
||||||
|
})
|
||||||
|
promises.push(promise)
|
||||||
}
|
}
|
||||||
return Promise.all(promises)
|
|
||||||
.then(() => {
|
return Promise.all(promises).then(() => {
|
||||||
Object.keys(_this.components).forEach((name) => {
|
Object.keys(_this.components).forEach((name) => {
|
||||||
// Sanetize resolved components (Temporary workaround for vue-loader 13.0.0)
|
// Sanetize resolved components (Temporary workaround for vue-loader 13.0.0)
|
||||||
_this.components[name] = _this.components[name].default || _this.components[name]
|
_this.components[name] = _this.components[name].default || _this.components[name]
|
||||||
@ -186,24 +293,28 @@ async function render (to, from, next) {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}))
|
}))
|
||||||
|
|
||||||
_lastPaths = Components.map((Component, i) => compile(to.matched[i].path)(to.params))
|
_lastPaths = Components.map((Component, i) => compile(to.matched[i].path)(to.params))
|
||||||
<%= (loading ? 'this.$loading.finish && this.$loading.finish()' : '') %>
|
|
||||||
|
<% if(loading) { %>if(this.$loading.finish) this.$loading.finish()<% } %>
|
||||||
|
|
||||||
// If not redirected
|
// If not redirected
|
||||||
if (!nextCalled) {
|
if (!nextCalled) next()
|
||||||
next()
|
|
||||||
}
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
if (!error) error = {}
|
||||||
_lastPaths = []
|
_lastPaths = []
|
||||||
error.statusCode = error.statusCode || error.status || (error.response && error.response.status) || 500
|
error.statusCode = error.statusCode || error.status || (error.response && error.response.status) || 500
|
||||||
|
|
||||||
|
// Load error layout
|
||||||
let layout = NuxtError.layout
|
let layout = NuxtError.layout
|
||||||
if (typeof layout === 'function') {
|
if (typeof layout === 'function') {
|
||||||
layout = layout(context)
|
layout = layout(context)
|
||||||
}
|
}
|
||||||
this.loadLayout(layout)
|
await this.loadLayout(layout)
|
||||||
.then(() => {
|
|
||||||
this.error(error)
|
this.error(error)
|
||||||
next(false)
|
next(false)
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,46 +332,72 @@ function normalizeComponents (to, ___) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// When navigating on a different route but the same component is used, Vue.js
|
// When navigating on a different route but the same component is used, Vue.js
|
||||||
// will not update the instance data, so we have to update $data ourselves
|
// Will not update the instance data, so we have to update $data ourselves
|
||||||
function fixPrepatch (to, ___) {
|
function fixPrepatch (to, ___) {
|
||||||
if (this._hashChanged) return
|
if (this._hashChanged) return
|
||||||
|
|
||||||
Vue.nextTick(() => {
|
Vue.nextTick(() => {
|
||||||
let instances = getMatchedComponentsInstances(to)
|
const instances = getMatchedComponentsInstances(to)
|
||||||
|
|
||||||
_lastComponentsFiles = instances.map((instance, i) => {
|
_lastComponentsFiles = instances.map((instance, i) => {
|
||||||
if (!instance) return '';
|
if (!instance) return '';
|
||||||
|
|
||||||
if (_lastPaths[i] === instance.constructor._path && typeof instance.constructor.options.data === 'function') {
|
if (_lastPaths[i] === instance.constructor._path && typeof instance.constructor.options.data === 'function') {
|
||||||
let newData = instance.constructor.options.data.call(instance)
|
const newData = instance.constructor.options.data.call(instance)
|
||||||
for (let key in newData) {
|
for (let key in newData) {
|
||||||
Vue.set(instance.$data, key, newData[key])
|
Vue.set(instance.$data, key, newData[key])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return instance.constructor.options.__file
|
return instance.constructor.options.__file
|
||||||
})
|
})
|
||||||
// hide error component if no error
|
|
||||||
|
// Hide error component if no error
|
||||||
if (this._hadError && this._dateLastError === this.$options._nuxt.dateErr) {
|
if (this._hadError && this._dateLastError === this.$options._nuxt.dateErr) {
|
||||||
this.error()
|
this.error()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set layout
|
// Set layout
|
||||||
let layout = this.$options._nuxt.err ? NuxtError.layout : to.matched[0].components.default.options.layout
|
let layout = this.$options._nuxt.err ? NuxtError.layout : to.matched[0].components.default.options.layout
|
||||||
if (typeof layout === 'function') {
|
if (typeof layout === 'function') {
|
||||||
layout = layout(this._context)
|
layout = layout(this._context)
|
||||||
}
|
}
|
||||||
this.setLayout(layout)
|
this.setLayout(layout)
|
||||||
// hot reloading
|
|
||||||
|
// Hot reloading
|
||||||
setTimeout(() => hotReloadAPI(this), 100)
|
setTimeout(() => hotReloadAPI(this), 100)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function nuxtReady (app) {
|
||||||
|
window._nuxtReadyCbs.forEach((cb) => {
|
||||||
|
if (typeof cb === 'function') {
|
||||||
|
cb(app)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// Special JSDOM
|
||||||
|
if (typeof window._onNuxtLoaded === 'function') {
|
||||||
|
window._onNuxtLoaded(app)
|
||||||
|
}
|
||||||
|
// Add router hooks
|
||||||
|
router.afterEach(function (to, from) {
|
||||||
|
app.$nuxt.$emit('routeChanged', to, from)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
<% if (isDev) { %>
|
||||||
// Special hot reload with asyncData(context)
|
// Special hot reload with asyncData(context)
|
||||||
function hotReloadAPI (_app) {
|
function hotReloadAPI (_app) {
|
||||||
if (!module.hot) return
|
if (!module.hot) return
|
||||||
|
|
||||||
let $components = []
|
let $components = []
|
||||||
let $nuxt = _app.$nuxt
|
let $nuxt = _app.$nuxt
|
||||||
|
|
||||||
while ($nuxt && $nuxt.$children && $nuxt.$children.length) {
|
while ($nuxt && $nuxt.$children && $nuxt.$children.length) {
|
||||||
$nuxt.$children.forEach(function (child, i) {
|
$nuxt.$children.forEach((child, i) => {
|
||||||
if (child.$vnode.data.nuxtChild) {
|
if (child.$vnode.data.nuxtChild) {
|
||||||
let hasAlready = false
|
let hasAlready = false
|
||||||
$components.forEach(function (component) {
|
$components.forEach(component => {
|
||||||
if (component.$options.__file === child.$options.__file) {
|
if (component.$options.__file === child.$options.__file) {
|
||||||
hasAlready = true
|
hasAlready = true
|
||||||
}
|
}
|
||||||
@ -272,13 +409,16 @@ function hotReloadAPI (_app) {
|
|||||||
$nuxt = child
|
$nuxt = child
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
$components.forEach(addHotReload.bind(_app))
|
$components.forEach(addHotReload.bind(_app))
|
||||||
}
|
}
|
||||||
|
|
||||||
function addHotReload ($component, depth) {
|
function addHotReload ($component, depth) {
|
||||||
if ($component.$vnode.data._hasHotReload) return
|
if ($component.$vnode.data._hasHotReload) return
|
||||||
$component.$vnode.data._hasHotReload = true
|
$component.$vnode.data._hasHotReload = true
|
||||||
|
|
||||||
var _forceUpdate = $component.$forceUpdate.bind($component.$parent)
|
var _forceUpdate = $component.$forceUpdate.bind($component.$parent)
|
||||||
|
|
||||||
$component.$vnode.context.$forceUpdate = () => {
|
$component.$vnode.context.$forceUpdate = () => {
|
||||||
let Components = getMatchedComponents(router.currentRoute)
|
let Components = getMatchedComponents(router.currentRoute)
|
||||||
let Component = Components[depth]
|
let Component = Components[depth]
|
||||||
@ -338,106 +478,80 @@ function addHotReload ($component, depth) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<% } %>
|
||||||
|
|
||||||
// Load vue app
|
async function mountApp(__app) {
|
||||||
const NUXT = window.__NUXT__ || {}
|
// Set global variables
|
||||||
NUXT.components = window.__COMPONENTS__ || null
|
|
||||||
// Get matched components
|
|
||||||
const resolveComponents = function (router) {
|
|
||||||
const path = getLocation(router.options.base)
|
|
||||||
return flatMapComponents(router.match(path), (Component, _, match, key, index) => {
|
|
||||||
if (typeof Component === 'function' && !Component.options) {
|
|
||||||
return new Promise(function (resolve, reject) {
|
|
||||||
const _resolve = (Component) => {
|
|
||||||
Component = sanitizeComponent(Component)
|
|
||||||
if (NUXT.serverRendered) {
|
|
||||||
applyAsyncData(Component, NUXT.data[index])
|
|
||||||
if (NUXT.components) {
|
|
||||||
Component.options.components = Object.assign(Component.options.components, NUXT.components[index])
|
|
||||||
}
|
|
||||||
Component._Ctor = Component
|
|
||||||
}
|
|
||||||
match.components[key] = Component
|
|
||||||
resolve(Component)
|
|
||||||
}
|
|
||||||
Component().then(_resolve).catch(reject)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
Component = sanitizeComponent(Component)
|
|
||||||
match.components[key] = Component
|
|
||||||
return Component
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
function nuxtReady (app) {
|
|
||||||
window._nuxtReadyCbs.forEach((cb) => {
|
|
||||||
if (typeof cb === 'function') {
|
|
||||||
cb(app)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
// Special JSDOM
|
|
||||||
if (typeof window._onNuxtLoaded === 'function') {
|
|
||||||
window._onNuxtLoaded(app)
|
|
||||||
}
|
|
||||||
// Add router hooks
|
|
||||||
router.afterEach(function (to, from) {
|
|
||||||
app.$nuxt.$emit('routeChanged', to, from)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
createApp()
|
|
||||||
.then(async (__app) => {
|
|
||||||
app = __app.app
|
app = __app.app
|
||||||
router = __app.router
|
router = __app.router
|
||||||
<%= (store ? 'store = __app.store' : '') %>
|
<% if (store) { %>store = __app.store <% } %>
|
||||||
|
|
||||||
|
// Resolve route components
|
||||||
const Components = await Promise.all(resolveComponents(router))
|
const Components = await Promise.all(resolveComponents(router))
|
||||||
|
|
||||||
|
// Create Vue instance
|
||||||
const _app = new Vue(app)
|
const _app = new Vue(app)
|
||||||
|
|
||||||
|
// Load layout
|
||||||
const layout = NUXT.layout || 'default'
|
const layout = NUXT.layout || 'default'
|
||||||
await _app.loadLayout(layout)
|
await _app.loadLayout(layout)
|
||||||
_app.setLayout(layout)
|
_app.setLayout(layout)
|
||||||
|
|
||||||
|
// Mounts Vue app to DOM element
|
||||||
const mountApp = () => {
|
const mountApp = () => {
|
||||||
_app.$mount('#__nuxt')
|
_app.$mount('#__nuxt')
|
||||||
|
|
||||||
|
// Listen for first Vue update
|
||||||
Vue.nextTick(() => {
|
Vue.nextTick(() => {
|
||||||
// Hot reloading
|
|
||||||
hotReloadAPI(_app)
|
|
||||||
// Call window.onNuxtReady callbacks
|
// Call window.onNuxtReady callbacks
|
||||||
nuxtReady(_app)
|
nuxtReady(_app)
|
||||||
|
<% if (isDev) { %>
|
||||||
|
// Enable hot reloading
|
||||||
|
hotReloadAPI(_app)
|
||||||
|
<% } %>
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Enable transitions
|
||||||
_app.setTransitions = _app.$options._nuxt.setTransitions.bind(_app)
|
_app.setTransitions = _app.$options._nuxt.setTransitions.bind(_app)
|
||||||
if (Components.length) {
|
if (Components.length) {
|
||||||
_app.setTransitions(mapTransitions(Components, router.currentRoute))
|
_app.setTransitions(mapTransitions(Components, router.currentRoute))
|
||||||
_lastPaths = router.currentRoute.matched.map((route) => compile(route.path)(router.currentRoute.params))
|
_lastPaths = router.currentRoute.matched.map(route => compile(route.path)(router.currentRoute.params))
|
||||||
_lastComponentsFiles = Components.map((Component) => Component.options.__file)
|
_lastComponentsFiles = Components.map(Component => Component.options.__file)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Initialize error handler
|
||||||
_app.error = _app.$options._nuxt.error.bind(_app)
|
_app.error = _app.$options._nuxt.error.bind(_app)
|
||||||
_app.$loading = {} // to avoid error while _app.$nuxt does not exist
|
_app.$loading = {} // To avoid error while _app.$nuxt does not exist
|
||||||
if (NUXT.error) _app.error(NUXT.error)
|
if (NUXT.error) _app.error(NUXT.error)
|
||||||
|
|
||||||
// Add router hooks
|
// Add router hooks
|
||||||
router.beforeEach(loadAsyncComponents.bind(_app))
|
router.beforeEach(loadAsyncComponents.bind(_app))
|
||||||
router.beforeEach(render.bind(_app))
|
router.beforeEach(render.bind(_app))
|
||||||
router.afterEach(normalizeComponents)
|
router.afterEach(normalizeComponents)
|
||||||
router.afterEach(fixPrepatch.bind(_app))
|
router.afterEach(fixPrepatch.bind(_app))
|
||||||
|
|
||||||
|
// If page already is server rendered
|
||||||
if (NUXT.serverRendered) {
|
if (NUXT.serverRendered) {
|
||||||
mountApp()
|
mountApp()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
render.call(_app, router.currentRoute, router.currentRoute, function (path) {
|
|
||||||
if (path) {
|
render.call(_app, router.currentRoute, router.currentRoute, path => {
|
||||||
let mounted = false
|
if (!path) {
|
||||||
router.afterEach(function () {
|
normalizeComponents(router.currentRoute, router.currentRoute)
|
||||||
if (mounted) return
|
fixPrepatch.call(_app, router.currentRoute, router.currentRoute)
|
||||||
mounted = true
|
mountApp()
|
||||||
mountApp()
|
|
||||||
})
|
|
||||||
router.push(path)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
normalizeComponents(router.currentRoute, router.currentRoute)
|
|
||||||
fixPrepatch.call(_app, router.currentRoute, router.currentRoute)
|
// Push the path and then mount app
|
||||||
mountApp()
|
let mounted = false
|
||||||
|
router.afterEach(() => {
|
||||||
|
if (mounted) return
|
||||||
|
mounted = true
|
||||||
|
mountApp()
|
||||||
|
})
|
||||||
|
router.push(path)
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
.catch((err) => {
|
|
||||||
console.error('[nuxt.js] Cannot load components', err) // eslint-disable-line no-console
|
|
||||||
})
|
|
Loading…
Reference in New Issue
Block a user