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 NavbarIconLink from "./NavbarIconLink";
|
||||
import ThemeToggle from "../theme-toggle";
|
||||
import IconLink from "../link-components/IconLink";
|
||||
import { SiBluesky, SiDiscord } from "@icons-pack/react-simple-icons";
|
||||
|
||||
export default function PCNavbar() {
|
||||
const pathname = usePathname();
|
||||
|
@ -83,8 +85,12 @@ export default function PCNavbar() {
|
|||
// Check if user has a game in current jam
|
||||
const gameResponse = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? `https://d2jam.com/api/v1/self/current-game?username=${getCookie("user")}`
|
||||
: `http://localhost:3005/api/v1/self/current-game?username=${getCookie("user")}`,
|
||||
? `https://d2jam.com/api/v1/self/current-game?username=${getCookie(
|
||||
"user"
|
||||
)}`
|
||||
: `http://localhost:3005/api/v1/self/current-game?username=${getCookie(
|
||||
"user"
|
||||
)}`,
|
||||
{
|
||||
headers: { authorization: `Bearer ${getCookie("token")}` },
|
||||
credentials: "include",
|
||||
|
@ -100,7 +106,9 @@ export default function PCNavbar() {
|
|||
// Check if the logged-in user is either the creator or a contributor
|
||||
const isContributor =
|
||||
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
|
||||
|
||||
|
@ -129,7 +137,6 @@ export default function PCNavbar() {
|
|||
}
|
||||
}, [pathname]);
|
||||
|
||||
|
||||
return (
|
||||
<NavbarBase
|
||||
maxWidth="2xl"
|
||||
|
@ -161,7 +168,6 @@ export default function PCNavbar() {
|
|||
<NavbarLink href="/games" name="Games" />
|
||||
</NavbarContent>
|
||||
|
||||
|
||||
<NavbarContent justify="end" className="gap-4">
|
||||
<NavbarSearchbar />
|
||||
{user && <Divider orientation="vertical" className="h-1/2" />}
|
||||
|
@ -169,7 +175,7 @@ export default function PCNavbar() {
|
|||
<NavbarButtonLink
|
||||
icon={<Gamepad2 />}
|
||||
name={hasGame ? "My Game" : "Create Game"}
|
||||
href={hasGame ? "/games/"+hasGame.slug : "/create-game"}
|
||||
href={hasGame ? "/games/" + hasGame.slug : "/create-game"}
|
||||
/>
|
||||
)}
|
||||
{user && jam && !isInJam && (
|
||||
|
@ -201,6 +207,11 @@ export default function PCNavbar() {
|
|||
{user && user.mod && (
|
||||
<NavbarIconLink icon={<Shield />} href="/reports" />
|
||||
)}
|
||||
<IconLink
|
||||
icon={<SiBluesky />}
|
||||
href="https://bsky.app/profile/d2jam.com"
|
||||
/>
|
||||
<IconLink icon={<SiDiscord />} href="https://discord.d2jam.com" />
|
||||
<ThemeToggle />
|
||||
<Divider orientation="vertical" className="h-1/2" />
|
||||
{!user && (
|
||||
|
|
Loading…
Reference in a new issue