1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-21 07:21:17 -04:00

fix <Video /> component (downgrade react-player to 2.10.1)

This commit is contained in:
2023-04-13 11:09:13 -04:00
parent a4a402bcde
commit cab79559e6
9 changed files with 868 additions and 799 deletions

View File

@@ -3,21 +3,36 @@ import useHasMounted from "../../hooks/useHasMounted";
import { styled, theme } from "../../lib/styles/stitches.config";
import type { FilePlayerProps } from "react-player/file";
const Wrapper = styled("div", {
position: "relative",
paddingTop: "56.25%",
});
const Player = styled(ReactPlayer, {
position: "absolute",
top: 0,
left: 0,
"& video": {
borderRadius: theme.radii.corner,
},
});
const Wrapper = styled("div", {
variants: {
// determines placement of the player. true expands to full width while keeping the aspect ratio, false retains the
// video's native dimensions (but still shrinks if the parent is narrower than the video).
responsive: {
true: {
position: "relative",
paddingTop: "56.25%", // ratio of 1280x720
[`& ${Player}`]: {
position: "absolute",
top: 0,
left: 0,
},
},
false: {
[`& ${Player}`]: {
margin: "0 auto",
},
},
},
},
});
export type VideoProps = Partial<FilePlayerProps> & {
src: {
// at least one is required:
@@ -27,11 +42,13 @@ export type VideoProps = Partial<FilePlayerProps> & {
vtt?: string;
image?: string;
};
title?: string;
autoplay?: boolean;
responsive?: boolean;
className?: string;
};
const Video = ({ src, autoplay = false, className, ...rest }: VideoProps) => {
const Video = ({ src, title, autoplay = false, responsive = true, className, ...rest }: VideoProps) => {
// fix hydration issues: https://github.com/cookpete/react-player/issues/1428
const hasMounted = useHasMounted();
@@ -42,6 +59,7 @@ const Video = ({ src, autoplay = false, className, ...rest }: VideoProps) => {
controlsList: "nodownload",
preload: "metadata",
poster: src?.image, // thumbnail
title: title,
autoPlay: autoplay,
loop: autoplay,
muted: autoplay, // no sound when autoplaying
@@ -76,7 +94,7 @@ const Video = ({ src, autoplay = false, className, ...rest }: VideoProps) => {
}
return (
<Wrapper className={className}>
<Wrapper responsive={responsive} className={className}>
{hasMounted && <Player width="100%" height="100%" {...playerProps} {...rest} />}
</Wrapper>
);