App.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. import Vue from 'vue'
  2. import { decode, parsePath, withoutBase, withoutTrailingSlash, normalizeURL } from 'ufo'
  3. import { getMatchedComponentsInstances, getChildrenComponentInstancesUsingFetch, promisify, globalHandleError, urlJoin, sanitizeComponent } from './utils'
  4. import NuxtError from '../layouts/error.vue'
  5. import '../node_modules/element-ui/lib/theme-chalk/index.css'
  6. import '../assets/iconfont/iconfont.css'
  7. import '../assets/css/reset.scss'
  8. import '../assets/css/common.scss'
  9. import '../assets/css/element.scss'
  10. import '../assets/css/flex-custom.scss'
  11. import '../assets/css/color.scss'
  12. import _c991692a from '../layouts/blank_layout.vue'
  13. import _6f6c098b from '../layouts/default.vue'
  14. import _32b9add8 from '../layouts/product_builder_layout.vue'
  15. const layouts = { "_blank_layout": sanitizeComponent(_c991692a),"_default": sanitizeComponent(_6f6c098b),"_product_builder_layout": sanitizeComponent(_32b9add8) }
  16. export default {
  17. render (h, props) {
  18. const layoutEl = h(this.layout || 'nuxt')
  19. const templateEl = h('div', {
  20. domProps: {
  21. id: '__layout'
  22. },
  23. key: this.layoutName
  24. }, [layoutEl])
  25. const transitionEl = h('transition', {
  26. props: {
  27. name: 'layout',
  28. mode: 'out-in'
  29. },
  30. on: {
  31. beforeEnter (el) {
  32. // Ensure to trigger scroll event after calling scrollBehavior
  33. window.$nuxt.$nextTick(() => {
  34. window.$nuxt.$emit('triggerScroll')
  35. })
  36. }
  37. }
  38. }, [templateEl])
  39. return h('div', {
  40. domProps: {
  41. id: '__nuxt'
  42. }
  43. }, [
  44. transitionEl
  45. ])
  46. },
  47. data: () => ({
  48. isOnline: true,
  49. layout: null,
  50. layoutName: '',
  51. nbFetching: 0
  52. }),
  53. beforeCreate () {
  54. Vue.util.defineReactive(this, 'nuxt', this.$options.nuxt)
  55. },
  56. created () {
  57. // Add this.$nuxt in child instances
  58. this.$root.$options.$nuxt = this
  59. if (process.client) {
  60. // add to window so we can listen when ready
  61. window.$nuxt = this
  62. this.refreshOnlineStatus()
  63. // Setup the listeners
  64. window.addEventListener('online', this.refreshOnlineStatus)
  65. window.addEventListener('offline', this.refreshOnlineStatus)
  66. }
  67. // Add $nuxt.error()
  68. this.error = this.nuxt.error
  69. // Add $nuxt.context
  70. this.context = this.$options.context
  71. },
  72. watch: {
  73. 'nuxt.err': 'errorChanged'
  74. },
  75. computed: {
  76. isOffline () {
  77. return !this.isOnline
  78. },
  79. isFetching () {
  80. return this.nbFetching > 0
  81. },
  82. },
  83. methods: {
  84. refreshOnlineStatus () {
  85. if (process.client) {
  86. if (typeof window.navigator.onLine === 'undefined') {
  87. // If the browser doesn't support connection status reports
  88. // assume that we are online because most apps' only react
  89. // when they now that the connection has been interrupted
  90. this.isOnline = true
  91. } else {
  92. this.isOnline = window.navigator.onLine
  93. }
  94. }
  95. },
  96. async refresh () {
  97. const pages = getMatchedComponentsInstances(this.$route)
  98. if (!pages.length) {
  99. return
  100. }
  101. const promises = pages.map(async (page) => {
  102. let p = []
  103. // Old fetch
  104. if (page.$options.fetch && page.$options.fetch.length) {
  105. p.push(promisify(page.$options.fetch, this.context))
  106. }
  107. if (page.$options.asyncData) {
  108. p.push(
  109. promisify(page.$options.asyncData, this.context)
  110. .then((newData) => {
  111. for (const key in newData) {
  112. Vue.set(page.$data, key, newData[key])
  113. }
  114. })
  115. )
  116. }
  117. // Wait for asyncData & old fetch to finish
  118. await Promise.all(p)
  119. // Cleanup refs
  120. p = []
  121. if (page.$fetch) {
  122. p.push(page.$fetch())
  123. }
  124. // Get all component instance to call $fetch
  125. for (const component of getChildrenComponentInstancesUsingFetch(page.$vnode.componentInstance)) {
  126. p.push(component.$fetch())
  127. }
  128. return Promise.all(p)
  129. })
  130. try {
  131. await Promise.all(promises)
  132. } catch (error) {
  133. globalHandleError(error)
  134. this.error(error)
  135. }
  136. },
  137. errorChanged () {
  138. if (this.nuxt.err) {
  139. let errorLayout = (NuxtError.options || NuxtError).layout;
  140. if (typeof errorLayout === 'function') {
  141. errorLayout = errorLayout(this.context)
  142. }
  143. this.nuxt.errPageReady = true
  144. this.setLayout(errorLayout)
  145. }
  146. },
  147. setLayout (layout) {
  148. if (!layout || !layouts['_' + layout]) {
  149. layout = 'default'
  150. }
  151. this.layoutName = layout
  152. this.layout = layouts['_' + layout]
  153. return this.layout
  154. },
  155. loadLayout (layout) {
  156. if (!layout || !layouts['_' + layout]) {
  157. layout = 'default'
  158. }
  159. return Promise.resolve(layouts['_' + layout])
  160. },
  161. },
  162. }