2020-05-07 13:10:53 +00:00
|
|
|
import { mapState } from 'vuex'
|
2019-10-08 07:21:48 +00:00
|
|
|
import ProgressButton from '../progress_button/progress_button.vue'
|
2020-02-28 16:39:47 +00:00
|
|
|
import Popover from '../popover/popover.vue'
|
2019-10-08 07:21:48 +00:00
|
|
|
|
|
|
|
const AccountActions = {
|
|
|
|
props: [
|
2020-04-21 20:27:51 +00:00
|
|
|
'user', 'relationship'
|
2019-10-08 07:21:48 +00:00
|
|
|
],
|
|
|
|
data () {
|
2019-10-09 13:20:51 +00:00
|
|
|
return { }
|
2019-10-08 07:21:48 +00:00
|
|
|
},
|
|
|
|
components: {
|
2020-02-28 16:39:47 +00:00
|
|
|
ProgressButton,
|
|
|
|
Popover
|
2019-10-08 07:21:48 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
showRepeats () {
|
|
|
|
this.$store.dispatch('showReblogs', this.user.id)
|
|
|
|
},
|
|
|
|
hideRepeats () {
|
|
|
|
this.$store.dispatch('hideReblogs', this.user.id)
|
|
|
|
},
|
|
|
|
blockUser () {
|
|
|
|
this.$store.dispatch('blockUser', this.user.id)
|
|
|
|
},
|
|
|
|
unblockUser () {
|
|
|
|
this.$store.dispatch('unblockUser', this.user.id)
|
|
|
|
},
|
|
|
|
reportUser () {
|
|
|
|
this.$store.dispatch('openUserReportingModal', this.user.id)
|
2020-05-07 13:10:53 +00:00
|
|
|
},
|
|
|
|
openChat () {
|
|
|
|
this.$router.push({
|
|
|
|
name: 'chat',
|
|
|
|
params: { recipient_id: this.user.id }
|
|
|
|
})
|
2019-10-08 07:21:48 +00:00
|
|
|
}
|
2020-05-07 13:10:53 +00:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState({
|
|
|
|
pleromaChatMessagesAvailable: state => state.instance.pleromaChatMessagesAvailable
|
|
|
|
})
|
2019-10-08 07:21:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default AccountActions
|