2018-04-12 05:55:04 +00:00
|
|
|
<div class="account-profile-follow {{shown ? 'shown' : ''}}">
|
|
|
|
<IconButton
|
|
|
|
label="{{followLabel}}"
|
|
|
|
href="{{followIcon}}"
|
|
|
|
pressable="true"
|
|
|
|
pressed="{{following}}"
|
|
|
|
big="true"
|
|
|
|
on:click="onFollowButtonClick(event)"
|
|
|
|
animation="{{animateFollowButton && followButtonAnimation}}"
|
|
|
|
/>
|
2018-03-31 23:51:18 +00:00
|
|
|
</div>
|
|
|
|
<style>
|
|
|
|
.account-profile-follow {
|
|
|
|
grid-area: follow;
|
|
|
|
align-self: flex-start;
|
2018-04-12 05:55:04 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.account-profile-follow.shown {
|
|
|
|
display: block;
|
2018-03-31 23:51:18 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import IconButton from '../IconButton.html'
|
|
|
|
import { FOLLOW_BUTTON_ANIMATION } from '../../_static/animations'
|
|
|
|
import { store } from '../../_store/store'
|
|
|
|
import { setAccountFollowed } from '../../_actions/follow'
|
2018-04-15 01:47:55 +00:00
|
|
|
import { setAccountBlocked } from '../../_actions/block'
|
2018-03-31 23:51:18 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
async onFollowButtonClick(e) {
|
|
|
|
e.preventDefault()
|
|
|
|
e.stopPropagation()
|
2018-04-03 16:51:34 +00:00
|
|
|
let account = this.get('account')
|
2018-03-31 23:51:18 +00:00
|
|
|
let accountId = this.get('accountId')
|
|
|
|
let following = this.get('following')
|
|
|
|
let followRequested = this.get('followRequested')
|
2018-04-15 01:47:55 +00:00
|
|
|
let blocking = this.get('blocking')
|
2018-04-12 05:55:04 +00:00
|
|
|
this.set({animateFollowButton: true}) // TODO: this should be an event, not toggling a boolean
|
2018-04-15 01:47:55 +00:00
|
|
|
if (blocking) { // unblock
|
|
|
|
await setAccountBlocked(accountId, false)
|
|
|
|
} else { // follow/unfollow
|
|
|
|
let newFollowingValue = !(following || followRequested)
|
|
|
|
if (!account.locked) { // be optimistic, show the user that it succeeded
|
|
|
|
this.set({overrideFollowing: newFollowingValue})
|
|
|
|
}
|
|
|
|
await setAccountFollowed(accountId, newFollowingValue)
|
2018-04-03 16:51:34 +00:00
|
|
|
}
|
2018-04-15 01:47:55 +00:00
|
|
|
|
2018-04-12 05:55:04 +00:00
|
|
|
this.set({animateFollowButton: false}) // let animation play next time
|
2018-03-31 23:51:18 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
store: () => store,
|
|
|
|
data: () => ({
|
|
|
|
followButtonAnimation: FOLLOW_BUTTON_ANIMATION
|
|
|
|
}),
|
|
|
|
computed: {
|
|
|
|
accountId: (account) => account.id,
|
2018-04-03 16:51:34 +00:00
|
|
|
following: (relationship, overrideFollowing) => {
|
|
|
|
if (typeof overrideFollowing === 'boolean') {
|
|
|
|
return overrideFollowing
|
|
|
|
}
|
|
|
|
return relationship && relationship.following
|
|
|
|
},
|
2018-04-15 01:47:55 +00:00
|
|
|
blocking: (relationship) => relationship.blocking,
|
2018-03-31 23:51:18 +00:00
|
|
|
followRequested: (relationship, account) => {
|
|
|
|
return relationship && relationship.requested && account && account.locked
|
|
|
|
},
|
2018-04-15 01:47:55 +00:00
|
|
|
followLabel: (blocking, following, followRequested) => {
|
|
|
|
if (blocking) {
|
|
|
|
return 'Unblock'
|
|
|
|
} else if (following) {
|
2018-03-31 23:51:18 +00:00
|
|
|
return 'Unfollow'
|
|
|
|
} else if (followRequested) {
|
|
|
|
return 'Unfollow (follow requested)'
|
|
|
|
} else {
|
|
|
|
return 'Follow'
|
|
|
|
}
|
|
|
|
},
|
2018-04-15 01:47:55 +00:00
|
|
|
followIcon: (blocking, following, followRequested) => {
|
|
|
|
if (blocking) {
|
|
|
|
return '#fa-unlock'
|
|
|
|
} else if (following) {
|
2018-03-31 23:51:18 +00:00
|
|
|
return '#fa-user-times'
|
|
|
|
} else if (followRequested) {
|
|
|
|
return '#fa-hourglass'
|
|
|
|
} else {
|
|
|
|
return '#fa-user-plus'
|
|
|
|
}
|
2018-04-12 05:55:04 +00:00
|
|
|
},
|
|
|
|
shown: (verifyCredentials, relationship) => {
|
|
|
|
return verifyCredentials && relationship && verifyCredentials.id !== relationship.id
|
2018-03-31 23:51:18 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
IconButton
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|