2019-02-26 09:26:04 -08:00
|
|
|
import get from 'lodash/get'
|
2019-03-05 11:01:49 -08:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2019-02-25 19:51:04 -08:00
|
|
|
import FollowCard from '../follow_card/follow_card.vue'
|
2017-06-12 07:20:02 -07:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
2019-04-24 10:56:53 -07:00
|
|
|
import Conversation from '../conversation/conversation.vue'
|
2019-02-18 06:49:32 -08:00
|
|
|
import ModerationTools from '../moderation_tools/moderation_tools.vue'
|
2019-04-03 19:28:08 -07:00
|
|
|
import List from '../list/list.vue'
|
2019-02-25 01:51:23 -08:00
|
|
|
import withLoadMore from '../../hocs/with_load_more/with_load_more'
|
|
|
|
|
2019-04-03 19:28:08 -07:00
|
|
|
const FollowerList = withLoadMore({
|
|
|
|
fetch: (props, $store) => $store.dispatch('fetchFollowers', props.userId),
|
|
|
|
select: (props, $store) => get($store.getters.findUser(props.userId), 'followerIds', []).map(id => $store.getters.findUser(id)),
|
2019-04-09 11:46:47 -07:00
|
|
|
destroy: (props, $store) => $store.dispatch('clearFollowers', props.userId),
|
2019-04-03 19:28:08 -07:00
|
|
|
childPropName: 'items',
|
|
|
|
additionalPropNames: ['userId']
|
|
|
|
})(List)
|
2019-02-25 01:51:23 -08:00
|
|
|
|
2019-04-03 19:28:08 -07:00
|
|
|
const FriendList = withLoadMore({
|
|
|
|
fetch: (props, $store) => $store.dispatch('fetchFriends', props.userId),
|
|
|
|
select: (props, $store) => get($store.getters.findUser(props.userId), 'friendIds', []).map(id => $store.getters.findUser(id)),
|
2019-04-09 11:46:47 -07:00
|
|
|
destroy: (props, $store) => $store.dispatch('clearFriends', props.userId),
|
2019-04-03 19:28:08 -07:00
|
|
|
childPropName: 'items',
|
|
|
|
additionalPropNames: ['userId']
|
|
|
|
})(List)
|
2016-11-30 14:32:22 -08:00
|
|
|
|
|
|
|
const UserProfile = {
|
2019-02-21 10:32:47 -08:00
|
|
|
data () {
|
|
|
|
return {
|
2019-03-08 12:40:57 -08:00
|
|
|
error: false,
|
2019-04-15 08:08:28 -07:00
|
|
|
userId: null
|
2019-02-21 10:32:47 -08:00
|
|
|
}
|
|
|
|
},
|
2017-06-12 07:00:46 -07:00
|
|
|
created () {
|
2019-04-15 08:08:28 -07:00
|
|
|
const routeParams = this.$route.params
|
|
|
|
this.load(routeParams.name || routeParams.id)
|
2017-06-12 07:00:46 -07:00
|
|
|
},
|
|
|
|
destroyed () {
|
2019-02-15 00:01:13 -08:00
|
|
|
this.cleanUp()
|
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
|
|
|
|
},
|
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
|
|
|
},
|
2016-11-30 14:32:22 -08:00
|
|
|
user () {
|
2019-04-15 08:08:28 -07:00
|
|
|
return this.$store.getters.findUser(this.userId)
|
2018-12-14 19:16:44 -08:00
|
|
|
},
|
2019-04-24 10:56:53 -07:00
|
|
|
pinnedStatuses () {
|
|
|
|
return this.user.pinnedStatusIds.map(id => this.$store.state.statuses.allStatusesObject[id])
|
|
|
|
},
|
2018-12-14 19:16:44 -08:00
|
|
|
isExternal () {
|
|
|
|
return this.$route.name === 'external-user-profile'
|
2019-02-03 09:52:04 -08:00
|
|
|
},
|
2019-02-07 07:53:36 -08:00
|
|
|
followsTabVisible () {
|
|
|
|
return this.isUs || !this.user.hide_follows
|
2019-02-03 09:52:04 -08:00
|
|
|
},
|
|
|
|
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-04-15 08:08:28 -07:00
|
|
|
load (userNameOrId) {
|
|
|
|
// Check if user data is already loaded in store
|
|
|
|
const user = this.$store.getters.findUser(userNameOrId)
|
|
|
|
if (user) {
|
|
|
|
this.userId = user.id
|
|
|
|
this.fetchTimelines()
|
2019-03-08 15:19:56 -08:00
|
|
|
} else {
|
2019-04-15 08:08:28 -07:00
|
|
|
this.$store.dispatch('fetchUser', userNameOrId)
|
2019-03-12 13:10:22 -07:00
|
|
|
.then(({ id }) => {
|
2019-04-15 08:08:28 -07:00
|
|
|
this.userId = id
|
|
|
|
this.fetchTimelines()
|
|
|
|
})
|
|
|
|
.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')
|
|
|
|
}
|
2019-03-08 15:19:56 -08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
2019-04-15 08:08:28 -07:00
|
|
|
fetchTimelines () {
|
|
|
|
const userId = this.userId
|
|
|
|
this.$store.dispatch('startFetchingTimeline', { timeline: 'user', userId })
|
|
|
|
this.$store.dispatch('startFetchingTimeline', { timeline: 'media', userId })
|
|
|
|
if (this.isUs) {
|
|
|
|
this.$store.dispatch('startFetchingTimeline', { timeline: 'favorites', userId })
|
2019-03-08 15:36:35 -08:00
|
|
|
}
|
2019-04-24 10:56:53 -07:00
|
|
|
this.$store.dispatch('fetchPinnedStatuses', userId)
|
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: {
|
2019-04-15 08:08:28 -07:00
|
|
|
'$route.params.id': function (newVal) {
|
2019-03-08 12:40:57 -08:00
|
|
|
if (newVal) {
|
|
|
|
this.cleanUp()
|
2019-04-15 08:08:28 -07:00
|
|
|
this.load(newVal)
|
2018-12-17 08:14:38 -08:00
|
|
|
}
|
2019-03-03 10:38:48 -08:00
|
|
|
},
|
2019-04-15 08:08:28 -07:00
|
|
|
'$route.params.name': function (newVal) {
|
|
|
|
if (newVal) {
|
2019-03-08 15:19:56 -08:00
|
|
|
this.cleanUp()
|
2019-04-15 08:08:28 -07:00
|
|
|
this.load(newVal)
|
2019-03-08 15:19:56 -08:00
|
|
|
}
|
|
|
|
},
|
2019-03-03 10:38:48 -08:00
|
|
|
$route () {
|
|
|
|
this.$refs.tabSwitcher.activateTab(0)()
|
2017-08-16 06:40:09 -07:00
|
|
|
}
|
|
|
|
},
|
2016-11-30 14:32:22 -08:00
|
|
|
components: {
|
2019-03-05 11:01:49 -08:00
|
|
|
UserCard,
|
2019-02-02 12:29:10 -08:00
|
|
|
Timeline,
|
2019-02-25 01:51:23 -08:00
|
|
|
FollowerList,
|
2019-02-18 06:49:32 -08:00
|
|
|
FriendList,
|
2019-04-03 19:28:08 -07:00
|
|
|
ModerationTools,
|
2019-04-24 10:56:53 -07:00
|
|
|
FollowCard,
|
|
|
|
Conversation
|
2016-11-30 14:32:22 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserProfile
|