import ReactPlayer from "react-player/youtube"; import useHasMounted from "../../hooks/useHasMounted"; import { styled, theme } from "../../lib/styles/stitches.config"; import type { YouTubePlayerProps } from "react-player/youtube"; const Wrapper = styled("div", { position: "relative", paddingTop: "56.25%", }); const Player = styled(ReactPlayer, { position: "absolute", top: 0, left: 0, // target both the lazy thumbnail preview *and* the actual YouTube embed "& .react-player__preview, & iframe": { borderRadius: theme.radii.corner, }, }); export type YouTubeEmbedProps = Partial & { id: string; className?: string; }; const YouTubeEmbed = ({ id, className, ...rest }: YouTubeEmbedProps) => { // fix hydration issues: https://github.com/cookpete/react-player/issues/1428 const hasMounted = useHasMounted(); return ( {hasMounted && ( )} ); }; export default YouTubeEmbed;