Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve UX by Modifying the Explore Button and FAB Button Behavior #277

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 39 additions & 50 deletions src/components/FabButton.tsx
Original file line number Diff line number Diff line change
@@ -1,65 +1,54 @@
import { Fab, Action } from "react-tiny-fab";
import { MdExplore } from "react-icons/md";
import { FaCircleQuestion } from "react-icons/fa6";
import tour from "../components/Tour";
import { useEffect, useState } from "react";
import { ArrowDownOutlined } from "@ant-design/icons";

const FloatingFAB = () => {
const startTourEvent = () => {
void tour.start();
const [isVisible, setIsVisible] = useState(false);

// Function to scroll smoothly to the footer
const scrollToFooter = () => {
const footer = document.getElementById("footer"); // Ensure footer has this ID in your HTML
if (footer) {
footer.scrollIntoView({ behavior: "smooth" });
}
};

// Show the button only when the user scrolls up
useEffect(() => {
const handleScroll = () => {
setIsVisible(window.scrollY < window.innerHeight * 0.2);
};

window.addEventListener("scroll", handleScroll);
return () => window.removeEventListener("scroll", handleScroll);
}, []);

return (
<Fab
icon={<FaCircleQuestion />}
alwaysShowTitle
mainButtonStyles={{
backgroundColor: "#1B2540",
color: "white",
width: "50px",
height: "50px",
boxShadow: "0px 6px 10px rgba(0, 0, 0, 0.25)",
borderRadius: "50%",
transition: "all 0.3s ease-in-out",
display: "flex",
justifyContent: "center",
alignItems: "center",
fontSize: "24px",
}}
style={{
position: "fixed",
bottom: "20px",
right: "20px",
zIndex: 1000,
marginBottom: "2.813rem",
marginRight: "0.625rem"
}}
>
<Action
text="Start Tour"
onClick={startTourEvent}
isVisible && (
<button
onClick={scrollToFooter}
style={{
backgroundColor: "#444444",
position: "fixed",
bottom: "20px",
right: "20px",
width: "40px",
height: "40px",
backgroundColor: "#1B2540",
color: "white",
width: "45px",
height: "45px",
border: "none",
borderRadius: "50%",
boxShadow: "0px 6px 10px rgba(0, 0, 0, 0.25)",
display: "flex",
justifyContent: "center",
alignItems: "center",
borderRadius: "50%",
fontSize: "22px",
transition: "transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out",
boxShadow: "0px 4px 8px rgba(0, 0, 0, 0.2)",
fontSize: "16px",
cursor: "pointer",
transition: "all 0.3s ease-in-out",
}}
onMouseEnter={(e) =>
(e.currentTarget.style.transform = "scale(1.1)")
}
onMouseLeave={(e) =>
(e.currentTarget.style.transform = "scale(1)")
}
aria-label="Scroll to footer"
>
<MdExplore />
</Action>
</Fab>
<ArrowDownOutlined />
</button>
)
);
};

Expand Down
27 changes: 13 additions & 14 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ import {
InfoOutlined,
BookOutlined,
CaretDownFilled,
PlayCircleOutlined,
} from "@ant-design/icons";
import ToggleDarkMode from "./ToggleDarkMode";
import tour from "../components/Tour";

const { useBreakpoint } = Grid;

function Navbar({ scrollToFooter }: { scrollToFooter: any }) {
function Navbar({ }: { scrollToFooter: any }) {
const [hovered, setHovered] = useState<
null | "home" | "explore" | "help" | "github" | "join"
null | "home" | "help" | "github" | "join"
>(null);
const screens = useBreakpoint();
const location = useLocation();
Expand All @@ -31,6 +33,10 @@ function Navbar({ scrollToFooter }: { scrollToFooter: any }) {
config: { duration: 1000 },
});

const startTour = () => {
void tour.start();
};

const helpMenu = (
<Menu>
<Menu.ItemGroup title="Info">
Expand Down Expand Up @@ -72,6 +78,10 @@ function Navbar({ scrollToFooter }: { scrollToFooter: any }) {
<BookOutlined /> Documentation
</a>
</Menu.Item>

<Menu.Item key="startTour" onClick={startTour}>
<PlayCircleOutlined /> Start Tour
</Menu.Item>
</Menu.ItemGroup>
</Menu>
);
Expand Down Expand Up @@ -129,17 +139,6 @@ function Navbar({ scrollToFooter }: { scrollToFooter: any }) {
</div>
{screens.md && (
<>
<div
style={{
...menuItemStyle("explore", false),
cursor: "pointer",
}}
onClick={scrollToFooter}
onMouseEnter={() => setHovered("explore")}
onMouseLeave={() => setHovered(null)}
>
<span style={{ color: "white" }}>Explore</span>
</div>
<div
style={{
...menuItemStyle("help", false),
Expand Down Expand Up @@ -254,4 +253,4 @@ function Navbar({ scrollToFooter }: { scrollToFooter: any }) {
);
}

export default Navbar;
export default Navbar;