diff --git a/public/images/tags/devlog.png b/public/images/tags/devlog.png new file mode 100644 index 0000000..d32662f Binary files /dev/null and b/public/images/tags/devlog.png differ diff --git a/public/images/tags/gameassets.png b/public/images/tags/gameassets.png new file mode 100644 index 0000000..c70b5a6 Binary files /dev/null and b/public/images/tags/gameassets.png differ diff --git a/public/images/tags/gamedesign.png b/public/images/tags/gamedesign.png new file mode 100644 index 0000000..1f10415 Binary files /dev/null and b/public/images/tags/gamedesign.png differ diff --git a/public/images/tags/gamejam.png b/public/images/tags/gamejam.png new file mode 100644 index 0000000..007754d Binary files /dev/null and b/public/images/tags/gamejam.png differ diff --git a/public/images/tags/glsl.png b/public/images/tags/glsl.png new file mode 100644 index 0000000..2beadfb Binary files /dev/null and b/public/images/tags/glsl.png differ diff --git a/public/images/tags/indiedev.png b/public/images/tags/indiedev.png new file mode 100644 index 0000000..35fa45b Binary files /dev/null and b/public/images/tags/indiedev.png differ diff --git a/public/images/tags/lowpoly.png b/public/images/tags/lowpoly.png new file mode 100644 index 0000000..587e390 Binary files /dev/null and b/public/images/tags/lowpoly.png differ diff --git a/public/images/tags/meme.png b/public/images/tags/meme.png new file mode 100644 index 0000000..80bcdfb Binary files /dev/null and b/public/images/tags/meme.png differ diff --git a/public/images/tags/pixelart.png b/public/images/tags/pixelart.png new file mode 100644 index 0000000..ddde7ee Binary files /dev/null and b/public/images/tags/pixelart.png differ diff --git a/public/images/tags/postmortem.png b/public/images/tags/postmortem.png new file mode 100644 index 0000000..c44749c Binary files /dev/null and b/public/images/tags/postmortem.png differ diff --git a/public/images/tags/saturday.png b/public/images/tags/saturday.png new file mode 100644 index 0000000..fa2ec52 Binary files /dev/null and b/public/images/tags/saturday.png differ diff --git a/public/images/tags/shaders.png b/public/images/tags/shaders.png new file mode 100644 index 0000000..174bc0e Binary files /dev/null and b/public/images/tags/shaders.png differ diff --git a/public/images/tags/teamup.png b/public/images/tags/teamup.png new file mode 100644 index 0000000..778b5b2 Binary files /dev/null and b/public/images/tags/teamup.png differ diff --git a/src/app/create-post/page.tsx b/src/app/create-post/page.tsx index 3a59afd..e25923f 100644 --- a/src/app/create-post/page.tsx +++ b/src/app/create-post/page.tsx @@ -36,6 +36,18 @@ export default function CreatePostPage() { setMounted(true); const load = async () => { + const response = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? `https://d2jam.com/api/v1/self?username=${getCookie("user")}` + : `http://localhost:3005/api/v1/self?username=${getCookie("user")}`, + { + headers: { authorization: `Bearer ${getCookie("token")}` }, + credentials: "include", + } + ); + + const user = await response.json(); + const tagResponse = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? `https://d2jam.com/api/v1/tags` @@ -51,6 +63,9 @@ export default function CreatePostPage() { }[] = []; for (const tag of await tagResponse.json()) { + if (tag.modOnly && !user.mod) { + continue; + } newoptions.push({ value: tag.name, id: tag.id, @@ -64,7 +79,10 @@ export default function CreatePostPage() { classNames={{ base: "bg-transparent" }} /> )} -
{tag.name}
++ {tag.name} + {tag.modOnly ? " (Mod Only)" : ""} +
), isFixed: tag.alwaysAdded,