Merge remote-tracking branch 'origin/main'
BIN
public/images/tags/bitsy.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
public/images/tags/clickteam.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
public/images/tags/devlog.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
public/images/tags/flickgame.png
Normal file
After Width: | Height: | Size: 118 B |
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/gbstudio.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
public/images/tags/gdevelop.png
Normal file
After Width: | Height: | Size: 119 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/libgdx.png
Normal file
After Width: | Height: | Size: 8.9 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/puzzlescript.png
Normal file
After Width: | Height: | Size: 3.1 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/stencyl.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
public/images/tags/stream.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
public/images/tags/teamup.png
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
public/images/tags/tic80.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
public/images/tags/twine.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
public/images/tags/tyrano.png
Normal file
After Width: | Height: | Size: 17 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,
|
||||
|
|