pleroma-fe/src/components/follow_button/follow_button.js

54 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-10-08 09:21:48 +02:00
import { requestFollow, requestUnfollow } from '../../services/follow_manipulate/follow_manipulate'
export default {
2019-10-17 15:19:52 +02:00
props: ['user', 'labelFollowing', 'buttonClass'],
2019-10-08 09:21:48 +02:00
data () {
return {
inProgress: false
}
},
computed: {
isPressed () {
return this.inProgress || this.user.following
},
title () {
if (this.inProgress || this.user.following) {
return this.$t('user_card.follow_unfollow')
} else if (this.user.requested) {
return this.$t('user_card.follow_again')
} else {
return this.$t('user_card.follow')
}
},
label () {
if (this.inProgress) {
return this.$t('user_card.follow_progress')
} else if (this.user.following) {
2019-10-17 15:19:52 +02:00
return this.labelFollowing || this.$t('user_card.following')
2019-10-08 09:21:48 +02:00
} else if (this.user.requested) {
return this.$t('user_card.follow_sent')
} else {
return this.$t('user_card.follow')
}
}
},
methods: {
onClick () {
2019-10-08 15:55:36 +02:00
this.user.following ? this.unfollow() : this.follow()
2019-10-08 09:21:48 +02:00
},
follow () {
this.inProgress = true
requestFollow(this.user, this.$store).then(() => {
this.inProgress = false
})
},
unfollow () {
const store = this.$store
this.inProgress = true
requestUnfollow(this.user, store).then(() => {
this.inProgress = false
store.commit('removeStatus', { timeline: 'friends', userId: this.user.id })
})
}
}
}