From 922d89424b61585e4d4470158a36974b9382d650 Mon Sep 17 00:00:00 2001 From: Ategon Date: Mon, 10 Feb 2025 21:06:23 -0500 Subject: [PATCH] Add image uploading to game page --- src/app/create-game/page.tsx | 70 +++++++++++++++++++++++++++++---- src/components/editor/index.tsx | 12 ++++-- 2 files changed, 72 insertions(+), 10 deletions(-) diff --git a/src/app/create-game/page.tsx b/src/app/create-game/page.tsx index 277d80c..f4b888c 100644 --- a/src/app/create-game/page.tsx +++ b/src/app/create-game/page.tsx @@ -14,6 +14,7 @@ import { useRouter } from "next/navigation"; import { GameType } from "@/types/GameType"; import { PlatformType, DownloadLinkType } from "@/types/DownloadLinkType"; import { sanitize } from "@/helpers/sanitize"; +import Image from "next/image"; export default function CreateGamePage() { const router = useRouter(); @@ -35,7 +36,7 @@ export default function CreateGamePage() { const [gameSlug, setGameSlug] = useState(""); const [prevSlug, setPrevGameSlug] = useState(""); const [game, setGame] = useState(); - const [thumbnailUrl, setThumbnailUrl] = useState(""); + const [thumbnailUrl, setThumbnailUrl] = useState(null); const [authorSearch, setAuthorSearch] = useState(""); const [selectedAuthors, setSelectedAuthors] = useState>([]); const [searchResults, setSearchResults] = useState>([]); @@ -392,14 +393,69 @@ export default function CreateGamePage() {
- Thumbnail

+ { + const file = e.target.files?.[0]; + if (!file) return; + + const formData = new FormData(); + formData.append("upload", file); + + try { + const response = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? "https://d2jam.com/api/v1/image" + : "http://localhost:3005/api/v1/image", + { + method: "POST", + body: formData, + headers: { + authorization: `Bearer ${getCookie("token")}`, + }, + credentials: "include", + } + ); + + if (response.ok) { + const data = await response.json(); + setThumbnailUrl(data.data); + toast.success(data.message); + } else { + toast.error("Failed to upload image"); + } + } catch (error) { + console.error(error); + toast.error("Error uploading image"); + } + }} /> + {thumbnailUrl && ( +
+
+ {`${title}'s +
+ + +
+ )} +
{Array.isArray(downloadLinks) && diff --git a/src/components/editor/index.tsx b/src/components/editor/index.tsx index d69cdc0..39fe776 100644 --- a/src/components/editor/index.tsx +++ b/src/components/editor/index.tsx @@ -124,13 +124,19 @@ export default function Editor({ const file = event.dataTransfer.files[0]; const filesize = parseInt((file.size / 1024 / 1024).toFixed(4)); - if (file.type !== "image/jpeg" && file.type !== "image/png") { + const allowedTypes = [ + "image/jpeg", // JPEG images + "image/png", // PNG images + "image/gif", // GIF images + "image/webp", // WebP images + "image/svg+xml", // SVG images + ]; + + if (!allowedTypes.includes(file.type)) { toast.error("Invalid file format"); return false; } - console.log(filesize); - if (filesize > 8) { toast.error("Image is too big"); return false;