puppyoma-fe/src/components/block_card/block_card.js

41 lines
818 B
JavaScript
Raw Normal View History

2019-02-13 14:55:02 -05:00
import BasicUserCard from '../basic_user_card/basic_user_card.vue'
const BlockCard = {
2019-02-13 15:31:20 -05:00
props: ['userId'],
2019-02-13 14:55:02 -05:00
data () {
return {
2019-02-13 15:31:20 -05:00
progress: false
}
},
computed: {
user () {
return this.$store.getters.findUser(this.userId)
2019-02-13 15:31:20 -05:00
},
2020-04-21 23:27:51 +03:00
relationship () {
return this.$store.getters.relationship(this.userId)
2020-04-21 23:27:51 +03:00
},
2019-02-13 15:31:20 -05:00
blocked () {
2020-04-21 23:27:51 +03:00
return this.relationship.blocking
2019-02-13 14:55:02 -05:00
}
},
components: {
BasicUserCard
},
methods: {
unblockUser () {
this.progress = true
2019-02-13 15:31:20 -05:00
this.$store.dispatch('unblockUser', this.user.id).then(() => {
this.progress = false
})
},
blockUser () {
this.progress = true
this.$store.dispatch('blockUser', this.user.id).then(() => {
this.progress = false
})
2019-02-13 14:55:02 -05:00
}
}
}
export default BlockCard