yandere_fe/src/components/user_profile/user_profile.js

27 lines
613 B
JavaScript
Raw Normal View History

2016-11-30 14:32:22 -08:00
import UserCardContent from '../user_card_content/user_card_content.vue'
2017-06-12 07:20:02 -07:00
import Timeline from '../timeline/timeline.vue'
2016-11-30 14:32:22 -08:00
const UserProfile = {
2017-06-12 07:00:46 -07:00
created () {
this.$store.dispatch('startFetching', ['user', this.userId])
},
destroyed () {
2017-06-12 07:20:02 -07:00
this.$store.dispatch('stopFetching', 'user')
2017-06-12 07:00:46 -07:00
},
2016-11-30 14:32:22 -08:00
computed: {
2017-06-12 07:20:02 -07:00
timeline () { return this.$store.state.statuses.timelines.user },
2017-06-12 07:00:46 -07:00
userId () {
return this.$route.params.id
},
2016-11-30 14:32:22 -08:00
user () {
2017-06-12 07:00:46 -07:00
return this.$store.state.users.usersObject[this.userId]
2016-11-30 14:32:22 -08:00
}
},
components: {
2017-06-12 07:20:02 -07:00
UserCardContent,
Timeline
2016-11-30 14:32:22 -08:00
}
}
export default UserProfile