Nuxt/lib/app/client.js

318 lines
11 KiB
JavaScript
Raw Normal View History

'use strict'
2016-11-07 01:34:58 +00:00
require('es6-object-assign').polyfill()
2016-11-16 16:55:15 +00:00
import 'es6-promise/auto'
2016-11-07 01:34:58 +00:00
import Vue from 'vue'
import { app, router<%= (store ? ', store' : '') %> } from './index'
import { getMatchedComponents, getMatchedComponentsInstances, flatMapComponents, getContext, promisify, getLocation, compile } from './utils'
2016-11-07 01:34:58 +00:00
const noopData = () => { return {} }
const noopFetch = () => {}
let _lastPaths = []
2016-12-20 12:44:00 +00:00
let _lastComponentsFiles = []
function mapTransitions(Components, to, from) {
return Components.map((Component) => {
let transition = Component.options.transition
if (typeof transition === 'function') {
return transition(to, from)
}
return transition
})
}
2016-11-07 01:34:58 +00:00
function loadAsyncComponents (to, ___, next) {
2016-11-07 01:34:58 +00:00
const resolveComponents = flatMapComponents(to, (Component, _, match, key) => {
if (typeof Component === 'function' && !Component.options) {
return new Promise(function (resolve, reject) {
const _resolve = (Component) => {
2016-11-18 13:45:25 +00:00
if (!Component.options) {
Component = Vue.extend(Component) // fix issue #6
Component._Ctor = Component
} else {
Component._Ctor = Component
Component.extendOptions = Component.options
}
2016-11-07 01:34:58 +00:00
match.components[key] = Component
resolve(Component)
}
Component().then(_resolve).catch(reject)
})
}
if (typeof Component === 'object' && !Component.options) {
// Updated via vue-router resolveAsyncComponents()
Component = Vue.extend(Component)
Component._Ctor = Component
match.components[key] = Component
}
2016-11-07 01:34:58 +00:00
return Component
})
<%= (loading ? 'this.$loading.start && this.$loading.start()' : '') %>
Promise.all(resolveComponents)
.then(() => next())
.catch((err) => {
this.error({ statusCode: 500, message: err.message })
next(false)
})
}
function render (to, from, next) {
2016-11-07 01:34:58 +00:00
let Components = getMatchedComponents(to)
if (!Components.length) {
this.error({ statusCode: 404, message: 'This page could not be found.', url: to.path })
return next()
}
// Update ._data and other properties if hot reloaded
Components.forEach(function (Component) {
if (!Component._data) {
Component._data = Component.options.data || noopData
2016-11-07 01:34:58 +00:00
}
if (Component._Ctor && Component._Ctor.options && Component._dataFn) {
Component.options.fetch = Component._Ctor.options.fetch
2016-11-07 01:34:58 +00:00
const originalDataFn = Component._data.toString().replace(/\s/g, '')
const dataFn = Component._dataFn
2016-11-07 01:34:58 +00:00
const newDataFn = (Component._Ctor.options.data || noopData).toString().replace(/\s/g, '')
// If component data method changed
if (newDataFn !== originalDataFn && newDataFn !== dataFn) {
Component._data = Component._Ctor.options.data || noopData
}
}
})
this.setTransitions(mapTransitions(Components, to, from))
2016-11-07 01:34:58 +00:00
this.error()
2016-11-10 23:01:36 +00:00
let nextCalled = false
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: to.params || {},
query: to.query || {}
})
})
if (!isValid) {
this.error({ statusCode: 404, message: 'This page could not be found.', url: to.path })
return next()
}
Promise.all(Components.map((Component, i) => {
// Check if only children route changed
Component._path = compile(to.matched[i].path)(to.params)
if (Component._path === _lastPaths[i] && (i + 1) !== Components.length) {
return Promise.resolve()
}
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()' : '') %>
nextCalled = true
next(path)
}
const context = getContext({ to<%= (store ? ', store' : '') %>, isClient: true, next: _next.bind(this), error: this.error.bind(this) })
2016-12-12 15:30:07 +00:00
// Validate method
2016-11-07 01:34:58 +00:00
if (Component._data && typeof Component._data === 'function') {
var promise = promisify(Component._data, context)
2016-11-07 01:34:58 +00:00
promise.then((data) => {
Component.options.data = () => data || {}
Component._dataFn = Component.options.data.toString().replace(/\s/g, '')
2016-11-07 01:34:58 +00:00
if (Component._Ctor && Component._Ctor.options) {
Component._Ctor.options.data = Component.options.data
2016-11-07 01:34:58 +00:00
}
2016-11-11 14:30:11 +00:00
<%= (loading ? 'this.$loading.increase && this.$loading.increase(30)' : '') %>
2016-11-07 01:34:58 +00:00
})
promises.push(promise)
}
if (Component.options.fetch) {
var p = Component.options.fetch(context)
if (!(p instanceof Promise)) { p = Promise.resolve(p) }
2016-11-07 01:34:58 +00:00
<%= (loading ? 'p.then(() => this.$loading.increase && this.$loading.increase(30))' : '') %>
promises.push(p)
}
return Promise.all(promises)
}))
.then(() => {
_lastPaths = Components.map((Component, i) => compile(to.matched[i].path)(to.params))
2016-11-07 01:34:58 +00:00
<%= (loading ? 'this.$loading.finish && this.$loading.finish()' : '') %>
2016-11-10 23:01:36 +00:00
// If not redirected
if (!nextCalled) {
next()
}
2016-11-07 01:34:58 +00:00
})
.catch((error) => {
_lastPaths = []
2016-11-07 01:34:58 +00:00
this.error(error)
next(false)
})
}
2016-11-22 23:27:07 +00:00
// 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
function fixPrepatch (to, ___) {
Vue.nextTick(() => {
let instances = getMatchedComponentsInstances(to)
2016-12-20 12:44:00 +00:00
_lastComponentsFiles = instances.map((instance, i) => {
if (!instance) return '';
2016-12-20 13:11:51 +00:00
if (_lastPaths[i] === instance.constructor._path && typeof instance.constructor.options.data === 'function') {
2016-11-22 23:27:07 +00:00
let newData = instance.constructor.options.data()
for (let key in newData) {
Vue.set(instance.$data, key, newData[key])
}
}
2016-12-20 12:44:00 +00:00
return instance.constructor.options.__file
2016-11-22 23:27:07 +00:00
})
})
}
2016-11-07 01:34:58 +00:00
// Special hot reload with data(context)
function hotReloadAPI (_app) {
const $nuxt = _app.$nuxt
var _forceUpdate = $nuxt.$forceUpdate.bind($nuxt)
$nuxt.$forceUpdate = function () {
2016-11-07 01:34:58 +00:00
let Component = getMatchedComponents(router.currentRoute)[0]
if (!Component) return _forceUpdate()
if (typeof Component === 'object' && !Component.options) {
// Updated via vue-router resolveAsyncComponents()
Component = Vue.extend(Component)
Component._Ctor = Component
}
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)
}
const context = getContext({ route: router.currentRoute<%= (store ? ', store' : '') %>, isClient: true, next: next.bind(this), error: _app.error })
2016-11-07 01:34:58 +00:00
// Check if data has been updated
const originalDataFn = (Component._data || noopData).toString().replace(/\s/g, '')
const newDataFn = (Component._Ctor.options.data || noopData).toString().replace(/\s/g, '')
if (originalDataFn !== newDataFn) {
Component._data = Component._Ctor.options.data || noopData
let p = promisify(Component._data, context)
2016-11-07 01:34:58 +00:00
p.then((data) => {
Component.options.data = () => data || {}
Component._dataFn = Component.options.data.toString().replace(/\s/g, '')
Component._Ctor.options.data = Component.options.data
2016-11-07 01:34:58 +00:00
<%= (loading ? 'this.$loading.increase && this.$loading.increase(30)' : '') %>
})
promises.push(p)
}
// Check if fetch has been updated
const originalFetchFn = (Component.options.fetch || noopFetch).toString().replace(/\s/g, '')
2016-11-07 01:34:58 +00:00
const newFetchFn = (Component._Ctor.options.fetch || noopFetch).toString().replace(/\s/g, '')
// Fetch has been updated, we call it to update the store
if (originalFetchFn !== newFetchFn) {
Component.options.fetch = Component._Ctor.options.fetch || noopFetch
let p = Component.options.fetch(context)
2016-11-07 01:34:58 +00:00
if (!(p instanceof Promise)) { p = Promise.resolve(p) }
<%= (loading ? 'p.then(() => this.$loading.increase && this.$loading.increase(30))' : '') %>
promises.push(p)
}
2016-11-22 23:27:07 +00:00
if (!promises.length) return;
<%= (loading ? 'this.$loading.start && this.$loading.start()' : '') %>
2016-11-07 01:34:58 +00:00
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()
})
}
}
// Load vue app
const NUXT = window.__NUXT__ || {}
if (!NUXT) {
throw new Error('[nuxt.js] cannot find the global variable __NUXT__, make sure the server is working.')
}
// Get matched components
const path = getLocation(router.options.base)
const resolveComponents = flatMapComponents(router.match(path), (Component, _, match, key, index) => {
if (typeof Component === 'function' && !Component.options) {
return new Promise(function (resolve, reject) {
const _resolve = (Component) => {
2016-11-18 13:45:25 +00:00
if (!Component.options) {
Component = Vue.extend(Component) // fix issue #6
Component._Ctor = Component
} else {
Component._Ctor = Component
Component.extendOptions = Component.options
}
if (Component.options.data && typeof Component.options.data === 'function') {
Component._data = Component.options.data
if (NUXT.serverRendered) {
Component.options.data = () => NUXT.data[index] || {}
Component._dataFn = Component.options.data.toString().replace(/\s/g, '')
}
2016-11-07 01:34:58 +00:00
if (Component._Ctor && Component._Ctor.options) {
Component._Ctor.options.data = Component.options.data
2016-11-07 01:34:58 +00:00
}
}
match.components[key] = Component
resolve(Component)
}
Component().then(_resolve).catch(reject)
})
}
return Component
})
2016-11-25 14:36:27 +00:00
function nuxtReady (app) {
2016-12-07 22:58:32 +00:00
window._nuxtReadyCbs.forEach((cb) => {
2016-11-25 14:36:27 +00:00
if (typeof cb === 'function') {
cb(app)
}
})
2016-12-07 22:43:57 +00:00
// Add router hooks
2016-12-07 22:58:32 +00:00
router.afterEach(function (to, from) {
2016-12-07 22:43:57 +00:00
app.$nuxt.$emit('routeChanged', to, from)
})
2016-11-25 14:36:27 +00:00
}
2016-11-07 01:34:58 +00:00
Promise.all(resolveComponents)
.then((Components) => {
const _app = new Vue(app)
const mountApp = () => {
_app.$mount('#__nuxt')
<% if (loading) { %>
// Special loading bar
_app.$loading = _app.$nuxt.$loading
<% } %>
// Hot reloading
if (module.hot) hotReloadAPI(_app)
2016-11-25 14:36:27 +00:00
// Call window.onNuxtReady callbacks
2016-12-09 17:54:17 +00:00
Vue.nextTick(() => nuxtReady(_app))
}
<% if (store) { %>
// Replace store state
if (NUXT.state) {
store.replaceState(NUXT.state)
}
<% } %>
_app.setTransitions = _app.$options._nuxt.setTransitions.bind(_app)
if (Components.length) {
_app.setTransitions(mapTransitions(Components, router.currentRoute))
_lastPaths = router.currentRoute.matched.map((route) => compile(route.path)(router.currentRoute.params))
2016-12-20 12:44:00 +00:00
_lastComponentsFiles = Components.map((Component) => Component.options.__file)
}
_app.error = _app.$options._nuxt.error.bind(_app)
_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)
// Add router hooks
router.beforeEach(loadAsyncComponents.bind(_app))
router.beforeEach(render.bind(_app))
2016-11-22 23:27:07 +00:00
router.afterEach(fixPrepatch.bind(_app))
if (NUXT.serverRendered) {
mountApp()
return
2016-11-07 01:34:58 +00:00
}
render.call(_app, router.currentRoute, router.currentRoute, function (path) {
if (path) {
let mounted = false
router.afterEach(function () {
if (mounted) return
mounted = true
mountApp()
})
router.push(path)
return
}
mountApp()
})
2016-11-07 01:34:58 +00:00
})
.catch((err) => {
2016-12-08 15:41:20 +00:00
console.error('[nuxt.js] Cannot load components', err) // eslint-disable-line no-console
2016-11-07 01:34:58 +00:00
})