mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 16:28:28 -04:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import clsx from "clsx";
|
|
import type { ComponentPropsWithoutRef } from "react";
|
|
|
|
import styles from "./Video.module.css";
|
|
|
|
export type VideoProps = Omit<Partial<ComponentPropsWithoutRef<"video">>, "src"> & {
|
|
src: string | string[] | undefined;
|
|
};
|
|
|
|
const Video = ({ src, autoPlay, className, children, ...rest }: VideoProps) => {
|
|
return (
|
|
<video
|
|
{...(typeof src === "string" ? { src } : {})}
|
|
{...(autoPlay
|
|
? {
|
|
preload: "auto",
|
|
controls: false,
|
|
autoPlay: true,
|
|
playsInline: true, // safari autoplay workaround
|
|
loop: true,
|
|
muted: true,
|
|
}
|
|
: {
|
|
preload: "metadata",
|
|
controls: true,
|
|
})}
|
|
className={clsx(styles.player, className)}
|
|
{...rest}
|
|
>
|
|
{Array.isArray(src) &&
|
|
src.map((file) => {
|
|
const extension = file.split(".").pop();
|
|
|
|
if (extension === "vtt") {
|
|
return <track key={file} kind="subtitles" src={file} srcLang="en" label="English" default />;
|
|
} else {
|
|
return <source key={file} src={file} type={`video/${extension}`} />;
|
|
}
|
|
})}
|
|
|
|
{children}
|
|
</video>
|
|
);
|
|
};
|
|
|
|
export default Video;
|