2016-12-01 09:32:22 +11:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
|
|
|
|
|
|
|
const UserProfile = {
|
2017-06-13 00:00:46 +10:00
|
|
|
created () {
|
|
|
|
this.$store.dispatch('startFetching', ['user', this.userId])
|
|
|
|
},
|
|
|
|
destroyed () {
|
|
|
|
this.$store.dispatch('stopFetching', ['user', this.userId])
|
|
|
|
},
|
2016-12-01 09:32:22 +11:00
|
|
|
computed: {
|
2017-06-13 00:00:46 +10:00
|
|
|
userId () {
|
|
|
|
return this.$route.params.id
|
|
|
|
},
|
2016-12-01 09:32:22 +11:00
|
|
|
user () {
|
2017-06-13 00:00:46 +10:00
|
|
|
return this.$store.state.users.usersObject[this.userId]
|
2016-12-01 09:32:22 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
UserCardContent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserProfile
|