2016-12-01 09:32:22 +11:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
2017-06-13 00:20:02 +10:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
2016-12-01 09:32:22 +11:00
|
|
|
|
|
|
|
const UserProfile = {
|
2017-06-13 00:00:46 +10:00
|
|
|
created () {
|
2018-12-15 14:16:44 +11:00
|
|
|
debugger
|
2017-06-13 00:30:56 +10:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'user' })
|
2018-12-15 14:16:44 +11:00
|
|
|
this.$store.dispatch('startFetching', ['user', this.fetchBy])
|
2018-12-07 05:29:02 +11:00
|
|
|
if (!this.user) {
|
2018-12-15 14:16:44 +11:00
|
|
|
this.$store.dispatch('fetchUser', this.fetchBy)
|
2017-11-15 03:08:03 +11:00
|
|
|
}
|
2017-06-13 00:00:46 +10:00
|
|
|
},
|
|
|
|
destroyed () {
|
2017-06-13 00:20:02 +10:00
|
|
|
this.$store.dispatch('stopFetching', 'user')
|
2017-06-13 00:00:46 +10:00
|
|
|
},
|
2016-12-01 09:32:22 +11:00
|
|
|
computed: {
|
2018-12-15 14:16:44 +11:00
|
|
|
timeline () {
|
|
|
|
return this.$store.state.statuses.timelines.user
|
|
|
|
},
|
2017-06-13 00:00:46 +10:00
|
|
|
userId () {
|
2018-12-15 14:16:44 +11:00
|
|
|
return this.$route.params.id
|
2018-12-06 12:05:35 +11:00
|
|
|
},
|
|
|
|
userName () {
|
|
|
|
return this.$route.params.name
|
2017-06-13 00:00:46 +10:00
|
|
|
},
|
2016-12-01 09:32:22 +11:00
|
|
|
user () {
|
2017-06-13 01:07:10 +10:00
|
|
|
if (this.timeline.statuses[0]) {
|
|
|
|
return this.timeline.statuses[0].user
|
|
|
|
} else {
|
2018-12-06 12:05:35 +11:00
|
|
|
return Object.values(this.$store.state.users.usersObject).filter(user => {
|
2018-12-15 14:16:44 +11:00
|
|
|
return (this.isExternal ? user.id === this.userId : user.screen_name === this.userName)
|
2018-12-06 12:05:35 +11:00
|
|
|
})[0] || false
|
2017-06-13 01:07:10 +10:00
|
|
|
}
|
2018-12-15 14:16:44 +11:00
|
|
|
},
|
|
|
|
fetchBy () {
|
|
|
|
return this.isExternal ? this.userId : this.userName
|
|
|
|
},
|
|
|
|
isExternal () {
|
|
|
|
return this.$route.name === 'external-user-profile'
|
2016-12-01 09:32:22 +11:00
|
|
|
}
|
|
|
|
},
|
2017-08-16 23:40:09 +10:00
|
|
|
watch: {
|
2018-12-06 12:05:35 +11:00
|
|
|
userName () {
|
2018-12-15 14:16:44 +11:00
|
|
|
if (this.isExternal) {
|
|
|
|
return
|
|
|
|
}
|
2018-12-03 17:29:33 +11:00
|
|
|
this.$store.dispatch('stopFetching', 'user')
|
2017-08-16 23:40:09 +10:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'user' })
|
2018-12-07 05:29:02 +11:00
|
|
|
this.$store.dispatch('startFetching', ['user', this.userName])
|
2018-12-15 14:16:44 +11:00
|
|
|
},
|
|
|
|
userId () {
|
|
|
|
if (!this.isExternal) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.$store.dispatch('stopFetching', 'user')
|
|
|
|
this.$store.commit('clearTimeline', { timeline: 'user' })
|
|
|
|
this.$store.dispatch('startFetching', ['user', this.userId])
|
2017-08-16 23:40:09 +10:00
|
|
|
}
|
|
|
|
},
|
2016-12-01 09:32:22 +11:00
|
|
|
components: {
|
2017-06-13 00:20:02 +10:00
|
|
|
UserCardContent,
|
|
|
|
Timeline
|
2016-12-01 09:32:22 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserProfile
|