mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
0c6c69b011
resolves: #4080
148 lines
4.7 KiB
JavaScript
148 lines
4.7 KiB
JavaScript
import Vue from 'vue'
|
|
<% if (loading) { %>import NuxtLoading from '<%= (typeof loading === "string" ? loading : "./components/nuxt-loading.vue") %>'<% } %>
|
|
<% css.forEach((c) => { %>
|
|
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)`
|
|
} else {
|
|
return `import _${hash(key)} from '${layouts[key]}'`
|
|
}
|
|
}).join('\n') %>
|
|
|
|
const layouts = { <%= Object.keys(layouts).map(key => `"_${key}": _${hash(key)}`).join(',') %> }<%= isTest ? '// eslint-disable-line' : '' %>
|
|
|
|
<% if (splitChunks.layouts) { %>let resolvedLayouts = {}<% } %>
|
|
|
|
export default {
|
|
<%= 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(') %>,
|
|
<%= isTest ? '/* eslint-enable quotes, semi, indent, comma-spacing, key-spacing, object-curly-spacing, object-property-newline, arrow-parens */' : '' %>
|
|
render(h, props) {
|
|
<% if (loading) { %>const loadingEl = h('NuxtLoading', { ref: 'loading' })<% } %>
|
|
const layoutEl = h(this.layout || 'nuxt')
|
|
const templateEl = h('div', {
|
|
domProps: {
|
|
id: '__layout'
|
|
},
|
|
key: this.layoutName
|
|
}, [ layoutEl ])
|
|
|
|
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')
|
|
})
|
|
}
|
|
}
|
|
}, [ templateEl ])
|
|
|
|
return h('div', {
|
|
domProps: {
|
|
id: '<%= globals.id %>'
|
|
}
|
|
}, [
|
|
<% if (loading) { %>loadingEl,<% } %>
|
|
transitionEl
|
|
])
|
|
},
|
|
data: () => ({
|
|
layout: null,
|
|
layoutName: ''
|
|
}),
|
|
beforeCreate() {
|
|
Vue.util.defineReactive(this, 'nuxt', this.$options.nuxt)
|
|
},
|
|
created() {
|
|
// Add this.$nuxt in child instances
|
|
Vue.prototype.<%= globals.nuxt %> = this
|
|
// 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 } }
|
|
<% } %>
|
|
}
|
|
// Add $nuxt.error()
|
|
this.error = this.nuxt.error
|
|
},
|
|
<% if (loading) { %>
|
|
mounted() {
|
|
this.$loading = this.$refs.loading
|
|
},
|
|
watch: {
|
|
'nuxt.err': 'errorChanged'
|
|
},
|
|
<% } %>
|
|
methods: {
|
|
<% if (loading) { %>
|
|
errorChanged() {
|
|
if (this.nuxt.err && this.$loading) {
|
|
if (this.$loading.fail) this.$loading.fail()
|
|
if (this.$loading.finish) this.$loading.finish()
|
|
}
|
|
},
|
|
<% } %>
|
|
<% if (splitChunks.layouts) { %>
|
|
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'
|
|
this.layoutName = layout
|
|
let _layout = '_' + layout
|
|
this.layout = resolvedLayouts[_layout]
|
|
return this.layout
|
|
},
|
|
loadLayout(layout) {
|
|
const undef = !layout
|
|
const inexisting = !(layouts['_' + layout] || resolvedLayouts['_' + layout])
|
|
let _layout = '_' + ((undef || inexisting) ? 'default' : layout)
|
|
if (resolvedLayouts[_layout]) {
|
|
return Promise.resolve(resolvedLayouts[_layout])
|
|
}
|
|
return layouts[_layout]()
|
|
.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 })
|
|
}
|
|
})
|
|
}
|
|
<% } 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'
|
|
}
|
|
this.layoutName = layout
|
|
this.layout = layouts['_' + layout]
|
|
return this.layout
|
|
},
|
|
loadLayout(layout) {
|
|
if (!layout || !layouts['_' + layout]) {
|
|
layout = 'default'
|
|
}
|
|
return Promise.resolve(layouts['_' + layout])
|
|
}
|
|
<% } %>
|
|
},
|
|
components: {
|
|
<%= (loading ? 'NuxtLoading' : '') %>
|
|
}
|
|
}
|