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();
|
||||||
|
@ -83,8 +85,12 @@ export default function PCNavbar() {
|
||||||
// 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",
|
||||||
|
@ -100,7 +106,9 @@ export default function PCNavbar() {
|
||||||
// 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
|
||||||
|
|
||||||
|
@ -129,7 +137,6 @@ export default function PCNavbar() {
|
||||||
}
|
}
|
||||||
}, [pathname]);
|
}, [pathname]);
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NavbarBase
|
<NavbarBase
|
||||||
maxWidth="2xl"
|
maxWidth="2xl"
|
||||||
|
@ -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" />}
|
||||||
|
@ -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