Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switching to a nested route is automatically running the last commit event from parent's store #1593

Open
farazshuja opened this issue Aug 6, 2019 · 6 comments

Comments

@farazshuja
Copy link

Version

3.1.0

Reproduction link

https://codesandbox.io/s/vue-template-c2gtb

Steps to reproduce

  1. Open https://codesandbox.io/s/vue-template-c2gtb
  2. Click on 'Go to Page with nested router' link
  3. Click on 'commit event', it will show an alert box
  4. Now change the nested route by clicking 'change nested route to reporting'

What is expected?

Route changed to reporting without showing the 'hello' alert box.

What is actually happening?

Its showing the 'hello' alert box again.


One of the releated issues
#1570

@LinusBorg
Copy link
Member

LinusBorg commented Jan 24, 2020

There's no commit triggered - the getter is re-evaluated. Which happens because regsitering a module forces vuex to re-build the whole state object, which triggers all getters that have deps to re-evaluate.

This is currently required by the implementation of vuex, and we can't really change this, at least I am not aware of any ideas of how to improve his behaviour to not have this side-effect. We can probably solve it with the better reactivity in Vue 3, but not for the current version using Vue 2

The best thing to do is to check in your watchers if the state actually changed:

watch: {
    event: {
        handler(newVal, oldVal) {
           if newVal === oldVal return
            switch (this.event.id) {
                case 'new_requirement': {
                    alert('hello');
                    break;
                }
                default:
            }
        },
    },
},

@kiaking
Copy link
Member

kiaking commented Mar 9, 2020

@farazshuja Hi! Do you have any updates on this issue? Does comment from @LinusBorg work for you?

@farazshuja
Copy link
Author

@kiaking Yeah, for now its the only way to go!!

@kiaking
Copy link
Member

kiaking commented Mar 11, 2020

OK, thank you for the confirmation! While this could be a bit confusing, let's improve this in new version of Vuex.

@ReinisV
Copy link

ReinisV commented Nov 12, 2023

The best thing to do is to check in your watchers if the state actually changed

@LinusBorg this is not a solution if you are deep watching an object reference, as both newVal and oldVal will be the same instance and thus exactly equal in both cases, when an actual change has happened to the object by changing some field, and when the watcher is triggered due to vuex rebuilding its state.

Lets say you have two submodules:
#1 contains a filter object that is used for filtering data in a table, there is a watcher watching it for changes to automatically requery data for the table.
#2 contains data for a modal on the same page, it is registered when the modal is opened and it is deregistered when the modal is closed.
So now every single time the modal is opened or closed (and thus submodule is registered or deregistered) will trigger a backend call to refresh the table, even though tables filter hasnt changed, and theres no way around that.

that is absolutely awful.

is there maybe some kind of a way to hook into dependency management and make it skip watchers when vuex state is being rebuilt due to a new submodule?

also, does Pinia fix this? this is the kind of breaking behaviour that would force me to say goodbye to Vuex and move to Pinia.

@weier910
Copy link

weier910 commented Nov 12, 2023 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants