index.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import Meta from 'vue-meta'
  4. import ClientOnly from 'vue-client-only'
  5. import NoSsr from 'vue-no-ssr'
  6. import { createRouter } from './router.js'
  7. import NuxtChild from './components/nuxt-child.js'
  8. import NuxtError from '../layouts/error.vue'
  9. import Nuxt from './components/nuxt.js'
  10. import App from './App.js'
  11. import { setContext, getLocation, getRouteData, normalizeError } from './utils'
  12. import { createStore } from './store.js'
  13. /* Plugins */
  14. import nuxt_plugin_plugin_ea7b88a6 from 'nuxt_plugin_plugin_ea7b88a6' // Source: ./components/plugin.js (mode: 'all')
  15. import nuxt_plugin_cookieuniversalnuxt_ec9d082a from 'nuxt_plugin_cookieuniversalnuxt_ec9d082a' // Source: ./cookie-universal-nuxt.js (mode: 'all')
  16. import nuxt_plugin_axios_0a06c243 from 'nuxt_plugin_axios_0a06c243' // Source: ./axios.js (mode: 'all')
  17. import nuxt_plugin_elementui_d905880e from 'nuxt_plugin_elementui_d905880e' // Source: ../plugins/element-ui (mode: 'all')
  18. import nuxt_plugin_axios_397e53b5 from 'nuxt_plugin_axios_397e53b5' // Source: ../plugins/axios.js (mode: 'all')
  19. import nuxt_plugin_router_aacea2cc from 'nuxt_plugin_router_aacea2cc' // Source: ../plugins/router.js (mode: 'all')
  20. import nuxt_plugin_utils_f95abccc from 'nuxt_plugin_utils_f95abccc' // Source: ../plugins/utils.js (mode: 'all')
  21. import nuxt_plugin_oss_3a95eb7c from 'nuxt_plugin_oss_3a95eb7c' // Source: ../plugins/oss.js (mode: 'all')
  22. import nuxt_plugin_iconfont_33f0deef from 'nuxt_plugin_iconfont_33f0deef' // Source: ../assets/iconfont/iconfont.js (mode: 'client')
  23. import nuxt_plugin_googlemap_5f55f1ca from 'nuxt_plugin_googlemap_5f55f1ca' // Source: ../assets/googlemap.js (mode: 'client')
  24. import nuxt_plugin_clarity_1b0f0657 from 'nuxt_plugin_clarity_1b0f0657' // Source: ../plugins/clarity.js (mode: 'client')
  25. import nuxt_plugin_baiduanalytics_d15d77d2 from 'nuxt_plugin_baiduanalytics_d15d77d2' // Source: ../plugins/baidu-analytics.js (mode: 'client')
  26. import nuxt_plugin_googleanalytics_2e7ddd5e from 'nuxt_plugin_googleanalytics_2e7ddd5e' // Source: ../plugins/google-analytics.js (mode: 'client')
  27. // Component: <ClientOnly>
  28. Vue.component(ClientOnly.name, ClientOnly)
  29. // TODO: Remove in Nuxt 3: <NoSsr>
  30. Vue.component(NoSsr.name, {
  31. ...NoSsr,
  32. render (h, ctx) {
  33. if (process.client && !NoSsr._warned) {
  34. NoSsr._warned = true
  35. console.warn('<no-ssr> has been deprecated and will be removed in Nuxt 3, please use <client-only> instead')
  36. }
  37. return NoSsr.render(h, ctx)
  38. }
  39. })
  40. // Component: <NuxtChild>
  41. Vue.component(NuxtChild.name, NuxtChild)
  42. Vue.component('NChild', NuxtChild)
  43. // Component NuxtLink is imported in server.js or client.js
  44. // Component: <Nuxt>
  45. Vue.component(Nuxt.name, Nuxt)
  46. Object.defineProperty(Vue.prototype, '$nuxt', {
  47. get() {
  48. const globalNuxt = this.$root ? this.$root.$options.$nuxt : null
  49. if (process.client && !globalNuxt && typeof window !== 'undefined') {
  50. return window.$nuxt
  51. }
  52. return globalNuxt
  53. },
  54. configurable: true
  55. })
  56. Vue.use(Meta, {"keyName":"head","attribute":"data-n-head","ssrAttribute":"data-n-head-ssr","tagIDKeyName":"hid"})
  57. const defaultTransition = {"name":"page","mode":"out-in","appear":false,"appearClass":"appear","appearActiveClass":"appear-active","appearToClass":"appear-to"}
  58. const originalRegisterModule = Vuex.Store.prototype.registerModule
  59. function registerModule (path, rawModule, options = {}) {
  60. const preserveState = process.client && (
  61. Array.isArray(path)
  62. ? !!path.reduce((namespacedState, path) => namespacedState && namespacedState[path], this.state)
  63. : path in this.state
  64. )
  65. return originalRegisterModule.call(this, path, rawModule, { preserveState, ...options })
  66. }
  67. async function createApp(ssrContext, config = {}) {
  68. const store = createStore(ssrContext)
  69. const router = await createRouter(ssrContext, config, { store })
  70. // Add this.$router into store actions/mutations
  71. store.$router = router
  72. // Fix SSR caveat https://github.com/nuxt/nuxt.js/issues/3757#issuecomment-414689141
  73. store.registerModule = registerModule
  74. // Create Root instance
  75. // here we inject the router and store to all child components,
  76. // making them available everywhere as `this.$router` and `this.$store`.
  77. const app = {
  78. 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":[]},
  79. store,
  80. router,
  81. nuxt: {
  82. defaultTransition,
  83. transitions: [defaultTransition],
  84. setTransitions (transitions) {
  85. if (!Array.isArray(transitions)) {
  86. transitions = [transitions]
  87. }
  88. transitions = transitions.map((transition) => {
  89. if (!transition) {
  90. transition = defaultTransition
  91. } else if (typeof transition === 'string') {
  92. transition = Object.assign({}, defaultTransition, { name: transition })
  93. } else {
  94. transition = Object.assign({}, defaultTransition, transition)
  95. }
  96. return transition
  97. })
  98. this.$options.nuxt.transitions = transitions
  99. return transitions
  100. },
  101. err: null,
  102. errPageReady: false,
  103. dateErr: null,
  104. error (err) {
  105. err = err || null
  106. app.context._errored = Boolean(err)
  107. err = err ? normalizeError(err) : null
  108. let nuxt = app.nuxt // to work with @vue/composition-api, see https://github.com/nuxt/nuxt.js/issues/6517#issuecomment-573280207
  109. if (this) {
  110. nuxt = this.nuxt || this.$options.nuxt
  111. }
  112. nuxt.dateErr = Date.now()
  113. nuxt.err = err
  114. nuxt.errPageReady = false
  115. // Used in src/server.js
  116. if (ssrContext) {
  117. ssrContext.nuxt.error = err
  118. }
  119. return err
  120. }
  121. },
  122. ...App
  123. }
  124. // Make app available into store via this.app
  125. store.app = app
  126. const next = ssrContext ? ssrContext.next : location => app.router.push(location)
  127. // Resolve route
  128. let route
  129. if (ssrContext) {
  130. route = router.resolve(ssrContext.url).route
  131. } else {
  132. const path = getLocation(router.options.base, router.options.mode)
  133. route = router.resolve(path).route
  134. }
  135. // Set context to app.context
  136. await setContext(app, {
  137. store,
  138. route,
  139. next,
  140. error: app.nuxt.error.bind(app),
  141. payload: ssrContext ? ssrContext.payload : undefined,
  142. req: ssrContext ? ssrContext.req : undefined,
  143. res: ssrContext ? ssrContext.res : undefined,
  144. beforeRenderFns: ssrContext ? ssrContext.beforeRenderFns : undefined,
  145. beforeSerializeFns: ssrContext ? ssrContext.beforeSerializeFns : undefined,
  146. ssrContext
  147. })
  148. function inject(key, value) {
  149. if (!key) {
  150. throw new Error('inject(key, value) has no key provided')
  151. }
  152. if (value === undefined) {
  153. throw new Error(`inject('${key}', value) has no value provided`)
  154. }
  155. key = '$' + key
  156. // Add into app
  157. app[key] = value
  158. // Add into context
  159. if (!app.context[key]) {
  160. app.context[key] = value
  161. }
  162. // Add into store
  163. store[key] = app[key]
  164. // Check if plugin not already installed
  165. const installKey = '__nuxt_' + key + '_installed__'
  166. if (Vue[installKey]) {
  167. return
  168. }
  169. Vue[installKey] = true
  170. // Call Vue.use() to install the plugin into vm
  171. Vue.use(() => {
  172. if (!Object.prototype.hasOwnProperty.call(Vue.prototype, key)) {
  173. Object.defineProperty(Vue.prototype, key, {
  174. get () {
  175. return this.$root.$options[key]
  176. }
  177. })
  178. }
  179. })
  180. }
  181. // Inject runtime config as $config
  182. inject('config', config)
  183. if (process.client) {
  184. // Replace store state before plugins execution
  185. if (window.__NUXT__ && window.__NUXT__.state) {
  186. store.replaceState(window.__NUXT__.state)
  187. }
  188. }
  189. // Add enablePreview(previewData = {}) in context for plugins
  190. if (process.static && process.client) {
  191. app.context.enablePreview = function (previewData = {}) {
  192. app.previewData = Object.assign({}, previewData)
  193. inject('preview', previewData)
  194. }
  195. }
  196. // Plugin execution
  197. if (typeof nuxt_plugin_plugin_ea7b88a6 === 'function') {
  198. await nuxt_plugin_plugin_ea7b88a6(app.context, inject)
  199. }
  200. if (typeof nuxt_plugin_cookieuniversalnuxt_ec9d082a === 'function') {
  201. await nuxt_plugin_cookieuniversalnuxt_ec9d082a(app.context, inject)
  202. }
  203. if (typeof nuxt_plugin_axios_0a06c243 === 'function') {
  204. await nuxt_plugin_axios_0a06c243(app.context, inject)
  205. }
  206. if (typeof nuxt_plugin_elementui_d905880e === 'function') {
  207. await nuxt_plugin_elementui_d905880e(app.context, inject)
  208. }
  209. if (typeof nuxt_plugin_axios_397e53b5 === 'function') {
  210. await nuxt_plugin_axios_397e53b5(app.context, inject)
  211. }
  212. if (typeof nuxt_plugin_router_aacea2cc === 'function') {
  213. await nuxt_plugin_router_aacea2cc(app.context, inject)
  214. }
  215. if (typeof nuxt_plugin_utils_f95abccc === 'function') {
  216. await nuxt_plugin_utils_f95abccc(app.context, inject)
  217. }
  218. if (typeof nuxt_plugin_oss_3a95eb7c === 'function') {
  219. await nuxt_plugin_oss_3a95eb7c(app.context, inject)
  220. }
  221. if (process.client && typeof nuxt_plugin_iconfont_33f0deef === 'function') {
  222. await nuxt_plugin_iconfont_33f0deef(app.context, inject)
  223. }
  224. if (process.client && typeof nuxt_plugin_googlemap_5f55f1ca === 'function') {
  225. await nuxt_plugin_googlemap_5f55f1ca(app.context, inject)
  226. }
  227. if (process.client && typeof nuxt_plugin_clarity_1b0f0657 === 'function') {
  228. await nuxt_plugin_clarity_1b0f0657(app.context, inject)
  229. }
  230. if (process.client && typeof nuxt_plugin_baiduanalytics_d15d77d2 === 'function') {
  231. await nuxt_plugin_baiduanalytics_d15d77d2(app.context, inject)
  232. }
  233. if (process.client && typeof nuxt_plugin_googleanalytics_2e7ddd5e === 'function') {
  234. await nuxt_plugin_googleanalytics_2e7ddd5e(app.context, inject)
  235. }
  236. // Lock enablePreview in context
  237. if (process.static && process.client) {
  238. app.context.enablePreview = function () {
  239. console.warn('You cannot call enablePreview() outside a plugin.')
  240. }
  241. }
  242. // Wait for async component to be resolved first
  243. await new Promise((resolve, reject) => {
  244. // Ignore 404s rather than blindly replacing URL in browser
  245. if (process.client) {
  246. const { route } = router.resolve(app.context.route.fullPath)
  247. if (!route.matched.length) {
  248. return resolve()
  249. }
  250. }
  251. router.replace(app.context.route.fullPath, resolve, (err) => {
  252. // https://github.com/vuejs/vue-router/blob/v3.4.3/src/util/errors.js
  253. if (!err._isRouter) return reject(err)
  254. if (err.type !== 2 /* NavigationFailureType.redirected */) return resolve()
  255. // navigated to a different route in router guard
  256. const unregister = router.afterEach(async (to, from) => {
  257. if (process.server && ssrContext && ssrContext.url) {
  258. ssrContext.url = to.fullPath
  259. }
  260. app.context.route = await getRouteData(to)
  261. app.context.params = to.params || {}
  262. app.context.query = to.query || {}
  263. unregister()
  264. resolve()
  265. })
  266. })
  267. })
  268. return {
  269. store,
  270. app,
  271. router
  272. }
  273. }
  274. export { createApp, NuxtError }