30 lines
830 B
TypeScript
Raw Normal View History

import { NodeViewProps, NodeViewWrapper } from "@tiptap/react";
import { useMemo } from "react";
2024-06-22 03:33:54 +01:00
import { getFileUrl } from "@/lib/config.ts";
2024-07-03 11:53:09 +01:00
import clsx from "clsx";
export default function VideoView(props: NodeViewProps) {
const { node, selected } = props;
const { src, width, align } = node.attrs;
2024-07-03 11:53:09 +01:00
const alignClass = useMemo(() => {
if (align === "left") return "alignLeft";
if (align === "right") return "alignRight";
if (align === "center") return "alignCenter";
return "alignCenter";
}, [align]);
return (
2024-07-03 11:53:09 +01:00
<NodeViewWrapper>
<video
preload="metadata"
width={width}
controls
2024-06-22 03:33:54 +01:00
src={getFileUrl(src)}
2024-07-03 11:53:09 +01:00
className={clsx(selected ? "ProseMirror-selectednode" : "", alignClass)}
style={{ display: "block" }}
/>
</NodeViewWrapper>
);
}