For such component
<template>
<div>
<router-link :to="{name:'section', params: { sectionId: firstSectionId }}">Start</router-link>
</div>
</template>
<script lang="ts">
import { mapActions } from "vuex"
export default {
mounted() {
this.getSectionId()
},
computed: {
firstSectionId() {
return this.$store.state.firstSectionId
}
},
methods: mapActions(["getSectionId"])
}
</script>
Store:
const store: any = new Vuex.Store({
state: {
firstSectionId: null
},
// actions,
// mutations
})
I have a web request in the getSectionId
action and it asynchronously fetches data and calls a mutation that will fill firstSectionId
in state
. During the initial rendering firstSectionId
is null
and I get the warning that a required parameter is missing during rendering of router-link
.
It is not a problem here to add v-if="firstSectionId"
. But in general what is the approach for fetching data from a server to be displayed? Currently all my components are checking if there is data present in the store before rendering, is it normal or is there a better way to wait for data to be loaded before rendering it?
In my experience, you can skip a few checks if you preset the state with an empty value of the same type as the expected result (if you know what to expect, of course), e.g. if you have an array of items, start with
[]
instead ofnull
as it won't breakv-for
directives,.length
checks and similar data access attempts.But generally, adding
v-if
is a very normal thing to do. There's a section about this in thevue-router
documentation and checking whether properties exist or not is exactly what it suggests. Another possible solution it mentions is fetching data insidebeforeRouteEnter
guard, which assures you will always get to the component with your data already available.Ultimately, both solutions are correct, and the decision between them is more of a UX/UI question.
One approach for asynchronously fetching data is to use promise in vuex store actions.
To demonstrate that I make request to this route. You can see how response should looks like. Let's save response object in state.users array.
store.js
You noticed that there is
self.filteruser()
method after commit. That is crucial moment. Before that we are committing a mutation, which is synchronous operation and we are sure that we will have our response in store.state that can be used infilterUsers()
method (don't forget to pass self parm)Users.vue
Better ways (ES6 & ES7)
ES6 Promises for asynchronous programming
ES7: async/await
To get away from callback hell, and to improve asynchronous programming use
async
function, and you canawait
on a promise. Code looks much easier to follow (like it is synchronous), but code isn't readable for browsers so you'll need Babel transpiler to run it.I had similar requirements for locations and the google map api. I needed to fetch my locations from the API, load them in a list, and then use those in a map component to create the markers. I fetched the data in a Vuex action with axios, loaded that in my state with a mutation, and then used a getter to retrieve the resulting array in the mounted life cycle hook. This resulted in an empty array as mounted fired before the async action resolved.
I used store.subscribe to solve it this way: