2016-11-07 01:34:58 +00:00
import Vue from 'vue'
2017-02-03 14:09:27 +00:00
import middleware from './middleware'
2017-05-02 06:57:39 +00:00
import { createApp , NuxtError } from './index'
2017-07-27 14:26:36 +00:00
import {
2017-07-09 21:41:04 +00:00
applyAsyncData ,
sanitizeComponent ,
2017-10-16 08:40:08 +00:00
resolveRouteComponents ,
2017-07-27 14:26:36 +00:00
getMatchedComponents ,
2017-11-06 17:30:37 +00:00
getMatchedComponentsInstances ,
2017-07-27 14:26:36 +00:00
flatMapComponents ,
2017-10-16 08:40:08 +00:00
setContext ,
2017-07-09 21:41:04 +00:00
middlewareSeries ,
promisify ,
getLocation ,
2017-11-06 17:30:37 +00:00
compile ,
getQueryDiff
2017-07-09 21:41:04 +00:00
} from './utils'
2017-08-05 21:33:46 +00:00
2016-11-07 01:34:58 +00:00
const noopData = ( ) => { return { } }
const noopFetch = ( ) => { }
2017-07-09 21:41:04 +00:00
// Global shared references
2016-12-16 16:46:09 +00:00
let _lastPaths = [ ]
2017-05-21 19:00:41 +00:00
let app
let router
2017-07-09 21:41:04 +00:00
< % if ( store ) { % > let store < % } % >
// Try to rehydrate SSR data from window
const NUXT = window . _ _NUXT _ _ || { }
2017-08-20 13:13:42 +00:00
< % if ( debug || mode === 'spa' ) { % >
2017-08-05 11:53:19 +00:00
// Setup global Vue error handler
const defaultErrorHandler = Vue . config . errorHandler
Vue . config . errorHandler = function ( err , vm , info ) {
2017-09-17 18:23:17 +00:00
const nuxtError = {
statusCode : err . statusCode || err . name || 'Whoops!' ,
message : err . message || err . toString ( )
}
2017-08-20 13:13:42 +00:00
2017-08-05 11:53:19 +00:00
// Show Nuxt Error Page
2017-08-21 11:54:41 +00:00
if ( vm && vm . $root && vm . $root . $nuxt && vm . $root . $nuxt . error && info !== 'render function' ) {
2017-09-17 18:23:17 +00:00
vm . $root . $nuxt . error ( nuxtError )
2017-08-05 11:53:19 +00:00
}
// Call other handler if exist
if ( typeof defaultErrorHandler === 'function' ) {
return defaultErrorHandler ( ... arguments )
}
2017-08-20 13:13:42 +00:00
// Log to console
2017-08-05 11:53:19 +00:00
if ( process . env . NODE _ENV !== 'production' ) {
2017-08-20 13:13:42 +00:00
console . error ( err )
} else {
2017-09-17 18:23:17 +00:00
console . error ( err . message || nuxtError . message )
2017-08-05 11:53:19 +00:00
}
}
2017-08-10 09:42:06 +00:00
< % } % >
2017-08-05 11:53:19 +00:00
2017-07-09 21:41:04 +00:00
// Create and mount App
createApp ( )
. then ( mountApp )
. catch ( err => {
2018-01-16 06:34:40 +00:00
if ( err . message === 'ERR_REDIRECT' ) {
return // Wait for browser to redirect...
}
2017-07-09 21:41:04 +00:00
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
}
2017-05-02 06:57:39 +00:00
2016-12-16 16:46:09 +00:00
function mapTransitions ( Components , to , from ) {
2017-07-09 21:41:04 +00:00
const componentTransitions = component => {
2017-08-17 20:00:49 +00:00
const transition = componentOption ( component , 'transition' , to , from ) || { }
2017-06-19 21:30:05 +00:00
return ( typeof transition === 'string' ? { name : transition } : transition )
2017-06-12 19:36:05 +00:00
}
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
return Components . map ( Component => {
2017-06-12 19:36:05 +00:00
// Clone original object to prevent overrides
const transitions = Object . assign ( { } , componentTransitions ( Component ) )
2017-07-27 14:26:36 +00:00
2017-06-19 21:30:05 +00:00
// Combine transitions & prefer `leave` transitions of 'from' route
if ( from && from . matched . length && from . matched [ 0 ] . components . default ) {
2017-06-12 19:36:05 +00:00
const from _transitions = componentTransitions ( from . matched [ 0 ] . components . default )
Object . keys ( from _transitions )
. filter ( key => from _transitions [ key ] && key . toLowerCase ( ) . indexOf ( 'leave' ) !== - 1 )
. forEach ( key => { transitions [ key ] = from _transitions [ key ] } )
}
2017-07-27 14:26:36 +00:00
2017-06-12 00:28:03 +00:00
return transitions
2016-12-16 16:46:09 +00:00
} )
}
2016-11-07 01:34:58 +00:00
2017-07-09 21:41:04 +00:00
async function loadAsyncComponents ( to , from , next ) {
2017-11-02 16:47:33 +00:00
// Check if route path changed (this._pathChanged), only if the page is not an error (for validate())
this . _pathChanged = ! ! app . nuxt . err || from . path !== to . path
2017-11-06 17:30:37 +00:00
this . _queryChanged = JSON . stringify ( to . query ) !== JSON . stringify ( from . query )
this . _diffQuery = ( this . _queryChanged ? getQueryDiff ( to . query , from . query ) : [ ] )
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
< % if ( loading ) { % >
2017-11-01 15:44:57 +00:00
if ( this . _pathChanged && this . $loading . start ) {
2017-10-16 08:40:08 +00:00
this . $loading . start ( )
2017-01-29 06:49:36 +00:00
}
2017-07-09 21:41:04 +00:00
< % } % >
try {
2017-11-06 17:30:37 +00:00
const Components = await resolveRouteComponents ( to )
< % if ( loading ) { % >
if ( ! this . _pathChanged && this . _queryChanged ) {
// Add a marker on each component that it needs to refresh or not
const startLoader = Components . some ( ( Component ) => {
const watchQuery = Component . options . watchQuery
if ( watchQuery === true ) return true
if ( Array . isArray ( watchQuery ) ) {
return watchQuery . some ( ( key ) => this . _diffQuery [ key ] )
}
return false
} )
if ( startLoader && this . $loading . start ) {
this . $loading . start ( )
}
}
< % } % >
// Call next()
2017-07-09 21:41:04 +00:00
next ( )
} catch ( err ) {
2017-10-16 08:40:08 +00:00
err = err || { }
const statusCode = err . statusCode || err . status || ( err . response && err . response . status ) || 500
this . error ( { statusCode , message : err . message } )
2017-11-07 15:25:56 +00:00
this . $nuxt . $emit ( 'routeChanged' , to , from , err )
2017-10-16 08:40:08 +00:00
next ( false )
2017-07-09 21:41:04 +00:00
}
}
2017-09-07 12:17:53 +00:00
function applySSRData ( Component , ssrData ) {
2017-09-07 12:44:13 +00:00
if ( NUXT . serverRendered && ssrData ) {
2017-09-07 12:17:53 +00:00
applyAsyncData ( Component , ssrData )
2017-09-07 11:40:10 +00:00
}
2017-09-07 12:44:13 +00:00
Component . _Ctor = Component
2017-09-07 11:40:10 +00:00
return Component
}
2017-07-09 21:41:04 +00:00
// Get matched components
function resolveComponents ( router ) {
2017-08-30 10:13:01 +00:00
const path = getLocation ( router . options . base , router . options . mode )
2017-07-27 14:26:36 +00:00
2017-10-16 08:40:08 +00:00
return flatMapComponents ( router . match ( path ) , async ( Component , _ , match , key , index ) => {
// If component is not resolved yet, resolve it
if ( typeof Component === 'function' && ! Component . options ) {
Component = await Component ( )
2017-07-09 21:41:04 +00:00
}
2017-10-16 08:40:08 +00:00
// Sanitize it and save it
const _Component = applySSRData ( sanitizeComponent ( Component ) , NUXT . data ? NUXT . data [ index ] : null )
match . components [ key ] = _Component
return _Component
2016-11-07 01:34:58 +00:00
} )
}
2017-02-03 14:09:27 +00:00
function callMiddleware ( Components , context , layout ) {
let midd = < %= serialize ( router . middleware , { isJSON : true } ) % >
2017-03-17 17:02:58 +00:00
let unknownMiddleware = false
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
// If layout is undefined, only call global middleware
2017-03-17 17:02:58 +00:00
if ( typeof layout !== 'undefined' ) {
2017-07-09 21:41:04 +00:00
midd = [ ] // Exclude global middleware if layout defined (already called before)
2017-03-17 17:02:58 +00:00
if ( layout . middleware ) {
midd = midd . concat ( layout . middleware )
2017-02-03 14:09:27 +00:00
}
2017-07-09 21:41:04 +00:00
Components . forEach ( Component => {
2017-03-17 17:02:58 +00:00
if ( Component . options . middleware ) {
midd = midd . concat ( Component . options . middleware )
}
} )
}
2017-07-09 21:41:04 +00:00
midd = midd . map ( name => {
2017-11-03 16:14:05 +00:00
if ( typeof name === 'function' ) return name
2017-02-03 14:09:27 +00:00
if ( typeof middleware [ name ] !== 'function' ) {
2017-03-17 17:02:58 +00:00
unknownMiddleware = true
2017-02-03 14:09:27 +00:00
this . error ( { statusCode : 500 , message : 'Unknown middleware ' + name } )
}
return middleware [ name ]
} )
2017-07-27 14:26:36 +00:00
if ( unknownMiddleware ) return
2017-05-04 07:57:10 +00:00
return middlewareSeries ( midd , context )
2017-02-03 14:09:27 +00:00
}
2017-05-09 12:43:47 +00:00
async function render ( to , from , next ) {
2017-11-06 17:30:37 +00:00
if ( this . _pathChanged === false && this . _queryChanged === false ) return next ( )
2017-07-09 21:41:04 +00:00
// nextCalled is true when redirected
2017-05-09 12:43:47 +00:00
let nextCalled = false
2017-07-09 21:41:04 +00:00
const _next = path => {
2018-01-12 15:10:30 +00:00
< % if ( loading ) { % > if ( from . path === path . path && this . $loading . finish ) this . $loading . finish ( ) < % } % >
< % if ( loading ) { % > if ( from . path !== path . path && this . $loading . pause ) this . $loading . pause ( ) < % } % >
2017-05-09 12:43:47 +00:00
if ( nextCalled ) return
2017-02-03 14:09:27 +00:00
nextCalled = true
2018-01-24 06:33:27 +00:00
const matches = [ ]
_lastPaths = getMatchedComponents ( from , matches ) . map ( ( Component , i ) => compile ( from . matched [ matches [ i ] ] . path ) ( from . params ) )
2017-02-03 14:09:27 +00:00
next ( path )
}
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
// Update context
2017-10-30 11:05:12 +00:00
await setContext ( app , {
2017-10-16 08:40:08 +00:00
route : to ,
2017-07-20 19:04:23 +00:00
from ,
2017-10-16 08:40:08 +00:00
next : _next . bind ( this )
} )
this . _dateLastError = app . nuxt . dateErr
this . _hadError = ! ! app . nuxt . err
2017-07-09 21:41:04 +00:00
// Get route's matched components
2018-01-24 06:33:27 +00:00
const matches = [ ]
const Components = getMatchedComponents ( to , matches )
2017-07-09 21:41:04 +00:00
// If no Components matched, generate 404
2016-11-07 01:34:58 +00:00
if ( ! Components . length ) {
2016-12-24 11:34:41 +00:00
// Default layout
2017-10-16 08:40:08 +00:00
await callMiddleware . call ( this , Components , app . context )
2018-01-26 11:16:53 +00:00
if ( nextCalled ) return
2017-07-09 21:41:04 +00:00
// Load layout for error page
2017-10-16 08:40:08 +00:00
const layout = await this . loadLayout ( typeof NuxtError . layout === 'function' ? NuxtError . layout ( app . context ) : NuxtError . layout )
2017-10-31 17:32:42 +00:00
await callMiddleware . call ( this , Components , app . context , layout )
2018-01-26 11:16:53 +00:00
if ( nextCalled ) return
2017-10-16 08:40:08 +00:00
// Show error page
app . context . error ( { statusCode : 404 , message : '<%= messages.error_404 %>' } )
2017-05-09 12:43:47 +00:00
return next ( )
2016-11-07 01:34:58 +00:00
}
2017-07-27 14:26:36 +00:00
2016-11-07 01:34:58 +00:00
// Update ._data and other properties if hot reloaded
2017-07-09 21:41:04 +00:00
Components . forEach ( Component => {
2016-12-24 00:55:32 +00:00
if ( Component . _Ctor && Component . _Ctor . options ) {
2017-02-28 12:10:58 +00:00
Component . options . asyncData = Component . _Ctor . options . asyncData
2016-11-17 10:57:02 +00:00
Component . options . fetch = Component . _Ctor . options . fetch
2016-11-07 01:34:58 +00:00
}
} )
2017-07-09 21:41:04 +00:00
// Apply transitions
2016-12-16 16:46:09 +00:00
this . setTransitions ( mapTransitions ( Components , to , from ) )
2017-07-09 21:41:04 +00:00
2017-05-09 12:43:47 +00:00
try {
2017-07-09 21:41:04 +00:00
// Call middleware
2017-10-16 08:40:08 +00:00
await callMiddleware . call ( this , Components , app . context )
2018-01-26 11:16:53 +00:00
if ( nextCalled ) return
2017-11-02 16:47:33 +00:00
if ( app . context . _errored ) return next ( )
2017-07-09 21:41:04 +00:00
// Set layout
let layout = Components [ 0 ] . options . layout
2017-03-17 17:02:58 +00:00
if ( typeof layout === 'function' ) {
2017-10-16 08:40:08 +00:00
layout = layout ( app . context )
2017-03-17 17:02:58 +00:00
}
2017-05-09 12:43:47 +00:00
layout = await this . loadLayout ( layout )
2017-07-09 21:41:04 +00:00
// Call middleware for layout
2017-10-16 08:40:08 +00:00
await callMiddleware . call ( this , Components , app . context , layout )
2018-01-26 11:16:53 +00:00
if ( nextCalled ) return
2017-11-02 16:47:33 +00:00
if ( app . context . _errored ) return next ( )
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
// Call .validate()
2016-12-24 11:34:41 +00:00
let isValid = true
2017-07-09 21:41:04 +00:00
Components . forEach ( Component => {
2016-12-24 11:34:41 +00:00
if ( ! isValid ) return
if ( typeof Component . options . validate !== 'function' ) return
2018-03-14 10:03:17 +00:00
isValid = Component . options . validate ( app . context )
2016-12-24 11:34:41 +00:00
} )
2017-07-09 21:41:04 +00:00
// ...If .validate() returned false
2016-12-24 11:34:41 +00:00
if ( ! isValid ) {
2017-09-01 16:30:49 +00:00
this . error ( { statusCode : 404 , message : '<%= messages.error_404 %>' } )
2016-12-24 11:34:41 +00:00
return next ( )
2016-11-07 01:34:58 +00:00
}
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
// Call asyncData & fetch hooks on components matched by the route.
2017-05-09 12:43:47 +00:00
await Promise . all ( Components . map ( ( Component , i ) => {
2016-12-24 11:34:41 +00:00
// Check if only children route changed
2018-01-24 06:33:27 +00:00
Component . _path = compile ( to . matched [ matches [ i ] ] . path ) ( to . params )
2017-11-06 17:30:37 +00:00
Component . _dataRefresh = false
// Check if Component need to be refreshed (call asyncData & fetch)
// Only if its slug has changed or is watch query changes
if ( this . _pathChanged && Component . _path !== _lastPaths [ i ] ) {
Component . _dataRefresh = true
} else if ( ! this . _pathChanged && this . _queryChanged ) {
const watchQuery = Component . options . watchQuery
if ( watchQuery === true ) {
Component . _dataRefresh = true
} else if ( Array . isArray ( watchQuery ) ) {
Component . _dataRefresh = watchQuery . some ( ( key ) => this . _diffQuery [ key ] )
}
}
if ( ! this . _hadError && this . _isMounted && ! Component . _dataRefresh ) {
2016-12-24 11:34:41 +00:00
return Promise . resolve ( )
}
2017-07-09 21:41:04 +00:00
2016-12-24 11:34:41 +00:00
let promises = [ ]
2017-07-09 21:41:04 +00:00
const hasAsyncData = Component . options . asyncData && typeof Component . options . asyncData === 'function'
const hasFetch = ! ! Component . options . fetch
2017-07-27 14:26:36 +00:00
< % if ( loading ) { % > const loadingIncrease = ( hasAsyncData && hasFetch ) ? 30 : 45 < % } % >
2017-07-09 21:41:04 +00:00
// Call asyncData(context)
if ( hasAsyncData ) {
2017-10-16 08:40:08 +00:00
const promise = promisify ( Component . options . asyncData , app . context )
2017-07-09 21:41:04 +00:00
. then ( asyncDataResult => {
2017-04-14 14:31:14 +00:00
applyAsyncData ( Component , asyncDataResult )
2017-07-09 21:41:04 +00:00
< % if ( loading ) { % > if ( this . $loading . increase ) this . $loading . increase ( loadingIncrease ) < % } % >
2016-12-24 11:34:41 +00:00
} )
promises . push ( promise )
}
2017-07-09 21:41:04 +00:00
// Call fetch(context)
if ( hasFetch ) {
2017-10-16 08:40:08 +00:00
let p = Component . options . fetch ( app . context )
2017-07-09 23:57:50 +00:00
if ( ! p || ( ! ( p instanceof Promise ) && ( typeof p . then !== 'function' ) ) ) {
2017-07-27 14:26:36 +00:00
p = Promise . resolve ( p )
2017-07-09 23:57:50 +00:00
}
p . then ( fetchResult => {
2017-07-09 21:41:04 +00:00
< % if ( loading ) { % > if ( this . $loading . increase ) this . $loading . increase ( loadingIncrease ) < % } % >
} )
2016-12-24 11:34:41 +00:00
promises . push ( p )
}
2017-07-09 21:41:04 +00:00
2016-12-24 11:34:41 +00:00
return Promise . all ( promises )
} ) )
2017-07-27 14:26:36 +00:00
2016-11-10 23:01:36 +00:00
// If not redirected
2018-01-12 15:10:30 +00:00
if ( ! nextCalled ) {
< % if ( loading ) { % > if ( this . $loading . finish ) this . $loading . finish ( ) < % } % >
2018-01-24 06:33:27 +00:00
_lastPaths = Components . map ( ( Component , i ) => compile ( to . matched [ matches [ i ] ] . path ) ( to . params ) )
2018-01-12 15:10:30 +00:00
next ( )
}
2017-07-09 21:41:04 +00:00
2017-05-09 12:43:47 +00:00
} catch ( error ) {
2017-07-09 21:41:04 +00:00
if ( ! error ) error = { }
2016-12-16 16:46:09 +00:00
_lastPaths = [ ]
2017-01-20 17:11:30 +00:00
error . statusCode = error . statusCode || error . status || ( error . response && error . response . status ) || 500
2017-07-09 21:41:04 +00:00
// Load error layout
2017-03-17 17:02:58 +00:00
let layout = NuxtError . layout
if ( typeof layout === 'function' ) {
2017-10-16 08:40:08 +00:00
layout = layout ( app . context )
2017-03-17 17:02:58 +00:00
}
2017-07-09 21:41:04 +00:00
await this . loadLayout ( layout )
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
this . error ( error )
2017-11-07 15:25:56 +00:00
this . $nuxt . $emit ( 'routeChanged' , to , from , error )
2017-07-09 21:41:04 +00:00
next ( false )
2017-05-09 12:43:47 +00:00
}
2016-11-07 01:34:58 +00:00
}
2017-01-20 17:32:43 +00:00
// Fix components format in matched, it's due to code-splitting of vue-router
function normalizeComponents ( to , _ _ _ ) {
flatMapComponents ( to , ( Component , _ , match , key ) => {
if ( typeof Component === 'object' && ! Component . options ) {
// Updated via vue-router resolveAsyncComponents()
Component = Vue . extend ( Component )
Component . _Ctor = Component
match . components [ key ] = Component
}
return Component
} )
}
2017-10-28 20:42:51 +00:00
function showNextPage ( to ) {
// Hide error component if no error
if ( this . _hadError && this . _dateLastError === this . $options . nuxt . dateErr ) {
this . error ( )
}
// Set layout
let layout = this . $options . nuxt . err ? NuxtError . layout : to . matched [ 0 ] . components . default . options . layout
if ( typeof layout === 'function' ) {
layout = layout ( app . context )
}
this . setLayout ( layout )
}
2016-11-22 23:27:07 +00:00
// When navigating on a different route but the same component is used, Vue.js
2017-07-09 21:41:04 +00:00
// Will not update the instance data, so we have to update $data ourselves
2017-11-06 17:30:37 +00:00
function fixPrepatch ( to , _ _ _ ) {
if ( this . _pathChanged === false && this . _queryChanged === false ) return
2017-07-09 21:41:04 +00:00
2016-11-22 23:27:07 +00:00
Vue . nextTick ( ( ) => {
2018-01-24 06:33:27 +00:00
const matches = [ ]
const instances = getMatchedComponentsInstances ( to , matches )
2017-07-09 21:41:04 +00:00
2017-11-06 17:30:37 +00:00
instances . forEach ( ( instance , i ) => {
if ( ! instance ) return
2018-02-28 15:46:48 +00:00
// if (!this._queryChanged && to.matched[matches[i]].path.indexOf(':') === -1 && to.matched[matches[i]].path.indexOf('*') === -1) return // If not a dynamic route, skip
2017-11-06 17:30:37 +00:00
if ( instance . constructor . _dataRefresh && _lastPaths [ i ] === instance . constructor . _path && typeof instance . constructor . options . data === 'function' ) {
2017-07-09 21:41:04 +00:00
const newData = instance . constructor . options . data . call ( instance )
2016-11-22 23:27:07 +00:00
for ( let key in newData ) {
Vue . set ( instance . $data , key , newData [ key ] )
}
}
} )
2017-10-28 20:42:51 +00:00
showNextPage . call ( this , to )
2017-07-09 23:57:50 +00:00
< % if ( isDev ) { % >
2017-07-09 21:41:04 +00:00
// Hot reloading
2017-03-24 15:52:18 +00:00
setTimeout ( ( ) => hotReloadAPI ( this ) , 100 )
2017-07-09 23:57:50 +00:00
< % } % >
2016-11-22 23:27:07 +00:00
} )
}
2017-11-07 15:25:56 +00:00
function nuxtReady ( _app ) {
2017-07-09 21:41:04 +00:00
window . _nuxtReadyCbs . forEach ( ( cb ) => {
if ( typeof cb === 'function' ) {
2017-11-07 15:25:56 +00:00
cb ( _app )
2017-07-09 21:41:04 +00:00
}
} )
// Special JSDOM
if ( typeof window . _onNuxtLoaded === 'function' ) {
2017-11-07 15:25:56 +00:00
window . _onNuxtLoaded ( _app )
2017-07-09 21:41:04 +00:00
}
// Add router hooks
router . afterEach ( function ( to , from ) {
2017-11-07 15:25:56 +00:00
// Wait for fixPrepatch + $data updates
Vue . nextTick ( ( ) => _app . $nuxt . $emit ( 'routeChanged' , to , from ) )
2017-07-09 21:41:04 +00:00
} )
}
< % if ( isDev ) { % >
2017-03-16 17:52:06 +00:00
// Special hot reload with asyncData(context)
2017-10-28 12:09:33 +00:00
function getNuxtChildComponents ( $parent , $components = [ ] ) {
$parent . $children . forEach ( ( $child ) => {
2017-10-29 01:42:38 +00:00
if ( $child . $vnode . data . nuxtChild && ! $components . find ( c => ( c . $options . _ _file === $child . $options . _ _file ) ) ) {
2017-10-28 12:09:33 +00:00
$components . push ( $child )
}
if ( $child . $children && $child . $children . length ) {
getNuxtChildComponents ( $child , $components )
}
} )
return $components
}
2016-11-07 01:34:58 +00:00
function hotReloadAPI ( _app ) {
2016-12-24 13:15:00 +00:00
if ( ! module . hot ) return
2017-07-27 14:26:36 +00:00
2017-10-28 12:09:33 +00:00
let $components = getNuxtChildComponents ( _app . $nuxt , [ ] )
2017-07-27 14:26:36 +00:00
2017-03-16 17:52:06 +00:00
$components . forEach ( addHotReload . bind ( _app ) )
}
function addHotReload ( $component , depth ) {
if ( $component . $vnode . data . _hasHotReload ) return
$component . $vnode . data . _hasHotReload = true
2017-07-09 21:41:04 +00:00
2017-03-16 17:52:06 +00:00
var _forceUpdate = $component . $forceUpdate . bind ( $component . $parent )
2017-07-09 21:41:04 +00:00
2017-10-30 11:05:12 +00:00
$component . $vnode . context . $forceUpdate = async ( ) => {
2017-03-17 17:02:58 +00:00
let Components = getMatchedComponents ( router . currentRoute )
let Component = Components [ depth ]
2016-11-07 01:34:58 +00:00
if ( ! Component ) return _forceUpdate ( )
2016-11-19 21:16:26 +00:00
if ( typeof Component === 'object' && ! Component . options ) {
// Updated via vue-router resolveAsyncComponents()
Component = Vue . extend ( Component )
Component . _Ctor = Component
}
2017-03-16 17:52:06 +00:00
this . error ( )
2016-11-07 01:34:58 +00:00
let promises = [ ]
2016-11-10 23:01:36 +00:00
const next = function ( path ) {
< %= ( loading ? 'this.$loading.finish && this.$loading.finish()' : '' ) % >
router . push ( path )
}
2017-10-30 11:05:12 +00:00
await setContext ( app , {
2017-10-16 08:40:08 +00:00
route : router . currentRoute ,
isHMR : true ,
next : next . bind ( this )
} )
2017-10-28 12:09:33 +00:00
const context = app . context
2016-11-22 23:27:07 +00:00
< %= ( loading ? 'this.$loading.start && this.$loading.start()' : '' ) % >
2017-10-28 12:09:33 +00:00
callMiddleware . call ( this , Components , context )
2017-03-17 17:02:58 +00:00
. then ( ( ) => {
// If layout changed
if ( depth !== 0 ) return Promise . resolve ( )
let layout = Component . options . layout || 'default'
if ( typeof layout === 'function' ) {
layout = layout ( context )
}
if ( this . layoutName === layout ) return Promise . resolve ( )
let promise = this . loadLayout ( layout )
promise . then ( ( ) => {
this . setLayout ( layout )
Vue . nextTick ( ( ) => hotReloadAPI ( this ) )
} )
return promise
} )
. then ( ( ) => {
return callMiddleware . call ( this , Components , context , this . layout )
} )
. then ( ( ) => {
2017-04-14 14:31:14 +00:00
// Call asyncData(context)
2017-03-17 17:02:58 +00:00
let pAsyncData = promisify ( Component . options . asyncData || noopData , context )
pAsyncData . then ( ( asyncDataResult ) => {
2017-04-14 14:31:14 +00:00
applyAsyncData ( Component , asyncDataResult )
2017-03-17 17:02:58 +00:00
< %= ( loading ? 'this.$loading.increase && this.$loading.increase(30)' : '' ) % >
} )
promises . push ( pAsyncData )
// Call fetch()
Component . options . fetch = Component . options . fetch || noopFetch
let pFetch = Component . options . fetch ( context )
2017-04-06 09:09:56 +00:00
if ( ! pFetch || ( ! ( pFetch instanceof Promise ) && ( typeof pFetch . then !== 'function' ) ) ) { pFetch = Promise . resolve ( pFetch ) }
2017-03-17 17:02:58 +00:00
< %= ( loading ? 'pFetch.then(() => this.$loading.increase && this.$loading.increase(30))' : '' ) % >
promises . push ( pFetch )
return Promise . all ( promises )
} )
. then ( ( ) => {
2016-11-10 23:01:36 +00:00
< %= ( loading ? 'this.$loading.finish && this.$loading.finish()' : '' ) % >
2016-11-07 01:34:58 +00:00
_forceUpdate ( )
2017-03-16 17:52:06 +00:00
setTimeout ( ( ) => hotReloadAPI ( this ) , 100 )
2016-11-07 01:34:58 +00:00
} )
}
}
2017-07-09 21:41:04 +00:00
< % } % >
2016-11-07 01:34:58 +00:00
2017-07-09 21:41:04 +00:00
async function mountApp ( _ _app ) {
// Set global variables
2017-05-21 19:00:41 +00:00
app = _ _app . app
router = _ _app . router
2017-07-09 21:41:04 +00:00
< % if ( store ) { % > store = _ _app . store < % } % >
// Resolve route components
2017-05-26 11:41:18 +00:00
const Components = await Promise . all ( resolveComponents ( router ) )
2017-07-09 21:41:04 +00:00
// Create Vue instance
2016-11-07 01:34:58 +00:00
const _app = new Vue ( app )
2017-07-09 21:41:04 +00:00
2017-11-14 08:53:01 +00:00
< % if ( mode !== 'spa' ) { % >
// Load layout
2017-05-26 11:41:18 +00:00
const layout = NUXT . layout || 'default'
await _app . loadLayout ( layout )
_app . setLayout ( layout )
2017-11-14 08:53:01 +00:00
< % } % >
2017-07-09 21:41:04 +00:00
// Mounts Vue app to DOM element
2017-11-07 15:25:56 +00:00
const mount = ( ) => {
2016-11-21 13:14:35 +00:00
_app . $mount ( '#__nuxt' )
2017-07-09 21:41:04 +00:00
// Listen for first Vue update
2017-03-02 16:31:37 +00:00
Vue . nextTick ( ( ) => {
// Call window.onNuxtReady callbacks
nuxtReady ( _app )
2017-07-09 21:41:04 +00:00
< % if ( isDev ) { % >
// Enable hot reloading
hotReloadAPI ( _app )
< % } % >
2017-03-02 16:31:37 +00:00
} )
2016-11-21 13:14:35 +00:00
}
2017-07-09 21:41:04 +00:00
// Enable transitions
2017-10-16 08:40:08 +00:00
_app . setTransitions = _app . $options . nuxt . setTransitions . bind ( _app )
2016-12-16 16:46:09 +00:00
if ( Components . length ) {
_app . setTransitions ( mapTransitions ( Components , router . currentRoute ) )
2017-07-09 21:41:04 +00:00
_lastPaths = router . currentRoute . matched . map ( route => compile ( route . path ) ( router . currentRoute . params ) )
2016-12-16 16:46:09 +00:00
}
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
// Initialize error handler
_app . $loading = { } // To avoid error while _app.$nuxt does not exist
2016-11-07 01:34:58 +00:00
if ( NUXT . error ) _app . error ( NUXT . error )
2017-07-09 21:41:04 +00:00
2016-11-07 01:34:58 +00:00
// Add router hooks
router . beforeEach ( loadAsyncComponents . bind ( _app ) )
router . beforeEach ( render . bind ( _app ) )
2017-01-20 17:32:43 +00:00
router . afterEach ( normalizeComponents )
2016-11-22 23:27:07 +00:00
router . afterEach ( fixPrepatch . bind ( _app ) )
2017-07-27 14:26:36 +00:00
2017-07-09 21:41:04 +00:00
// If page already is server rendered
2016-11-11 00:11:21 +00:00
if ( NUXT . serverRendered ) {
2017-11-07 15:25:56 +00:00
mount ( )
2016-11-11 00:11:21 +00:00
return
2016-11-07 01:34:58 +00:00
}
2017-07-09 21:41:04 +00:00
2017-09-22 14:05:59 +00:00
// First render on client-side
render . call ( _app , router . currentRoute , router . currentRoute , ( path ) => {
// If not redirected
2017-07-09 21:41:04 +00:00
if ( ! path ) {
normalizeComponents ( router . currentRoute , router . currentRoute )
2017-10-28 20:42:51 +00:00
showNextPage . call ( _app , router . currentRoute )
2017-09-22 14:05:59 +00:00
// Dont call fixPrepatch.call(_app, router.currentRoute, router.currentRoute) since it's first render
2017-11-07 15:25:56 +00:00
mount ( )
2016-11-11 00:11:21 +00:00
return
}
2017-07-09 21:41:04 +00:00
// Push the path and then mount app
2018-01-11 08:59:55 +00:00
router . push ( path , ( ) => mount ( ) , ( err ) => {
2018-01-11 11:56:37 +00:00
if ( ! err ) return mount ( )
console . error ( err )
2018-01-11 08:59:55 +00:00
} )
2016-11-11 00:11:21 +00:00
} )
2017-07-27 14:26:36 +00:00
}