mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-02-22 21:03:59 +01:00
27 lines
675 B
JavaScript
27 lines
675 B
JavaScript
import UserCardContent from '../user_card_content/user_card_content.vue'
|
|
import Timeline from '../timeline/timeline.vue'
|
|
|
|
const UserProfile = {
|
|
created () {
|
|
this.$store.commit('clearTimeline', { timeline: 'user' })
|
|
this.$store.dispatch('startFetching', ['user', this.userId])
|
|
},
|
|
destroyed () {
|
|
this.$store.dispatch('stopFetching', 'user')
|
|
},
|
|
computed: {
|
|
timeline () { return this.$store.state.statuses.timelines.user },
|
|
userId () {
|
|
return this.$route.params.id
|
|
},
|
|
user () {
|
|
return this.$store.state.users.usersObject[this.userId]
|
|
}
|
|
},
|
|
components: {
|
|
UserCardContent,
|
|
Timeline
|
|
}
|
|
}
|
|
|
|
export default UserProfile
|