2024-06-20 14:57:00 +01:00
|
|
|
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";
|
2024-06-20 14:57:00 +01:00
|
|
|
|
|
|
|
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";
|
2024-06-20 14:57:00 +01:00
|
|
|
}, [align]);
|
|
|
|
|
|
|
|
return (
|
2024-07-03 11:53:09 +01:00
|
|
|
<NodeViewWrapper>
|
2024-06-20 14:57:00 +01:00
|
|
|
<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)}
|
2025-03-15 18:27:26 +00:00
|
|
|
style={{ display: "block" }}
|
2024-06-20 14:57:00 +01:00
|
|
|
/>
|
|
|
|
</NodeViewWrapper>
|
|
|
|
);
|
|
|
|
}
|