feat: muting feedback on follow button

pull/460/head^2
patak 2022-12-19 15:29:12 +01:00
rodzic e72d45a208
commit 15b59ae9b9
6 zmienionych plików z 36 dodań i 7 usunięć

Wyświetl plik

@ -35,6 +35,18 @@ async function unblock() {
}
}
async function unmute() {
relationship!.muting = false
try {
const newRel = await useMasto().accounts.unmute(account.id)
Object.assign(relationship!, newRel)
}
catch {
// TODO error handling
relationship!.muting = true
}
}
const { t } = useI18n()
useCommand({
@ -54,6 +66,9 @@ const buttonStyle = $computed(() => {
if (relationship.blocking)
return 'text-inverted bg-red border-red'
if (relationship.muting)
return 'text-base bg-code border-base'
// If following, use a label style with a strong border for Mutuals
if (relationship.following)
return `text-base ${relationship.followedBy ? 'border-strong' : 'border-base'}`
@ -71,13 +86,17 @@ const buttonStyle = $computed(() => {
border-1
rounded-full flex="~ gap2 center" font-500 w-30 h-fit py1
:class="buttonStyle"
:hover="!relationship?.blocking && relationship?.following ? 'border-red text-red' : 'bg-base border-primary text-primary'"
@click="relationship?.blocking ? unblock() : toggleFollow()"
:hover="!relationship?.blocking && !relationship?.muting && relationship?.following ? 'border-red text-red' : 'bg-base border-primary text-primary'"
@click="relationship?.blocking ? unblock() : relationship?.muting ? unmute() : toggleFollow()"
>
<template v-if="relationship?.blocking">
<span group-hover="hidden">{{ $t('account.blocking') }}</span>
<span hidden group-hover="inline">{{ $t('account.unblock') }}</span>
</template>
<template v-if="relationship?.muting">
<span group-hover="hidden">{{ $t('account.muting') }}</span>
<span hidden group-hover="inline">{{ $t('account.unmute') }}</span>
</template>
<template v-else-if="relationship?.following">
<span group-hover="hidden">{{ relationship?.followedBy ? $t('account.mutuals') : $t('account.following') }}</span>
<span hidden group-hover="inline">{{ $t('account.unfollow') }}</span>

Wyświetl plik

@ -19,6 +19,7 @@
"joined": "Joined",
"moved_title": "has indicated that their new account is now:",
"muted_users": "Muted users",
"muting": "Muted",
"mutuals": "Mutuals",
"pinned": "Pinned",
"posts": "Posts",
@ -26,7 +27,8 @@
"profile_description": "{0}'s profile header",
"profile_unavailable": "Profile unavailable",
"unblock": "Unblock",
"unfollow": "Unfollow"
"unfollow": "Unfollow",
"unmute": "Unmute"
},
"action": {
"bookmark": "Bookmark",

Wyświetl plik

@ -18,6 +18,7 @@
"joined": "Se unió",
"moved_title": "ha indicado que su nueva cuenta ahora es:",
"muted_users": "Usuarios silenciados",
"muting": "Muted",
"mutuals": "Mutuo",
"pinned": "Publicaciones fijadas",
"posts": "Publicaciones",
@ -25,7 +26,8 @@
"profile_description": "Encabezado del perfil de {0}",
"profile_unavailable": "Perfil no disponible",
"unblock": "Unblock",
"unfollow": "Dejar de seguir"
"unfollow": "Dejar de seguir",
"unmute": "Unmute"
},
"action": {
"bookmark": "Añadir marcador",

Wyświetl plik

@ -19,6 +19,7 @@
"joined": "a rejoint",
"moved_title": "a indiqué que son nouveau compte est désormais :",
"muted_users": "Utilisateurs mis en sourdine",
"muting": "Muted",
"mutuals": "@:account.following",
"pinned": "Épinglés",
"posts": "Messages",
@ -26,7 +27,8 @@
"profile_description": "En-tête du profil de {0}",
"profile_unavailable": "Profil non accessible",
"unblock": "Unblock",
"unfollow": "Ne plus suivre"
"unfollow": "Ne plus suivre",
"unmute": "Unmute"
},
"action": {
"bookmark": "Ajouter aux marque-pages",

Wyświetl plik

@ -11,10 +11,12 @@
"following_count": "{0} フォロー中",
"follows_you": "フォローされています",
"muted_users": "ミュート済み",
"muting": "Muted",
"pinned": "固定された投稿",
"posts_count": "{0} 投稿",
"unblock": "Unblock",
"unfollow": "フォロー解除"
"unfollow": "フォロー解除",
"unmute": "Unmute"
},
"action": {
"compose": "今なにしてる?",

Wyświetl plik

@ -19,6 +19,7 @@
"joined": "已加入",
"moved_title": "的新账号是:",
"muted_users": "已屏蔽的用户",
"muting": "Muted",
"mutuals": "互相关注",
"pinned": "置顶的帖文",
"posts": "帖文",
@ -26,7 +27,8 @@
"profile_description": "{0}的个人资料头图",
"profile_unavailable": "个人资料不可见",
"unblock": "Unblock",
"unfollow": "取消关注"
"unfollow": "取消关注",
"unmute": "Unmute"
},
"action": {
"bookmark": "收藏",