semaphore/src/routes/_actions/block.js

34 lines
1.2 KiB
JavaScript

import { store } from '../_store/store.js'
import { blockAccount, unblockAccount } from '../_api/block.js'
import { toast } from '../_components/toast/toast.js'
import { updateLocalRelationship } from './accounts.js'
import { emit } from '../_utils/eventBus.js'
import { formatIntl } from '../_utils/formatIntl.js'
export async function setAccountBlocked (accountId, block, toastOnSuccess) {
const { currentInstance, accessToken } = store.get()
try {
let relationship
if (block) {
relationship = await blockAccount(currentInstance, accessToken, accountId)
} else {
relationship = await unblockAccount(currentInstance, accessToken, accountId)
}
await updateLocalRelationship(currentInstance, accountId, relationship)
if (toastOnSuccess) {
if (block) {
/* no await */ toast.say('intl.blockedAccount')
} else {
/* no await */ toast.say('intl.unblockedAccount')
}
}
emit('refreshAccountsList')
} catch (e) {
console.error(e)
/* no await */ toast.say(block
? formatIntl('intl.unableToBlock', { block: !!block, error: (e.message || '') })
: formatIntl('intl.unableToUnblock', { error: (e.message || '') })
)
}
}