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