2019-02-25 09:51:23 +00:00
|
|
|
import { compose } from 'vue-compose'
|
2019-02-26 17:26:04 +00:00
|
|
|
import get from 'lodash/get'
|
2019-03-05 19:01:49 +00:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2019-02-26 03:51:04 +00:00
|
|
|
import FollowCard from '../follow_card/follow_card.vue'
|
2017-06-12 14:20:02 +00:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
2019-02-18 14:49:32 +00:00
|
|
|
import ModerationTools from '../moderation_tools/moderation_tools.vue'
|
2019-02-25 09:51:23 +00:00
|
|
|
import withLoadMore from '../../hocs/with_load_more/with_load_more'
|
|
|
|
import withList from '../../hocs/with_list/with_list'
|
|
|
|
|
|
|
|
const FollowerList = compose(
|
|
|
|
withLoadMore({
|
|
|
|
fetch: (props, $store) => $store.dispatch('addFollowers', props.userId),
|
2019-03-08 20:40:57 +00:00
|
|
|
select: (props, $store) => get($store.getters.findUser(props.userId), 'followers', []),
|
2019-02-25 09:51:23 +00:00
|
|
|
destory: (props, $store) => $store.dispatch('clearFollowers', props.userId),
|
|
|
|
childPropName: 'entries',
|
|
|
|
additionalPropNames: ['userId']
|
|
|
|
}),
|
|
|
|
withList({ getEntryProps: user => ({ user }) })
|
2019-02-26 03:51:04 +00:00
|
|
|
)(FollowCard)
|
2019-02-25 09:51:23 +00:00
|
|
|
|
|
|
|
const FriendList = compose(
|
|
|
|
withLoadMore({
|
|
|
|
fetch: (props, $store) => $store.dispatch('addFriends', props.userId),
|
2019-03-08 20:40:57 +00:00
|
|
|
select: (props, $store) => get($store.getters.findUser(props.userId), 'friends', []),
|
2019-02-25 09:51:23 +00:00
|
|
|
destory: (props, $store) => $store.dispatch('clearFriends', props.userId),
|
|
|
|
childPropName: 'entries',
|
|
|
|
additionalPropNames: ['userId']
|
|
|
|
}),
|
|
|
|
withList({ getEntryProps: user => ({ user }) })
|
2019-02-26 03:51:04 +00:00
|
|
|
)(FollowCard)
|
2016-11-30 22:32:22 +00:00
|
|
|
|
|
|
|
const UserProfile = {
|
2019-02-21 18:32:47 +00:00
|
|
|
data () {
|
|
|
|
return {
|
2019-03-08 20:40:57 +00:00
|
|
|
error: false,
|
|
|
|
fetchedUserId: null
|
2019-02-21 18:32:47 +00:00
|
|
|
}
|
|
|
|
},
|
2017-06-12 14:00:46 +00:00
|
|
|
created () {
|
2018-12-31 01:57:22 +00:00
|
|
|
if (!this.user.id) {
|
2019-03-08 23:19:56 +00:00
|
|
|
this.fetchUserId()
|
2019-03-08 23:36:35 +00:00
|
|
|
.then(() => this.startUp())
|
|
|
|
} else {
|
|
|
|
this.startUp()
|
2017-11-14 16:08:03 +00:00
|
|
|
}
|
2017-06-12 14:00:46 +00:00
|
|
|
},
|
|
|
|
destroyed () {
|
2019-02-15 08:01:13 +00:00
|
|
|
this.cleanUp()
|
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 () {
|
2019-03-08 20:40:57 +00:00
|
|
|
return this.$route.params.id || this.user.id || this.fetchedUserId
|
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 () {
|
2019-03-08 20:40:57 +00:00
|
|
|
const routeParams = this.$route.params
|
2019-03-14 21:04:13 +00:00
|
|
|
// This needs fetchedUserId so that computed will be refreshed when user is fetched
|
|
|
|
return this.$store.getters.findUser(this.fetchedUserId || routeParams.name || routeParams.id)
|
2018-12-31 01:57:22 +00:00
|
|
|
},
|
2016-11-30 22:32:22 +00:00
|
|
|
user () {
|
2018-12-31 01:57:22 +00:00
|
|
|
if (this.userInStore) {
|
|
|
|
return this.userInStore
|
|
|
|
}
|
|
|
|
return {}
|
2018-12-15 03:16:44 +00:00
|
|
|
},
|
|
|
|
isExternal () {
|
|
|
|
return this.$route.name === 'external-user-profile'
|
2019-02-03 17:52:04 +00:00
|
|
|
},
|
2019-02-07 15:53:36 +00:00
|
|
|
followsTabVisible () {
|
|
|
|
return this.isUs || !this.user.hide_follows
|
2019-02-03 17:52:04 +00:00
|
|
|
},
|
|
|
|
followersTabVisible () {
|
|
|
|
return this.isUs || !this.user.hide_followers
|
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) {
|
2019-03-08 20:40:57 +00:00
|
|
|
this.$store.dispatch('startFetching', { timeline: 'favorites', userId: this.userId })
|
2019-01-28 14:59:01 +00:00
|
|
|
}
|
2019-01-31 19:11:28 +00:00
|
|
|
},
|
2019-03-08 23:19:56 +00:00
|
|
|
fetchUserId () {
|
|
|
|
let fetchPromise
|
|
|
|
if (this.userId && !this.$route.params.name) {
|
|
|
|
fetchPromise = this.$store.dispatch('fetchUser', this.userId)
|
|
|
|
} else {
|
2019-03-12 20:10:22 +00:00
|
|
|
fetchPromise = this.$store.dispatch('fetchUser', this.userName)
|
|
|
|
.then(({ id }) => {
|
|
|
|
this.fetchedUserId = id
|
2019-03-08 23:19:56 +00:00
|
|
|
})
|
|
|
|
}
|
2019-03-09 09:54:11 +00:00
|
|
|
return fetchPromise
|
2019-03-08 23:19:56 +00:00
|
|
|
.catch((reason) => {
|
|
|
|
const errorMessage = get(reason, 'error.error')
|
|
|
|
if (errorMessage === 'No user with such user_id') { // Known error
|
|
|
|
this.error = this.$t('user_profile.profile_does_not_exist')
|
|
|
|
} else if (errorMessage) {
|
|
|
|
this.error = errorMessage
|
|
|
|
} else {
|
|
|
|
this.error = this.$t('user_profile.profile_loading_error')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.then(() => this.startUp())
|
|
|
|
},
|
2019-02-02 20:29:10 +00:00
|
|
|
startUp () {
|
2019-03-08 23:36:35 +00:00
|
|
|
if (this.userId) {
|
|
|
|
this.$store.dispatch('startFetching', { timeline: 'user', userId: this.userId })
|
|
|
|
this.$store.dispatch('startFetching', { timeline: 'media', userId: this.userId })
|
|
|
|
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: {
|
2019-03-11 00:17:49 +00:00
|
|
|
// userId can be undefined if we don't know it yet
|
|
|
|
userId (newVal) {
|
2019-03-08 20:40:57 +00:00
|
|
|
if (newVal) {
|
|
|
|
this.cleanUp()
|
|
|
|
this.startUp()
|
2018-12-17 16:14:38 +00:00
|
|
|
}
|
2019-03-03 18:38:48 +00:00
|
|
|
},
|
2019-03-11 00:17:49 +00:00
|
|
|
userName () {
|
2019-03-08 23:19:56 +00:00
|
|
|
if (this.$route.params.name) {
|
|
|
|
this.fetchUserId()
|
|
|
|
this.cleanUp()
|
|
|
|
this.startUp()
|
|
|
|
}
|
|
|
|
},
|
2019-03-03 18:38:48 +00:00
|
|
|
$route () {
|
|
|
|
this.$refs.tabSwitcher.activateTab(0)()
|
2017-08-16 13:40:09 +00:00
|
|
|
}
|
|
|
|
},
|
2016-11-30 22:32:22 +00:00
|
|
|
components: {
|
2019-03-05 19:01:49 +00:00
|
|
|
UserCard,
|
2019-02-02 20:29:10 +00:00
|
|
|
Timeline,
|
2019-02-25 09:51:23 +00:00
|
|
|
FollowerList,
|
2019-02-18 14:49:32 +00:00
|
|
|
FriendList,
|
|
|
|
ModerationTools
|
2016-11-30 22:32:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserProfile
|