pleroma-fe/src/components/user_profile/user_profile.js

190 lines
5.8 KiB
JavaScript
Raw Normal View History

2019-02-26 18:26:04 +01:00
import get from 'lodash/get'
2019-03-05 20:01:49 +01:00
import UserCard from '../user_card/user_card.vue'
2019-02-26 04:51:04 +01:00
import FollowCard from '../follow_card/follow_card.vue'
2017-06-12 16:20:02 +02:00
import Timeline from '../timeline/timeline.vue'
import Conversation from '../conversation/conversation.vue'
import TabSwitcher from 'src/components/tab_switcher/tab_switcher.jsx'
import RichContent from 'src/components/rich_content/rich_content.jsx'
2019-04-04 04:28:08 +02:00
import List from '../list/list.vue'
2019-02-25 10:51:23 +01:00
import withLoadMore from '../../hocs/with_load_more/with_load_more'
import localeService from 'src/services/locale/locale.service.js'
2020-10-20 23:01:28 +02:00
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faCircleNotch,
faBirthdayCake
2020-10-20 23:01:28 +02:00
} from '@fortawesome/free-solid-svg-icons'
library.add(
faCircleNotch,
faBirthdayCake
2020-10-20 23:01:28 +02:00
)
2019-02-25 10:51:23 +01:00
2019-04-04 04:28:08 +02: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 20:46:47 +02:00
destroy: (props, $store) => $store.dispatch('clearFollowers', props.userId),
2019-04-04 04:28:08 +02:00
childPropName: 'items',
additionalPropNames: ['userId']
})(List)
2019-02-25 10:51:23 +01:00
2019-04-04 04:28:08 +02: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 20:46:47 +02:00
destroy: (props, $store) => $store.dispatch('clearFriends', props.userId),
2019-04-04 04:28:08 +02:00
childPropName: 'items',
additionalPropNames: ['userId']
})(List)
2016-11-30 23:32:22 +01:00
const defaultTabKey = 'statuses'
2016-11-30 23:32:22 +01:00
const UserProfile = {
data () {
return {
error: false,
userId: null,
tab: defaultTabKey,
footerRef: null
}
},
2017-06-12 16:00:46 +02:00
created () {
2019-04-15 17:08:28 +02:00
const routeParams = this.$route.params
this.load({ name: routeParams.name, id: routeParams.id })
this.tab = get(this.$route, 'query.tab', defaultTabKey)
2017-06-12 16:00:46 +02:00
},
2021-04-25 12:44:50 +02:00
unmounted () {
this.stopFetching()
},
2016-11-30 23:32:22 +01:00
computed: {
2018-12-15 04:16:44 +01:00
timeline () {
return this.$store.state.statuses.timelines.user
},
favorites () {
return this.$store.state.statuses.timelines.favorites
},
2019-01-24 11:48:40 +01:00
media () {
return this.$store.state.statuses.timelines.media
},
2019-01-17 20:11:51 +01:00
isUs () {
return this.userId && this.$store.state.users.currentUser.id &&
this.userId === this.$store.state.users.currentUser.id
2019-01-17 20:11:51 +01:00
},
2016-11-30 23:32:22 +01:00
user () {
2019-04-15 17:08:28 +02:00
return this.$store.getters.findUser(this.userId)
2018-12-15 04:16:44 +01:00
},
isExternal () {
return this.$route.name === 'external-user-profile'
2019-02-03 18:52:04 +01:00
},
2019-02-07 16:53:36 +01:00
followsTabVisible () {
return this.isUs || !this.user.hide_follows
2019-02-03 18:52:04 +01:00
},
followersTabVisible () {
return this.isUs || !this.user.hide_followers
},
formattedBirthday () {
const browserLocale = localeService.internalToBrowserLocale(this.$i18n.locale)
return this.user.birthday && new Date(Date.parse(this.user.birthday)).toLocaleDateString(browserLocale, { timeZone: 'UTC', day: 'numeric', month: 'long', year: 'numeric' })
2016-11-30 23:32:22 +01:00
}
},
methods: {
setFooterRef (el) {
this.footerRef = el
},
2019-04-15 17:08:28 +02:00
load (userNameOrId) {
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
this.error = false
const maybeId = userNameOrId.id
const maybeName = userNameOrId.name
2019-04-15 17:08:28 +02:00
// Check if user data is already loaded in store
const user = maybeId ? this.$store.getters.findUser(maybeId) : this.$store.getters.findUserByName(maybeName)
2019-04-15 17:08:28 +02:00
if (user) {
loadById(user.id)
} else {
(maybeId
? this.$store.dispatch('fetchUser', maybeId)
: this.$store.dispatch('fetchUserByName', maybeName))
.then(({ id }) => loadById(id))
2019-04-15 17:08:28 +02: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')
}
})
}
},
stopFetching () {
this.$store.dispatch('stopFetchingTimeline', 'user')
this.$store.dispatch('stopFetchingTimeline', 'favorites')
this.$store.dispatch('stopFetchingTimeline', 'media')
},
switchUser (userNameOrId) {
this.stopFetching()
this.load(userNameOrId)
},
onTabSwitch (tab) {
this.tab = tab
this.$router.replace({ query: { tab } })
2019-11-15 19:12:16 +01:00
},
linkClicked ({ target }) {
if (target.tagName === 'SPAN') {
target = target.parentNode
}
if (target.tagName === 'A') {
window.open(target.href, '_blank')
}
}
},
watch: {
2019-04-15 17:08:28 +02:00
'$route.params.id': function (newVal) {
if (newVal) {
this.switchUser({ id: newVal })
}
2019-03-03 19:38:48 +01:00
},
2019-04-15 17:08:28 +02:00
'$route.params.name': function (newVal) {
if (newVal) {
this.switchUser({ name: newVal })
}
},
'$route.query': function (newVal) {
this.tab = newVal.tab || defaultTabKey
}
},
2016-11-30 23:32:22 +01:00
components: {
2019-03-05 20:01:49 +01:00
UserCard,
Timeline,
2019-02-25 10:51:23 +01:00
FollowerList,
2019-02-18 15:49:32 +01:00
FriendList,
FollowCard,
TabSwitcher,
Conversation,
RichContent
2016-11-30 23:32:22 +01:00
}
}
export default UserProfile