2019-02-27 04:26:04 +11:00
|
|
|
import get from 'lodash/get'
|
2019-03-06 06:01:49 +11:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2019-02-26 14:51:04 +11:00
|
|
|
import FollowCard from '../follow_card/follow_card.vue'
|
2017-06-13 00:20:02 +10:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
2019-04-25 03:56:53 +10:00
|
|
|
import Conversation from '../conversation/conversation.vue'
|
2019-04-04 13:28:08 +11:00
|
|
|
import List from '../list/list.vue'
|
2019-02-25 20:51:23 +11:00
|
|
|
import withLoadMore from '../../hocs/with_load_more/with_load_more'
|
|
|
|
|
2019-04-04 13:28:08 +11: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-10 04:46:47 +10:00
|
|
|
destroy: (props, $store) => $store.dispatch('clearFollowers', props.userId),
|
2019-04-04 13:28:08 +11:00
|
|
|
childPropName: 'items',
|
|
|
|
additionalPropNames: ['userId']
|
|
|
|
})(List)
|
2019-02-25 20:51:23 +11:00
|
|
|
|
2019-04-04 13:28:08 +11: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-10 04:46:47 +10:00
|
|
|
destroy: (props, $store) => $store.dispatch('clearFriends', props.userId),
|
2019-04-04 13:28:08 +11:00
|
|
|
childPropName: 'items',
|
|
|
|
additionalPropNames: ['userId']
|
|
|
|
})(List)
|
2016-12-01 09:32:22 +11:00
|
|
|
|
2019-08-11 04:49:37 +10:00
|
|
|
const defaultTabKey = 'statuses'
|
|
|
|
|
2016-12-01 09:32:22 +11:00
|
|
|
const UserProfile = {
|
2019-02-22 05:32:47 +11:00
|
|
|
data () {
|
|
|
|
return {
|
2019-03-09 07:40:57 +11:00
|
|
|
error: false,
|
2019-08-11 04:49:37 +10:00
|
|
|
userId: null,
|
|
|
|
tab: defaultTabKey
|
2019-02-22 05:32:47 +11:00
|
|
|
}
|
|
|
|
},
|
2017-06-13 00:00:46 +10:00
|
|
|
created () {
|
2019-04-16 01:08:28 +10:00
|
|
|
const routeParams = this.$route.params
|
|
|
|
this.load(routeParams.name || routeParams.id)
|
2019-08-11 04:49:37 +10:00
|
|
|
this.tab = get(this.$route, 'query.tab', defaultTabKey)
|
2017-06-13 00:00:46 +10:00
|
|
|
},
|
|
|
|
destroyed () {
|
2019-08-10 06:47:11 +10:00
|
|
|
this.stopFetching()
|
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
|
|
|
|
},
|
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
|
|
|
},
|
2016-12-01 09:32:22 +11:00
|
|
|
user () {
|
2019-04-16 01:08:28 +10:00
|
|
|
return this.$store.getters.findUser(this.userId)
|
2018-12-15 14:16:44 +11:00
|
|
|
},
|
|
|
|
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-04-16 01:08:28 +10:00
|
|
|
load (userNameOrId) {
|
2019-08-10 06:47:11 +10:00
|
|
|
const startFetchingTimeline = (timeline, userId) => {
|
|
|
|
// Clear timeline only if load another user's profile
|
|
|
|
if (userId !== this.$store.state.statuses.timelines[timeline].userId) {
|
|
|
|
this.$store.commit('clearTimeline', { timeline })
|
|
|
|
}
|
|
|
|
this.$store.dispatch('startFetchingTimeline', { timeline, userId })
|
|
|
|
}
|
|
|
|
|
|
|
|
const loadById = (userId) => {
|
|
|
|
this.userId = userId
|
|
|
|
startFetchingTimeline('user', userId)
|
|
|
|
startFetchingTimeline('media', userId)
|
|
|
|
if (this.isUs) {
|
|
|
|
startFetchingTimeline('favorites', userId)
|
|
|
|
}
|
|
|
|
// Fetch all pinned statuses immediately
|
|
|
|
this.$store.dispatch('fetchPinnedStatuses', userId)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset view
|
|
|
|
this.userId = null
|
2019-08-10 06:50:49 +10:00
|
|
|
this.error = false
|
2019-08-10 06:47:11 +10:00
|
|
|
|
2019-04-16 01:08:28 +10:00
|
|
|
// Check if user data is already loaded in store
|
|
|
|
const user = this.$store.getters.findUser(userNameOrId)
|
|
|
|
if (user) {
|
2019-08-10 06:47:11 +10:00
|
|
|
loadById(user.id)
|
2019-03-09 10:19:56 +11:00
|
|
|
} else {
|
2019-04-16 01:08:28 +10:00
|
|
|
this.$store.dispatch('fetchUser', userNameOrId)
|
2019-08-10 06:47:11 +10:00
|
|
|
.then(({ id }) => loadById(id))
|
2019-04-16 01:08:28 +10: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')
|
|
|
|
}
|
2019-03-09 10:19:56 +11:00
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
2019-08-10 06:47:11 +10:00
|
|
|
stopFetching () {
|
2019-12-09 01:05:41 +11:00
|
|
|
this.$store.dispatch('stopFetchingTimeline', 'user')
|
|
|
|
this.$store.dispatch('stopFetchingTimeline', 'favorites')
|
|
|
|
this.$store.dispatch('stopFetchingTimeline', 'media')
|
2019-08-10 06:47:11 +10:00
|
|
|
},
|
|
|
|
switchUser (userNameOrId) {
|
|
|
|
this.stopFetching()
|
|
|
|
this.load(userNameOrId)
|
2019-08-11 04:49:37 +10:00
|
|
|
},
|
|
|
|
onTabSwitch (tab) {
|
|
|
|
this.tab = tab
|
|
|
|
this.$router.replace({ query: { tab } })
|
2019-02-03 07:29:10 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
2019-04-16 01:08:28 +10:00
|
|
|
'$route.params.id': function (newVal) {
|
2019-03-09 07:40:57 +11:00
|
|
|
if (newVal) {
|
2019-08-10 06:47:11 +10:00
|
|
|
this.switchUser(newVal)
|
2018-12-18 03:14:38 +11:00
|
|
|
}
|
2019-03-04 05:38:48 +11:00
|
|
|
},
|
2019-04-16 01:08:28 +10:00
|
|
|
'$route.params.name': function (newVal) {
|
|
|
|
if (newVal) {
|
2019-08-10 06:47:11 +10:00
|
|
|
this.switchUser(newVal)
|
2019-03-09 10:19:56 +11:00
|
|
|
}
|
|
|
|
},
|
2019-08-11 04:49:37 +10:00
|
|
|
'$route.query': function (newVal) {
|
|
|
|
this.tab = newVal.tab || defaultTabKey
|
2017-08-16 23:40:09 +10:00
|
|
|
}
|
|
|
|
},
|
2016-12-01 09:32:22 +11:00
|
|
|
components: {
|
2019-03-06 06:01:49 +11:00
|
|
|
UserCard,
|
2019-02-03 07:29:10 +11:00
|
|
|
Timeline,
|
2019-02-25 20:51:23 +11:00
|
|
|
FollowerList,
|
2019-02-19 01:49:32 +11:00
|
|
|
FriendList,
|
2019-04-25 03:56:53 +10:00
|
|
|
FollowCard,
|
|
|
|
Conversation
|
2016-12-01 09:32:22 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserProfile
|