pinafore/routes/_actions/mute.js

29 wiersze
896 B
JavaScript
Czysty Zwykły widok Historia

2018-04-15 05:18:48 +00:00
import { store } from '../_store/store'
import { muteAccount, unmuteAccount } from '../_api/mute'
import { toast } from '../_utils/toast'
import { updateProfileAndRelationship } from './accounts'
import { emit } from '../_utils/eventBus'
2018-04-15 05:18:48 +00:00
export async function setAccountMuted (accountId, mute, toastOnSuccess) {
let { currentInstance, accessToken } = store.get()
2018-04-15 05:18:48 +00:00
try {
if (mute) {
await muteAccount(currentInstance, accessToken, accountId)
2018-04-15 05:18:48 +00:00
} else {
await unmuteAccount(currentInstance, accessToken, accountId)
2018-04-15 05:18:48 +00:00
}
await updateProfileAndRelationship(accountId)
if (toastOnSuccess) {
if (mute) {
toast.say('Muted account')
} else {
toast.say('Unmuted account')
}
}
emit('refreshAccountsList')
2018-04-15 05:18:48 +00:00
} catch (e) {
console.error(e)
toast.say(`Unable to ${mute ? 'mute' : 'unmute'} account: ` + (e.message || ''))
}
}