Nuxt/packages/vue-app/template/App.js

148 lines
4.7 KiB
JavaScript
Raw Normal View History

import Vue from 'vue'
<% if (loading) { %>import NuxtLoading from '<%= (typeof loading === "string" ? loading : "./components/nuxt-loading.vue") %>'<% } %>
2018-08-15 13:23:03 +00:00
<% css.forEach((c) => { %>
2017-07-21 23:40:38 +00:00
import '<%= relativeToBuild(resolvePath(c.src || c)) %>'
<% }) %>
<%= Object.keys(layouts).map((key) => {
if (splitChunks.layouts) {
return `const _${hash(key)} = () => import('${layouts[key]}' /* webpackChunkName: "${wChunk('layouts/' + key)}" */).then(m => m.default || m)`
2018-03-13 14:36:49 +00:00
} else {
2018-03-13 16:41:20 +00:00
return `import _${hash(key)} from '${layouts[key]}'`
2018-03-13 14:36:49 +00:00
}
}).join('\n') %>
2016-12-24 00:55:32 +00:00
2018-10-24 13:46:06 +00:00
const layouts = { <%= Object.keys(layouts).map(key => `"_${key}": _${hash(key)}`).join(',') %> }<%= isTest ? '// eslint-disable-line' : '' %>
2018-03-13 14:36:49 +00:00
<% if (splitChunks.layouts) { %>let resolvedLayouts = {}<% } %>
2016-12-24 00:55:32 +00:00
export default {
2018-10-24 13:46:06 +00:00
<%= isTest ? '/* eslint-disable quotes, semi, indent, comma-spacing, key-spacing, object-curly-spacing, object-property-newline, arrow-parens */' : '' %>
head: <%= serialize(head).replace(/:\w+\(/gm, ':function(').replace('head(', 'function(') %>,
2018-10-24 13:46:06 +00:00
<%= isTest ? '/* eslint-enable quotes, semi, indent, comma-spacing, key-spacing, object-curly-spacing, object-property-newline, arrow-parens */' : '' %>
2017-10-07 09:43:09 +00:00
render(h, props) {
<% if (loading) { %>const loadingEl = h('NuxtLoading', { ref: 'loading' })<% } %>
2017-11-06 17:30:15 +00:00
const layoutEl = h(this.layout || 'nuxt')
const templateEl = h('div', {
domProps: {
id: '__layout'
},
2017-10-07 09:43:09 +00:00
key: this.layoutName
2017-11-06 17:30:15 +00:00
}, [ layoutEl ])
2017-10-07 09:43:09 +00:00
const transitionEl = h('transition', {
props: {
name: '<%= layoutTransition.name %>',
mode: '<%= layoutTransition.mode %>'
},
on: {
beforeEnter(el) {
// Ensure to trigger scroll event after calling scrollBehavior
window.<%= globals.nuxt %>.$nextTick(() => {
window.<%= globals.nuxt %>.$emit('triggerScroll')
})
}
2017-10-07 09:43:09 +00:00
}
2017-11-06 17:30:15 +00:00
}, [ templateEl ])
2017-10-07 09:43:09 +00:00
2018-10-24 13:46:06 +00:00
return h('div', {
2017-10-07 09:49:30 +00:00
domProps: {
id: '<%= globals.id %>'
2017-10-07 09:49:30 +00:00
}
}, [
2017-10-07 09:43:09 +00:00
<% if (loading) { %>loadingEl,<% } %>
transitionEl
])
},
2016-12-24 13:15:00 +00:00
data: () => ({
layout: null,
layoutName: ''
}),
2018-10-24 13:46:06 +00:00
beforeCreate() {
Vue.util.defineReactive(this, 'nuxt', this.$options.nuxt)
2017-08-14 22:58:45 +00:00
},
2018-10-24 13:46:06 +00:00
created() {
2017-08-14 22:58:45 +00:00
// Add this.$nuxt in child instances
Vue.prototype.<%= globals.nuxt %> = this
2017-08-14 22:58:45 +00:00
// add to window so we can listen when ready
if (typeof window !== 'undefined') {
window.<%= globals.nuxt %> = this
<% if (globals.nuxt !== '$nuxt') { %>
window.$nuxt = { $root: { constructor: this.$root.constructor } }
<% } %>
2017-08-14 22:58:45 +00:00
}
// Add $nuxt.error()
this.error = this.nuxt.error
},
<% if (loading) { %>
2018-10-24 13:46:06 +00:00
mounted() {
this.$loading = this.$refs.loading
},
2017-08-14 22:58:45 +00:00
watch: {
'nuxt.err': 'errorChanged'
},
2017-08-14 22:58:45 +00:00
<% } %>
2016-12-24 00:55:32 +00:00
methods: {
2017-08-14 22:58:45 +00:00
<% if (loading) { %>
2018-10-24 13:46:06 +00:00
errorChanged() {
2017-08-14 22:58:45 +00:00
if (this.nuxt.err && this.$loading) {
if (this.$loading.fail) this.$loading.fail()
if (this.$loading.finish) this.$loading.finish()
}
},
<% } %>
<% if (splitChunks.layouts) { %>
2018-10-24 13:46:06 +00:00
setLayout(layout) {
<% if (debug) { %>
if(layout && typeof layout !== 'string') throw new Error('[nuxt] Avoid using non-string value as layout property.')
<% } %>
if (!layout || !resolvedLayouts['_' + layout]) layout = 'default'
2016-12-24 13:15:00 +00:00
this.layoutName = layout
2016-12-24 11:34:41 +00:00
let _layout = '_' + layout
this.layout = resolvedLayouts[_layout]
2017-02-20 22:11:34 +00:00
return this.layout
2016-12-24 11:34:41 +00:00
},
2018-10-24 13:46:06 +00:00
loadLayout(layout) {
const undef = !layout
2018-12-12 06:31:49 +00:00
const nonexistent = !(layouts['_' + layout] || resolvedLayouts['_' + layout])
let _layout = '_' + ((undef || nonexistent) ? 'default' : layout)
if (resolvedLayouts[_layout]) {
return Promise.resolve(resolvedLayouts[_layout])
2017-02-20 22:11:34 +00:00
}
2016-12-24 11:34:41 +00:00
return layouts[_layout]()
2018-03-13 14:36:49 +00:00
.then((Component) => {
resolvedLayouts[_layout] = Component
delete layouts[_layout]
return resolvedLayouts[_layout]
})
.catch((e) => {
if (this.<%= globals.nuxt %>) {
return this.<%= globals.nuxt %>.error({ statusCode: 500, message: e.message })
2018-03-13 14:36:49 +00:00
}
})
2016-12-24 00:55:32 +00:00
}
2018-03-13 14:36:49 +00:00
<% } else { %>
setLayout(layout) {
<% if (debug) { %>
if(layout && typeof layout !== 'string') throw new Error('[nuxt] Avoid using non-string value as layout property.')
<% } %>
if (!layout || !layouts['_' + layout]) {
layout = 'default'
}
2018-03-13 14:36:49 +00:00
this.layoutName = layout
this.layout = layouts['_' + layout]
return this.layout
},
loadLayout(layout) {
if (!layout || !layouts['_' + layout]) {
layout = 'default'
}
2018-03-13 14:36:49 +00:00
return Promise.resolve(layouts['_' + layout])
}
<% } %>
},
components: {
<%= (loading ? 'NuxtLoading' : '') %>
2016-12-24 00:55:32 +00:00
}
}