Add mod only tags
BIN
public/images/tags/devlog.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
public/images/tags/gameassets.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
public/images/tags/gamedesign.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
public/images/tags/gamejam.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
public/images/tags/glsl.png
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
public/images/tags/indiedev.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
public/images/tags/lowpoly.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
public/images/tags/meme.png
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
public/images/tags/pixelart.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
public/images/tags/postmortem.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
public/images/tags/saturday.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
public/images/tags/shaders.png
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
public/images/tags/teamup.png
Normal file
After Width: | Height: | Size: 61 KiB |
|
@ -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" }}
|
||||
/>
|
||||
)}
|
||||
<p>{tag.name}</p>
|
||||
<p>
|
||||
{tag.name}
|
||||
{tag.modOnly ? " (Mod Only)" : ""}
|
||||
</p>
|
||||
</div>
|
||||
),
|
||||
isFixed: tag.alwaysAdded,
|
||||
|
|