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

41 lines
818 B
JavaScript
Raw Normal View History

2019-02-13 20:55:02 +01:00
import BasicUserCard from '../basic_user_card/basic_user_card.vue'
const BlockCard = {
2019-02-13 21:31:20 +01:00
props: ['userId'],
2019-02-13 20:55:02 +01:00
data () {
return {
2019-02-13 21:31:20 +01:00
progress: false
}
},
computed: {
user () {
return this.$store.getters.findUser(this.userId)
2019-02-13 21:31:20 +01:00
},
2020-04-21 22:27:51 +02:00
relationship () {
return this.$store.getters.relationship(this.userId)
2020-04-21 22:27:51 +02:00
},
2019-02-13 21:31:20 +01:00
blocked () {
2020-04-21 22:27:51 +02:00
return this.relationship.blocking
2019-02-13 20:55:02 +01:00
}
},
components: {
BasicUserCard
},
methods: {
unblockUser () {
this.progress = true
2019-02-13 21:31:20 +01: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 20:55:02 +01:00
}
}
}
export default BlockCard