Files
outline/shared/editor/embeds/Berrycast.tsx
2022-03-30 17:09:19 -07:00

28 lines
726 B
TypeScript

import * as React from "react";
import useComponentSize from "~/hooks/useComponentSize";
import Frame from "../components/Frame";
import { EmbedProps as Props } from ".";
const URL_REGEX = /^https:\/\/(www\.)?berrycast.com\/conversations\/(.*)$/;
export default function Berrycast(props: Props) {
const normalizedUrl = props.attrs.href.replace(/\/$/, "");
const ref = React.useRef<HTMLDivElement>(null);
const { width } = useComponentSize(ref);
return (
<>
<div ref={ref} />
<Frame
{...props}
src={`${normalizedUrl}/video-player`}
title="Berrycast Embed"
height={`${0.5625 * width}px`}
border={false}
/>
</>
);
}
Berrycast.ENABLED = [URL_REGEX];