2017-08-22 03:25:01 +10:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
|
|
|
|
|
|
|
const UserCard = {
|
|
|
|
props: [
|
|
|
|
'user',
|
2018-06-07 10:58:44 +10:00
|
|
|
'showFollows',
|
|
|
|
'showApproval'
|
2017-08-22 03:25:01 +10:00
|
|
|
],
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
userExpanded: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
UserCardContent
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toggleUserExpanded () {
|
|
|
|
this.userExpanded = !this.userExpanded
|
2018-06-07 10:58:44 +10:00
|
|
|
},
|
|
|
|
approveUser () {
|
|
|
|
this.$store.state.api.backendInteractor.approveUser(this.user.id)
|
|
|
|
},
|
|
|
|
denyUser () {
|
|
|
|
this.$store.state.api.backendInteractor.denyUser(this.user.id)
|
2017-08-22 03:25:01 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserCard
|