-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScrollToTop.js
48 lines (41 loc) · 1.27 KB
/
ScrollToTop.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"use client";
import { Context } from "@context/store";
import React, { useContext, useCallback, useEffect, useState } from "react";
import { faArrowUp } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
function ScrollToTop() {
let { theme } = useContext(Context);
const [isVisible, setIsVisible] = useState(false);
// Memoize the visibility toggle logic
const toggleVisibility = useCallback(() => {
if (window.scrollY > 300) {
setIsVisible(true);
} else {
setIsVisible(false);
}
}, []);
useEffect(() => {
window.addEventListener("scroll", toggleVisibility);
return () => window.removeEventListener("scroll", toggleVisibility);
}, [toggleVisibility]);
const scrollToTop = () => {
window.scrollTo({
top: 0,
behavior: "smooth",
});
};
if (!isVisible) {
return null;
}
return (
<button
className={`${
theme ? "bg-[#63B5C3] text-white" : "bg-gray-100 text-black"
} fixed right-8 bottom-12 z-10 rounded-full max-sm:w-32 max-sm:px-3 max-sm:py-2 px-5 py-3 transition duration-500 transform hover:scale-105`}
onClick={scrollToTop}
>
<FontAwesomeIcon icon={faArrowUp} bounce />
</button>
);
}
export default ScrollToTop;