mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Add bluesky and discord to navbar
This commit is contained in:
parent
a5c8ba0e34
commit
d9477e9eaf
1 changed files with 27 additions and 16 deletions
|
@ -33,6 +33,8 @@ import NavbarButtonAction from "./NavbarButtonAction";
|
||||||
import { toast } from "react-toastify";
|
import { toast } from "react-toastify";
|
||||||
import NavbarIconLink from "./NavbarIconLink";
|
import NavbarIconLink from "./NavbarIconLink";
|
||||||
import ThemeToggle from "../theme-toggle";
|
import ThemeToggle from "../theme-toggle";
|
||||||
|
import IconLink from "../link-components/IconLink";
|
||||||
|
import { SiBluesky, SiDiscord } from "@icons-pack/react-simple-icons";
|
||||||
|
|
||||||
export default function PCNavbar() {
|
export default function PCNavbar() {
|
||||||
const pathname = usePathname();
|
const pathname = usePathname();
|
||||||
|
@ -62,12 +64,12 @@ export default function PCNavbar() {
|
||||||
const jamResponse = await getCurrentJam();
|
const jamResponse = await getCurrentJam();
|
||||||
const currentJam = jamResponse?.jam;
|
const currentJam = jamResponse?.jam;
|
||||||
setJam(currentJam);
|
setJam(currentJam);
|
||||||
|
|
||||||
if (!hasCookie("token")) {
|
if (!hasCookie("token")) {
|
||||||
setUser(undefined);
|
setUser(undefined);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||||
? `https://d2jam.com/api/v1/self?username=${getCookie("user")}`
|
? `https://d2jam.com/api/v1/self?username=${getCookie("user")}`
|
||||||
|
@ -77,33 +79,39 @@ export default function PCNavbar() {
|
||||||
credentials: "include",
|
credentials: "include",
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const user = await response.json();
|
const user = await response.json();
|
||||||
|
|
||||||
// Check if user has a game in current jam
|
// Check if user has a game in current jam
|
||||||
const gameResponse = await fetch(
|
const gameResponse = await fetch(
|
||||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||||
? `https://d2jam.com/api/v1/self/current-game?username=${getCookie("user")}`
|
? `https://d2jam.com/api/v1/self/current-game?username=${getCookie(
|
||||||
: `http://localhost:3005/api/v1/self/current-game?username=${getCookie("user")}`,
|
"user"
|
||||||
|
)}`
|
||||||
|
: `http://localhost:3005/api/v1/self/current-game?username=${getCookie(
|
||||||
|
"user"
|
||||||
|
)}`,
|
||||||
{
|
{
|
||||||
headers: { authorization: `Bearer ${getCookie("token")}` },
|
headers: { authorization: `Bearer ${getCookie("token")}` },
|
||||||
credentials: "include",
|
credentials: "include",
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
if (gameResponse.ok) {
|
if (gameResponse.ok) {
|
||||||
const gameData = await gameResponse.json();
|
const gameData = await gameResponse.json();
|
||||||
console.log("Game Data:", gameData); // Log game data
|
console.log("Game Data:", gameData); // Log game data
|
||||||
console.log("User Data:", user); // Log user data
|
console.log("User Data:", user); // Log user data
|
||||||
|
|
||||||
if (gameData) {
|
if (gameData) {
|
||||||
// Check if the logged-in user is either the creator or a contributor
|
// Check if the logged-in user is either the creator or a contributor
|
||||||
const isContributor =
|
const isContributor =
|
||||||
gameData.author?.id === user.id || // Check if logged-in user is the author
|
gameData.author?.id === user.id || // Check if logged-in user is the author
|
||||||
gameData.contributors?.some((contributor: UserType) => contributor.id === user.id); // Check if logged-in user is a contributor
|
gameData.contributors?.some(
|
||||||
|
(contributor: UserType) => contributor.id === user.id
|
||||||
|
); // Check if logged-in user is a contributor
|
||||||
|
|
||||||
console.log("Is Contributor:", isContributor); // Log whether the user is a contributor
|
console.log("Is Contributor:", isContributor); // Log whether the user is a contributor
|
||||||
|
|
||||||
if (isContributor) {
|
if (isContributor) {
|
||||||
setHasGame(gameData); // Set the game data for "My Game"
|
setHasGame(gameData); // Set the game data for "My Game"
|
||||||
} else {
|
} else {
|
||||||
|
@ -111,7 +119,7 @@ export default function PCNavbar() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
currentJam &&
|
currentJam &&
|
||||||
user.jams.filter((jam: JamType) => jam.id == currentJam.id).length > 0
|
user.jams.filter((jam: JamType) => jam.id == currentJam.id).length > 0
|
||||||
|
@ -120,7 +128,7 @@ export default function PCNavbar() {
|
||||||
} else {
|
} else {
|
||||||
setIsInJam(false);
|
setIsInJam(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (response.status == 200) {
|
if (response.status == 200) {
|
||||||
setUser(user);
|
setUser(user);
|
||||||
} else {
|
} else {
|
||||||
|
@ -128,7 +136,6 @@ export default function PCNavbar() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [pathname]);
|
}, [pathname]);
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NavbarBase
|
<NavbarBase
|
||||||
|
@ -161,7 +168,6 @@ export default function PCNavbar() {
|
||||||
<NavbarLink href="/games" name="Games" />
|
<NavbarLink href="/games" name="Games" />
|
||||||
</NavbarContent>
|
</NavbarContent>
|
||||||
|
|
||||||
|
|
||||||
<NavbarContent justify="end" className="gap-4">
|
<NavbarContent justify="end" className="gap-4">
|
||||||
<NavbarSearchbar />
|
<NavbarSearchbar />
|
||||||
{user && <Divider orientation="vertical" className="h-1/2" />}
|
{user && <Divider orientation="vertical" className="h-1/2" />}
|
||||||
|
@ -169,7 +175,7 @@ export default function PCNavbar() {
|
||||||
<NavbarButtonLink
|
<NavbarButtonLink
|
||||||
icon={<Gamepad2 />}
|
icon={<Gamepad2 />}
|
||||||
name={hasGame ? "My Game" : "Create Game"}
|
name={hasGame ? "My Game" : "Create Game"}
|
||||||
href={hasGame ? "/games/"+hasGame.slug : "/create-game"}
|
href={hasGame ? "/games/" + hasGame.slug : "/create-game"}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{user && jam && !isInJam && (
|
{user && jam && !isInJam && (
|
||||||
|
@ -201,6 +207,11 @@ export default function PCNavbar() {
|
||||||
{user && user.mod && (
|
{user && user.mod && (
|
||||||
<NavbarIconLink icon={<Shield />} href="/reports" />
|
<NavbarIconLink icon={<Shield />} href="/reports" />
|
||||||
)}
|
)}
|
||||||
|
<IconLink
|
||||||
|
icon={<SiBluesky />}
|
||||||
|
href="https://bsky.app/profile/d2jam.com"
|
||||||
|
/>
|
||||||
|
<IconLink icon={<SiDiscord />} href="https://discord.d2jam.com" />
|
||||||
<ThemeToggle />
|
<ThemeToggle />
|
||||||
<Divider orientation="vertical" className="h-1/2" />
|
<Divider orientation="vertical" className="h-1/2" />
|
||||||
{!user && (
|
{!user && (
|
||||||
|
|
Loading…
Reference in a new issue