attempt at fixing switching to user TL

This commit is contained in:
Henry Jameson 2019-03-09 01:36:35 +02:00
parent fe624f6114
commit a02a74e9b9
2 changed files with 10 additions and 5 deletions

View file

@ -38,6 +38,9 @@ const UserProfile = {
created () {
if (!this.user.id) {
this.fetchUserId()
.then(() => this.startUp())
} else {
this.startUp()
}
},
destroyed () {
@ -116,9 +119,11 @@ const UserProfile = {
.then(() => this.startUp())
},
startUp () {
this.$store.dispatch('startFetching', { timeline: 'user', userId: this.userId })
this.$store.dispatch('startFetching', { timeline: 'media', userId: this.userId })
this.startFetchFavorites()
if (this.userId) {
this.$store.dispatch('startFetching', { timeline: 'user', userId: this.userId })
this.$store.dispatch('startFetching', { timeline: 'media', userId: this.userId })
this.startFetchFavorites()
}
},
cleanUp () {
this.$store.dispatch('stopFetching', 'user')