123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- import Vue from 'vue'
- import Vuex from 'vuex'
- import Meta from 'vue-meta'
- import ClientOnly from 'vue-client-only'
- import NoSsr from 'vue-no-ssr'
- import { createRouter } from './router.js'
- import NuxtChild from './components/nuxt-child.js'
- import NuxtError from '../layouts/error.vue'
- import Nuxt from './components/nuxt.js'
- import App from './App.js'
- import { setContext, getLocation, getRouteData, normalizeError } from './utils'
- import { createStore } from './store.js'
- import nuxt_plugin_plugin_ea7b88a6 from 'nuxt_plugin_plugin_ea7b88a6'
- import nuxt_plugin_cookieuniversalnuxt_ec9d082a from 'nuxt_plugin_cookieuniversalnuxt_ec9d082a'
- import nuxt_plugin_axios_0a06c243 from 'nuxt_plugin_axios_0a06c243'
- import nuxt_plugin_elementui_d905880e from 'nuxt_plugin_elementui_d905880e'
- import nuxt_plugin_axios_397e53b5 from 'nuxt_plugin_axios_397e53b5'
- import nuxt_plugin_router_aacea2cc from 'nuxt_plugin_router_aacea2cc'
- import nuxt_plugin_utils_f95abccc from 'nuxt_plugin_utils_f95abccc'
- import nuxt_plugin_oss_3a95eb7c from 'nuxt_plugin_oss_3a95eb7c'
- import nuxt_plugin_iconfont_33f0deef from 'nuxt_plugin_iconfont_33f0deef'
- import nuxt_plugin_googlemap_5f55f1ca from 'nuxt_plugin_googlemap_5f55f1ca'
- import nuxt_plugin_clarity_1b0f0657 from 'nuxt_plugin_clarity_1b0f0657'
- import nuxt_plugin_baiduanalytics_d15d77d2 from 'nuxt_plugin_baiduanalytics_d15d77d2'
- import nuxt_plugin_googleanalytics_2e7ddd5e from 'nuxt_plugin_googleanalytics_2e7ddd5e'
- Vue.component(ClientOnly.name, ClientOnly)
- Vue.component(NoSsr.name, {
- ...NoSsr,
- render (h, ctx) {
- if (process.client && !NoSsr._warned) {
- NoSsr._warned = true
- console.warn('<no-ssr> has been deprecated and will be removed in Nuxt 3, please use <client-only> instead')
- }
- return NoSsr.render(h, ctx)
- }
- })
- Vue.component(NuxtChild.name, NuxtChild)
- Vue.component('NChild', NuxtChild)
- Vue.component(Nuxt.name, Nuxt)
- Object.defineProperty(Vue.prototype, '$nuxt', {
- get() {
- const globalNuxt = this.$root ? this.$root.$options.$nuxt : null
- if (process.client && !globalNuxt && typeof window !== 'undefined') {
- return window.$nuxt
- }
- return globalNuxt
- },
- configurable: true
- })
- Vue.use(Meta, {"keyName":"head","attribute":"data-n-head","ssrAttribute":"data-n-head-ssr","tagIDKeyName":"hid"})
- const defaultTransition = {"name":"page","mode":"out-in","appear":false,"appearClass":"appear","appearActiveClass":"appear-active","appearToClass":"appear-to"}
- const originalRegisterModule = Vuex.Store.prototype.registerModule
- function registerModule (path, rawModule, options = {}) {
- const preserveState = process.client && (
- Array.isArray(path)
- ? !!path.reduce((namespacedState, path) => namespacedState && namespacedState[path], this.state)
- : path in this.state
- )
- return originalRegisterModule.call(this, path, rawModule, { preserveState, ...options })
- }
- async function createApp(ssrContext, config = {}) {
- const store = createStore(ssrContext)
- const router = await createRouter(ssrContext, config, { store })
-
- store.$router = router
-
- store.registerModule = registerModule
-
-
-
- const app = {
- head: {"title":" ","htmlAttrs":{"lang":"en"},"meta":[{"charset":"utf-8"},{"name":"google-site-verification","content":"fQgAl9rz9JmPUq85LR8zGTHR7KxbCz19V1pBqiQc27Q"},{"name":"viewport","content":"width=1400, initial-scale=0.5"},{"hid":"description","name":"description","content":"Promotional Products, Lanyards, Flash Drives, Mousemats."},{"hid":"keywords","name":"keywords","content":"PromoCollection"},{"name":"format-detection","content":"telephone=no"}],"link":[{"rel":"icon","type":"image\u002Fx-icon","href":"","id":"favicon"}],"script":[{"src":"\u002F\u002Fyun.baoxiaohe.com\u002Fopenflatform\u002Fsdk\u002Fv2.2\u002Fstaticwwnf5q1r.js"}],"style":[]},
- store,
- router,
- nuxt: {
- defaultTransition,
- transitions: [defaultTransition],
- setTransitions (transitions) {
- if (!Array.isArray(transitions)) {
- transitions = [transitions]
- }
- transitions = transitions.map((transition) => {
- if (!transition) {
- transition = defaultTransition
- } else if (typeof transition === 'string') {
- transition = Object.assign({}, defaultTransition, { name: transition })
- } else {
- transition = Object.assign({}, defaultTransition, transition)
- }
- return transition
- })
- this.$options.nuxt.transitions = transitions
- return transitions
- },
- err: null,
- errPageReady: false,
- dateErr: null,
- error (err) {
- err = err || null
- app.context._errored = Boolean(err)
- err = err ? normalizeError(err) : null
- let nuxt = app.nuxt
- if (this) {
- nuxt = this.nuxt || this.$options.nuxt
- }
- nuxt.dateErr = Date.now()
- nuxt.err = err
- nuxt.errPageReady = false
-
- if (ssrContext) {
- ssrContext.nuxt.error = err
- }
- return err
- }
- },
- ...App
- }
-
- store.app = app
- const next = ssrContext ? ssrContext.next : location => app.router.push(location)
-
- let route
- if (ssrContext) {
- route = router.resolve(ssrContext.url).route
- } else {
- const path = getLocation(router.options.base, router.options.mode)
- route = router.resolve(path).route
- }
-
- await setContext(app, {
- store,
- route,
- next,
- error: app.nuxt.error.bind(app),
- payload: ssrContext ? ssrContext.payload : undefined,
- req: ssrContext ? ssrContext.req : undefined,
- res: ssrContext ? ssrContext.res : undefined,
- beforeRenderFns: ssrContext ? ssrContext.beforeRenderFns : undefined,
- beforeSerializeFns: ssrContext ? ssrContext.beforeSerializeFns : undefined,
- ssrContext
- })
- function inject(key, value) {
- if (!key) {
- throw new Error('inject(key, value) has no key provided')
- }
- if (value === undefined) {
- throw new Error(`inject('${key}', value) has no value provided`)
- }
- key = '$' + key
-
- app[key] = value
-
- if (!app.context[key]) {
- app.context[key] = value
- }
-
- store[key] = app[key]
-
- const installKey = '__nuxt_' + key + '_installed__'
- if (Vue[installKey]) {
- return
- }
- Vue[installKey] = true
-
- Vue.use(() => {
- if (!Object.prototype.hasOwnProperty.call(Vue.prototype, key)) {
- Object.defineProperty(Vue.prototype, key, {
- get () {
- return this.$root.$options[key]
- }
- })
- }
- })
- }
-
- inject('config', config)
- if (process.client) {
-
- if (window.__NUXT__ && window.__NUXT__.state) {
- store.replaceState(window.__NUXT__.state)
- }
- }
-
- if (process.static && process.client) {
- app.context.enablePreview = function (previewData = {}) {
- app.previewData = Object.assign({}, previewData)
- inject('preview', previewData)
- }
- }
-
- if (typeof nuxt_plugin_plugin_ea7b88a6 === 'function') {
- await nuxt_plugin_plugin_ea7b88a6(app.context, inject)
- }
- if (typeof nuxt_plugin_cookieuniversalnuxt_ec9d082a === 'function') {
- await nuxt_plugin_cookieuniversalnuxt_ec9d082a(app.context, inject)
- }
- if (typeof nuxt_plugin_axios_0a06c243 === 'function') {
- await nuxt_plugin_axios_0a06c243(app.context, inject)
- }
- if (typeof nuxt_plugin_elementui_d905880e === 'function') {
- await nuxt_plugin_elementui_d905880e(app.context, inject)
- }
- if (typeof nuxt_plugin_axios_397e53b5 === 'function') {
- await nuxt_plugin_axios_397e53b5(app.context, inject)
- }
- if (typeof nuxt_plugin_router_aacea2cc === 'function') {
- await nuxt_plugin_router_aacea2cc(app.context, inject)
- }
- if (typeof nuxt_plugin_utils_f95abccc === 'function') {
- await nuxt_plugin_utils_f95abccc(app.context, inject)
- }
- if (typeof nuxt_plugin_oss_3a95eb7c === 'function') {
- await nuxt_plugin_oss_3a95eb7c(app.context, inject)
- }
- if (process.client && typeof nuxt_plugin_iconfont_33f0deef === 'function') {
- await nuxt_plugin_iconfont_33f0deef(app.context, inject)
- }
- if (process.client && typeof nuxt_plugin_googlemap_5f55f1ca === 'function') {
- await nuxt_plugin_googlemap_5f55f1ca(app.context, inject)
- }
- if (process.client && typeof nuxt_plugin_clarity_1b0f0657 === 'function') {
- await nuxt_plugin_clarity_1b0f0657(app.context, inject)
- }
- if (process.client && typeof nuxt_plugin_baiduanalytics_d15d77d2 === 'function') {
- await nuxt_plugin_baiduanalytics_d15d77d2(app.context, inject)
- }
- if (process.client && typeof nuxt_plugin_googleanalytics_2e7ddd5e === 'function') {
- await nuxt_plugin_googleanalytics_2e7ddd5e(app.context, inject)
- }
-
- if (process.static && process.client) {
- app.context.enablePreview = function () {
- console.warn('You cannot call enablePreview() outside a plugin.')
- }
- }
-
- await new Promise((resolve, reject) => {
-
- if (process.client) {
- const { route } = router.resolve(app.context.route.fullPath)
- if (!route.matched.length) {
- return resolve()
- }
- }
- router.replace(app.context.route.fullPath, resolve, (err) => {
-
- if (!err._isRouter) return reject(err)
- if (err.type !== 2 ) return resolve()
-
- const unregister = router.afterEach(async (to, from) => {
- if (process.server && ssrContext && ssrContext.url) {
- ssrContext.url = to.fullPath
- }
- app.context.route = await getRouteData(to)
- app.context.params = to.params || {}
- app.context.query = to.query || {}
- unregister()
- resolve()
- })
- })
- })
- return {
- store,
- app,
- router
- }
- }
- export { createApp, NuxtError }
|