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