Replaced button with react-router-dom's Link component for better navigation.

This commit is contained in:
Vijay 2024-04-11 03:48:56 +05:30
parent 5275c56725
commit 374fd57dbc
1 changed files with 4 additions and 19 deletions

View File

@ -1,36 +1,21 @@
import React from "react";
import { useTranslation } from "react-i18next";
import { useNavigate } from "react-router-dom";
import { Link } from "react-router-dom";
import { Icon, Icons } from "@/components/Icon";
export function BackLink(props: { url: string }) {
const { t } = useTranslation();
const navigate = useNavigate();
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
event.preventDefault();
// Check if center mouse button is clicked
if (event.button === 1) {
// Open the URL in a new tab
window.open(props.url, "_blank");
} else {
// Navigate normally for other clicks
navigate(props.url);
}
};
return (
<div className="flex items-center">
<button
type="button"
onContextMenu={(e) => e.preventDefault()}
onMouseUp={handleClick}
<Link
to={props.url}
className="py-1 -my-1 px-2 -mx-2 tabbable rounded-lg flex items-center cursor-pointer text-type-secondary hover:text-white transition-colors duration-200 font-medium"
>
<Icon className="mr-2" icon={Icons.ARROW_LEFT} />
<span className="md:hidden">{t("player.back.short")}</span>
<span className="hidden md:block">{t("player.back.default")}</span>
</button>
</Link>
</div>
);
}