akkoma-fe/src/components/account_actions/account_actions.js

43 lines
910 B
JavaScript
Raw Normal View History

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'
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faEllipsisV
} from '@fortawesome/free-solid-svg-icons'
library.add(
faEllipsisV
)
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', { userId: this.user.id })
2019-10-08 07:21:48 +00:00
}
}
}
export default AccountActions