• vue3: 2.如何利用 effectScope 自己实现一个青铜版pinia 一 getters篇


    vue3: 如何利用 effectScope 自己实现一个青铜版pinia - getters篇

    上一篇 我们实现了状态管理仓库的 state, pinia和vuex中都有计算属性getters, 接下来我们就来实现计算对象 getters

    我们都知道getters具有计算属性,依赖于其他state和 getter 值进行计算新的值
    如何在store中实现这个效果,vue3中有一个cumputed api可以让我们使用

    上代码:
    依然是创建一个store对象,store新增一个getters对象
    我们写getters的时候是一个函数,函数的返回值才是最终使用的数据
    那么我们可以在useStore 第一次执行的时候利用 computed 将getters 里面的所有函数执行并返回一个新的getters对象,该对象也是具有响应式的
    得到新的getters对象后我们将getters对象合并到store.state 对象上
    组件中使用getters上的属性时可以直接通过 store.state[gettersNmae] 访问

    const store = {
      state: {
        val: 0
      },
      getters: {
        computedVal (state) {
          return state.val + 1
          // 或者直接通过this访问
          // 为何可以通过this访问,请查看getters合并到state的操作
          // 原理就是利用call函数将this对象指向了store.state 对象
          // return this.val + 1
        },
        computedVal2 (state) {
          // 直接访问 计算属性 computedVal
          return this.computedVal + 1
        }
      },
      useStore () {
        const setUp = () => {
          if (!Vue.isReactive(this.state)) {
            // 以下的操作只需要执行一次
            // 因为执行setup做响应式依赖收集的时候会在每个组件执行,访问的是同一个state,该state 对象的代理实现只需要第一次就够了
            this.state = Vue.reactive(this.state)
            const _this = this
            // 将this.getters里面的函数取出,存到 getters 这个对象里面的值变为具有computed 计算属性的一个对象
            const getters = Object.keys(_this.getters || {}).reduce(function (conmputedGetters, name) {
              // 利用computed 计算this.getters里面的值, 并记录下来
              conmputedGetters[name] = Vue.computed(() => {
                return _this.getters[name].call(_this.state, _this.state)
              })
              return conmputedGetters
            }, {})
            // 合并 getters对象 到 this.state
            Object.assign(this.state, getters)
          }
        }
        const scope = Vue.effectScope()
        scope.run(setUp)
        return this.state
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41

    然后我们创建两个子组件并使用这个store的getters

    <body>
      <script
        src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.2.37/vue.global.min.js"
        integrity="sha512-rCO3ZZnxh9j/Y725Iq2Cqr2lc9fi83zVeN3PFTUosktylZsCFjD13PDbKrzKjKO/idjM4KlMQC52AsoGFTAe6A=="
        crossorigin="anonymous"
        referrerpolicy="no-referrer"
      >script>
      <div id="app">div>
      <script>
        // 实现一个getters
        const store = {
          state: {
            val: 0
          },
          getters: {
            computedVal (state) {
              return state.val + 1
              // 或者直接通过this访问
              // 为何可以通过this访问,请查看getters合并到state的操作
              // 原理就是利用call函数将this对象指向了store.state 对象
              // return this.val + 1
            },
            computedVal2 (state) {
              // 直接访问 计算属性 computedVal
              return this.computedVal + 1
            }
          },
          useStore () {
            const setUp = () => {
              if (!Vue.isReactive(this.state)) {
                // 以下的操作只需要执行一次
                // 因为执行setup做响应式依赖收集的时候会在每个组件执行,访问的是同一个state,该state 对象的代理实现只需要第一次就够了
                this.state = Vue.reactive(this.state)
                const _this = this
                // 将this.getters里面的函数取出,存到 getters 这个对象里面的值变为具有computed 计算属性的一个对象
                const getters = Object.keys(_this.getters || {}).reduce(function (conmputedGetters, name) {
                  // 利用computed 计算this.getters里面的值, 并记录下来
                  conmputedGetters[name] = Vue.computed(() => {
                    return _this.getters[name].call(_this.state, _this.state)
                  })
                  return conmputedGetters
                }, {})
                // 合并 getters对象 到 this.state
                Object.assign(this.state, getters)
              }
            }
            const scope = Vue.effectScope()
            scope.run(() => {
              // 执行setup函数,收集响应式依赖
              return setUp()
            })
            return this.state
          }
        }
        // 子组件1
        const childrenOne = Vue.defineComponent({
          name: 'children-one',
          setup () {
            // 为什么要执行useStore,因为要通过 useStore 内的setup 函数为该组件提供响应式的依赖搜集
            // storeA 已经是一个包含getters的最基本的状态管理对象了
            // 不过我们一般不建议直接修改store的值,后续会提供actions去帮助大家更改state的值
            const storeA = store.useStore()
            const add = () => {
              storeA.val += 1
            }
            return {
              add,
              storeA
            }
          },
          template: `
            

    children-one


    计算属性 computedVal: {{storeA.computedVal}}
    计算属性 computedVa2l: {{storeA.computedVal2}}
    `
    }) // 子组件2 const childrenTwo = Vue.defineComponent({ name: 'children-two', setup () { const storeB = store.useStore() const remove = () => { storeB.val -= 1 } return { remove, storeB } }, template: `

    children-two


    计算属性 computedVal: {{storeB.computedVal}}
    计算属性 computedVa2l: {{storeB.computedVal2}}
    `
    }) const app = Vue.createApp({ name: 'app', components: { 'children-one': childrenOne, 'children-two': childrenTwo, }, template: `
    `
    }) app.mount('#app')
    script> body>
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123

    我们来看下效果:

    在这里插入图片描述

    这样一个我们就实现计算属性 getters

    但是实际应用中并不推荐我们直接更改store.state的值
    包括vuex中在mutions之外更改state的值也会警告
    况且pinia中组件里面gettes属性的读取都是通过store.state对象直接读取的
    在开发过程中 store.state.val = xxx 这样更改状态是非常不可控的
    如果getters的computedVal值被这样赋值 store.state.computedVal = xxx,他将会失去计算属性和响应式

    所以我们还需要一个能够修改状态的actions,这就是我在下一篇讲要讲的内容了

  • 相关阅读:
    MySQL分页查询的工作原理
    【NoSQL】NoSQL之redis配置与优化(简单操作)
    Vue绑定样式
    记一次奇怪的SpringBoot多项目Mapper无法自动载入的错误
    【云原生 | Kubernetes 实战】07、Pod 高级实战:Pod 生命周期、启动钩子、停止钩子
    【ESD专题】静电防护物品、静电测试工具及防静电符号
    代码随想录1刷—哈希表篇
    专题一:双指针【优选算法】
    树莓派(六)树莓派交叉编译
    操作系统基础知识
  • 原文地址:https://blog.csdn.net/weixin_45123004/article/details/126451701