diff --git a/public/images/tags/bitsy.png b/public/images/tags/bitsy.png new file mode 100644 index 0000000..6c155b8 Binary files /dev/null and b/public/images/tags/bitsy.png differ diff --git a/public/images/tags/clickteam.png b/public/images/tags/clickteam.png new file mode 100644 index 0000000..ea4e9b1 Binary files /dev/null and b/public/images/tags/clickteam.png differ 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/flickgame.png b/public/images/tags/flickgame.png new file mode 100644 index 0000000..0e9ad42 Binary files /dev/null and b/public/images/tags/flickgame.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/gbstudio.png b/public/images/tags/gbstudio.png new file mode 100644 index 0000000..318b4d4 Binary files /dev/null and b/public/images/tags/gbstudio.png differ diff --git a/public/images/tags/gdevelop.png b/public/images/tags/gdevelop.png new file mode 100644 index 0000000..5489d5f Binary files /dev/null and b/public/images/tags/gdevelop.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/libgdx.png b/public/images/tags/libgdx.png new file mode 100644 index 0000000..0f878fe Binary files /dev/null and b/public/images/tags/libgdx.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/puzzlescript.png b/public/images/tags/puzzlescript.png new file mode 100644 index 0000000..6ae3fdf Binary files /dev/null and b/public/images/tags/puzzlescript.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/stencyl.png b/public/images/tags/stencyl.png new file mode 100644 index 0000000..c1e03ee Binary files /dev/null and b/public/images/tags/stencyl.png differ diff --git a/public/images/tags/stream.png b/public/images/tags/stream.png new file mode 100644 index 0000000..dcbd6c8 Binary files /dev/null and b/public/images/tags/stream.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/public/images/tags/tic80.png b/public/images/tags/tic80.png new file mode 100644 index 0000000..3655816 Binary files /dev/null and b/public/images/tags/tic80.png differ diff --git a/public/images/tags/twine.png b/public/images/tags/twine.png new file mode 100644 index 0000000..215d5f7 Binary files /dev/null and b/public/images/tags/twine.png differ diff --git a/public/images/tags/tyrano.png b/public/images/tags/tyrano.png new file mode 100644 index 0000000..f9b46fb Binary files /dev/null and b/public/images/tags/tyrano.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,