vuex
vuex copied to clipboard
Switching to a nested route is automatically running the last commit event from parent's store
Version
3.1.0
Reproduction link
https://codesandbox.io/s/vue-template-c2gtb
Steps to reproduce
- Open https://codesandbox.io/s/vue-template-c2gtb
- Click on 'Go to Page with nested router' link
- Click on 'commit event', it will show an alert box
- 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 https://github.com/vuejs/vuex/issues/1570
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:
}
},
},
},
@farazshuja Hi! Do you have any updates on this issue? Does comment from @LinusBorg work for you?
@kiaking Yeah, for now its the only way to go!!
OK, thank you for the confirmation! While this could be a bit confusing, let's improve this in new version of Vuex.
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.
你的邮件我已收到!