danielroe/typed-vuex

fix: respect proto

andrewvasilchuk opened this issue ยท 2 comments

๐Ÿ› The bug
When state is an instance of a class, prototype chain is lost.

๐Ÿ› ๏ธ To reproduce
Steps to reproduce the behavior:

import Vue from 'vue'
import Vuex from 'vuex'

import { useAccessor } from 'typed-vuex'

class Car {
  constructor(public name: string) {}

  setName(value: string) {
    this.name = value
  }
}

const state = new Car('BMW')

const mutations = mutationTree(state, {
  mutation(state, name: string) {
    state.setName(name) // OK
  },
})

const storePattern = {
  state,
  mutations,
}

const store = new Vuex.Store(storePattern)

export const accessor = useAccessor(store, storePattern)

accessor.setName('name') // Error, prototype chain is lost

๐ŸŒˆ Expected behaviour
Prototype chain is preserved.

โ„น๏ธ Additional context
Consider using Object.create here.

I really appreciate these bug reports - thanks @andrewvasilchuk.

On this occasion it looks like Vuex isn't meant to be used with classes in state - see https://vuex.vuejs.org/guide/state.html#single-state-tree.

Discussion welcome, however.

Yes, but the accessor behaves like a transparent proxy/decorator, so to be even more transparent it should preserve prototype chain.