mapcomplete/Logic/ImageProviders/ImgurUploader.ts

44 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-09-08 21:40:48 +02:00
import { UIEventSource } from "../UIEventSource"
import { Imgur } from "./Imgur"
2021-06-11 22:51:45 +02:00
export default class ImgurUploader {
2022-09-08 21:40:48 +02:00
public readonly queue: UIEventSource<string[]> = new UIEventSource<string[]>([])
public readonly failed: UIEventSource<string[]> = new UIEventSource<string[]>([])
public readonly success: UIEventSource<string[]> = new UIEventSource<string[]>([])
public maxFileSizeInMegabytes = 10
private readonly _handleSuccessUrl: (string) => Promise<void>
2021-06-11 22:51:45 +02:00
constructor(handleSuccessUrl: (string) => Promise<void>) {
2022-09-08 21:40:48 +02:00
this._handleSuccessUrl = handleSuccessUrl
2021-06-11 22:51:45 +02:00
}
public uploadMany(title: string, description: string, files: FileList): void {
2021-06-11 22:51:45 +02:00
for (let i = 0; i < files.length; i++) {
this.queue.data.push(files.item(i).name)
}
this.queue.ping()
2022-09-08 21:40:48 +02:00
const self = this
2021-06-11 22:51:45 +02:00
this.queue.setData([...self.queue.data])
2022-09-08 21:40:48 +02:00
Imgur.uploadMultiple(
title,
2021-06-11 22:51:45 +02:00
description,
files,
async function (url) {
2022-09-08 21:40:48 +02:00
console.log("File saved at", url)
self.success.data.push(url)
2022-09-08 21:40:48 +02:00
self.success.ping()
await self._handleSuccessUrl(url)
2021-06-11 22:51:45 +02:00
},
function () {
2022-09-08 21:40:48 +02:00
console.log("All uploads completed")
2021-06-11 22:51:45 +02:00
},
function (failReason) {
console.log("Upload failed due to ", failReason)
self.failed.setData([...self.failed.data, failReason])
}
2022-09-08 21:40:48 +02:00
)
2021-06-11 22:51:45 +02:00
}
2022-09-08 21:40:48 +02:00
}