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