
* first attempt * progress * working * working * test timeago * rm * get timeago working * reduce size * fix whitespace * more intl stuff * more effort * more work * more progress * more work * more intl * set lang=LOCALE * flatten * more work * add ltr/rtl * more work * add comments * yet more work * still more work * more work * fix tests * more test and string fixes * fix test * fix test * fix test * fix some more strings, add test * fix snackbar * fix } * fix typo * fix english * measure perf * start on french * more work on french * more french * more french * finish french * fix some missing translations * update readme * fix test
33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
import { store } from '../_store/store'
|
|
import { blockAccount, unblockAccount } from '../_api/block'
|
|
import { toast } from '../_components/toast/toast'
|
|
import { updateLocalRelationship } from './accounts'
|
|
import { emit } from '../_utils/eventBus'
|
|
import { formatIntl } from '../_utils/formatIntl'
|
|
|
|
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 || '') })
|
|
)
|
|
}
|
|
}
|