forked from Mirrors/elk
feat: confirm before unfollow (#1208)
Closes https://github.com/elk-zone/elk/issues/35
This commit is contained in:
parent
46d350f442
commit
512d0901ce
4 changed files with 30 additions and 2 deletions
|
@ -8,12 +8,21 @@ const { account, command, context, ...props } = defineProps<{
|
||||||
command?: boolean
|
command?: boolean
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
|
const { t } = useI18n()
|
||||||
const isSelf = $(useSelfAccount(() => account))
|
const isSelf = $(useSelfAccount(() => account))
|
||||||
const enable = $computed(() => !isSelf && currentUser.value)
|
const enable = $computed(() => !isSelf && currentUser.value)
|
||||||
const relationship = $computed(() => props.relationship || useRelationship(account).value)
|
const relationship = $computed(() => props.relationship || useRelationship(account).value)
|
||||||
|
|
||||||
const { client } = $(useMasto())
|
const { client } = $(useMasto())
|
||||||
async function toggleFollow() {
|
async function toggleFollow() {
|
||||||
|
if (relationship!.following) {
|
||||||
|
if (await openConfirmDialog({
|
||||||
|
title: t('confirm.unfollow.title'),
|
||||||
|
confirm: t('confirm.unfollow.confirm'),
|
||||||
|
cancel: t('confirm.unfollow.cancel'),
|
||||||
|
}) !== 'confirm')
|
||||||
|
return
|
||||||
|
}
|
||||||
relationship!.following = !relationship!.following
|
relationship!.following = !relationship!.following
|
||||||
try {
|
try {
|
||||||
const newRel = await client.v1.accounts[relationship!.following ? 'follow' : 'unfollow'](account.id)
|
const newRel = await client.v1.accounts[relationship!.following ? 'follow' : 'unfollow'](account.id)
|
||||||
|
@ -52,8 +61,6 @@ async function unmute() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const { t } = useI18n()
|
|
||||||
|
|
||||||
useCommand({
|
useCommand({
|
||||||
scope: 'Actions',
|
scope: 'Actions',
|
||||||
order: -2,
|
order: -2,
|
||||||
|
|
|
@ -104,6 +104,13 @@
|
||||||
"draft_title": "Draft {0}",
|
"draft_title": "Draft {0}",
|
||||||
"drafts": "Drafts ({v})"
|
"drafts": "Drafts ({v})"
|
||||||
},
|
},
|
||||||
|
"confirm": {
|
||||||
|
"unfollow": {
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"confirm": "Unfollow",
|
||||||
|
"title": "Are you sure you want to unfollow?"
|
||||||
|
}
|
||||||
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
"with": "with"
|
"with": "with"
|
||||||
},
|
},
|
||||||
|
|
|
@ -100,6 +100,13 @@
|
||||||
"draft_title": "草稿 {0}",
|
"draft_title": "草稿 {0}",
|
||||||
"drafts": "草稿 ({v})"
|
"drafts": "草稿 ({v})"
|
||||||
},
|
},
|
||||||
|
"confirm": {
|
||||||
|
"unfollow": {
|
||||||
|
"cancel": "取消",
|
||||||
|
"confirm": "取消关注",
|
||||||
|
"title": "你确定要取消关注吗?"
|
||||||
|
}
|
||||||
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
"with": "与"
|
"with": "与"
|
||||||
},
|
},
|
||||||
|
|
|
@ -103,6 +103,13 @@
|
||||||
"draft_title": "草稿 {0}",
|
"draft_title": "草稿 {0}",
|
||||||
"drafts": "草稿 ({v})"
|
"drafts": "草稿 ({v})"
|
||||||
},
|
},
|
||||||
|
"confirm": {
|
||||||
|
"unfollow": {
|
||||||
|
"cancel": "取消",
|
||||||
|
"confirm": "取消關注",
|
||||||
|
"title": "你確定要取消關注嗎?"
|
||||||
|
}
|
||||||
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
"with": "與"
|
"with": "與"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue