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

47 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-11-30 23:32:22 +01:00
import UserCardContent from '../user_card_content/user_card_content.vue'
2017-06-12 16:20:02 +02:00
import Timeline from '../timeline/timeline.vue'
2016-11-30 23:32:22 +01:00
const UserProfile = {
2017-06-12 16:00:46 +02:00
created () {
2017-06-12 16:30:56 +02:00
this.$store.commit('clearTimeline', { timeline: 'user' })
2018-12-06 19:29:02 +01:00
this.$store.dispatch('startFetching', ['user', this.userName])
if (!this.user) {
this.$store.dispatch('fetchUser', this.userName)
}
2017-06-12 16:00:46 +02:00
},
destroyed () {
2017-06-12 16:20:02 +02:00
this.$store.dispatch('stopFetching', 'user')
2017-06-12 16:00:46 +02:00
},
2016-11-30 23:32:22 +01:00
computed: {
2017-06-12 16:20:02 +02:00
timeline () { return this.$store.state.statuses.timelines.user },
2017-06-12 16:00:46 +02:00
userId () {
return this.user.id
},
userName () {
return this.$route.params.name
2017-06-12 16:00:46 +02:00
},
2016-11-30 23:32:22 +01:00
user () {
2017-06-12 17:07:10 +02:00
if (this.timeline.statuses[0]) {
return this.timeline.statuses[0].user
} else {
return Object.values(this.$store.state.users.usersObject).filter(user => {
2018-12-06 18:02:41 +01:00
return user.screen_name === this.userName
})[0] || false
2017-06-12 17:07:10 +02:00
}
2016-11-30 23:32:22 +01:00
}
},
watch: {
userName () {
this.$store.dispatch('stopFetching', 'user')
this.$store.commit('clearTimeline', { timeline: 'user' })
2018-12-06 19:29:02 +01:00
this.$store.dispatch('startFetching', ['user', this.userName])
}
},
2016-11-30 23:32:22 +01:00
components: {
2017-06-12 16:20:02 +02:00
UserCardContent,
Timeline
2016-11-30 23:32:22 +01:00
}
}
export default UserProfile