1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-13 19:55:26 -04:00

Migrate to app router (#2254)

This commit is contained in:
2025-02-07 11:33:38 -05:00
committed by GitHub
parent e97613dda5
commit 8aabb4a66f
179 changed files with 4095 additions and 4951 deletions
@@ -0,0 +1,15 @@
.wrapper {
position: relative;
padding-top: 56.25%; /* ratio of 1280x720 */
}
.player {
position: absolute;
top: 0;
left: 0;
}
.player .react-player__preview,
.player iframe {
border-radius: var(--radii-corner);
}
+16 -36
View File
@@ -1,46 +1,26 @@
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";
import clsx from "clsx";
import type { ComponentPropsWithoutRef } from "react";
const Wrapper = styled("div", {
position: "relative",
paddingTop: "56.25%",
});
import styles from "./YouTubeEmbed.module.css";
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<YouTubePlayerProps> & {
export type YouTubeEmbedProps = ComponentPropsWithoutRef<"div"> & {
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 (
<Wrapper className={className}>
{hasMounted && (
<Player
width="100%"
height="100%"
url={`https://www.youtube-nocookie.com/watch?v=${id}`}
light={`https://i.ytimg.com/vi/${id}/hqdefault.jpg`}
controls
{...rest}
/>
)}
</Wrapper>
<div className={clsx(styles.wrapper, className)} {...rest}>
<iframe
src={`https://www.youtube-nocookie.com/embed/${id}`}
className={styles.player}
width="100%"
height="100%"
frameBorder="0"
loading="lazy"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
></iframe>
</div>
);
};