fetch.server.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. import Vue from 'vue'
  2. import { hasFetch, normalizeError, addLifecycleHook, purifyData, createGetCounter } from '../utils'
  3. async function serverPrefetch() {
  4. if (!this._fetchOnServer) {
  5. return
  6. }
  7. // Call and await on $fetch
  8. try {
  9. await this.$options.fetch.call(this)
  10. } catch (err) {
  11. if (process.dev) {
  12. console.error('Error in fetch():', err)
  13. }
  14. this.$fetchState.error = normalizeError(err)
  15. }
  16. this.$fetchState.pending = false
  17. // Define an ssrKey for hydration
  18. this._fetchKey = this._fetchKey || this.$ssrContext.fetchCounters['']++
  19. // Add data-fetch-key on parent element of Component
  20. const attrs = this.$vnode.data.attrs = this.$vnode.data.attrs || {}
  21. attrs['data-fetch-key'] = this._fetchKey
  22. // Add to ssrContext for window.__NUXT__.fetch
  23. this.$ssrContext.nuxt.fetch[this._fetchKey] =
  24. this.$fetchState.error ? { _error: this.$fetchState.error } : purifyData(this._data)
  25. }
  26. export default {
  27. created() {
  28. if (!hasFetch(this)) {
  29. return
  30. }
  31. if (typeof this.$options.fetchOnServer === 'function') {
  32. this._fetchOnServer = this.$options.fetchOnServer.call(this) !== false
  33. } else {
  34. this._fetchOnServer = this.$options.fetchOnServer !== false
  35. }
  36. const defaultKey = this.$options._scopeId || this.$options.name || ''
  37. const getCounter = createGetCounter(this.$ssrContext.fetchCounters, defaultKey)
  38. if (typeof this.$options.fetchKey === 'function') {
  39. this._fetchKey = this.$options.fetchKey.call(this, getCounter)
  40. } else {
  41. const key = 'string' === typeof this.$options.fetchKey ? this.$options.fetchKey : defaultKey
  42. this._fetchKey = key ? key + ':' + getCounter(key) : String(getCounter(key))
  43. }
  44. // Added for remove vue undefined warning while ssr
  45. this.$fetch = () => {} // issue #8043
  46. Vue.util.defineReactive(this, '$fetchState', {
  47. pending: true,
  48. error: null,
  49. timestamp: Date.now()
  50. })
  51. addLifecycleHook(this, 'serverPrefetch', serverPrefetch)
  52. }
  53. }