12 changed files with 77 additions and 2 deletions
@ -0,0 +1,38 @@ |
|||||||
|
import { Icons } from "@/components/Icon"; |
||||||
|
import { useIsMobile } from "@/hooks/useIsMobile"; |
||||||
|
import { useTranslation } from "react-i18next"; |
||||||
|
import { useControls } from "@/video/state/logic/controls"; |
||||||
|
import { useVideoPlayerDescriptor } from "@/video/state/hooks"; |
||||||
|
import { useCallback } from "react"; |
||||||
|
import { canPictureInPicture } from "@/utils/detectFeatures"; |
||||||
|
import { VideoPlayerIconButton } from "../parts/VideoPlayerIconButton"; |
||||||
|
|
||||||
|
interface Props { |
||||||
|
className?: string; |
||||||
|
} |
||||||
|
|
||||||
|
export function PictureInPictureAction(props: Props) { |
||||||
|
const { isMobile } = useIsMobile(); |
||||||
|
const { t } = useTranslation(); |
||||||
|
|
||||||
|
const descriptor = useVideoPlayerDescriptor(); |
||||||
|
const controls = useControls(descriptor); |
||||||
|
|
||||||
|
const handleClick = useCallback(() => { |
||||||
|
controls.togglePictureInPicture(); |
||||||
|
}, [controls]); |
||||||
|
|
||||||
|
if (!canPictureInPicture()) return null; |
||||||
|
|
||||||
|
return ( |
||||||
|
<VideoPlayerIconButton |
||||||
|
className={props.className} |
||||||
|
icon={Icons.PICTURE_IN_PICTURE} |
||||||
|
onClick={handleClick} |
||||||
|
disabled={false} |
||||||
|
text={ |
||||||
|
isMobile ? (t("videoPlayer.buttons.pictureInPicture") as string) : "" |
||||||
|
} |
||||||
|
/> |
||||||
|
); |
||||||
|
} |
Loading…
Reference in new issue