2018-03-02 06:21:49 +01:00
|
|
|
import { store } from '../_store/store'
|
|
|
|
import { uploadMedia } from '../_api/media'
|
2018-12-23 00:37:51 +01:00
|
|
|
import { toast } from '../_components/toast/toast'
|
2018-03-03 20:26:10 +01:00
|
|
|
import { scheduleIdleTask } from '../_utils/scheduleIdleTask'
|
2020-11-25 00:37:10 +01:00
|
|
|
import { setCachedMediaFile } from '../_utils/mediaUploadFileCache'
|
2018-03-02 06:21:49 +01:00
|
|
|
|
2018-03-03 19:11:32 +01:00
|
|
|
export async function doMediaUpload (realm, file) {
|
2019-08-03 22:49:37 +02:00
|
|
|
const { currentInstance, accessToken } = store.get()
|
2018-08-30 06:42:57 +02:00
|
|
|
store.set({ uploadingMedia: true })
|
2018-03-02 06:21:49 +01:00
|
|
|
try {
|
2019-08-03 22:49:37 +02:00
|
|
|
const response = await uploadMedia(currentInstance, accessToken, file)
|
|
|
|
const composeMedia = store.getComposeData(realm, 'media') || []
|
2018-12-15 11:06:12 +01:00
|
|
|
if (composeMedia.length === 4) {
|
|
|
|
throw new Error('Only 4 media max are allowed')
|
|
|
|
}
|
2020-11-25 00:37:10 +01:00
|
|
|
await setCachedMediaFile(response.id, file)
|
2018-03-03 23:15:50 +01:00
|
|
|
composeMedia.push({
|
2018-03-02 06:21:49 +01:00
|
|
|
data: response,
|
2018-08-27 03:54:59 +02:00
|
|
|
file: { name: file.name },
|
|
|
|
description: ''
|
2018-03-02 06:21:49 +01:00
|
|
|
})
|
2018-03-03 23:51:48 +01:00
|
|
|
store.setComposeData(realm, {
|
2018-08-27 03:54:59 +02:00
|
|
|
media: composeMedia
|
2018-03-03 23:51:48 +01:00
|
|
|
})
|
2018-03-03 20:26:10 +01:00
|
|
|
scheduleIdleTask(() => store.save())
|
2018-03-02 06:21:49 +01:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
|
|
|
toast.say('Failed to upload media: ' + (e.message || ''))
|
|
|
|
} finally {
|
2018-08-30 06:42:57 +02:00
|
|
|
store.set({ uploadingMedia: false })
|
2018-03-02 06:21:49 +01:00
|
|
|
}
|
2018-03-03 02:54:38 +01:00
|
|
|
}
|
2018-03-03 06:55:04 +01:00
|
|
|
|
2018-03-03 19:11:32 +01:00
|
|
|
export function deleteMedia (realm, i) {
|
2019-08-03 22:49:37 +02:00
|
|
|
const composeMedia = store.getComposeData(realm, 'media')
|
2018-08-27 03:54:59 +02:00
|
|
|
composeMedia.splice(i, 1)
|
2018-04-10 03:30:15 +02:00
|
|
|
|
2018-03-03 23:51:48 +01:00
|
|
|
store.setComposeData(realm, {
|
2018-08-27 03:54:59 +02:00
|
|
|
media: composeMedia
|
2018-03-03 23:51:48 +01:00
|
|
|
})
|
2019-09-17 09:19:59 +02: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 20:26:10 +01:00
|
|
|
scheduleIdleTask(() => store.save())
|
2018-03-03 06:55:04 +01:00
|
|
|
}
|