2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2023-01-06 18:40:15 +00:00
|
|
|
import type { Ref } from 'vue'
|
|
|
|
|
|
|
|
// Batch requests for relationships when used in the UI
|
|
|
|
// We don't want to hold to old values, so every time a Relationship is needed it
|
|
|
|
// is requested again from the server to show the latest state
|
|
|
|
|
2023-01-08 06:21:09 +00:00
|
|
|
const requestedRelationships = new Map<string, Ref<mastodon.v1.Relationship | undefined>>()
|
2023-01-06 18:40:15 +00:00
|
|
|
let timeoutHandle: NodeJS.Timeout | undefined
|
|
|
|
|
2023-01-08 06:21:09 +00:00
|
|
|
export function useRelationship(account: mastodon.v1.Account): Ref<mastodon.v1.Relationship | undefined> {
|
2023-01-06 18:40:15 +00:00
|
|
|
if (!currentUser.value)
|
|
|
|
return ref()
|
|
|
|
let relationship = requestedRelationships.get(account.id)
|
|
|
|
if (relationship)
|
|
|
|
return relationship
|
2023-01-08 06:21:09 +00:00
|
|
|
relationship = ref<mastodon.v1.Relationship | undefined>()
|
2023-01-06 18:40:15 +00:00
|
|
|
requestedRelationships.set(account.id, relationship)
|
|
|
|
if (timeoutHandle)
|
|
|
|
clearTimeout(timeoutHandle)
|
|
|
|
timeoutHandle = setTimeout(() => {
|
|
|
|
timeoutHandle = undefined
|
|
|
|
fetchRelationships()
|
|
|
|
}, 100)
|
|
|
|
return relationship
|
|
|
|
}
|
|
|
|
|
|
|
|
async function fetchRelationships() {
|
|
|
|
const requested = Array.from(requestedRelationships.entries()).filter(([, r]) => !r.value)
|
2024-01-09 08:56:15 +00:00
|
|
|
const relationships = await useMastoClient().v1.accounts.relationships.fetch({ id: requested.map(([id]) => id) })
|
2023-01-06 18:40:15 +00:00
|
|
|
for (let i = 0; i < requested.length; i++)
|
|
|
|
requested[i][1].value = relationships[i]
|
|
|
|
}
|
2023-06-23 12:24:10 +00:00
|
|
|
|
|
|
|
export async function toggleFollowAccount(relationship: mastodon.v1.Relationship, account: mastodon.v1.Account) {
|
2024-02-21 15:20:08 +00:00
|
|
|
const { client } = useMasto()
|
2023-06-23 12:24:10 +00:00
|
|
|
const i18n = useNuxtApp().$i18n
|
|
|
|
|
2023-07-02 18:09:30 +00:00
|
|
|
const unfollow = relationship!.following || relationship!.requested
|
|
|
|
|
|
|
|
if (unfollow) {
|
2023-06-23 12:24:10 +00:00
|
|
|
if (await openConfirmDialog({
|
|
|
|
title: i18n.t('confirm.unfollow.title'),
|
2024-01-09 19:51:36 +00:00
|
|
|
description: i18n.t('confirm.unfollow.description', [`@${account.acct}`]),
|
2023-06-23 12:24:10 +00:00
|
|
|
confirm: i18n.t('confirm.unfollow.confirm'),
|
|
|
|
cancel: i18n.t('confirm.unfollow.cancel'),
|
|
|
|
}) !== 'confirm')
|
|
|
|
return
|
|
|
|
}
|
2023-07-02 18:09:30 +00:00
|
|
|
|
|
|
|
if (unfollow) {
|
|
|
|
relationship!.following = false
|
|
|
|
relationship!.requested = false
|
|
|
|
}
|
|
|
|
else if (account.locked) {
|
|
|
|
relationship!.requested = true
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
relationship!.following = true
|
|
|
|
}
|
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
relationship = await client.value.v1.accounts.$select(account.id)[unfollow ? 'unfollow' : 'follow']()
|
2023-06-23 12:24:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function toggleMuteAccount(relationship: mastodon.v1.Relationship, account: mastodon.v1.Account) {
|
2024-02-21 15:20:08 +00:00
|
|
|
const { client } = useMasto()
|
2023-06-23 12:24:10 +00:00
|
|
|
const i18n = useNuxtApp().$i18n
|
|
|
|
|
|
|
|
if (!relationship!.muting && await openConfirmDialog({
|
2024-01-09 19:51:36 +00:00
|
|
|
title: i18n.t('confirm.mute_account.title'),
|
|
|
|
description: i18n.t('confirm.mute_account.description', [account.acct]),
|
2023-06-23 12:24:10 +00:00
|
|
|
confirm: i18n.t('confirm.mute_account.confirm'),
|
|
|
|
cancel: i18n.t('confirm.mute_account.cancel'),
|
|
|
|
}) !== 'confirm')
|
|
|
|
return
|
|
|
|
|
|
|
|
relationship!.muting = !relationship!.muting
|
|
|
|
relationship = relationship!.muting
|
2024-02-21 15:20:08 +00:00
|
|
|
? await client.value.v1.accounts.$select(account.id).mute({
|
2023-06-23 12:24:10 +00:00
|
|
|
// TODO support more options
|
|
|
|
})
|
2024-02-21 15:20:08 +00:00
|
|
|
: await client.value.v1.accounts.$select(account.id).unmute()
|
2023-06-23 12:24:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function toggleBlockAccount(relationship: mastodon.v1.Relationship, account: mastodon.v1.Account) {
|
2024-02-21 15:20:08 +00:00
|
|
|
const { client } = useMasto()
|
2023-06-23 12:24:10 +00:00
|
|
|
const i18n = useNuxtApp().$i18n
|
|
|
|
|
|
|
|
if (!relationship!.blocking && await openConfirmDialog({
|
2024-01-09 19:51:36 +00:00
|
|
|
title: i18n.t('confirm.block_account.title'),
|
|
|
|
description: i18n.t('confirm.block_account.description', [account.acct]),
|
2023-06-23 12:24:10 +00:00
|
|
|
confirm: i18n.t('confirm.block_account.confirm'),
|
|
|
|
cancel: i18n.t('confirm.block_account.cancel'),
|
|
|
|
}) !== 'confirm')
|
|
|
|
return
|
|
|
|
|
|
|
|
relationship!.blocking = !relationship!.blocking
|
2024-02-21 15:20:08 +00:00
|
|
|
relationship = await client.value.v1.accounts.$select(account.id)[relationship!.blocking ? 'block' : 'unblock']()
|
2023-06-23 12:24:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function toggleBlockDomain(relationship: mastodon.v1.Relationship, account: mastodon.v1.Account) {
|
2024-02-21 15:20:08 +00:00
|
|
|
const { client } = useMasto()
|
2023-06-23 12:24:10 +00:00
|
|
|
const i18n = useNuxtApp().$i18n
|
|
|
|
|
|
|
|
if (!relationship!.domainBlocking && await openConfirmDialog({
|
2024-01-09 19:51:36 +00:00
|
|
|
title: i18n.t('confirm.block_domain.title'),
|
|
|
|
description: i18n.t('confirm.block_domain.description', [getServerName(account)]),
|
2023-06-23 12:24:10 +00:00
|
|
|
confirm: i18n.t('confirm.block_domain.confirm'),
|
|
|
|
cancel: i18n.t('confirm.block_domain.cancel'),
|
|
|
|
}) !== 'confirm')
|
|
|
|
return
|
|
|
|
|
|
|
|
relationship!.domainBlocking = !relationship!.domainBlocking
|
2024-02-21 15:20:08 +00:00
|
|
|
await client.value.v1.domainBlocks[relationship!.domainBlocking ? 'create' : 'remove']({ domain: getServerName(account) })
|
2023-06-23 12:24:10 +00:00
|
|
|
}
|