yandere_fe/src/components/account_actions/account_actions.js

35 lines
726 B
JavaScript
Raw Normal View History

2019-10-08 00:21:48 -07:00
import ProgressButton from '../progress_button/progress_button.vue'
2020-02-28 08:39:47 -08:00
import Popover from '../popover/popover.vue'
2019-10-08 00:21:48 -07:00
const AccountActions = {
props: [
'user'
],
data () {
2019-10-09 06:20:51 -07:00
return { }
2019-10-08 00:21:48 -07:00
},
components: {
2020-02-28 08:39:47 -08:00
ProgressButton,
Popover
2019-10-08 00:21:48 -07: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)
}
}
}
export default AccountActions