fixed contact component

This commit is contained in:
liyunze 2025-08-10 14:30:25 +10:00
parent e4887cec25
commit 520bec85aa
3 changed files with 2 additions and 223 deletions

View file

@ -8,7 +8,7 @@ import { AnimatedTooltip } from "@/components/ui/AnimatedToolTip";
class="relative flex w-full flex-col-reverse items-center justify-start gap-10 lg:h-[400px] lg:flex-row lg:items-start lg:justify-center" class="relative flex w-full flex-col-reverse items-center justify-start gap-10 lg:h-[400px] lg:flex-row lg:items-start lg:justify-center"
> >
<div <div
class="relative flex aspect-[3/4] w-[300px] items-end justify-end lg:w-1/2" class="relative flex aspect-[3/4] w-[300px] items-end justify-end lg:aspect-auto lg:w-1/2"
> >
<Image <Image
src={contactPhoto} src={contactPhoto}
@ -36,7 +36,7 @@ import { AnimatedTooltip } from "@/components/ui/AnimatedToolTip";
text="Email me!" text="Email me!"
client:load client:load
className="text-xl font-bold underline transition-colors duration-75 hover:text-blue-500" className="text-xl font-bold underline transition-colors duration-75 hover:text-blue-500"
>rythondev@gmail.com</AnimatedTooltip >Send me a Message</AnimatedTooltip
> >
</div> </div>
</div> </div>

View file

@ -1,221 +0,0 @@
// retractable navigation
// do not retract if it's on contact page
// mobile: display hamburger + available for work
import { cn } from "@/lib/utils";
import {
AnimatePresence,
motion,
useScroll,
useMotionValueEvent,
} from "motion/react";
import { Cross as HamburgerCross } from "hamburger-react";
import { useEffect, useState } from "react";
import pfp from "@/components/images/contact_photo_small.webp";
function getWindowDimensions() {
const { innerWidth: width, innerHeight: height } = window;
return {
width,
height,
};
}
function useWindowDimensions() {
const hasWindow = typeof window !== "undefined";
function getWindowDimensions() {
const width = hasWindow ? window.innerWidth : 0;
const height = hasWindow ? window.innerHeight : 0;
return {
width,
height,
};
}
const [windowDimensions, setWindowDimensions] = useState(
getWindowDimensions(),
);
useEffect(() => {
if (hasWindow) {
function handleResize() {
setWindowDimensions(getWindowDimensions());
}
window.addEventListener("resize", handleResize);
return () => window.removeEventListener("resize", handleResize);
}
}, [hasWindow]);
return windowDimensions;
}
export const HoverNavigation = ({
items,
className,
}: {
items: {
label: string;
link: string;
}[];
className?: string;
}) => {
const [hoveredIndex, setHoveredIndex] = useState<number | null>(null);
const { scrollYProgress } = useScroll();
const [visible, setVisible] = useState(true);
const [navVisible, setNavVisible] = useState(false);
const [availableVisible, setAvailableVisible] = useState(false);
const [onContactPage, setOnContactPage] = useState(false);
const [hamburgerOpen, setHamburgerOpen] = useState(false);
const { width } = useWindowDimensions();
// if on contact page, do not do width 0%
useEffect(() => {
setOnContactPage(window.location.href.endsWith("/contact"));
}, []);
useEffect(() => {
updateNavBarState(width);
}, [width]);
const updateNavBarState = (
width: number,
scrollProgress: number = 0,
scrollUp: boolean = false,
) => {
if (width && width < 1024) {
setNavVisible(false);
setAvailableVisible(true);
} else if (scrollProgress < 0.05) {
setNavVisible(true);
setAvailableVisible(false);
} else if (!onContactPage) {
setNavVisible(scrollUp);
setAvailableVisible(!scrollUp);
} else {
setNavVisible(true);
setAvailableVisible(false);
}
};
useMotionValueEvent(scrollYProgress, "change", (current) => {
// Check if current is not undefined and is a number
if (typeof current === "number") {
let direction = current! - scrollYProgress.getPrevious()!;
let scrollUp = direction <= 0;
let scrollProgress = scrollYProgress.get();
updateNavBarState(width, scrollProgress, scrollUp);
}
});
return (
<>
<img
src="/images/profile/contact_photo_small.webp"
alt="Ryan"
width={50}
className="mr-3 rounded-full"
/>
<motion.div
animate={{
width: availableVisible ? "auto" : "0px",
opacity: availableVisible ? "100%" : "0%",
}}
transition={{
ease: "easeInOut",
}}
className={cn(
"flex w-0 flex-row items-center justify-center pr-2 whitespace-nowrap opacity-0",
className,
)}
>
<a
href="/contact"
className={`overflow-hidden whitespace-nowrap transition-colors duration-150 hover:text-green-500 ${!visible ? "" : "inline-block"}`}
>
Available for work
</a>
<div
className={`relative z-50 ml-3 ${availableVisible ? "inline-block px-2" : "hidden"}`}
>
<div className="absolute top-1/2 left-1/2 aspect-square w-[6px] -translate-x-1/2 -translate-y-1/2 rounded-full bg-green-500"></div>
<div className="animate-glow absolute top-1/2 left-1/2 aspect-square w-[6px] -translate-x-1/2 -translate-y-1/2 rounded-full bg-green-500"></div>
</div>
</motion.div>
<motion.div
animate={{
width: navVisible ? "auto" : "0px",
opacity: navVisible ? "100%" : "0%",
}}
transition={{
ease: "easeInOut",
}}
className={cn(
"flex w-0 flex-row items-center justify-center overflow-hidden opacity-0",
className,
)}
>
{items.map((item, idx) => (
<a
href={item?.link}
key={item?.link}
className="group relative block h-full px-5 py-2"
onMouseEnter={() => setHoveredIndex(idx)}
onMouseLeave={() => setHoveredIndex(null)}
>
<AnimatePresence>
{hoveredIndex === idx && (
<motion.span
className="absolute inset-0 block h-full w-full rounded-3xl bg-neutral-200"
layoutId="hoverBackground"
initial={{ opacity: 0 }}
animate={{
opacity: 1,
transition: { duration: 0.15 },
}}
exit={{
opacity: 0,
transition: {
duration: 0.15,
delay: 0.2,
},
}}
/>
)}
</AnimatePresence>
<NavBarLink>{item.label}</NavBarLink>
</a>
))}
</motion.div>
<div className="hamburger-wrapper block lg:hidden">
<HamburgerCross
toggled={hamburgerOpen}
toggle={setHamburgerOpen}
></HamburgerCross>
</div>
</>
);
};
export const NavBarLink = ({
className,
children,
}: {
className?: string;
children: React.ReactNode;
}) => {
return (
<div
className={cn(
"relative z-20 h-full w-full overflow-hidden rounded-2xl text-center transition-all ease-out group-hover:text-black",
className,
)}
>
{children}
</div>
);
};