mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
20 lines
793 B
TypeScript
20 lines
793 B
TypeScript
import { getAPIUrl } from "@services/config";
|
|
import { RequestBody, RequestBodyForm } from "@services/utils/requests";
|
|
|
|
export async function uploadNewImageFile(file: any, lecture_id: string) {
|
|
// Send file thumbnail as form data
|
|
const formData = new FormData();
|
|
formData.append("file_object", file);
|
|
formData.append("lecture_id", lecture_id);
|
|
|
|
return fetch(`${getAPIUrl()}blocks/image`, RequestBodyForm("POST", formData))
|
|
.then((result) => result.json())
|
|
.catch((error) => console.log("error", error));
|
|
}
|
|
|
|
export async function getImageFile(file_id: string) {
|
|
// todo : add course id to url
|
|
return fetch(`${getAPIUrl()}blocks/image?file_id=${file_id}`, RequestBody("GET", null))
|
|
.then((result) => result.json())
|
|
.catch((error) => console.log("error", error));
|
|
}
|