elk/components/tag/TagActionButton.vue

38 lines
1,008 B
Vue
Raw Normal View History

2022-11-28 20:46:04 +00:00
<script setup lang="ts">
2023-01-08 06:21:09 +00:00
import type { mastodon } from 'masto'
2022-11-28 20:46:04 +00:00
const { tag } = defineProps<{
2023-01-08 06:21:09 +00:00
tag: mastodon.v1.Tag
2022-11-28 20:46:04 +00:00
}>()
const emit = defineEmits<{
(event: 'change'): void
}>()
2023-01-08 06:21:09 +00:00
const masto = useMasto()
2022-11-28 20:46:04 +00:00
const toggleFollowTag = async () => {
if (tag.following)
2023-01-08 06:21:09 +00:00
await masto.v1.tags.unfollow(tag.name)
2022-11-28 20:46:04 +00:00
else
2023-01-08 06:21:09 +00:00
await masto.v1.tags.follow(tag.name)
2022-11-28 20:46:04 +00:00
emit('change')
}
</script>
<template>
<button
rounded group focus:outline-none
hover:text-primary focus-visible:text-primary
:aria-label="tag.following ? $t('tag.unfollow_label', [tag.name]) : $t('tag.follow_label', [tag.name])"
2022-11-28 20:46:04 +00:00
@click="toggleFollowTag()"
>
<CommonTooltip placement="bottom" :content="tag.following ? $t('tag.unfollow') : $t('tag.follow')">
2022-11-28 20:46:04 +00:00
<div rounded-full p2 group-hover="bg-orange/10" group-focus-visible="bg-orange/10" group-focus-visible:ring="2 current">
<div :class="[tag.following ? 'i-ri:star-fill' : 'i-ri:star-line']" />
</div>
</CommonTooltip>
</button>
</template>