128 lines
3.3 KiB
TypeScript
Raw Normal View History

2018-04-02 05:34:16 +00:00
import AnimeNotifier from "../AnimeNotifier"
import StatusMessage from "../StatusMessage"
2018-04-17 11:01:51 +00:00
import { bytesHumanReadable, fetchWithProgress } from "../Utils"
2018-03-02 16:18:29 +00:00
// Select file
export function selectFile(arn: AnimeNotifier, button: HTMLButtonElement) {
2018-03-16 21:40:38 +00:00
if(button.dataset.endpoint === "/api/upload/cover" && arn.user.dataset.pro !== "true") {
alert("Please buy a PRO account to use this feature.")
return
}
2018-04-14 22:20:53 +00:00
let fileType = button.dataset.type
2018-03-07 13:00:14 +00:00
let endpoint = button.dataset.endpoint
// Click on virtual file input element
let input = document.createElement("input")
2018-03-02 16:18:29 +00:00
input.setAttribute("type", "file")
input.onchange = () => {
2018-03-02 20:42:34 +00:00
let file = input.files[0]
2018-03-03 17:38:21 +00:00
if(!file) {
return
}
2018-04-14 22:20:53 +00:00
// Check mime type for images
if(fileType === "image" && !file.type.startsWith("image/")) {
2018-03-03 18:58:18 +00:00
arn.statusMessage.showError(file.name + " is not an image file!")
return
}
2018-04-14 22:20:53 +00:00
// Check mime type for videos
if(fileType === "video" && !file.type.startsWith("video/webm")) {
arn.statusMessage.showError(file.name + " is not a WebM video file!")
return
}
2018-03-02 16:18:29 +00:00
2018-04-14 22:20:53 +00:00
// Preview image
if(fileType === "image") {
let preview = document.getElementById(button.id + "-preview") as HTMLImageElement
2018-03-03 17:29:39 +00:00
2018-04-14 22:20:53 +00:00
if(preview) {
previewImage(file, endpoint, preview)
2018-03-07 13:00:14 +00:00
}
2018-03-03 17:29:39 +00:00
}
2018-04-14 22:20:53 +00:00
uploadFile(file, fileType, endpoint, arn)
2018-03-02 16:18:29 +00:00
}
2018-04-14 22:20:53 +00:00
input.click()
2018-03-02 16:18:29 +00:00
}
2018-03-02 23:20:10 +00:00
// Upload file
2018-04-14 22:20:53 +00:00
function uploadFile(file: File, fileType: string, endpoint: string, arn: AnimeNotifier) {
2018-03-02 20:42:34 +00:00
let reader = new FileReader()
reader.onloadend = async () => {
2018-04-16 21:23:14 +00:00
let fileSize = reader.result.byteLength
2018-04-17 11:01:51 +00:00
if(fileSize === 0) {
arn.statusMessage.showError("File is empty")
return
2018-04-16 21:23:14 +00:00
}
2018-04-17 11:01:51 +00:00
arn.statusMessage.showInfo(`Preparing to upload ${fileType} (${bytesHumanReadable(fileSize)})`, -1)
2018-04-16 19:41:05 +00:00
try {
let responseText = await fetchWithProgress(endpoint, {
method: "POST",
credentials: "include",
headers: {
"Content-Type": "application/octet-stream"
},
body: reader.result
}, e => {
2018-04-17 11:01:51 +00:00
let progress = e.loaded / (e.lengthComputable ? e.total : fileSize) * 100
2018-04-16 19:41:05 +00:00
arn.statusMessage.showInfo(`Uploading ${fileType}...${progress.toFixed(1)}%`, -1)
})
2018-03-03 15:03:18 +00:00
2018-04-14 22:20:53 +00:00
arn.statusMessage.showInfo(`Successfully uploaded your new ${fileType}.`)
2018-04-16 19:41:05 +00:00
if(endpoint === "/api/upload/avatar") {
// We received the new avatar URL
updateSideBarAvatar(responseText)
}
} catch(err) {
2018-04-14 22:20:53 +00:00
arn.statusMessage.showError(`Failed uploading your new ${fileType}.`)
2018-04-16 19:41:05 +00:00
console.error(err)
2018-03-03 15:03:18 +00:00
}
2018-03-02 20:42:34 +00:00
}
2018-03-02 16:18:29 +00:00
2018-04-16 19:41:05 +00:00
arn.statusMessage.showInfo(`Reading ${fileType} from disk...`, -1)
2018-03-02 23:04:54 +00:00
reader.readAsArrayBuffer(file)
2018-03-03 17:29:39 +00:00
}
2018-04-14 22:20:53 +00:00
// Preview image
function previewImage(file: File, endpoint: string, preview: HTMLImageElement) {
let reader = new FileReader()
reader.onloadend = () => {
if(endpoint === "/api/upload/avatar") {
let svgPreview = document.getElementById("avatar-input-preview-svg") as HTMLImageElement
if(svgPreview) {
svgPreview.classList.add("hidden")
}
}
preview.classList.remove("hidden")
preview.src = reader.result
}
reader.readAsDataURL(file)
}
2018-03-03 17:29:39 +00:00
// Update sidebar avatar
function updateSideBarAvatar(url: string) {
let sidebar = document.getElementById("sidebar")
let userImage = sidebar.getElementsByClassName("user-image")[0] as HTMLImageElement
let lazyLoad = userImage["became visible"]
if(lazyLoad) {
userImage.dataset.src = url
lazyLoad()
} else {
location.reload()
}
2018-03-02 16:18:29 +00:00
}