diff options
| author | Maksim Pechnikov <parallel588@gmail.com> | 2019-10-08 10:21:40 +0300 |
|---|---|---|
| committer | Maksim Pechnikov <parallel588@gmail.com> | 2019-10-08 10:21:40 +0300 |
| commit | 9c305c5f93b2ffee0a98ff8cc6770df052d4b71e (patch) | |
| tree | a99d9ed2ab174eea4533146b8f97c6bde9170eae /src/components/account_actions/account_actions.js | |
| parent | 188b6f56ed2f983d8f0fba4dc8f7327ebbee321d (diff) | |
Revert "added acccount_actions component"
This reverts commit 188b6f56ed2f983d8f0fba4dc8f7327ebbee321d.
Diffstat (limited to 'src/components/account_actions/account_actions.js')
| -rw-r--r-- | src/components/account_actions/account_actions.js | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/src/components/account_actions/account_actions.js b/src/components/account_actions/account_actions.js deleted file mode 100644 index 1092a96a..00000000 --- a/src/components/account_actions/account_actions.js +++ /dev/null @@ -1,59 +0,0 @@ -import FollowButton from '../follow_button/follow_button.vue' -import ProgressButton from '../progress_button/progress_button.vue' - -const AccountActions = { - props: [ - 'user' - ], - data () { - return { - showDropDown: false - } - }, - components: { - FollowButton, - ProgressButton - }, - computed: { - tagsSet () { - return new Set(this.user.tags) - }, - hasTagPolicy () { - return this.$store.state.instance.tagPolicyAvailable - } - }, - methods: { - subscribeUser () { - return this.$store.dispatch('subscribeUser', this.user.id) - }, - unsubscribeUser () { - return this.$store.dispatch('unsubscribeUser', this.user.id) - }, - showRepeats () { - this.$store.dispatch('showReblogs', this.user.id) - }, - hideRepeats () { - this.$store.dispatch('hideReblogs', this.user.id) - }, - muteUser () { - this.$store.dispatch('muteUser', this.user.id) - }, - unmuteUser () { - this.$store.dispatch('unmuteUser', 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) - }, - mentionUser () { - this.$store.dispatch('openPostStatusModal', { replyTo: true, repliedUser: this.user }) - } - } -} - -export default AccountActions |
