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

115 lines
3.2 KiB
JavaScript
Raw Normal View History

2016-11-30 22:32:22 +00:00
import UserCardContent from '../user_card_content/user_card_content.vue'
import UserCard from '../user_card/user_card.vue'
2017-06-12 14:20:02 +00:00
import Timeline from '../timeline/timeline.vue'
2019-02-03 09:58:49 +00:00
import FollowList from '../follow_list/follow_list.vue'
2016-11-30 22:32:22 +00:00
const UserProfile = {
2017-06-12 14:00:46 +00:00
created () {
2017-06-12 14:30:56 +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-07 23:23:18 +00:00
this.$store.dispatch('startFetching', { timeline: 'user', userId: this.fetchBy })
this.$store.dispatch('startFetching', { timeline: 'media', userId: this.fetchBy })
2019-01-28 14:59:01 +00:00
this.startFetchFavorites()
if (!this.user.id) {
2018-12-15 03:16:44 +00:00
this.$store.dispatch('fetchUser', this.fetchBy)
}
2017-06-12 14:00:46 +00:00
},
destroyed () {
this.cleanUp()
},
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
},
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 () {
return this.$route.params.id || this.user.id
2017-06-12 14:00:46 +00:00
},
userName () {
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 () {
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
},
userInStore () {
if (this.isExternal) {
return this.$store.getters.userById(this.userId)
}
return this.$store.getters.userByName(this.userName)
},
2016-11-30 22:32:22 +00:00
user () {
2017-06-12 15:07:10 +00:00
if (this.timeline.statuses[0]) {
return this.timeline.statuses[0].user
}
if (this.userInStore) {
return this.userInStore
}
return {}
2018-12-15 03:16:44 +00:00
},
fetchBy () {
return this.isExternal ? this.userId : this.userName
},
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
}
},
methods: {
2019-01-28 14:59:01 +00:00
startFetchFavorites () {
if (this.isUs) {
2019-02-07 23:23:18 +00:00
this.$store.dispatch('startFetching', { timeline: 'favorites', userId: this.fetchBy })
2019-01-28 14:59:01 +00:00
}
},
startUp () {
2019-02-07 23:23:18 +00:00
this.$store.dispatch('startFetching', { timeline: 'user', userId: this.fetchBy })
this.$store.dispatch('startFetching', { timeline: 'media', userId: this.fetchBy })
2019-01-28 14:59:01 +00:00
this.startFetchFavorites()
2018-12-15 03:16:44 +00:00
},
cleanUp () {
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')
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' })
}
},
watch: {
userName () {
if (this.isExternal) {
return
}
this.cleanUp()
this.startUp()
},
userId () {
if (!this.isExternal) {
return
}
this.cleanUp()
this.startUp()
}
},
2016-11-30 22:32:22 +00:00
components: {
2017-06-12 14:20:02 +00:00
UserCardContent,
UserCard,
Timeline,
2019-02-03 09:58:49 +00:00
FollowList
2016-11-30 22:32:22 +00:00
}
}
export default UserProfile