aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/user_profile/user_profile.js')
-rw-r--r--src/components/user_profile/user_profile.js35
1 files changed, 30 insertions, 5 deletions
diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js
index 1d79713d..95d797a2 100644
--- a/src/components/user_profile/user_profile.js
+++ b/src/components/user_profile/user_profile.js
@@ -3,30 +3,55 @@ import Timeline from '../timeline/timeline.vue'
const UserProfile = {
created () {
+ debugger
this.$store.commit('clearTimeline', { timeline: 'user' })
- this.$store.dispatch('startFetching', ['user', this.userId])
- if (!this.$store.state.users.usersObject[this.userId]) {
- this.$store.dispatch('fetchUser', this.userId)
+ this.$store.dispatch('startFetching', ['user', this.fetchBy])
+ if (!this.user) {
+ this.$store.dispatch('fetchUser', this.fetchBy)
}
},
destroyed () {
this.$store.dispatch('stopFetching', 'user')
},
computed: {
- timeline () { return this.$store.state.statuses.timelines.user },
+ timeline () {
+ return this.$store.state.statuses.timelines.user
+ },
userId () {
return this.$route.params.id
},
+ userName () {
+ return this.$route.params.name
+ },
user () {
if (this.timeline.statuses[0]) {
return this.timeline.statuses[0].user
} else {
- return this.$store.state.users.usersObject[this.userId] || false
+ return Object.values(this.$store.state.users.usersObject).filter(user => {
+ return (this.isExternal ? user.id === this.userId : user.screen_name === this.userName)
+ })[0] || false
}
+ },
+ fetchBy () {
+ return this.isExternal ? this.userId : this.userName
+ },
+ isExternal () {
+ return this.$route.name === 'external-user-profile'
}
},
watch: {
+ userName () {
+ if (this.isExternal) {
+ return
+ }
+ this.$store.dispatch('stopFetching', 'user')
+ this.$store.commit('clearTimeline', { timeline: 'user' })
+ this.$store.dispatch('startFetching', ['user', this.userName])
+ },
userId () {
+ if (!this.isExternal) {
+ return
+ }
this.$store.dispatch('stopFetching', 'user')
this.$store.commit('clearTimeline', { timeline: 'user' })
this.$store.dispatch('startFetching', ['user', this.userId])