2016-11-30 22:32:22 +00:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
2018-12-17 16:14:38 +00:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2017-06-12 14:20:02 +00:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
2019-02-02 20:29:10 +00:00
|
|
|
import FriendsList from '../friends_list/friends_list.vue'
|
|
|
|
import FollowersList from '../followers_list/followers_list.vue'
|
2016-11-30 22:32:22 +00:00
|
|
|
|
|
|
|
const UserProfile = {
|
2017-06-12 14:00:46 +00:00
|
|
|
created () {
|
2017-06-12 14:30:56 +00:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'user' })
|
2019-01-17 19:11:51 +00:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'favorites' })
|
2019-01-24 10:48:40 +00:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'media' })
|
2018-12-15 03:16:44 +00:00
|
|
|
this.$store.dispatch('startFetching', ['user', this.fetchBy])
|
2019-01-24 10:48:40 +00:00
|
|
|
this.$store.dispatch('startFetching', ['media', this.fetchBy])
|
2019-01-28 14:59:01 +00:00
|
|
|
this.startFetchFavorites()
|
2018-12-31 01:57:22 +00:00
|
|
|
if (!this.user.id) {
|
2018-12-15 03:16:44 +00:00
|
|
|
this.$store.dispatch('fetchUser', this.fetchBy)
|
2017-11-14 16:08:03 +00:00
|
|
|
}
|
2017-06-12 14:00:46 +00:00
|
|
|
},
|
|
|
|
destroyed () {
|
2019-02-02 20:29:10 +00:00
|
|
|
this.cleanUp(this.userId)
|
2019-01-31 19:11:28 +00:00
|
|
|
},
|
2016-11-30 22:32:22 +00:00
|
|
|
computed: {
|
2018-12-15 03:16:44 +00:00
|
|
|
timeline () {
|
|
|
|
return this.$store.state.statuses.timelines.user
|
2018-12-17 16:14:38 +00:00
|
|
|
},
|
2019-01-17 18:46:03 +00:00
|
|
|
favorites () {
|
|
|
|
return this.$store.state.statuses.timelines.favorites
|
|
|
|
},
|
2019-01-24 10:48:40 +00:00
|
|
|
media () {
|
|
|
|
return this.$store.state.statuses.timelines.media
|
|
|
|
},
|
2017-06-12 14:00:46 +00:00
|
|
|
userId () {
|
2018-12-20 04:54:55 +00:00
|
|
|
return this.$route.params.id || this.user.id
|
2017-06-12 14:00:46 +00:00
|
|
|
},
|
2018-12-06 01:05:35 +00:00
|
|
|
userName () {
|
2019-01-09 11:18:36 +00:00
|
|
|
return this.$route.params.name || this.user.screen_name
|
2017-06-12 14:00:46 +00:00
|
|
|
},
|
2019-01-17 19:11:51 +00:00
|
|
|
isUs () {
|
2019-01-29 17:12:47 +00:00
|
|
|
return this.userId && this.$store.state.users.currentUser.id &&
|
|
|
|
this.userId === this.$store.state.users.currentUser.id
|
2019-01-17 19:11:51 +00:00
|
|
|
},
|
2018-12-31 01:57:22 +00:00
|
|
|
userInStore () {
|
|
|
|
if (this.isExternal) {
|
|
|
|
return this.$store.getters.userById(this.userId)
|
|
|
|
}
|
|
|
|
return this.$store.getters.userByName(this.userName)
|
|
|
|
},
|
2016-11-30 22:32:22 +00:00
|
|
|
user () {
|
2017-06-12 15:07:10 +00:00
|
|
|
if (this.timeline.statuses[0]) {
|
|
|
|
return this.timeline.statuses[0].user
|
|
|
|
}
|
2018-12-31 01:57:22 +00:00
|
|
|
if (this.userInStore) {
|
|
|
|
return this.userInStore
|
|
|
|
}
|
|
|
|
return {}
|
2018-12-15 03:16:44 +00:00
|
|
|
},
|
|
|
|
fetchBy () {
|
|
|
|
return this.isExternal ? this.userId : this.userName
|
|
|
|
},
|
|
|
|
isExternal () {
|
|
|
|
return this.$route.name === 'external-user-profile'
|
2016-11-30 22:32:22 +00:00
|
|
|
}
|
|
|
|
},
|
2018-12-17 16:14:38 +00:00
|
|
|
methods: {
|
2019-01-28 14:59:01 +00:00
|
|
|
startFetchFavorites () {
|
|
|
|
if (this.isUs) {
|
|
|
|
this.$store.dispatch('startFetching', ['favorites', this.fetchBy])
|
|
|
|
}
|
2019-01-31 19:11:28 +00:00
|
|
|
},
|
2019-02-02 20:29:10 +00:00
|
|
|
startUp () {
|
2019-01-09 11:18:36 +00:00
|
|
|
this.$store.dispatch('startFetching', ['user', this.fetchBy])
|
2019-01-24 10:48:40 +00:00
|
|
|
this.$store.dispatch('startFetching', ['media', this.fetchBy])
|
2019-02-02 20:29:10 +00:00
|
|
|
|
2019-01-28 14:59:01 +00:00
|
|
|
this.startFetchFavorites()
|
2018-12-15 03:16:44 +00:00
|
|
|
},
|
2019-02-02 20:29:10 +00:00
|
|
|
cleanUp () {
|
2018-12-03 06:29:33 +00:00
|
|
|
this.$store.dispatch('stopFetching', 'user')
|
2019-01-17 19:11:51 +00:00
|
|
|
this.$store.dispatch('stopFetching', 'favorites')
|
2019-01-24 10:48:40 +00:00
|
|
|
this.$store.dispatch('stopFetching', 'media')
|
2017-08-16 13:40:09 +00:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'user' })
|
2019-01-17 19:11:51 +00:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'favorites' })
|
2019-01-24 10:48:40 +00:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'media' })
|
2019-02-02 20:29:10 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
userName () {
|
|
|
|
if (this.isExternal) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.cleanUp()
|
|
|
|
this.startUp()
|
2018-12-17 16:14:38 +00:00
|
|
|
},
|
2019-02-02 20:29:10 +00:00
|
|
|
userId () {
|
|
|
|
if (!this.isExternal) {
|
|
|
|
return
|
2018-12-17 16:14:38 +00:00
|
|
|
}
|
2019-02-02 20:29:10 +00:00
|
|
|
this.cleanUp()
|
|
|
|
this.startUp()
|
2017-08-16 13:40:09 +00:00
|
|
|
}
|
|
|
|
},
|
2016-11-30 22:32:22 +00:00
|
|
|
components: {
|
2017-06-12 14:20:02 +00:00
|
|
|
UserCardContent,
|
2018-12-17 16:14:38 +00:00
|
|
|
UserCard,
|
2019-02-02 20:29:10 +00:00
|
|
|
Timeline,
|
|
|
|
FriendsList,
|
|
|
|
FollowersList
|
2016-11-30 22:32:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserProfile
|