28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
|
import { store } from '../_store/store'
|
||
|
import { database } from '../_database/database'
|
||
|
import { toast } from '../_utils/toast'
|
||
|
import { reblogStatus, unreblogStatus } from '../_api/reblog'
|
||
|
|
||
|
export async function setReblogged (statusId, reblogged) {
|
||
|
if (!store.get('online')) {
|
||
|
toast.say(`You cannot ${reblogged ? 'boost' : 'unboost'} while offline.`)
|
||
|
return
|
||
|
}
|
||
|
let instanceName = store.get('currentInstance')
|
||
|
let accessToken = store.get('accessToken')
|
||
|
try {
|
||
|
await (reblogged
|
||
|
? reblogStatus(instanceName, accessToken, statusId)
|
||
|
: unreblogStatus(instanceName, accessToken, statusId))
|
||
|
await database.setStatusReblogged(instanceName, statusId, reblogged)
|
||
|
let statusModifications = store.get('statusModifications')
|
||
|
let currentStatusModifications = statusModifications[instanceName] =
|
||
|
(statusModifications[instanceName] || {favorites: {}, reblogs: {}})
|
||
|
currentStatusModifications.reblogs[statusId] = reblogged
|
||
|
store.set({statusModifications: statusModifications})
|
||
|
} catch (e) {
|
||
|
console.error(e)
|
||
|
toast.say(`Failed to ${reblogged ? 'boost' : 'unboost'}. ` + (e.message || ''))
|
||
|
}
|
||
|
}
|