27 lines
879 B
JavaScript
27 lines
879 B
JavaScript
import { store } from '../_store/store'
|
|
import { muteConversation, unmuteConversation } from '../_api/muteConversation'
|
|
import { toast } from '../_utils/toast'
|
|
import { database } from '../_database/database'
|
|
|
|
export async function setConversationMuted (statusId, mute, toastOnSuccess) {
|
|
let { currentInstance, accessToken } = store.get()
|
|
try {
|
|
if (mute) {
|
|
await muteConversation(currentInstance, accessToken, statusId)
|
|
} else {
|
|
await unmuteConversation(currentInstance, accessToken, statusId)
|
|
}
|
|
await database.setStatusMuted(currentInstance, statusId, mute)
|
|
if (toastOnSuccess) {
|
|
if (mute) {
|
|
toast.say('Muted conversation')
|
|
} else {
|
|
toast.say('Unmuted conversation')
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.error(e)
|
|
toast.say(`Unable to ${mute ? 'mute' : 'unmute'} conversation: ` + (e.message || ''))
|
|
}
|
|
}
|