2018-03-02 05:21:49 +00:00
|
|
|
import { store } from '../_store/store'
|
|
|
|
import { uploadMedia } from '../_api/media'
|
2018-12-22 23:37:51 +00:00
|
|
|
import { toast } from '../_components/toast/toast'
|
2018-03-03 19:26:10 +00:00
|
|
|
import { scheduleIdleTask } from '../_utils/scheduleIdleTask'
|
2020-11-24 23:37:10 +00:00
|
|
|
import { setCachedMediaFile } from '../_utils/mediaUploadFileCache'
|
2018-03-02 05:21:49 +00:00
|
|
|
|
2018-03-03 18:11:32 +00:00
|
|
|
export async function doMediaUpload (realm, file) {
|
2019-08-03 20:49:37 +00:00
|
|
|
const { currentInstance, accessToken } = store.get()
|
2018-08-30 04:42:57 +00:00
|
|
|
store.set({ uploadingMedia: true })
|
2018-03-02 05:21:49 +00:00
|
|
|
try {
|
2019-08-03 20:49:37 +00:00
|
|
|
const response = await uploadMedia(currentInstance, accessToken, file)
|
|
|
|
const composeMedia = store.getComposeData(realm, 'media') || []
|
2018-12-15 10:06:12 +00:00
|
|
|
if (composeMedia.length === 4) {
|
|
|
|
throw new Error('Only 4 media max are allowed')
|
|
|
|
}
|
2020-11-24 23:37:10 +00:00
|
|
|
await setCachedMediaFile(response.id, file)
|
2018-03-03 22:15:50 +00:00
|
|
|
composeMedia.push({
|
2018-03-02 05:21:49 +00:00
|
|
|
data: response,
|
2018-08-27 01:54:59 +00:00
|
|
|
file: { name: file.name },
|
|
|
|
description: ''
|
2018-03-02 05:21:49 +00:00
|
|
|
})
|
2018-03-03 22:51:48 +00:00
|
|
|
store.setComposeData(realm, {
|
2018-08-27 01:54:59 +00:00
|
|
|
media: composeMedia
|
2018-03-03 22:51:48 +00:00
|
|
|
})
|
2018-03-03 19:26:10 +00:00
|
|
|
scheduleIdleTask(() => store.save())
|
2018-03-02 05:21:49 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
2020-11-29 22:13:27 +00:00
|
|
|
/* no await */ toast.say('intl.failedToUploadMedia', { error: (e.message || '') })
|
2018-03-02 05:21:49 +00:00
|
|
|
} finally {
|
2018-08-30 04:42:57 +00:00
|
|
|
store.set({ uploadingMedia: false })
|
2018-03-02 05:21:49 +00:00
|
|
|
}
|
2018-03-03 01:54:38 +00:00
|
|
|
}
|
2018-03-03 05:55:04 +00:00
|
|
|
|
2018-03-03 18:11:32 +00:00
|
|
|
export function deleteMedia (realm, i) {
|
2019-08-03 20:49:37 +00:00
|
|
|
const composeMedia = store.getComposeData(realm, 'media')
|
2018-08-27 01:54:59 +00:00
|
|
|
composeMedia.splice(i, 1)
|
2018-04-10 01:30:15 +00:00
|
|
|
|
2018-03-03 22:51:48 +00:00
|
|
|
store.setComposeData(realm, {
|
2018-08-27 01:54:59 +00:00
|
|
|
media: composeMedia
|
2018-03-03 22:51:48 +00:00
|
|
|
})
|
2019-09-17 07:19:59 +00:00
|
|
|
if (!composeMedia.length) {
|
|
|
|
const contentWarningShown = store.getComposeData(realm, 'contentWarningShown')
|
|
|
|
const contentWarning = store.getComposeData(realm, 'contentWarning')
|
|
|
|
store.setComposeData(realm, {
|
|
|
|
sensitive: contentWarningShown && contentWarning // reset sensitive if the last media is deleted
|
|
|
|
})
|
|
|
|
}
|
2018-03-03 19:26:10 +00:00
|
|
|
scheduleIdleTask(() => store.save())
|
2018-03-03 05:55:04 +00:00
|
|
|
}
|