elk/components/account/AccountFollowButton.vue

75 lines
2.5 KiB
Vue
Raw Normal View History

2022-11-22 22:40:20 +00:00
<script setup lang="ts">
import type { Account, Relationship } from 'masto'
2022-11-22 22:40:20 +00:00
const { account, command, ...props } = defineProps<{
2022-11-22 22:40:20 +00:00
account: Account
relationship?: Relationship
command?: boolean
2022-11-22 22:40:20 +00:00
}>()
2022-11-24 15:48:52 +00:00
const isSelf = $computed(() => currentUser.value?.account.id === account.id)
const enable = $computed(() => !isSelf && currentUser.value)
2022-12-04 16:41:37 +00:00
const relationship = $computed(() => props.relationship || useRelationship(account).value)
2022-11-22 22:40:20 +00:00
async function toggleFollow() {
2022-12-04 16:41:37 +00:00
relationship!.following = !relationship!.following
2022-11-26 12:58:10 +00:00
try {
2022-12-04 16:41:37 +00:00
const newRel = await useMasto().accounts[relationship!.following ? 'follow' : 'unfollow'](account.id)
Object.assign(relationship!, newRel)
2022-11-26 12:58:10 +00:00
}
catch {
// TODO error handling
2022-12-04 16:41:37 +00:00
relationship!.following = !relationship!.following
2022-11-26 12:58:10 +00:00
}
2022-11-22 22:40:20 +00:00
}
2022-11-30 02:16:15 +00:00
const { t } = useI18n()
useCommand({
scope: 'Actions',
order: -2,
visible: () => command && enable,
2022-12-04 16:41:37 +00:00
name: () => `${relationship?.following ? t('account.unfollow') : t('account.follow')} ${getShortHandle(account)}`,
icon: 'i-ri:star-line',
onActivate: () => toggleFollow(),
})
const buttonStyle = $computed(() => {
// Skeleton while loading, avoid primary color flash
2022-12-04 16:41:37 +00:00
if (!relationship)
return 'text-inverted'
// If following, use a label style with a strong border for Mutuals
2022-12-04 16:41:37 +00:00
if (relationship.following)
return `text-base ${relationship.followedBy ? 'border-strong' : 'border-base'}`
// If not following, use a button style
return 'text-inverted bg-primary border-primary'
})
2022-11-22 22:40:20 +00:00
</script>
<template>
<button
v-if="enable"
2022-11-29 20:04:23 +00:00
gap-1 items-center group
:disabled="relationship?.requested"
2022-11-29 20:04:23 +00:00
border-1
rounded-full flex="~ gap2 center" font-500 w-30 h-fit py1 :class="buttonStyle" :hover="relationship?.following ? 'border-red text-red' : 'bg-base border-primary text-primary'" @click="toggleFollow"
>
2022-11-29 20:04:23 +00:00
<template v-if="relationship?.following">
2022-11-30 02:16:15 +00:00
<span group-hover="hidden">{{ relationship?.followedBy ? $t('account.mutuals') : $t('account.following') }}</span>
2022-11-29 20:04:23 +00:00
<span hidden group-hover="inline">{{ $t('account.unfollow') }}</span>
</template>
<template v-else-if="relationship?.requested">
<span>{{ $t('account.follow_requested') }}</span>
</template>
<template v-else-if="relationship?.followedBy">
<span group-hover="hidden">{{ $t('account.follows_you') }}</span>
<span hidden group-hover="inline">{{ $t('account.follow_back') }}</span>
</template>
<template v-else>
<span>{{ $t('account.follow') }}</span>
</template>
2022-11-22 22:40:20 +00:00
</button>
</template>