Giter Site home page Giter Site logo

Comments (5)

NikhilVerma avatar NikhilVerma commented on June 10, 2024 1

I made a PR which documents how to "fix" this issue - #374

from vuex-module-decorators.

NikhilVerma avatar NikhilVerma commented on June 10, 2024
  1. Mutation is called with the context of state
  2. MutationAction is called with the context of store

I agree it's not evident at all, and perhaps the fix can be done via Typescript by setting the right context

from vuex-module-decorators.

ymarcov avatar ymarcov commented on June 10, 2024

@NikhilVerma Thank you for that potential fix. I hoped it would allow me to move on with my project, after already having invested in the transition to this library, but unfortunately (as stated in the replies to your PR) Typescript still complains about changing the type of this.

It actually seems backward to me that the type of this is changed under the covers, and I tend to agree with Typescript's confusion here. I think the issue needs to be solved at its root, which means finding a way to have MutationActions without changing the this type.

@championswimmer What is the reason, in the first place, that the this is switched under the hood for MutationAction rather than being similar to the other actions/mutations, which work directly on the state?

from vuex-module-decorators.

ymarcov avatar ymarcov commented on June 10, 2024

I've examined the code and saw the tricks employed in the decorators.
The quickest fix to this issue IMO would be to add the following lines to mutationaction.ts, in the part right before mutactFunction gets called:

const thisObj = { context }
addPropertiesToObject(thisObj, context.state)
addPropertiesToObject(thisObj, context.getters)
// and then
const actionPayload = await mutactFunction.call(thisObj, payload)

This would make the Action part of MutationAction analogous with what we've come to expect from Action.

from vuex-module-decorators.

ymarcov avatar ymarcov commented on June 10, 2024

Since the repo has not been updated in over a year, I have forked it and applied the update mention above, so that state and getters can be accessed from a MutationAction similarly to Action.

To use my fork you can replace the vuex-module-decorators dependency line in your package.json file as follows:

"vuex-module-decorators": "github:ymarcov/vuex-module-decorators"

then run npm update vuex-module-decorators

from vuex-module-decorators.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.