mirror of
https://github.com/sussy-code/smov.git
synced 2026-05-09 11:30:32 +00:00
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import classNames from "classnames";
|
|
import { ReactNode } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { useInternalOverlayRouter } from "@/hooks/useOverlayRouter";
|
|
|
|
interface MobilePositionProps {
|
|
children?: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function OverlayMobilePosition(props: MobilePositionProps) {
|
|
const router = useInternalOverlayRouter("hello world :)");
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div
|
|
className={classNames([
|
|
"pointer-events-auto px-4 pb-6 z-10 ml-[env(safe-area-inset-left)] mr-[env(safe-area-inset-right)] bottom-0 origin-top-left inset-x-0 absolute overflow-hidden max-h-[calc(100vh-1.5rem)] grid grid-rows-[minmax(0,1fr),auto]",
|
|
props.className,
|
|
])}
|
|
>
|
|
{props.children}
|
|
|
|
{/* Close button */}
|
|
<button
|
|
className="w-full text-video-context-type-main bg-video-context-background z-10 relative hover:bg-video-context-closeHover active:scale-95 rounded-2xl pointer-events-auto transition-all duration-100 flex justify-center items-center py-3 mt-3 font-bold border border-video-context-border hover:text-white"
|
|
type="button"
|
|
onClick={() => router.close()}
|
|
>
|
|
{t("overlays.close")}
|
|
</button>
|
|
{/* Gradient to hide the progress */}
|
|
<div className="pointer-events-none absolute z-0 bottom-0 left-0 w-full h-32 bg-gradient-to-t from-black to-transparent" />
|
|
</div>
|
|
);
|
|
}
|