Revert "added acccount_actions component"

This reverts commit 188b6f56ed.
This commit is contained in:
Maksim Pechnikov 2019-10-08 10:21:40 +03:00
parent 188b6f56ed
commit 9c305c5f93
6 changed files with 178 additions and 268 deletions

View file

@ -1,58 +0,0 @@
import { requestFollow, requestUnfollow } from '../../services/follow_manipulate/follow_manipulate'
export default {
props: ['user'],
data () {
return {
inProgress: false
}
},
computed: {
isPressed () {
return this.inProgress || this.user.following
},
title () {
if (this.inProgress || this.user.following) {
return 'user_card.follow_unfollow'
} else if (this.user.requested) {
return 'user_card.follow_again'
} else {
return ''
}
},
label () {
if (this.inProgress) {
return 'user_card.follow_progress'
} else if (this.user.following) {
return 'user_card.following'
} else if (this.user.requested) {
return 'user_card.follow_sent'
} else {
return 'user_card.follow'
}
}
},
methods: {
doClick () {
if (this.user.following) {
this.unfollowUser()
} else {
this.followUser()
}
},
followUser () {
const store = this.$store
this.inProgress = true
requestFollow(this.user, store).then(() => {
this.inProgress = false
})
},
unfollowUser () {
const store = this.$store
this.inProgress = true
requestUnfollow(this.user, store).then(() => {
this.inProgress = false
store.commit('removeStatus', { timeline: 'friends', userId: this.user.id })
})
}
}
}