2018-03-14 15:36:12 +00:00
|
|
|
import { store } from '../_store/store'
|
|
|
|
import { deleteStatus } from '../_api/delete'
|
2018-12-22 23:37:51 +00:00
|
|
|
import { toast } from '../_components/toast/toast'
|
2018-12-13 07:45:52 +00:00
|
|
|
import { deleteStatus as deleteStatusLocally } from './deleteStatuses'
|
2018-03-14 15:36:12 +00:00
|
|
|
|
|
|
|
export async function doDeleteStatus (statusId) {
|
2019-08-03 20:49:37 +00:00
|
|
|
const { currentInstance, accessToken } = store.get()
|
2018-03-14 15:36:12 +00:00
|
|
|
try {
|
2019-08-03 20:49:37 +00:00
|
|
|
const deletedStatus = await deleteStatus(currentInstance, accessToken, statusId)
|
2018-12-13 07:45:52 +00:00
|
|
|
deleteStatusLocally(currentInstance, statusId)
|
2018-03-14 15:36:12 +00:00
|
|
|
toast.say('Status deleted.')
|
2019-07-19 15:09:52 +00:00
|
|
|
return deletedStatus
|
2018-03-14 15:36:12 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
|
|
|
toast.say('Unable to delete status: ' + (e.message || ''))
|
2019-07-19 15:09:52 +00:00
|
|
|
throw e
|
2018-03-14 15:36:12 +00:00
|
|
|
}
|
|
|
|
}
|