Files
Web-Frontend/client/src/components/layout/Header.jsx
T

35 lines
1.3 KiB
React
Raw Normal View History

2026-06-04 15:30:01 -07:00
import { useRecipe, Button, Stack, Text, Flex } from "@chakra-ui/react"
import UserAvatarMenu from "./UserAvatarMenu.jsx";
2026-06-04 15:30:01 -07:00
import { NavLink } from "react-router-dom";
2026-07-08 15:05:50 -07:00
import useAuthStore from "@/store/authStore";
2026-07-22 14:58:59 -07:00
import {SearchBar} from "@/components/dashboard/SearchBar.jsx";
2026-06-05 13:06:12 -07:00
// Import the asset properly so Vite can bundle it for any server
// import defaultAvatar from "@/assets/user_profile.svg";
// Accept a 'user' prop now, fallback to placeholder if empty
2026-07-08 15:05:50 -07:00
export default function Header() {
2026-06-05 13:06:12 -07:00
const recipe = useRecipe({ key: "header" });
const styles = recipe();
2026-07-08 15:05:50 -07:00
const { user } = useAuthStore();
console.log(user);
2026-07-22 14:58:59 -07:00
const displayName = user ? (user.firstName || user.username) : "Loading...";
const avatarname = user ? (user.fullName || user.username) : "Loading...";
2026-07-08 15:05:50 -07:00
const displayEmail = user?.email || "LDAP User";
2026-06-05 13:06:12 -07:00
return (
2026-08-26 13:10:02 -07:00
<Flex css={styles} >
2026-07-22 14:58:59 -07:00
<SearchBar placeholder="Enter a volcano to search" size="sm" width="410px" />
2026-06-05 13:06:12 -07:00
{/* User Profile Section */}
<Flex align="center" gap={3} pr={6}>
2026-08-26 13:10:02 -07:00
<Text fontWeight="bold" textStyle="md" >{displayName}</Text>
2026-06-05 13:06:12 -07:00
<UserAvatarMenu
2026-07-22 14:58:59 -07:00
name={avatarname}
2026-07-08 15:05:50 -07:00
// avatar={user.avatar}
2026-06-05 13:06:12 -07:00
/>
</Flex>
</Flex>
);
}